diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..652965a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*__pycache__* +.scores +*/.* +*.pyc diff --git a/README.md b/README.md index 97e3e4b..1cb2e2e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ -# homework +# My Python Sandbox -Code for https://gitlab.com/forga/process/fr/embarquement/-/issues/6 +A place for trainings & some scripts worth keeping. + +Started originally with [Open Classrooms](https://openclassrooms.com/) courses + + +## Tuto + +Crash test for [_A durable Python script_](https://gitlab.com/forga/process/fr/embarquement/-/issues/6) diff --git a/nice-scripts/mock_an__init__method_a_class.py b/nice-scripts/mock_an__init__method_a_class.py new file mode 100644 index 0000000..1edd6d9 --- /dev/null +++ b/nice-scripts/mock_an__init__method_a_class.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python3 +#-*- coding:utf-8 -*- +""" +source : https://medium.com/@george.shuklin/mocking-complicated-init-in-python-6ef9850dd202 +""" + + +class Compl(object): + def __init__(self, arg1, arg2): + self.var1 = complicated_to_mock(arg1) + self.var2 = self.var2.complicated_to_mocK2(arg2) + + if self.var1 in self.var2 and self.var1 != self.var2: + self.var3 = self.var2 - self.var1 + ctm3(ctm4()) + + self.foo = { + "1": {"price": "2.7", "quantity": "10"}, + "2": {"price": "8.0", "quantity": "2"}, + } + + def simple(self, arg3): + if arg3 > self.var1: + return None + else: + return arg3 - self.var1 + + +from unittest.mock import patch + +def test_simple_none(): + with patch.object(Compl, "__init__", lambda x, y, z: None): + c = Compl(None, None) + c.var1 = 0 + c.foo = {"foo":"bar", "FOO":"BAR"} + assert c.simple(1) is None + assert [i for i in c.foo.keys()] == ["foo", "FOO"] + +def test_simple_substraction(): + with patch.object(Compl, "__init__", lambda x, y, z: None): + c = Compl(None, None) + c.var1 = 1 + assert c.simple(1) == 0 diff --git a/nice-scripts/reduce_b64_img.py b/nice-scripts/reduce_b64_img.py new file mode 100644 index 0000000..6e2f70c --- /dev/null +++ b/nice-scripts/reduce_b64_img.py @@ -0,0 +1,53 @@ +#!/usr/bin/env python3 +# coding: utf8 +""" + Author: freezed 2019-09-06 + Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ +""" + +import io +import base64 +from PIL import Image + + +def main(source_img_b64_str, height=100, width=100): + """ + Resize a Base64 string image + + :param source_img_b64_str: + :param height: new height in pixel + :param width: new width in pixel + :type source_img_b64_str: str A full Base64 encoded image (PNG) + :type height: int + :type width: int + :return: The same image resized Base64 encoded + :rtype: str + + :Tests: + >>> src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAS4AAACYCAYAAABapASfAAAA5klEQVR4nO3UsQ2AMBAEwe2U778JSCjAkS3QjHT5RVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwP1Ndp08ArJrqfjdHnwAsmoQL+KBJtAAAAAAAAAAAAAAAAAAAYIsHJxwG/A1QeRMAAAAASUVORK5CYII=" + >>> main(src) + 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAATUlEQVR4nO3OQQ0AMAgEMJxu/k3AGwWXbK2CVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAo046wNbpANtNBwAAAH42ANwBv4bl/B8AAAAASUVORK5CYII=' + """ + + head_b64_str = source_img_b64_str.split(",")[0] + body_b64_str = source_img_b64_str.split(",")[1] + + body_b64_bytes = base64.b64decode(body_b64_str) + body_file_like = io.BytesIO(body_b64_bytes) + body_pil_image = Image.open(body_file_like) + + resized_body_pil_image = body_pil_image.resize((height, width)) + + new_img_bytes = io.BytesIO() + resized_body_pil_image.save(new_img_bytes, format="PNG") + new_img_bytes = new_img_bytes.getvalue() + + new_body_b64_str = base64.b64encode(new_img_bytes).decode() + + return "{},{}".format(head_b64_str, new_body_b64_str) + + +if __name__ == "__main__": + import doctest + + doctest.testmod() diff --git a/openclassrooms-trainings/chat/TODO.md b/openclassrooms-trainings/chat/TODO.md new file mode 100644 index 0000000..0d03301 --- /dev/null +++ b/openclassrooms-trainings/chat/TODO.md @@ -0,0 +1,20 @@ +# _chat_ TODO-list + +- [x] ~~server crash when a client quit~~ +- [x] ~~clean client exit with ~~ +- [x] ~~clean server exit with ~~ +- [x] ~~broadcasting messages to all client connected~~ +- [x] ~~show message on server when client use ~~ +- [x] ~~crash after 2 in client~~ +- [x] ~~sending welcome message only at 1st client connection FIX #20~~ +- [x] ~~client freeze when sending empty string or spaces~~ +- [x] ~~move closing connection at the script's end~~ +- [x] ~~asking/using client-nickname~~ +- [x] ~~clean the prompt and std.out a bit messy since broadcasting~~ +- [ ] using wlist with select.select for hardening the script +- [ ] convert logic to oreiented object +- [ ] server crash witn opened connection with +- [ ] add some commands: help, list user, disconnect user, etc. +- [ ] add time logging +- [ ] server crash if a client is killed +- [ ] … diff --git a/openclassrooms-trainings/chat/client.py b/openclassrooms-trainings/chat/client.py new file mode 100755 index 0000000..c32be1f --- /dev/null +++ b/openclassrooms-trainings/chat/client.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +client.py + +Networking test, client-server talking script +""" +import socket, signal, select, sys + +MSG_ARG_ERROR = "Usage: client.py hostname port" + +if len(sys.argv) < 3: + print(MSG_ARG_ERROR) + sys.exit(1) + +HOST = sys.argv[1] +PORT = int(sys.argv[2]) + +BUFFER = 1024 + +MSG_SERVER_CONNECTED = "Serveur connecté @{}:{}" +MSG_CLOSE_CONNECTION = "Connexion vers [{}:{}] fermée" + +def prompt(): + sys.stdout.write('~') + sys.stdout.flush() + +def handler(signum, frame): + """ Catch signal for clean stop""" + print() + print(MSG_CLOSE_CONNECTION.format(*(SERVER_CONNECTION.getpeername()))) + SERVER_CONNECTION.send(b"QUIT") + SERVER_CONNECTION.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +SERVER_CONNECTION = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +try: + SERVER_CONNECTION.connect((HOST, PORT)) +except ConnectionRefusedError as except_detail: + print("ConnectionRefusedError: «{}». Unable to connect".format(except_detail)) + sys.exit() + +print(MSG_SERVER_CONNECTED.format(HOST, PORT)) + +while 1: + inputs = [sys.stdin, SERVER_CONNECTION] + rlist, wlist, elist = select.select(inputs, [], []) + + for socket in rlist: + if socket == SERVER_CONNECTION: # incomming message + data = socket.recv(BUFFER).decode() + if not data: + print(MSG_CLOSE_CONNECTION.format(HOST, PORT)) + sys.exit() + else: + #print data + sys.stdout.write(data) + + prompt() + + else: # sending message + msg = sys.stdin.readline().encode() + SERVER_CONNECTION.send(msg) + prompt() + +SERVER_CONNECTION.close() diff --git a/openclassrooms-trainings/chat/server.py b/openclassrooms-trainings/chat/server.py new file mode 100755 index 0000000..4abc2ff --- /dev/null +++ b/openclassrooms-trainings/chat/server.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +server.py + +Networking test, client-server talking script +""" +import select, signal, socket, sys + +HOST = '' +PORT = 5555 +BUFFER = 1024 + +SERVER_LOG = "{}:{}|{name}|{msg}" +MSG_DISCONNECTED = "" +MSG_SERVER_STOP = "Server stop" +MSG_START_SERVER = "Server is running, listening on port {}.\n\tPress to stop" +MSG_USER_IN = "" +MSG_WELCOME = "Welcome. First do something usefull and type your name: ".encode() +MSG_SALUTE = "Hi, {}, everyone is listening to you:\n" + +inputs = [] +user_name = [] + +def handler(signum, frame): + """ Catch signal for clean stop""" + print() + inputs.remove(MAIN_CONNECTION) + i = 1 + for socket in inputs: + print(SERVER_LOG.format(*socket.getpeername(), name=user_name[i], msg="closed client socket")) + socket.close() + i += 1 + inputs.clear() + print(MSG_SERVER_STOP) + MAIN_CONNECTION.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +def broadcast(sender, name, message): + # send message to all clients, except the sender + message = "{}~ {}\n".format(name, message) + for socket in inputs: + if socket != MAIN_CONNECTION and socket != sender: + try: + socket.send(message.encode()) + except : + socket.close() + inputs.remove(socket) + +# Creation de la connection +MAIN_CONNECTION = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +MAIN_CONNECTION.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) +MAIN_CONNECTION.bind((HOST, PORT)) +MAIN_CONNECTION.listen(5) +inputs.append(MAIN_CONNECTION) +user_name.append("MAIN_CONNECTION") +print(MSG_START_SERVER.format(PORT)) + +while 1: + # get the list of sockets which are ready to be read through select + # timeout 50ms + rlist, wlist, xlist = select.select(inputs, [], [], 0.05) + + for socket in rlist: + # Listen for new client connection + if socket == MAIN_CONNECTION: + socket_object, socket_addr = socket.accept() + inputs.append(socket_object) + user_name.append(False) + print(SERVER_LOG.format(*socket_addr, name="unknow", msg="connected")) + socket_object.send(MSG_WELCOME) + + else: # receiving data + data = socket.recv(BUFFER).decode().strip() + peername = socket.getpeername() + s_idx = inputs.index(socket) + uname = user_name[s_idx] + + if data.upper() == "QUIT": + print(SERVER_LOG.format(*peername, name=uname, msg="disconnected")) + broadcast(socket, uname, MSG_DISCONNECTED) + inputs.remove(socket) + user_name.pop(s_idx) + socket.close() + + elif user_name[s_idx] is False: # setting username + # insert username naming rule here + user_name[s_idx] = data + socket.send(MSG_SALUTE.format(user_name[s_idx]).encode()) + print(SERVER_LOG.format(*peername, name=data, msg="set user name")) + broadcast(socket, user_name[s_idx], MSG_USER_IN) + + elif data: + print(SERVER_LOG.format(*peername, name=uname, msg=data)) + broadcast(socket, uname, data) + + else: + msg = "uncommon transmission:«{}»".format(data) + print(SERVER_LOG.format(*peername, name=uname, msg=msg)) + socket.send(("server do not transmit: {}\n".format(msg)).encode()) diff --git a/openclassrooms-trainings/lonescripts/afficherflottant.py b/openclassrooms-trainings/lonescripts/afficherflottant.py new file mode 100755 index 0000000..72de0c0 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/afficherflottant.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Cours OC/python 3 - Entre chaînes et listes +[Ex 2.3: afficherflottant](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/les-listes-et-tuples-2-2#/id/r-2232398) + +Fournit une string formate en float + +""" + +from package.fonctions import afficher_flottant + +afficher_flottant(1.123456789) + +afficher_flottant(0.1) diff --git a/openclassrooms-trainings/lonescripts/bisextile.py b/openclassrooms-trainings/lonescripts/bisextile.py new file mode 100755 index 0000000..0a33384 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/bisextile.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Cours OC/python 3 - Les structures conditionnelles +[Ex 1.4: Bisextile](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/les-structures-conditionnelles#/id/r-231173) + +Déterminer si une année saisie par l'utilisateur est bissextile +""" + +annee = input("Saisir une année:") +annee = int(annee) + +if (annee % 400) == 0 : + print(annee," est bisextile (divisible par 400)") +elif (annee % 4) == 0 and (annee % 100) != 0: + print(annee," est bisextile (divisible par 4, mais pas par 100)") +else: + print(annee," n'est PAS bisextile.") +liste = [] + +# La suite ne fait pas parti du TP: bonus perso + +print("Voici la liste des annees bisextiles entre 1900 & 2030 :") + +for a in range(1900,2030): + if ((a % 400) == 0) or ((a % 4) == 0 and (a % 100) != 0): + liste.append(a) + +print(liste) diff --git a/openclassrooms-trainings/lonescripts/classes.py b/openclassrooms-trainings/lonescripts/classes.py new file mode 100644 index 0000000..99b6374 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/classes.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" + Author: freezed 2018-01-17 + Licence: `GNU GPL v3`_ + Version: 0.1 + + .. _GNU GPL v3: http://www.gnu.org/licenses/ +""" + + +class TableauNoir: + """ + Definis une surface sur laquelle on peut ecrire. + + On peut lire et effacer, par jeu de methodes. L'attribut + modifie est 'surface' + """ + + def __init__(self): + """Par defaut, notre surface est vide""" + self.surface = "" + + def ecrire(self, texte): + """ + Methode permettant d'ecrire sur la surface du tableau. + + Si la surface n'est pas vide, on saute une ligne avant de + rajouter le message a ecrire + + :texte a: Le texte a ajouter au tableuu + :type a: string + :return: None + """ + if self.surface != "": + self.surface += "\n" + self.surface += texte + + def lire(self): + """ + Cette methode se charge d'afficher, grace a print, + la surface du tableau + """ + + print(self.surface) + + def effacer(self): + """Cette methode permet d'effacer la surface du tableau""" + self.surface = "" + + +class Duree: + """ + Classe contenant des durees sous la forme d'un nombre de minutes + et de secondes + """ + + def __init__(self, min=0, sec=0): + """Constructeur de la classe""" + self.min = min # Nombre de minutes + self.sec = sec # Nombre de secondes + + def __str__(self): + """Affichage MM:SS""" + return "{:02}:{:02}".format(self.min, self.sec) + + def __add__(self, objet_a_ajouter): + """L'objet a ajouter est un entier, le nombre de secondes""" + self.sec += objet_a_ajouter # On ajoute la duree + + if self.sec >= 60: # Si le nombre de secondes >= 60 + self.min += self.sec // 60 + self.sec = self.sec % 60 + + return self # On renvoie la nouvelle duree + + def __sub__(self, objet_a_soustraire): + """ + Soustrait le nombre de seconde passe en parametre + Ne retourne jamais de duree negative + + :param a: secondes a soustraire + :type a: int + :return: object + """ + allsec = (self.min * 60) + self.sec + + if objet_a_soustraire > allsec: + self.min = 0 + self.sec = 0 + else: + allsec -= objet_a_soustraire # On soustrait la duree + self.min = allsec // 60 + self.sec = allsec % 60 + + return self # On renvoie la nouvelle duree + + +if __name__ == "__main__": + # pseudo-tests de la class «Duree» + print("[03:05]:", Duree(3, 5)) # __add__ + print("[03:55]:", Duree(3, 5) + 50) + print("[05:35]:", Duree(3, 5) + 150) + print("[14:41]:", Duree(13, 51) + 50) + print("[11:05]:", Duree(10, 3*5) + 50) + + print("[10:00]:", Duree(10, 5) - 5) + print("[00:05]:", Duree(10, 5) - 600) + print("[00:00]:", Duree(2, 5) - 600) diff --git a/openclassrooms-trainings/lonescripts/decorator.py b/openclassrooms-trainings/lonescripts/decorator.py new file mode 100644 index 0000000..edc47a2 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/decorator.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Cours OC/python 3 +[Les decorateurs](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/les-decorateurs) + +Author: freezed 2018-02-05 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +:Example: +>>> hello_world() +La fonction appelee: est obsolete. + +>>> wait_for() + +""" +import time + +def my_decorator(function): + """ test de decorateur """ + + def modified_func(): + """ Function modifiee utilisee par le decorateur """ + print("Appel de la fonction: {}".format(function)) + return function() + + return modified_func + +def obsolete_exception(function): + """ Decorateur empechant l'execution d'une fonction obsolete """ + + def modd_func(): + print("La fonction appelee: {} est obsolete.".format(function)) + + return modd_func + +def time_checker(seconds): + """ Recoit le parametre passe en argument du decorateur """ + + def time_decorator(function): + """ Le decorateur """ + + def modified_func(*args, **kwargs): + """ Function renvoyee par le decorateur """ + + tstp_begin = time.time() + exec_initial_func = function(*args, **kwargs) + tstp_end = time.time() + duration = tstp_end - tstp_begin + if duration > seconds: + print("La fonction {} à mis {}s pour s'executer".format( \ + function, round(duration, 1))) + + return exec_initial_func + return modified_func + return time_decorator + +@obsolete_exception +def hello_world(): + print("Hello World") + +@time_checker(3) +def wait_for(name="à vous"): + input("Bonjour {}, appuyez sur la touche enter…".format(name)) + + +if __name__ == "__main__": + """ Starting doctests """ + + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/lonescripts/dicoord.py b/openclassrooms-trainings/lonescripts/dicoord.py new file mode 100644 index 0000000..6d633dd --- /dev/null +++ b/openclassrooms-trainings/lonescripts/dicoord.py @@ -0,0 +1,281 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-01-25 +Version: 0.1 +Licence: `GNU GPL v3`: http://www.gnu.org/licenses/ +""" + + +class DictionnaireOrdonne: + + """ + Dictionnaire ordonne + ==================== + + Objet ressemblant a un dict, avec des capacitees de tri. + + Les cles et valeurs se trouvant dans des listes de meme + taille, il suffira de prendre l'indice dans une liste pour + savoir quel objet lui correspond dans l'autre. Par exemple, + la cle d'indice 0 est couplee avec la valeur d'indice 0. + + :Example: + >>> fruits = DictionnaireOrdonne() + >>> fruits + {} + + >>> fruits["pomme"] = 52 + >>> fruits["poire"] = 34 + >>> fruits["prune"] = 128 + >>> fruits["melon"] = 15 + >>> fruits + {'pomme': 52, 'poire': 34, 'prune': 128, 'melon': 15} + + >>> fruits.sort() + >>> print(fruits) + {'melon': 15, 'poire': 34, 'pomme': 52, 'prune': 128} + + >>> legumes = DictionnaireOrdonne(carotte = 26, haricot = 48) + + # Test possible seulement avec python 3.6, + # voir: www.python.org/dev/peps/pep-0468/ + #>>> print(legumes) + #{'carotte': 26, 'haricot': 48} + + >>> len(legumes) + 2 + + >>> legumes.reverse() + + >>> fruits = fruits + legumes + >>> fruits + {'melon': 15, 'poire': 34, 'pomme': 52, 'prune': 128, 'haricot': 48, 'carotte': 26} + + >>> del fruits['haricot'] + >>> del fruits['betterave'] + ValueError: «'betterave' is not in list» + + >>> 'haricot' in fruits + False + + >>> 'pomme' in fruits + True + + >>> legumes['haricot'] + 48 + >>> fruits['betterave'] + ValueError: «'betterave' is not in list» + + >>> for cle in legumes: + ... print(cle) + ... + haricot + carotte + + >>> fruits.keys() + ['melon', 'poire', 'pomme', 'prune', 'carotte'] + + >>> legumes.keys() + ['haricot', 'carotte'] + + >>> fruits.values() + [15, 34, 52, 128, 26] + + >>> legumes.values() + [48, 26] + + >>> for nom, qtt in legumes.items(): + ... print("{0} ({1})".format(nom, qtt)) + ... + haricot (48) + carotte (26) + + >>> liste = [0,1,2,3] + >>> tentative1 = DictionnaireOrdonne(liste) + Un dict() est attendu en argument! + + >>> dico_vide = {} + >>> tentative2 = DictionnaireOrdonne(dico_vide) + >>> tentative2 + {} + + >>> mots = {'olive': 51, 'identite': 43, 'mercredi': 25, 'prout': 218, 'assiette': 8, 'truc': 26} + >>> mots_ordonne = DictionnaireOrdonne(mots) + >>> mots_ordonne.sort() + >>> mots_ordonne + {'assiette': 8, 'mercredi': 25, 'truc': 26, 'identite': 43, 'olive': 51, 'prout': 218} + """ + + def __init__(self, filled_dict={}, **kwargs): + """ + Peu prendre aucun parametre ou: + - un dictionnaire 'filled_dict' en 1er argument + - des valeurs nommees dans 'kwargs' + """ + # Creation des attributs qui stokeront les cles et valeurs + self._keys_list = list() + self._values_list = list() + + # Si 'filled_dict' est un dict() non vide, ajout du contenu + if type(filled_dict) not in (dict, DictionnaireOrdonne): + #raise TypeError("Un dict() est attendu en argument!") + print("Un dict() est attendu en argument!") + else: + for key, val in filled_dict.items(): + self._keys_list.append(key) + self._values_list.append(val) + + # Si les kwargs ne sont pas vide, ajout du contenu + if len(kwargs) != 0: + for key, val in kwargs.items(): + self._keys_list.append(key) + self._values_list.append(val) + + def __add__(self, other_dict_ord): + """ + On doit pouvoir ajouter deux dictionnaires ordonnes + (dico1 + dico2) ; les cles et valeurs du second dictionnaire + sont ajoutees au premier. + """ + i = 0 + while i < len(other_dict_ord): + self._keys_list.append(other_dict_ord._keys_list[i]) + self._values_list.append(other_dict_ord._values_list[i]) + i += 1 + + return self + + def __contains__(self, key_to_find): + """ Cherche une cle dans notre objet (cle in dictionnaire) """ + return key_to_find in self._keys_list + + def __delitem__(self, key_to_del): + """ Acces avec crochets pour suppression (del objet[cle]) """ + try: + index_to_del = self._keys_list.index(key_to_del) + except ValueError as except_detail: + print("ValueError: «{}»".format(except_detail)) + else: + del self._keys_list[index_to_del] + del self._values_list[index_to_del] + + def __iter__(self): + """Parcours de l'objet, renvoi l'iterateur des cles""" + return iter(self._keys_list) + + def __getitem__(self, key_to_get): + """ Acces aux crochets pour recuperer une valeur (objet[cle]) """ + try: + find_key = self._keys_list.index(key_to_get) + except ValueError as except_detail: + print("ValueError: «{}»".format(except_detail)) + else: + print(self._values_list[find_key]) + + def __len__(self): + """ Retourne la taille de l'objet grace a la fonction len """ + return len(self._keys_list) + + def __repr__(self): + """ + Affiche l'objet dans l'interpreteur ou grâce a la fonction + print: ({cle1: valeur1, cle2: valeur2, …}). + """ + # contiendra le txt a afficher + object_repr = list() + + # Si l'objet n'est pas vide + if len(self._keys_list) != 0: + for i in range(0, len(self._keys_list)): + object_repr.append("'{}': {}".format(self._keys_list[i], self._values_list[i])) + + return "{0}{1}{2}".format( + "{", + ", ".join(object_repr), + "}" + ) + + def __setitem__(self, cle, valeur): + """ + Acces avec crochets pour modif (objet[cle] = valeur). Si la cle + existe on ecrase l'ancienne valeur, sinon on ajoute le couple + cle-valeur a la fin + """ + try: + index = self._keys_list.index(cle) + self._keys_list[index] = cle + self._values_list[index] = valeur + except ValueError: + self._keys_list.append(cle) + self._values_list.append(valeur) + + def __str__(self): + """ + Methode pour afficher le dictionnaire avec «print()» ou pour + le convertir en chaine grâce aec «str()». Redirige sur __repr__ + """ + return repr(self) + + def keys(self): + """ + La methode keys() (renvoyant la liste des cles) doit etre + mises en œuvre. Le type de retour de ces methodes est laisse + a votre initiative : il peut s'agir d'iterateurs ou de + generateurs (tant qu'on peut les parcourir) + """ + return list(self._keys_list) + + def sort(self, reverse=False): + """ + L'objet doit definir les methodes sort pour le trier et reverse + pour l'inverser. Le tri de l'objet doit se faire en fonction + des cles + """ + # Peut etre un peu overkill… voir methode dans la correction + + # pour trier on stocke les couples de cle & valeur sous forme + # de tuple dans une liste temporaire + liste_temporaire = list() + + if len(self._keys_list) != 0: # Seulement si il y a des donnees + for i in range(0, len(self._keys_list)): # on parcour chaque entee + liste_temporaire.append((self._keys_list[i], self._values_list[i])) + + # Tri des tuples par la valeur par une comprension de liste + liste_permute = [(val, cle) for cle, val in liste_temporaire] + liste_triee = [(cle, val) for val, cle in sorted(liste_permute, reverse=reverse)] + + # On range les donnees tries dans attributs de l'objet + self._keys_list = [cle for cle, val in liste_triee] + self._values_list = [val for cle, val in liste_triee] + + def reverse(self): + """ + L'objet doit definir les methodes sort pour le trier et reverse + pour l'inverser. Le tri de l'objet doit se faire en fonction + des cles + """ + return self.sort(reverse=True) + + def items(self): + """Renvoi un generateur contenant les couples (cle, valeur)""" + for key, val in enumerate(self._keys_list): + yield (val, self._values_list[key]) + + def values(self): + """ + La methode values() (renvoi la liste des valeurs) doit etre + mises en œuvre. Le type de retour de ces methodes est laisse + a votre initiative : il peut s'agir d'iterateurs ou de + generateurs (tant qu'on peut les parcourir) + """ + return list(self._values_list) + + +if __name__ == "__main__": + """ Active les doctests """ + + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/lonescripts/dicoordcorrection.py b/openclassrooms-trainings/lonescripts/dicoordcorrection.py new file mode 100644 index 0000000..8de2ced --- /dev/null +++ b/openclassrooms-trainings/lonescripts/dicoordcorrection.py @@ -0,0 +1,257 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-01-25 +Version: 0.1 +Licence: `GNU GPL v3`: http://www.gnu.org/licenses/ +""" + + +class DictionnaireOrdonne: + + """ + + Dictionnaire ordonne + ==================== + + Notre dictionnaire ordonné. L'ordre des données est maintenu + et il peut donc, contrairement aux dictionnaires usuels, être trié + ou voir l'ordre de ses données inversées + + + :Example: + >>> fruits = DictionnaireOrdonne() + >>> fruits + {} + + >>> fruits["pomme"] = 52 + >>> fruits["poire"] = 34 + >>> fruits["prune"] = 128 + >>> fruits["melon"] = 15 + >>> fruits + {'pomme': 52, 'poire': 34, 'prune': 128, 'melon': 15} + + >>> fruits.sort() + >>> print(fruits) + {'melon': 15, 'poire': 34, 'pomme': 52, 'prune': 128} + + >>> legumes = DictionnaireOrdonne(carotte = 26, haricot = 48) + + # Test possible seulement avec python 3.6, + # voir: www.python.org/dev/peps/pep-0468/ + #>>> print(legumes) + #{'carotte': 26, 'haricot': 48} + + >>> len(legumes) + 2 + + >>> legumes.reverse() + + >>> fruits = fruits + legumes + >>> fruits + {'melon': 15, 'poire': 34, 'pomme': 52, 'prune': 128, 'haricot': 48, 'carotte': 26} + + >>> del fruits['haricot'] + + >>> 'haricot' in fruits + False + + >>> 'pomme' in fruits + True + + >>> legumes['haricot'] + 48 + + >>> for cle in legumes: + ... print(cle) + ... + haricot + carotte + + >>> fruits.keys() + ['melon', 'poire', 'pomme', 'prune', 'carotte'] + + >>> legumes.keys() + ['haricot', 'carotte'] + + >>> fruits.values() + [15, 34, 52, 128, 26] + + >>> legumes.values() + [48, 26] + + >>> for nom, qtt in legumes.items(): + ... print("{0} ({1})".format(nom, qtt)) + ... + haricot (48) + carotte (26) + + >>> mots = {'olive': 51, 'identite': 43, 'mercredi': 25, 'prout': 218, 'assiette': 8, 'truc': 26} + >>> mots_ordonne = DictionnaireOrdonne(mots) + >>> mots_ordonne.sort() + >>> mots_ordonne + {'assiette': 8, 'identite': 43, 'mercredi': 25, 'olive': 51, 'prout': 218, 'truc': 26} + """ + + def __init__(self, base={}, **donnees): + """Constructeur de notre objet. Il peut ne prendre aucun paramètre + (dans ce cas, le dictionnaire sera vide) ou construire un + dictionnaire remplis grâce : + - au dictionnaire 'base' passé en premier paramètre ; + - aux valeurs que l'on retrouve dans 'donnees'.""" + + self._cles = [] # Liste contenant nos clés + self._valeurs = [] # Liste contenant les valeurs correspondant à nos clés + + # On vérifie que 'base' est un dictionnaire exploitable + if type(base) not in (dict, DictionnaireOrdonne): + raise TypeError( \ + "le type attendu est un dictionnaire (usuel ou ordonne)") + + # On récupère les données de 'base' + for cle in base: + self[cle] = base[cle] + + # On récupère les données de 'donnees' + for cle in donnees: + self[cle] = donnees[cle] + + def __repr__(self): + """Représentation de notre objet. C'est cette chaîne qui sera affichée + quand on saisit directement le dictionnaire dans l'interpréteur, ou en + utilisant la fonction 'repr'""" + + chaine = "{" + premier_passage = True + for cle, valeur in self.items(): + if not premier_passage: + chaine += ", " # On ajoute la virgule comme séparateur + else: + premier_passage = False + chaine += repr(cle) + ": " + repr(valeur) + chaine += "}" + return chaine + + def __str__(self): + """Fonction appelée quand on souhaite afficher le dictionnaire grâce + à la fonction 'print' ou le convertir en chaîne grâce au constructeur + 'str'. On redirige sur __repr__""" + + return repr(self) + + def __len__(self): + """Renvoie la taille du dictionnaire""" + return len(self._cles) + + def __contains__(self, cle): + """Renvoie True si la clé est dans la liste des clés, False sinon""" + return cle in self._cles + + def __getitem__(self, cle): + """Renvoie la valeur correspondant à la clé si elle existe, lève + une exception KeyError sinon""" + + if cle not in self._cles: + raise KeyError( \ + "La clé {0} ne se trouve pas dans le dictionnaire".format( \ + cle)) + else: + indice = self._cles.index(cle) + return self._valeurs[indice] + + def __setitem__(self, cle, valeur): + """Méthode spéciale appelée quand on cherche à modifier une clé + présente dans le dictionnaire. Si la clé n'est pas présente, on l'ajoute + à la fin du dictionnaire""" + + if cle in self._cles: + indice = self._cles.index(cle) + self._valeurs[indice] = valeur + else: + self._cles.append(cle) + self._valeurs.append(valeur) + + def __delitem__(self, cle): + """Méthode appelée quand on souhaite supprimer une clé""" + if cle not in self._cles: + raise KeyError( \ + "La clé {0} ne se trouve pas dans le dictionnaire".format( \ + cle)) + else: + indice = self._cles.index(cle) + del self._cles[indice] + del self._valeurs[indice] + + def __iter__(self): + """Méthode de parcours de l'objet. On renvoie l'itérateur des clés""" + return iter(self._cles) + + def __add__(self, autre_objet): + """On renvoie un nouveau dictionnaire contenant les deux + dictionnaires mis bout à bout (d'abord self puis autre_objet)""" + + if type(autre_objet) is not type(self): + raise TypeError( \ + "Impossible de concaténer {0} et {1}".format( \ + type(self), type(autre_objet))) + else: + nouveau = DictionnaireOrdonne() + + # On commence par copier self dans le dictionnaire + for cle, valeur in self.items(): + nouveau[cle] = valeur + + # On copie ensuite autre_objet + for cle, valeur in autre_objet.items(): + nouveau[cle] = valeur + return nouveau + + def items(self): + """Renvoie un générateur contenant les couples (cle, valeur)""" + for i, cle in enumerate(self._cles): + valeur = self._valeurs[i] + yield (cle, valeur) + + def keys(self): + """Cette méthode renvoie la liste des clés""" + return list(self._cles) + + def values(self): + """Cette méthode renvoie la liste des valeurs""" + return list(self._valeurs) + + def reverse(self): + """Inversion du dictionnaire""" + # On crée deux listes vides qui contiendront le nouvel ordre des clés + # et valeurs + cles = [] + valeurs = [] + for cle, valeur in self.items(): + # On ajoute les clés et valeurs au début de la liste + cles.insert(0, cle) + valeurs.insert(0, valeur) + # On met ensuite à jour nos listes + self._cles = cles + self._valeurs = valeurs + + def sort(self): + """Méthode permettant de trier le dictionnaire en fonction de ses clés""" + # On trie les clés + cles_triees = sorted(self._cles) + # On crée une liste de valeurs, encore vide + valeurs = [] + # On parcourt ensuite la liste des clés triées + for cle in cles_triees: + valeur = self[cle] + valeurs.append(valeur) + # Enfin, on met à jour notre liste de clés et de valeurs + self._cles = cles_triees + self._valeurs = valeurs + + +if __name__ == "__main__": + """ Active les doctests """ + + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/lonescripts/fonctions.py b/openclassrooms-trainings/lonescripts/fonctions.py new file mode 100755 index 0000000..68aa13a --- /dev/null +++ b/openclassrooms-trainings/lonescripts/fonctions.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Cours OC/python 3 + +Module de test: essai d'utilisation d'un package + +Utilise par: +- ../afficherflottant.py + +""" + + +def table(n, m=11): + """Chapitre 1.7 - Modularite + Affiche la table de multiplication d'un nombre + de 1 * n + a m * n """ + for i in range(1, m): + print(i, "x", n, "=", i * n) + + +def afficher_flottant(flot): + + """Chapitre 2.3 - Entre chaînes et listes + Affiche un nombre a virgule flottante tronque a 3 decimales + et remplace le point (.) par une virgule (,)""" + + if type(flot) is not float: + print("Le parametre doit etre de type float!") + else: + flot = str(flot) + entier, decimal = flot.split('.') + print( + ','.join((entier, decimal[:3])) + ) + + +def affiche(*liste_parametres, sep=' ', fin='\n'): + + """Chapitre 2.3 - Entre chaînes et listes: + Fonction chargée de reproduire le comportement de print. + Elle doit finir par faire appel à print pour afficher le résultat. + Mais les paramètres devront déjà avoir été formatés. + On doit passer à print une unique chaîne, en lui spécifiant de + ne rien mettre à la fin : print(chaine, end='')""" + + contenu = str() + for parametre in liste_parametres: + contenu += str(parametre) + contenu += sep + + contenu = contenu + fin + print(contenu, end='') + + +if __name__ == "__main__": + # Tests de la fonction 'affiche' + affiche("'string'", "'autre string; 1'", 2) + affiche(1.12, "'string'", "'autre string; 1'", 2) + affiche(False, True, 1.12, "'string'", "'autre string; 1'", 2) + + # Tests de la fonction 'afficher_flottant' + #afficher_flottant(1.123456789) + #afficher_flottant(1.12) + #afficher_flottant(0.1) + #afficher_flottant("a") + #afficher_flottant(False) + #afficher_flottant(100) + + # test de la fonction 'table' + #table(3) diff --git a/openclassrooms-trainings/lonescripts/kwargsinfunct.py b/openclassrooms-trainings/lonescripts/kwargsinfunct.py new file mode 100755 index 0000000..b3dc0c0 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/kwargsinfunct.py @@ -0,0 +1,98 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-03-23 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +testing kwargs in a function + +:Example: +>>> d = {'a2': 'a', 'a3': 'blablabla'} +>>> test(6, **d) +a1:«6», a2:«a», a3:«blablabla» + +>>> test(7) +a1:«7», a2:«default value for a2», a3:«default value for a3» + +>>> test(8, a2='input a2') +a1:«8», a2:«input a2», a3:«default value for a3» + +>>> test(9, a3='input a3') +a1:«9», a2:«default value for a2», a3:«input a3» + +>>> test(10, a2='input a2', a3='input a3') +a1:«10», a2:«input a2», a3:«input a3» + +==== +>>> get_value('symbol', 'name', 'void', 0) +' ' + +>>> get_value('symbol', 'name', 'void') +[' '] + +>>> get_value('tile', 'symbol', 'z', 0) is False +True + +>>> get_value(ksel='collect', kval='name', vsel=True) +['needle', 'tube', 'ether'] + +>>> dico = {'kval': 'tile', 'ksel': 'ressurect', 'vsel': False} +>>> get_value(**dico) +['img/3-blue-transp-30.png', 'img/1-blue-transp-30.png', 'img/2-blue-transp-30.png', 'img/g-orange-transp-30.png', 'img/transp-30.png', 'img/player-30.png', False] + +>>> dico = {'kval': 'tile', 'ksel': 'ressurect', 'vsel': False, 'nline': 0} +>>> get_value(**dico) +'img/3-blue-transp-30.png' + +""" + +LIST = [ + {'symbol': 'n', 'name': 'needle', 'cross': True, 'ressurect': False, 'collect': True, 'tile': 'img/3-blue-transp-30.png'}, + {'symbol': 't', 'name': 'tube', 'cross': True, 'ressurect': False, 'collect': True, 'tile': 'img/1-blue-transp-30.png'}, + {'symbol': 'e', 'name': 'ether', 'cross': True, 'ressurect': False, 'collect': True, 'tile': 'img/2-blue-transp-30.png'}, + {'symbol': 'E', 'name': 'exit', 'cross': True, 'ressurect': False, 'collect': False, 'tile': 'img/g-orange-transp-30.png'}, + {'symbol': ' ', 'name': 'void', 'cross': True, 'ressurect': True, 'collect': False, 'tile': 'img/blue-white-30.png'}, + {'symbol': '.', 'name': 'wall', 'cross': False, 'ressurect': False, 'collect': False, 'tile': 'img/transp-30.png'}, + {'symbol': 'X', 'name': 'player', 'cross': False, 'ressurect': False, 'collect': False, 'tile': 'img/player-30.png'}, + {'symbol': '\n', 'name': 'nlin', 'cross': False, 'ressurect': False, 'collect': False, 'tile': False}, +] + + +def test(a1, **kwargs): + if 'a2' in kwargs: + a2 = kwargs['a2'] + else: + a2 = 'default value for a2' + + if 'a3' in kwargs: + a3 = kwargs['a3'] + else: + a3 = 'default value for a3' + + print('a1:«{}», a2:«{}», a3:«{}»'.format(a1, a2, a3)) + +def get_value(kval, ksel, vsel, nline=False): + """ + Return a value from LIST + + :param str kval: key of the value returned + :param str ksel: key of the selection criteria + :param str vsel: value of the selection criteria + :return str/bool/…: + """ + try: + if nline is False: + return [element[kval] for element in LIST if element[ksel] == vsel] + else: + return [element[kval] for element in LIST if element[ksel] == vsel][nline] + except IndexError as except_detail: + # print("IndexError: «{}»".format(except_detail)) + return False + +if __name__ == "__main__": + """ Starting doctests """ + + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/lonescripts/listlocalip.py b/openclassrooms-trainings/lonescripts/listlocalip.py new file mode 100644 index 0000000..0a1638d --- /dev/null +++ b/openclassrooms-trainings/lonescripts/listlocalip.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: +https://openclassrooms.com/forum/sujet/exercices-du-cours-python-postez-ici?page=25#message-92220709 +""" +from os import system +import subprocess + + +print("$ AFIGO") +input("Check ENTREE for scan dhcp") +system("clear") +print("") +print("IP LIST") +print("------------------------------------------------------------") +print("") +for i in range(0, 255): + a = subprocess.getoutput("host 192.168.1."+str(i)) + if a == (str(i)+".1.168.192.in-addr.arpa has no PTR record"): + pass + else: + print(a) + pass +print("") +print("------------------------------------------------------------") \ No newline at end of file diff --git a/openclassrooms-trainings/lonescripts/pymysql_test.py b/openclassrooms-trainings/lonescripts/pymysql_test.py new file mode 100644 index 0000000..0550e79 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/pymysql_test.py @@ -0,0 +1,86 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-08-03 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Basic implementation of PyMySQL + +-- Local DB -- +CREATE DATABASE loff CHARACTER SET 'utf8'; +USE loff; + +CREATE TABLE category( + `id`INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, + `name` VARCHAR(200) UNIQUE + +)ENGINE=InnoDB; + +CREATE TABLE product( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, + `code` BIGINT UNSIGNED NOT NULL UNIQUE, + `url` VARCHAR(200), + `name` VARCHAR(200) UNIQUE, + `nutrition_grades` VARCHAR(1), + `category_id`INT UNSIGNED, + `substitute_id` INT UNSIGNED, + CONSTRAINT `fk_product_category` + FOREIGN KEY (category_id) REFERENCES category(id) + ON DELETE CASCADE, + CONSTRAINT `fk_product_substitute` + FOREIGN KEY (substitute_id) REFERENCES product(id) + ON DELETE SET NULL +)ENGINE=InnoDB; +""" +import pymysql + +DB_CONFIG = { + 'host': 'localhost', + 'user': 'loff', + 'password': 'loff', + 'db': 'loff', + 'charset': 'utf8', + 'autocommit': False +} + +CONF = { + 'host': DB_CONFIG['host'], + 'user': DB_CONFIG['user'], + 'db': DB_CONFIG['db'], + 'password': DB_CONFIG['password'], + 'charset': DB_CONFIG['charset'], + 'cursorclass': pymysql.cursors.DictCursor +} + +REQUEST_LIST = [ + """INSERT INTO category (`name`) VALUES ('farces')""", + """INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, \ +`category_id`) SELECT "Farce de Veau", "3384480023221", +\"https://fr.openfoodfacts.org/produit/3384480023221/farce-de-veau-tendriade", \ +"e", id AS category_id FROM category WHERE name = "farces";""", + """INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, \ +`category_id`) SELECT "Chair à saucisse Pur Porc", "3222472948438", \ +"https://fr.openfoodfacts.org/produit/3222472948438/chair-a-saucisse-pur-porc-casino", \ +"d", id AS category_id FROM category WHERE name = "farces";""", + """INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, \ +`category_id`) SELECT "Farce à Légumes, Pur Porc", "3254560320666", \ +"https://fr.openfoodfacts.org/produit/3254560320666/farce-a-legumes-pur-porc-l-oiseau", \ +"d", id AS category_id FROM category WHERE name = "farces";""", + """SELECT c.name AS Category, p.code, p.name AS Product, \ +p.nutrition_grades AS Nutriscore FROM category AS c \ +LEFT JOIN product AS p ON c.id = p.category_id""", +] + +CNX = pymysql.connect(**CONF) +CURSOR = CNX.cursor() + +for idx, sql in enumerate(REQUEST_LIST): + CURSOR.execute(sql) + results = CURSOR.fetchall() + print("\n{}. [{}…] Rows affected: {}".format(idx, sql[87:100], CURSOR.rowcount)) + +# CNX.commit() +CURSOR.close() +CNX.close() diff --git a/openclassrooms-trainings/lonescripts/testsignal.py b/openclassrooms-trainings/lonescripts/testsignal.py new file mode 100755 index 0000000..daa78f2 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/testsignal.py @@ -0,0 +1,32 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +"""1st implementation of signal module https://stackoverflow.com/q/48929752""" +import time +import signal +import os +import sys + + +def cls(): + """ console clearing """ + os.system('clear') + return + + +def handler(signal, frame): + """ Catch signal for clean stop""" + print("{}, script stops".format(time.strftime('%H:%M:%S'))) + sys.exit(0) + + +signal.signal(signal.SIGINT, handler) + +START_TIME = time.strftime('%H:%M:%S') +PROGRESSION = str() + + +while True: + time.sleep(2) + PROGRESSION += "." + cls() + print("{}, script starts\n{}".format(START_TIME, PROGRESSION)) diff --git a/openclassrooms-trainings/lonescripts/timeclient.py b/openclassrooms-trainings/lonescripts/timeclient.py new file mode 100755 index 0000000..69c6154 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/timeclient.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +timeclient.py + +Time & networking test, talking script +""" +import socket, signal, select, sys + +MSG_ARG_ERROR = "Usage: client.py hostname port" + +if len(sys.argv) < 3: + print(MSG_ARG_ERROR) + sys.exit(1) + +HOST = sys.argv[1] +PORT = int(sys.argv[2]) + +BUFFER = 1024 + +MSG_SERVER_CONNECTED = "Serveur connecté @{}:{}" +MSG_CLOSE_CONNECTION = "Connexion vers [{}:{}] fermée" + +def prompt(): + sys.stdout.write('~') + sys.stdout.flush() + +def handler(signum, frame): + """ Catch signal for clean stop""" + print() + print(MSG_CLOSE_CONNECTION.format(*(SERVER_CONNECTION.getpeername()))) + SERVER_CONNECTION.send(b"QUIT") + SERVER_CONNECTION.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +SERVER_CONNECTION = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +try: + SERVER_CONNECTION.connect((HOST, PORT)) +except ConnectionRefusedError as except_detail: + print("ConnectionRefusedError: «{}». Unable to connect".format(except_detail)) + sys.exit() + +print(MSG_SERVER_CONNECTED.format(HOST, PORT)) +inputs = [SERVER_CONNECTION] +while 1: + rlist, wlist, elist = select.select(inputs, [], []) + + for socket in rlist: + if socket == SERVER_CONNECTION: # incomming message + data = socket.recv(BUFFER).decode() + if not data: + print(MSG_CLOSE_CONNECTION.format(HOST, PORT)) + sys.exit() + else: + #print data + sys.stdout.write(data) + + prompt() diff --git a/openclassrooms-trainings/lonescripts/timeserver.py b/openclassrooms-trainings/lonescripts/timeserver.py new file mode 100755 index 0000000..b68d936 --- /dev/null +++ b/openclassrooms-trainings/lonescripts/timeserver.py @@ -0,0 +1,82 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +flushserver.py + +Time & networking test, talking script +""" +import datetime, select, signal, socket, sys, time + +HOST = '' +PORT = 5555 +BUFFER = 1024 + +SERVER_LOG = "{}:{}|{msg}" +MSG_SERVER_STOP = "Server stop" +MSG_START_SERVER = "Server is running, listening on port {}.\n\tPress to stop" + +inputs = [] + +def handler(signum, frame): + """ Catch signal for clean stop""" + print() + inputs.remove(MAIN_CONNECTION) + i = 1 + for socket in inputs: + print(SERVER_LOG.format(*socket.getpeername(), msg="closed client socket")) + socket.close() + i += 1 + inputs.clear() + print(MSG_SERVER_STOP) + MAIN_CONNECTION.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +def broadcast(sender, name, message): + # send message to all clients, except the sender + message = "\n~{}~ {}".format(name, message) + for socket in inputs: + if socket != MAIN_CONNECTION and socket != sender: + try: + socket.send(message.encode()) + except BrokenPipeError: + print(SERVER_LOG.format(*socket.getpeername(), msg="closed client socket")) + socket.close() + inputs.remove(socket) + +# Creation de la connection +MAIN_CONNECTION = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +MAIN_CONNECTION.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) +MAIN_CONNECTION.bind((HOST, PORT)) +MAIN_CONNECTION.listen(5) +inputs.append(MAIN_CONNECTION) +print(MSG_START_SERVER.format(PORT)) + +while 1: + # listening network + rlist, wlist, xlist = select.select(inputs, [], [], 0.05) + + for socket in rlist: + # Listen for new client connection + if socket == MAIN_CONNECTION: + socket_object, socket_addr = socket.accept() + inputs.append(socket_object) + print(SERVER_LOG.format(*socket_addr, msg="connected")) + msg_time = str(datetime.datetime.now()).split('.')[0] + socket_object.send(msg_time.encode()) + + else: # receiving data + data = socket.recv(BUFFER).decode().strip() + peername = socket.getpeername() + + if data.upper() == "QUIT": + print(SERVER_LOG.format(*peername, name=None, msg="disconnected")) + inputs.remove(socket) + socket.close() + + timestamp = time.localtime() + if timestamp.tm_sec % 10 == 0: + broadcast(None, "CLOCK", time.strftime('%Y-%m-%d %H:%M:%S', timestamp)) + time.sleep(1) diff --git a/openclassrooms-trainings/lonescripts/tupleformatting.py b/openclassrooms-trainings/lonescripts/tupleformatting.py new file mode 100644 index 0000000..698933c --- /dev/null +++ b/openclassrooms-trainings/lonescripts/tupleformatting.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +format syntax with tuple +https://stackoverflow.com/q/48990106/6709630 +""" + +t = ("alpha", "omega") +v = "to" + +m = "From {} {} {} " +ms = "From {0} to {1}" +msg = "From {0} {var} {1} " + +expr_list = [ + "t, v", + "m.format(t, v)", + "m.format(*t, v)", + "ms.format(t)", + "msg.format(t, v)", + "msg.format(t, var=v)", + "msg.format(*t, var=v)", +] + +for num, expr in enumerate(expr_list): + try: + print("Expr{}, <{}>: «{}»".format(num, expr, eval(expr))) + except Exception as except_detail: + print("Expr{}, <{}> : Exception «{}»".format(num, expr, except_detail)) diff --git a/openclassrooms-trainings/lonescripts/zcasino.py b/openclassrooms-trainings/lonescripts/zcasino.py new file mode 100755 index 0000000..50c4cbe --- /dev/null +++ b/openclassrooms-trainings/lonescripts/zcasino.py @@ -0,0 +1,135 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Cours OC/python 3 - TP: tous au ZCasino +[TP 1.9: zcasino](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/tp-tous-au-zcasino) + +Un petit jeu de roulette très simplifie +======================================= + + Le joueur mise sur un numero compris entre 0 et 49 + En choisissant son numero, il mise + Les numeros pairs sont noire, les impairs sont de rouge + Quand la roulette s'arrete: + -Si numero gagnant: gain = 3x la mise + -Si meme couleur: gain = 50% de la mise + -Sinon la mise est perdue + +""" + +import math +import random +import os + +############# +# VARIABLES # +############# +jeu_continu = True +credit = 1000 +filename = ".highscore" +old_highscore = -1 + +######### +# TEXTE # +######### +curr_symb = "€" +disclamer = "Bienvenu à la roulette, vous avez un crédit de " + \ + str(credit) + curr_symb + ": bonne partie." +err_plage = "Il faut saisir un nombre dans la plage indiquée! " +err_saisie = "Il faut saisir un nombre! " +msg_resultat = "\nLa bille s'arrête sur le nunéro: " +msg_numero = "\nVotre nombre est gagnant! Votre gain: " +msg_couleur = "\nVotre couleur est gagnante! Votre gain: " +msg_perdu = "\nVous perdez votre mise!" +msg_continue = "Pour arrêter la partie, tapez « n »: " +msg_solde = "Votre solde : " +msg_arret = "Vous avez décidé d'arrêter la partie avec un solde de: " +msg_final = "Votre solde à atteind 0€: la partie s'arrête" +msg_no_score = "Pas d'ancien score." +msg_best_score = "Bravo, vous battez le précédent record de gain qui était: " +msg_bad_score = "Le record de gain enregistré était: " + +################ +# DÉBUT DU JEU # +################ +print(disclamer) + +while jeu_continu is True: + # Saisie & validation du choix + choix_valeur = 50 + while choix_valeur >= 50 or choix_valeur < 0: + choix_valeur = input("Quel numéro choisissez vous (0-49)?") + try: + choix_valeur = int(choix_valeur) + except ValueError: + print(err_saisie) + choix_valeur = 50 + continue + + if choix_valeur >= 50 or choix_valeur < 0: + print(err_plage) + + # Saisie & validation de la mise + mise = 0 + while mise <= 0 or mise > credit: + mise = input("Quelle est votre mise (1-" + str(credit) + "?)") + try: + mise = int(mise) + except ValueError: + print(err_saisie) + mise = 0 + continue + + if mise <= 0 or mise > credit: + print(err_plage) + + result_valeur = random.randrange(50) # Roulette + + # Comparaison + if result_valeur == choix_valeur: + gain = mise * 3 + msg = msg_resultat + str(result_valeur) + msg_numero + \ + str(gain) + curr_symb + elif result_valeur % 2 == choix_valeur % 2: + gain = math.ceil(mise / 2) + msg = msg_resultat + str(result_valeur) + msg_couleur + \ + str(gain) + curr_symb + else: + gain = - mise + msg = msg_resultat + str(result_valeur) + msg_perdu + + credit = credit + gain + print(msg) # Affichage de fin de tour + + if credit > 0: # affiche credit + print(msg_solde + str(credit)) + + ask_continue = str(input(msg_continue)) # demande de continuer + + if ask_continue == "n": # Arret demandé par le joueur + jeu_continu = False + msg_final = (msg_arret + str(credit) + curr_symb) + + else: + jeu_continu = False # fin du jeu + +if os.path.isfile(filename) is True: # On recupere le highscore + with open(filename, "r") as highscore: + old_highscore = int(highscore.read()) + +if old_highscore == -1: # Pas encore de partie gagnante + msg_score = msg_no_score + +elif credit > old_highscore and old_highscore != -1: # Highscore battu + msg_score = msg_best_score + str(old_highscore) + curr_symb + +else: + msg_score = msg_bad_score + str(old_highscore) + curr_symb + +if (credit > 0 and old_highscore == -1) or credit > old_highscore: + with open(filename, "w") as highscore: + highscore.write(str(credit)) + +print(msg_final) # Affichage du message de fin de partie +print(msg_score) # Affichage du score/highscore diff --git a/openclassrooms-trainings/lonescripts/zcasinocorrection.py b/openclassrooms-trainings/lonescripts/zcasinocorrection.py new file mode 100644 index 0000000..578b09c --- /dev/null +++ b/openclassrooms-trainings/lonescripts/zcasinocorrection.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# Ce fichier abrite le code du ZCasino, un jeu de roulette adapté + +from random import randrange +from math import ceil + +# Déclaration des variables de départ +argent = 1000 # On a 1000 $ au début du jeu +continuer_partie = True # Booléen qui est vrai tant qu'on doit \ +# continuer la partie + +print("Vous vous installez à la table de roulette avec", argent, "$.") + +while continuer_partie: # Tant qu'on doit continuer la partie + # on demande à l'utilisateur de saisir le nombre sur + # lequel il va miser + nombre_mise = -1 + while nombre_mise < 0 or nombre_mise > 49: + nombre_mise = input("Tapez le nombre sur lequel vous voulez miser (entre 0 et 49) : ") + # On convertit le nombre misé + try: + nombre_mise = int(nombre_mise) + except ValueError: + print("Vous n'avez pas saisi de nombre") + nombre_mise = -1 + continue + if nombre_mise < 0: + print("Ce nombre est négatif") + if nombre_mise > 49: + print("Ce nombre est supérieur à 49") + + # À présent, on sélectionne la somme à miser sur le nombre + mise = 0 + while mise <= 0 or mise > argent: + mise = input("Tapez le montant de votre mise : ") + # On convertit la mise + try: + mise = int(mise) + except ValueError: + print("Vous n'avez pas saisi de nombre") + mise = -1 + continue + if mise <= 0: + print("La mise saisie est négative ou nulle.") + if mise > argent: + print("Vous ne pouvez miser autant, vous n'avez que", argent, "$") + + # Le nombre misé et la mise ont été sélectionnés par + # l'utilisateur, on fait tourner la roulette + numero_gagnant = randrange(50) + print("La roulette tourne... ... et s'arrête sur le numéro", numero_gagnant) + + # On établit le gain du joueur + if numero_gagnant == nombre_mise: + print("Félicitations ! Vous obtenez", mise * 3, "$ !") + argent += mise * 3 + elif numero_gagnant % 2 == nombre_mise % 2: # ils sont de la même couleur + mise = ceil(mise * 0.5) + print("Vous avez misé sur la bonne couleur. Vous obtenez", mise, "$") + argent += mise + else: + print("Désolé l'ami, c'est pas pour cette fois. Vous perdez votre mise.") + argent -= mise + + # On interrompt la partie si le joueur est ruiné + if argent <= 0: + print("Vous êtes ruiné ! C'est la fin de la partie.") + continuer_partie = False + else: + # On affiche l'argent du joueur + print("Vous avez à présent", argent, "$") + quitter = input("Souhaitez-vous quitter le casino (o/n) ? ") + if quitter == "o" or quitter == "O": + print("Vous quittez le casino avec vos gains.") + continuer_partie = False diff --git a/openclassrooms-trainings/pytestdiscovering/LICENSE b/openclassrooms-trainings/pytestdiscovering/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/openclassrooms-trainings/pytestdiscovering/README.md b/openclassrooms-trainings/pytestdiscovering/README.md new file mode 100644 index 0000000..2afc19d --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/README.md @@ -0,0 +1,10 @@ +# Discovering [pytest](https://docs.pytest.org/en/latest/getting-started.html) with [Sam & Max](http://sametmax.com/tag/pytest/) & [Open Classrooms](https://openclassrooms.com/fr/courses/4425126-testez-votre-projet-avec-python "Testez votre projet avec Python") + +This is a (partial) fork of my _study work_ [ocp5](https://github.com/freezed/ocp5/blob/master/README.md) providing code for discovering [`pytest`](https://docs.pytest.org/en/latest/contents.html). + +Work is done with : + + - `Python 3.6.4` + - `PyMySQL 0.9.2` + - `requests 2.11.1` + - `pytest 3.7.1` diff --git a/openclassrooms-trainings/pytestdiscovering/cli.py b/openclassrooms-trainings/pytestdiscovering/cli.py new file mode 100644 index 0000000..4f649a3 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/cli.py @@ -0,0 +1,301 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-08-04 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + + Command line interface to interact with local DB + +Choose a product in a list of aivaiable categories['results_list'], +the system gives you an alternative with a better 'nutriscore'. +You can save this product to get it later. + + """ +from os import system +from db import Db +from config import DB_REQUEST, CLI_MSG_DISCLAIMER, CLI_MSG_ASK_IDX, \ + CLI_MSG_ASK_ERR, CLI_MSG_QUIT, CLI_MSG_CHOOSEN_CAT, CLI_MSG_PROD, \ + CLI_MSG_SUBST, CLI_MSG_NO_SUBST, CLI_MSG_CAT, CLI_MSG_CHOOSEN_PROD, \ + CLI_MSG_DETAILLED_SUB, CLI_MAX_LEN, \ + CLI_ITEM_LIST, CLI_MSG_ASK_BAK, CLI_MSG_BAK_DONE, CLI_MSG_INIT_MENU,\ + CLI_MSG_SUBST_HEAD, CLI_MSG_SUBST_TITLE, CLI_MSG_SUBST_LIST + +product_asked = {'valid_item': False} +cli_end_msg = CLI_MSG_QUIT + + +def ask_user(head_msg, item_list): + """ + Ask user to choose an item in the provided list, using numeric index + + :head_msg: Text displayed in header + :item_list: Dict() containing all data about item (see `get_data_list()`) + + :result: + - item: + - cli_end_msg: + - valid_item: + """ + valid_input = False + foot_msg = "" + + while valid_input is False: + system('clear') + print(head_msg) + print(item_list['results_txt']) + print(foot_msg) + + user_input = input(CLI_MSG_ASK_IDX.format(item_list['max_id'])) + + if user_input.lower() == "q": + valid_input = True + valid_item = False + item = "" + + else: + try: + user_input = int(user_input) + + # Response not int(), re-ask + except ValueError: + foot_msg += CLI_MSG_ASK_ERR.format(user_input) + + else: + # Response is valid + if user_input <= item_list['max_id']: + valid_input = True + valid_item = True + item = item_list['results_list'][user_input] + + # Response not in range, re-ask + else: + foot_msg += CLI_MSG_ASK_ERR.format(user_input) + return { + 'item': item, + 'cli_end_msg': foot_msg, + 'valid_item': valid_item + } + + +def get_data_list(db_obj, sql): + """ + Gets data from DB & return them formated as a text list displayable on CLI + + :db_obj: a database object [PyMySQL] + :sql: a SQL query + + :Return: a dict containing details on requested data: + - max_id: maximum ID + - results_list: stored in a list of tuple (id, name, count) + - results_txt: in a string, text-formated + """ + + db_obj.execute(sql) + max_id = int(db_obj.cursor.rowcount - 1) + results_list = [(idx, val['name'], val['option'], val['id']) + for idx, val in enumerate(db_obj.result)] + + # Hacky results-split for rendering in 2 columns + res_even = [( + idx, + val['name'][:CLI_MAX_LEN].ljust(CLI_MAX_LEN), + val['option'], val['id'] + ) for idx, val in enumerate(db_obj.result) if idx % 2 == 0] + + res_uneven = [( + idx, + val['name'][:CLI_MAX_LEN], + val['option'], + val['id'] + ) for idx, val in enumerate(db_obj.result) if idx % 2 != 0] + + # category list + results_txt = "" + + if len(res_uneven) == 0 and len(res_even) > 0: + results_txt += "{} : {}\n".format( + res_even[0][0], + res_even[0][1] + ) + + else: + for num, unused in enumerate(res_uneven): + results_txt += CLI_ITEM_LIST.format( + res_even[num][0], + res_even[num][1], + res_uneven[num][0], + res_uneven[num][1] + ) + + if len(res_uneven) < len(res_even): + num += 1 + results_txt += "{} : {}\n".format( + res_even[num][0], + res_even[num][1] + ) + + return { + 'max_id': max_id, + 'results_list': results_list, + 'results_txt': results_txt + } + + +def start_init_menu(): + """ Ask for saved substitution or searching new one """ + LOCAL_DB.execute(DB_REQUEST['list_substituated_prod']) + + if LOCAL_DB.cursor.rowcount > 0: + menu_list = { + 'results_txt': CLI_MSG_INIT_MENU, + 'results_list': [False, True], + 'max_id': 1 + } + + # Ask for saved list or search new one + menu_asked = ask_user( + CLI_MSG_DISCLAIMER, + menu_list + ) + + # Shows saved list + if menu_asked['valid_item'] and menu_asked['item']: + cli_msg_subst_recap = CLI_MSG_SUBST_TITLE + CLI_MSG_SUBST_HEAD + + for row in LOCAL_DB.result: + cli_msg_subst_recap += CLI_MSG_SUBST_LIST.format( + pname=row['pname'][:CLI_MAX_LEN].center(CLI_MAX_LEN), + sname=row['sname'][:CLI_MAX_LEN].center(CLI_MAX_LEN), + ) + return (True, cli_msg_subst_recap) + + return (False, "") + + return (False, "Pas de substitutions enregistée") + + +# Starts a DB connection +LOCAL_DB = Db() + +################ +# INITIAL MENU # +################ +init_menu = start_init_menu() + +############################# +# LISTS SAVED SUBSTITUTIONS # +############################# +if init_menu[0]: + cli_end_msg = init_menu[1] + +#################### +# LISTS CATEGORIES # +#################### +else: + category_list = get_data_list( + LOCAL_DB, + DB_REQUEST['list_cat'] + ) + + head_msg = CLI_MSG_DISCLAIMER + head_msg += init_menu[1] + head_msg += CLI_MSG_CAT + + # Asks the user to select a category + category_asked = ask_user( + head_msg, + category_list + ) + + ################## + # LISTS PRODUCTS # + ################## + if category_asked['valid_item']: + product_list = get_data_list( + LOCAL_DB, + DB_REQUEST['list_prod'].format(category_asked['item'][3]) + ) + + head_msg = CLI_MSG_DISCLAIMER + head_msg += CLI_MSG_CHOOSEN_CAT.format(category_asked['item'][1]) + head_msg += CLI_MSG_PROD + + # Asks the user to select a product + product_asked = ask_user( + head_msg, + product_list + ) + + #################### + # LISTS SUBTITUTES # + #################### + if product_asked['valid_item']: + substitute_list = get_data_list( + LOCAL_DB, + DB_REQUEST['list_substitute'].format( + category_asked['item'][3], + product_asked['item'][2] + ) + ) + + head_msg = CLI_MSG_DISCLAIMER + head_msg += CLI_MSG_CHOOSEN_CAT.format(category_asked['item'][1]) + head_msg += CLI_MSG_CHOOSEN_PROD.format(product_asked['item'][1]) + head_msg += CLI_MSG_SUBST + + # No substitute found + if substitute_list['max_id'] == -1: + cli_end_msg = CLI_MSG_NO_SUBST.format( + product_asked['item'][1], + product_asked['item'][2] + ) + + # Asks the user to select a substitute + elif substitute_list['max_id'] >= 0: + substit_asked = ask_user( + head_msg, + substitute_list + ) + + ########################## + # SHOW SUBTITUTE DETAILS # + ########################## + if substit_asked['valid_item']: + LOCAL_DB.execute(DB_REQUEST['select_substitute'].format( + substit_asked['item'][3] + )) + + head_msg = CLI_MSG_DISCLAIMER +\ + CLI_MSG_CHOOSEN_CAT.format(substit_asked['item'][1]) + + backup_list = { + 'results_txt': CLI_MSG_DETAILLED_SUB.format( + code=LOCAL_DB.result[0]['code'], + nutri=LOCAL_DB.result[0]['nutrition_grades'], + url=LOCAL_DB.result[0]['url'] + ) + CLI_MSG_ASK_BAK.format( + substit_asked['item'][1], + product_asked['item'][1] + ), + 'results_list': [False, True], + 'max_id': 1 + } + + # Saves if user choose it + backup_asked = ask_user( + head_msg, + backup_list + ) + + if backup_asked['valid_item'] and backup_asked['item']: + LOCAL_DB.execute(DB_REQUEST['save_substitute'].format( + substit_asked['item'][3], + product_asked['item'][3] + )) + + if LOCAL_DB.cursor.rowcount == 1: + cli_end_msg = CLI_MSG_BAK_DONE + +print(cli_end_msg) diff --git a/openclassrooms-trainings/pytestdiscovering/config.py b/openclassrooms-trainings/pytestdiscovering/config.py new file mode 100644 index 0000000..9e80074 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/config.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-07-27 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +This file is part of [ocp5](https://github.com/freezed/ocp5) project +""" + +# API +FIELD_KEPT = { + 'product': [ + 'product_name', + 'nutrition_grades', + 'categories_tags' + ], + 'category': [ + '_id', + 'url', + 'product_name', + 'nutrition_grades', + 'categories_tags' + ] +} +API_URL_CAT = "https://fr.openfoodfacts.org/category/{}/{}.json" + +# CLI +DB_REQUEST = { + 'list_cat': "SELECT c.name, COUNT(*) AS 'option', c.id AS 'id' FROM category AS c JOIN product AS p ON p.category_id = c.id GROUP BY c.name ORDER BY COUNT(*) DESC;", + 'list_prod': "SELECT p.name, p.nutrition_grades AS 'option', p.id AS 'id' FROM product AS p LEFT JOIN category AS c ON p.category_id = c.id WHERE c.id = '{}' AND p.nutrition_grades IS NOT NULL AND p.substitute_id IS NULL;", + 'list_substitute': "SELECT p.name, p.nutrition_grades AS 'option', p.id AS 'id' FROM product AS p LEFT JOIN category AS c ON p.category_id = c.id WHERE c.id = '{}' AND p.nutrition_grades < '{}'", + 'select_substitute': "SELECT p.*, c.name FROM product AS p LEFT JOIN category AS c ON p.category_id = c.id WHERE p.id = '{}'", + 'save_substitute': "UPDATE product SET substitute_id={} WHERE id={}", + 'list_substituated_prod': "SELECT p.name AS pname, p.nutrition_grades AS pnutri, sub.name AS sname, sub.nutrition_grades AS snutri FROM product AS p LEFT JOIN category AS c ON p.category_id = c.id JOIN product AS sub ON sub.id = p.substitute_id WHERE p.substitute_id IS NOT NULL;", +} + +CLI_MAX_LEN = 30 +CLI_MSG_SUBST = "Substituts disponibles :\n" +CLI_MSG_QUIT = "\nAu revoir!" + + +CLI_ITEM_LIST = "{} : {} \t {} : {}\n" +CLI_MSG_INIT_MENU = CLI_MSG_SUBST + "Voulez vous les consulter?\n"\ + "\n\t0: non\n\t1: oui" +CLI_MSG_ASK_BAK = "Sauvegarder «{}»\nen substitut du produit «{}»?"\ + "\n\t0: non\n\t1: oui" +CLI_MSG_ASK_ERR = "\nSaisie incorrecte : «{}»" +CLI_MSG_ASK_IDX = "Index choisi [0-{}] :" +CLI_MSG_BAK_DONE = "\nSubstitut sauvegardé" + CLI_MSG_QUIT +CLI_MSG_CAT = "Catégories disponibles :\n" +CLI_MSG_CHOOSEN_CAT = "# # Categorie : [ {} ]\n" +CLI_MSG_CHOOSEN_PROD = "# Produits : [ {} ]\n" +CLI_MSG_DETAILLED_SUB = "Nutriscore [ {nutri} ]\tCode [ {code} ]"\ + "\nURL:{url}\n\n" +CLI_MSG_DISCLAIMER = "# # # Bienvenu sur PyOFF # # #\n\n" +CLI_MSG_NO_SUBST = "Pas de substitut trouvé pour le produit «{}»"\ + "(nutriscore : «{}»)" + CLI_MSG_QUIT +CLI_MSG_PROD = "Produits disponibles :\n" +CLI_MSG_SUBST_LIST = "{pname}\t{sname}\n" +CLI_MSG_SUBST_TITLE = "\n" + "# # SUBSTITUTIONS ENREGISTRÉES # #".center( + 2 * CLI_MAX_LEN +) + "\n" +CLI_MSG_SUBST_HEAD = "PRODUIT :".center(CLI_MAX_LEN) + \ + "SUBSTITUT :".center(CLI_MAX_LEN) + "\n" + + +# DATABASE +DB_CONFIG = { + 'host': 'localhost', + 'user': 'loff', + 'password': 'loff', + 'db': 'loff', + 'charset': 'utf8', + 'autocommit': True, + 'file': 'create-db-loff.sql' +} + +DB_MSG_TEMPLATE = { + "database": "DB «{}» contains these tables :", + "db_created": "DB «{}» created\n\n", + "tables": "{}\n", + "dashboard": "DB size : {dbsize}\nTable 'product' has «{rowprod}» " + "row(s)\nTable 'category' has «{rowcat}» row(s)" +} + +# POPULATE +POP_MSG_TEMPLATE = { + 'work': '\n# # # # # #\tC A T E G O R Y --[ {} ]--', + 'fetch': '\tFetching data over API…', + 'insert': '\tInserting data into DB…', + 'missing': '\t/!\\ [ {} ] do not exists /!\\', + # '': '', +} + +CATEGORY_LIST = [ + 'roti', + 'tourtes', + 'donuts', + 'boudoirs', + 'canards', + 'macarons', + 'gratins', + 'bouillons', + 'entrées', + 'barres chocolatées', + 'pizzas', +] diff --git a/openclassrooms-trainings/pytestdiscovering/create-db-loff.sql b/openclassrooms-trainings/pytestdiscovering/create-db-loff.sql new file mode 100644 index 0000000..4edb620 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/create-db-loff.sql @@ -0,0 +1,28 @@ +-- --------------------------------------------- +-- Creates a local DB to avoid requesting API -- +-- --------------------------------------------- + +CREATE DATABASE loff CHARACTER SET 'utf8'; +USE loff; + +CREATE TABLE category( + `id`INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, + `name` VARCHAR(200) UNIQUE + +)ENGINE=InnoDB; + +CREATE TABLE product( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, + `code` BIGINT UNSIGNED NOT NULL UNIQUE, + `url` VARCHAR(200), + `name` VARCHAR(200) UNIQUE, + `nutrition_grades` VARCHAR(1), + `category_id`INT UNSIGNED, + `substitute_id` INT UNSIGNED, + CONSTRAINT `fk_product_category` + FOREIGN KEY (category_id) REFERENCES category(id) + ON DELETE CASCADE, + CONSTRAINT `fk_product_substitute` + FOREIGN KEY (substitute_id) REFERENCES product(id) + ON DELETE SET NULL +)ENGINE=InnoDB; diff --git a/openclassrooms-trainings/pytestdiscovering/db.py b/openclassrooms-trainings/pytestdiscovering/db.py new file mode 100644 index 0000000..8704f14 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/db.py @@ -0,0 +1,222 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-07-26 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Connects DB, executes SQL statements +""" + +import pymysql.cursors +from config import DB_CONFIG, DB_MSG_TEMPLATE + + +class Db(): + """ + Manage DB class + + :Tests: + >>> expect = ["DB «loff» contains these tables :['category', 'product']",\ +"DB «loff» created"] + + >>> class_test = Db() + >>> class_test.message.splitlines()[0] in expect + True + """ + + def __init__(self): + """ Class initialiser """ + self.message = "" + self.result = list() + + # MYSQL server connexion, without DB selection + self.start_connexion(False) + + first_summary_run = self.db_summary() + # No DB, create it + if first_summary_run is False: + request_list = self.get_sql_from_file() + + if request_list is not False: + + for sql_request in request_list: + self.cursor.execute(sql_request + ';') + + self.message = DB_MSG_TEMPLATE['db_created'].format( + DB_CONFIG['db'] + ) + + second_summary_run = self.db_summary() + + if second_summary_run is False: + print('DB unknown error') + + else: + self.message += second_summary_run + + else: + self.message = first_summary_run + + def db_summary(self): + """ + Search DB, SHOW TABLES, get DB size and count rows in tables + + :return: False if DB not found, nothing otherwise (but sets messages) + + :Tests: + >>> expect = ["DB «loff» contains these tables \ +:['category', 'product']","DB «loff» created"] + + >>> Db.start_connexion(Db, with_db=False) + >>> Db.db_summary(Db).splitlines()[0] in expect + True + """ + db_not_found = True + self.cursor.execute("SHOW DATABASES") + db_list = self.cursor.fetchall() + + for idx, unused in enumerate(db_list): + + if DB_CONFIG['db'] in db_list[idx].values(): + db_not_found = False + self.cursor.execute("USE {}".format(DB_CONFIG['db'])) + + self.cursor.execute("SHOW TABLES") + tbl_list = self.cursor.fetchall() + + # Get size information on DB + self.cursor.execute(""" + SELECT table_schema "Full database", + CONCAT( + ROUND( + SUM(data_length + index_length) + / 1024 / 1024, 1), + " MB") "dbsize" + FROM information_schema.tables + WHERE table_schema = "loff" + GROUP BY table_schema + + UNION + + SELECT "Rows in 'product' table", COUNT(*) + FROM product + + UNION + + SELECT "Rows in 'category' table", COUNT(*) + FROM category; + """) + dashboard = self.cursor.fetchall() + + # Constructs DB information message + summary = DB_MSG_TEMPLATE['database'].format( + dashboard[0]['Full database']) + + summary += DB_MSG_TEMPLATE['tables'].format( + [val['Tables_in_loff'] for val in tbl_list]) + + summary += DB_MSG_TEMPLATE['dashboard'].format( + dbsize=dashboard[0]['dbsize'].decode("utf-8"), + rowprod=dashboard[1]['dbsize'].decode("utf-8"), + rowcat=dashboard[2]['dbsize'].decode("utf-8")) + + if db_not_found: + return False + + else: + return summary + + def execute(self, sql_request): + """ + Executes a request on DB + + :Tests: + >>> Db.start_connexion(Db, with_db=True) + >>> Db.execute(Db, 'SHOW TABLES') + 2 + >>> Db.result == [{'Tables_in_loff': 'category'}, \ +{'Tables_in_loff': 'product'}] + True + """ + # Connect to the database + self.start_connexion(self) + + response = self.cursor.execute(sql_request) + self.result = self.cursor.fetchall() + return response + + def get_sql_from_file(self, filename=DB_CONFIG['file']): + """ + Get the SQL instruction from a file + + :return: a list of each SQL query whithout the trailing ";" + + :Tests: + >>> Db.get_sql_from_file(Db, 'wronq_file.sql') + False + >>> Db.message + 'File load error : wronq_file.sql' + """ + from os import path + + # File did not exists + if path.isfile(filename) is False: + self.message = "File load error : {}".format(filename) + return False + + else: + with open(filename, "r") as sql_file: + # Split file in list + ret = sql_file.read().split(';') + # drop last empty entry + ret.pop() + return ret + + def start_connexion(self, with_db=True): + """ + Connect to MySQL Server + + :Tests: + >>> DB_CONFIG['user'] = 'bob' + >>> Db.start_connexion(Db, with_db=True) + OperationalError: «(1045, "Access denied for user 'bob'@'localhost' \ +(using password: YES)")» + + >>> DB_CONFIG['user'] = 'loff' + >>> DB_CONFIG['db'] = 'foobar' + >>> Db.start_connexion(Db, with_db=True) + OperationalError: «(1044, "Access denied for user 'loff'@'localhost' \ +to database 'foobar'")» + + """ + cnx_conf = { + 'host': DB_CONFIG['host'], + 'user': DB_CONFIG['user'], + 'password': DB_CONFIG['password'], + 'charset': DB_CONFIG['charset'], + 'autocommit': DB_CONFIG['autocommit'], + 'cursorclass': pymysql.cursors.DictCursor + } + + if with_db: + cnx_conf['db'] = DB_CONFIG['db'] + + try: + self.cnx = pymysql.connect(**cnx_conf) + self.cursor = self.cnx.cursor() + + # For "Access denied" errors + except pymysql.err.OperationalError as except_detail: + print("OperationalError: «{}»".format(except_detail)) + + def __del__(self): + """ Object destruction""" + self.cursor.close() + self.cnx.close() + + +if __name__ == "__main__": + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/pytestdiscovering/function.py b/openclassrooms-trainings/pytestdiscovering/function.py new file mode 100644 index 0000000..d6fc421 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/function.py @@ -0,0 +1,322 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-07-24 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Call Open Food Facts API to populate a local MariaDB/MySQL database with product data +This DB will serve an CLI client which gives alternative products with better +nurition grade. +""" +import json +import requests +from config import FIELD_KEPT, API_URL_CAT + + +def get_product(code, from_file=False): + """ + Call Open Food Facts API to get data of a single product + + """ + + ERR_FILE = "File load error : {}" + filename = 'sample/product-{}.json'.format(str(code)) + + try: + int(code) + + except ValueError: # as except_detail: + # print("Exception: «{}»".format(except_detail)) + print(ERR_FILE.format(filename)) + + else: + + if from_file: + from os import path + + # File did not exists + if path.isfile(filename) is False: + print(ERR_FILE.format(filename)) + status = 404 + product_json = {'status': 0} + + else: + with open(filename, "r") as json_file: + product_json = json.loads(json_file.read()) + status = 200 + + else: + + response = requests.get( + "https://fr.openfoodfacts.org/api/v0/product/{}.json".format(code) + ) + product_json = json.loads(response.text) + status = response.status_code + + if product_json['status'] and status == 200: + product_kept = { + 'code': code, + 'url': "https://fr.openfoodfacts.org/product/{}/".format(code) + } + + for field in FIELD_KEPT['product']: + product_kept[field] = product_json['product'][field] + + return product_kept + + else: + return False + + +def get_category(name, from_file=False): + """ + Call Open Food Facts API to get data of products in a single category + + :return: Dict filled with products & kept fields + + First try, TODO : + - work offline with local JSON + - need to get all the products of a category + + :Tests ONLINE: + >>> prod_false = get_category('1664') + >>> prod_false + False + + >>> prod_bles = get_category('blés') + + :Tests OFFLINE: + # >>> prod_bles = get_category('biscuits', True) + >>> prod_bles['category'] == 'biscuits' + True + + >>> 'count' in prod_bles + True + + >>> 'product_name' in prod_bles['products'][0] + True + + >>> 'nutrition_grades' in prod_bles['products'][0] + True + + >>> 'categories_tags' in prod_bles['products'][0] + True + + >>> get_category('wrong_file', True) + File load error : sample/category-wrong_file.json + False + + # >>> pprint.pprint(prod_bles) + """ + + if from_file: + from os import path + + filename = 'sample/category-{}.json'.format(str(name)) + # File did not exists + if path.isfile(filename) is False: + print("File load error : {}".format(filename)) + status = 404 + cat_json = {'count': 0} + + else: + with open(filename, "r") as json_file: + cat_json = json.loads(json_file.read()) + status = 200 + + # Requests over API + else: + page = 1 + response = requests.get(API_URL_CAT.format(str(name), page)) + cat_json = json.loads(response.text) + status = response.status_code + + # Gets data + if cat_json['count'] > 0: + # Defines dict it will be returned + staging_data = { + # 'count': cat_json['count'], + 'category': str(name), + 'products': [] + } + + # Counts pages of this category + total_pages = int(cat_json['count'] // cat_json['page_size']) + + if int(cat_json['count'] % cat_json['page_size']) > 0: + total_pages += 1 + + # Loops on data from 1st page + for idx, product_fields in enumerate(cat_json['products']): + staging_data['products'].append(dict()) + + for field in FIELD_KEPT['category']: + + if field in product_fields: + staging_data['products'][idx][field] = product_fields[field] + + else: + staging_data['products'][idx][field] = False + + # Gets data for all other pages + while page < total_pages: + # Requests next page over API + page += 1 + response = requests.get(API_URL_CAT.format(str(name), page)) + cat_json = json.loads(response.text) + idx = len(staging_data['products']) + + for product_fields in cat_json['products']: + staging_data['products'].append(dict()) + + for field in FIELD_KEPT['category']: + + if field in product_fields: + staging_data['products'][idx][field] = product_fields[field] + + else: + staging_data['products'][idx][field] = False + + idx += 1 + + print("\t\t[…finish page {}/{} - {} ids]".format(page, total_pages, idx)) + + return staging_data + + else: + return False + + +def false_to_null(sql_list): + """ Replacing nutrition_score="False" by nutrition_score=NULL """ + for idx, request in enumerate(sql_list): + if "False" in request: + sql_list[idx] = "{}NULL{}".format( + request[:request.find('False')-1], + request[request.find('False')+6:] + ) + return sql_list + + +def pick_category(cat_list): + """ + Picks only one category to associate the product in the local DB + + One of the shortest tag (without langage prefix) is taken. + For improvement it is a good place to adds more work here, like selecting + by langage prefix. + + :Tests: + >>> pick_category(['en:sugary-snacks', 'en:biscuits-and-cakes', \ +'en:biscuits']) + 'biscuits' + """ + if len(cat_list) > 1: + # get idx of the shortest tag + flip_list = [(len(cat), idx) for idx, cat in enumerate(cat_list)] + flip_list.sort() + + shortest_tag_idx = flip_list[0][1] + + return cat_list[shortest_tag_idx].split(":")[1] + + elif len(cat_list) == 1: + return cat_list[0].split(":")[1] + + else: + return False + + +def sql_generator(staging_data): + """ + Uses `staging_data` to generate SQL INSERT requests. + + :staging_data: dict() created with `get_product()` or `get_category()` + :return: list() of SQL requests + + :Tests: + >>> sql_generator(False) is False + True + + >>> bisc = {'count': 4377,'category':'biscuits','products':[{'_id':'8480000141323','categories_tags':['en:sugary-snacks','en:biscuits-and-cakes','en:biscuits'],'nutrition_grades':'e','product_name':'Galletas María Dorada Hacendado','url':'https://fr-en.openfoodfacts.org/product/8480000141323/galletas-maria-dorada-hacendado'},{'_id':'3593551174971','categories_tags':['en:sugary-snacks','en:biscuits-and-cakes','en:biscuits'],'nutrition_grades':'False','product_name':'Les Broyés du Poitou','url':'https://fr-en.openfoodfacts.org/product/3593551174971/les-broyes-du-poitou-les-mousquetaires'}]} + + >>> sql_list_bisc = sql_generator(bisc) + >>> sql_list_bisc[0] + "INSERT INTO category (`name`) VALUES ('biscuits');" + + >>> sql_list_bisc[1] + 'INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, `category_id`) SELECT "Galletas María Dorada Hacendado", "8480000141323", "https://fr-en.openfoodfacts.org/product/8480000141323/galletas-maria-dorada-hacendado", "e", id AS category_id FROM category WHERE name = "biscuits";' + + >>> sql_list_bisc[2] + 'INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, `category_id`) SELECT "Les Broyés du Poitou", "3593551174971", "https://fr-en.openfoodfacts.org/product/3593551174971/les-broyes-du-poitou-les-mousquetaires", NULL, id AS category_id FROM category WHERE name = "biscuits";' + + >>> oreo = {'categories_tags':['en:sugary-snacks','en:biscuits-and-cakes','en:biscuits','en:chocolate-biscuits','es:sandwich-cookies'],'code':'8410000810004','nutrition_grades':'e','product_name':'Biscuit Oreo', 'url':'https://fr.openfoodfacts.org/product/8410000810004/'} + >>> sql_list_oreo = sql_generator(oreo) + >>> sql_list_oreo[0] + "INSERT INTO category (`name`) VALUES ('biscuits');" + + >>> sql_list_oreo[1] + 'INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, `category_id`) SELECT "Biscuit Oreo", "8410000810004", "https://fr.openfoodfacts.org/product/8410000810004/", "e", id AS category_id FROM category WHERE name = "biscuits";' + + >>> oreo_nutri_null = {'categories_tags':['en:sugary-snacks','en:biscuits-and-cakes','en:biscuits','en:chocolate-biscuits','es:sandwich-cookies'],'code':'8410000810004','nutrition_grades':'False','product_name':'Biscuit Oreo', 'url':'https://fr.openfoodfacts.org/product/8410000810004/'} + >>> sql_list_oreo_nutri_null = sql_generator(oreo_nutri_null) + + >>> sql_list_oreo_nutri_null[1] + 'INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, `category_id`) SELECT "Biscuit Oreo", "8410000810004", "https://fr.openfoodfacts.org/product/8410000810004/", NULL, id AS category_id FROM category WHERE name = "biscuits";' + """ + + sql_list = [] + insert_cat = "INSERT INTO category (`name`) VALUES ('{}');" + insert_prod = """INSERT INTO product (`name`, `code`, `url`, `nutrition_grades`, `category_id`) \ +SELECT "{name}", "{code}", "{url}", "{nutri}", id AS category_id \ +FROM category \ +WHERE name = "{cat}";""" + + if staging_data is not False and 'category' in staging_data.keys(): + used_category = staging_data['category'] + + # insert category + sql_list.append(insert_cat.format(used_category)) + + # insert products + for idx, val in enumerate(staging_data['products']): + sql_list.append( + insert_prod.format( + code=val['_id'], + url=val['url'], + name=val['product_name'], + nutri=val['nutrition_grades'], + cat=used_category + ) + ) + + elif staging_data is not False and 'product_name' in staging_data.keys(): + used_category = pick_category(staging_data['categories_tags']) + + # insert category + sql_list.append(insert_cat.format(used_category)) + + sql_list.append( + insert_prod.format( + code=staging_data['code'], + url=staging_data['url'], + name=staging_data['product_name'], + nutri=staging_data['nutrition_grades'], + cat=used_category + ) + ) + + else: + sql_list = False + + if sql_list is not False: + sql_list = false_to_null(sql_list) + + return sql_list + + +if __name__ == "__main__": + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/pytestdiscovering/populate-db.py b/openclassrooms-trainings/pytestdiscovering/populate-db.py new file mode 100644 index 0000000..ac011f6 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/populate-db.py @@ -0,0 +1,63 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-08-02 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Populates local DB with data comming from Open Food Facts API + +:Tests: +>>> CATEGORY_LIST.append('falsecategory') + +""" +from random import choice +from os import system +import pymysql +from db import Db +from function import get_category, sql_generator +from config import DB_CONFIG, POP_MSG_TEMPLATE, CATEGORY_LIST + +system('clear') +local_db = Db() +print(local_db.message) + +for category in CATEGORY_LIST: + + print(POP_MSG_TEMPLATE['work'].format(category)) + print(POP_MSG_TEMPLATE['fetch']) + + # gets data + staging_data = get_category(category) + + # generates SQL + sql_list = sql_generator(staging_data) + + # executes SQL + print(POP_MSG_TEMPLATE['insert'].format(category)) + + if sql_list is False: + print(POP_MSG_TEMPLATE['missing'].format(category)) + + else: + for idx, sql in enumerate(sql_list): + + try: + response = local_db.cursor.execute(sql) + + # For warnings, do not catch "Data truncated…" as expected + except pymysql.err.Warning as except_detail: + response = "Warning: «{}»".format(except_detail) + + # Duplicate entry + except pymysql.err.IntegrityError as except_detail: + response = "0, {}".format(except_detail) + + except pymysql.err.ProgrammingError as except_detail: + response = "ProgrammingError: «{}»".format(except_detail) + + except pymysql.err.MySQLError as except_detail: + response = "MySQLError: «{}»".format(except_detail) + + print("\t{}. [{}…] | Affected rows : «{}»".format(idx, sql[87:100], response)) diff --git a/openclassrooms-trainings/pytestdiscovering/requirements.txt b/openclassrooms-trainings/pytestdiscovering/requirements.txt new file mode 100644 index 0000000..88ef263 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/requirements.txt @@ -0,0 +1,3 @@ +PyMySQL==0.9.2 +requests==2.11.1 +pytest==3.7.1 diff --git a/openclassrooms-trainings/pytestdiscovering/sample/categories.json b/openclassrooms-trainings/pytestdiscovering/sample/categories.json new file mode 100644 index 0000000..530e035 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/categories.json @@ -0,0 +1,88247 @@ +{ + "count": 14246, + "tags": [ + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-a-base-de-vegetaux", + "products": 32992, + "name": "Aliments et boissons à base de végétaux", + "id": "en:plant-based-foods-and-beverages" + }, + { + "products": 28252, + "name": "Aliments d'origine végétale", + "id": "en:plant-based-foods", + "url": "https://fr.openfoodfacts.org/categorie/aliments-d-origine-vegetale" + }, + { + "products": 21975, + "id": "en:beverages", + "name": "Boissons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q40050" + ], + "url": "https://fr.openfoodfacts.org/categorie/boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/snacks-sucres", + "id": "en:sugary-snacks", + "name": "Snacks sucrés", + "products": 17911 + }, + { + "products": 13012, + "name": "Boissons sans alcool", + "id": "en:non-alcoholic-beverages", + "url": "https://fr.openfoodfacts.org/categorie/boissons-sans-alcool" + }, + { + "products": 12397, + "name": "Produits laitiers", + "id": "en:dairies", + "url": "https://fr.openfoodfacts.org/categorie/produits-laitiers", + "sameAs": [ + "https://www.wikidata.org/wiki/Q185217" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3391775" + ], + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares", + "name": "Plats préparés", + "id": "en:meals", + "products": 11257 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-fruits-et-de-legumes", + "products": 10303, + "name": "Aliments à base de fruits et de légumes", + "id": "en:fruits-and-vegetables-based-foods" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-et-pommes-de-terre", + "id": "en:cereals-and-potatoes", + "name": "Céréales et pommes de terre", + "products": 9717 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-fermentes", + "products": 8282, + "id": "en:fermented-foods", + "name": "Produits fermentés" + }, + { + "products": 8278, + "id": "en:fermented-milk-products", + "name": "Produits laitiers fermentés", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3506176" + ], + "url": "https://fr.openfoodfacts.org/categorie/produits-laitiers-fermentes" + }, + { + "name": "Biscuits et gâteaux", + "id": "en:biscuits-and-cakes", + "products": 8159, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-et-gateaux" + }, + { + "id": "en:spreads", + "name": "Produits à tartiner", + "products": 7456, + "url": "https://fr.openfoodfacts.org/categorie/produits-a-tartiner" + }, + { + "products": 7302, + "name": "Viandes", + "id": "en:meats", + "url": "https://fr.openfoodfacts.org/categorie/viandes" + }, + { + "products": 6852, + "name": "Petit-déjeuners", + "id": "en:breakfasts", + "url": "https://fr.openfoodfacts.org/categorie/petit-dejeuners" + }, + { + "name": "Desserts", + "id": "en:desserts", + "products": 6775, + "url": "https://fr.openfoodfacts.org/categorie/desserts" + }, + { + "products": 6518, + "id": "en:cereals-and-their-products", + "name": "Céréales et dérivés", + "url": "https://fr.openfoodfacts.org/categorie/cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epicerie", + "products": 6143, + "id": "en:groceries", + "name": "Epicerie" + }, + { + "products": 5809, + "name": "Fruits et produits dérivés", + "id": "en:fruits-based-foods", + "url": "https://fr.openfoodfacts.org/categorie/fruits-et-produits-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/surgeles", + "products": 5569, + "id": "en:frozen-foods", + "name": "Surgelés" + }, + { + "products": 5529, + "id": "en:plant-based-beverages", + "name": "Boissons à base de végétaux", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-vegetaux" + }, + { + "id": "en:fresh-foods", + "name": "Frais", + "products": 5444, + "url": "https://fr.openfoodfacts.org/categorie/frais" + }, + { + "products": 5435, + "id": "en:canned-foods", + "name": "Conserves", + "url": "https://fr.openfoodfacts.org/categorie/conserves", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18396746" + ] + }, + { + "id": "en:cheeses", + "name": "Fromages", + "products": 5249, + "sameAs": [ + "https://www.wikidata.org/wiki/Q10943" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries", + "products": 4837, + "id": "en:prepared-meats", + "name": "Charcuteries" + }, + { + "products": 4510, + "id": "en:sweet-spreads", + "name": "Produits à tartiner sucrés", + "url": "https://fr.openfoodfacts.org/categorie/produits-a-tartiner-sucres" + }, + { + "id": "en:sugared-beverages", + "name": "Boissons sucrées", + "products": 4504, + "url": "https://fr.openfoodfacts.org/categorie/boissons-sucrees" + }, + { + "id": "en:biscuits", + "name": "Biscuits", + "products": 4381, + "url": "https://fr.openfoodfacts.org/categorie/biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats", + "name": "Chocolats", + "id": "en:chocolates", + "products": 4353 + }, + { + "products": 4054, + "name": "Confiseries", + "id": "en:confectioneries", + "url": "https://fr.openfoodfacts.org/categorie/confiseries" + }, + { + "products": 3984, + "name": "Sauces", + "id": "en:sauces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q178359" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/matieres-grasses", + "products": 3940, + "name": "Matières grasses", + "id": "en:fats" + }, + { + "products": 3822, + "name": "Légumes et dérivés", + "id": "en:vegetables-based-foods", + "url": "https://fr.openfoodfacts.org/categorie/legumes-et-derives", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11004" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-de-la-mer", + "products": 3745, + "id": "en:seafood", + "name": "Produits de la mer" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q154" + ], + "url": "https://fr.openfoodfacts.org/categorie/boissons-alcoolisees", + "products": 3706, + "name": "Boissons alcoolisées", + "id": "en:alcoholic-beverages" + }, + { + "products": 3612, + "name": "Pâtes à tartiner végétales", + "id": "en:plant-based-spreads", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-aux-fruits", + "name": "Boissons aux fruits", + "id": "en:fruit-based-beverages", + "products": 3592 + }, + { + "products": 3371, + "name": "Snacks salés", + "id": "en:salty-snacks", + "url": "https://fr.openfoodfacts.org/categorie/snacks-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/meat-based-products", + "products": 2985, + "name": "Meat-based products", + "id": "en:meat-based-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aperitif", + "id": "en:appetizers", + "name": "Apéritif", + "products": 2913 + }, + { + "products": 2866, + "name": "Boissons non sucrées", + "id": "en:non-sugared-beverages", + "url": "https://fr.openfoodfacts.org/categorie/boissons-non-sucrees" + }, + { + "products": 2808, + "name": "Poissons", + "id": "en:fishes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q600396" + ], + "url": "https://fr.openfoodfacts.org/categorie/poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-et-marmelades", + "id": "en:fruit-preserves", + "name": "Confitures et marmelades", + "products": 2750 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-et-nectars", + "products": 2729, + "id": "en:juices-and-nectars", + "name": "Jus et nectars" + }, + { + "id": "en:canned-plant-based-foods", + "name": "Aliments à base de plantes en conserve", + "products": 2679, + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-plantes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13317" + ], + "products": 2666, + "id": "en:yogurts", + "name": "Yaourts" + }, + { + "products": 2663, + "id": "en:cakes", + "name": "Gâteaux", + "url": "https://fr.openfoodfacts.org/categorie/gateaux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13276" + ] + }, + { + "products": 2592, + "name": "Jus et nectars de fruits", + "id": "en:fruit-juices-and-nectars", + "url": "https://fr.openfoodfacts.org/categorie/jus-et-nectars-de-fruits" + }, + { + "id": "en:meals-with-meat", + "name": "Plats à base de viande", + "products": 2544, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande" + }, + { + "id": "en:jams", + "name": "Confitures", + "products": 2467, + "url": "https://fr.openfoodfacts.org/categorie/confitures", + "sameAs": [ + "https://www.wikidata.org/wiki/Q8752059" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/condiments", + "name": "Condiments", + "id": "en:condiments", + "products": 2388 + }, + { + "name": "Confitures de fruits", + "id": "en:fruit-jams", + "products": 2284, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits" + }, + { + "id": "en:cow-cheeses", + "name": "Fromages de vache", + "products": 2206, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3088299" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-vache" + }, + { + "id": "en:dried-products", + "name": "Produits déshydratés", + "products": 2132, + "url": "https://fr.openfoodfacts.org/categorie/produits-deshydrates" + }, + { + "name": "Jus de fruits", + "id": "en:fruit-juices", + "products": 2129, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7802" + ], + "products": 2086, + "name": "Pains", + "id": "en:breads" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alimentaires", + "sameAs": [ + "https://www.wikidata.org/wiki/Q178" + ], + "products": 2064, + "id": "en:pastas", + "name": "Pâtes alimentaires" + }, + { + "products": 1938, + "name": "Plats préparés à réchauffer au micro-ondes", + "id": "en:microwave-meals", + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-au-micro-ondes" + }, + { + "products": 1900, + "name": "Boissons chaudes", + "id": "en:hot-beverages", + "url": "https://fr.openfoodfacts.org/categorie/boissons-chaudes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19359564" + ] + }, + { + "products": 1867, + "id": "en:dark-chocolates", + "name": "Chocolats noirs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2366206" + ], + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-tartiner-sales", + "name": "Produits à tartiner salés", + "id": "en:salted-spreads", + "products": 1837 + }, + { + "products": 1825, + "name": "Céréales pour petit-déjeuner", + "id": "en:breakfast-cereals", + "url": "https://fr.openfoodfacts.org/categorie/cereales-pour-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-pasteurises", + "id": "en:pasteurized-cheeses", + "name": "Fromages pasteurisés", + "products": 1815 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2223649" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-france", + "products": 1797, + "name": "Fromages de France", + "id": "en:french-cheeses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q8495" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits", + "name": "Laits", + "id": "en:milks", + "products": 1755 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2995529" + ], + "url": "https://fr.openfoodfacts.org/categorie/graines", + "products": 1718, + "name": "Graines", + "id": "en:seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumineuses-et-derives", + "products": 1715, + "id": "en:legumes-and-their-products", + "name": "Légumineuses et dérivés" + }, + { + "products": 1662, + "name": "Édulcorants", + "id": "en:sweeteners", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4368298" + ], + "url": "https://fr.openfoodfacts.org/categorie/edulcorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-en-conserve", + "products": 1648, + "name": "Légumes en conserve", + "id": "en:canned-vegetables" + }, + { + "name": "Desserts glacés", + "id": "en:frozen-desserts", + "products": 1638, + "url": "https://fr.openfoodfacts.org/categorie/desserts-glaces" + }, + { + "name": "Biscuits au chocolat", + "id": "en:chocolate-biscuits", + "products": 1623, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chocolat" + }, + { + "products": 1610, + "name": "Bonbons", + "id": "en:candies", + "sameAs": [ + "https://www.wikidata.org/wiki/Q185583" + ], + "url": "https://fr.openfoodfacts.org/categorie/bonbons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-gazeuses", + "name": "Boissons gazeuses", + "id": "en:carbonated-drinks", + "products": 1598 + }, + { + "products": 1576, + "id": "en:nuts-and-their-products", + "name": "Fruits à coques et dérivés", + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coques-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q170486" + ], + "products": 1563, + "name": "Jambons", + "id": "en:hams" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-d-elevages", + "id": "en:farming-products", + "name": "Produits d'élevages", + "products": 1556 + }, + { + "products": 1520, + "name": "Vins", + "id": "en:wines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q282" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins" + }, + { + "name": "Plats préparés surgelés", + "id": "en:frozen-ready-made-meals", + "products": 1460, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-et-sorbets", + "products": 1459, + "id": "en:ice-creams-and-sorbets", + "name": "Glaces et sorbets" + }, + { + "id": "en:chips-and-fries", + "name": "Chips et frites", + "products": 1435, + "url": "https://fr.openfoodfacts.org/categorie/chips-et-frites" + }, + { + "name": "Bières", + "id": "en:beers", + "products": 1431, + "url": "https://fr.openfoodfacts.org/categorie/bieres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q44" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-plantes-frais", + "name": "Aliments à base de plantes frais", + "id": "en:fresh-plant-based-foods", + "products": 1381 + }, + { + "name": "Confiseries chocolatées", + "id": "en:chocolate-candies", + "products": 1340, + "url": "https://fr.openfoodfacts.org/categorie/confiseries-chocolatees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes", + "products": 1338, + "id": "en:dairy-desserts", + "name": "Desserts lactés" + }, + { + "products": 1337, + "name": "Plats préparés frais", + "id": "en:fresh-meals", + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-frais" + }, + { + "id": "en:milk-chocolates", + "name": "Chocolats au lait", + "products": 1331, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2164820" + ], + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes", + "products": 1310, + "name": "Soupes", + "id": "en:soups" + }, + { + "id": "en:pastries", + "name": "Pâtisseries", + "products": 1288, + "url": "https://fr.openfoodfacts.org/categorie/patisseries" + }, + { + "name": "Légumes frais", + "id": "en:fresh-vegetables", + "products": 1263, + "url": "https://fr.openfoodfacts.org/categorie/legumes-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/matieres-grasses-vegetales", + "products": 1258, + "id": "en:vegetable-fats", + "name": "Matières grasses végétales" + }, + { + "id": "en:crisps", + "name": "Chips", + "products": 1244, + "url": "https://fr.openfoodfacts.org/categorie/chips" + }, + { + "name": "Volailles", + "id": "en:poultries", + "products": 1241, + "url": "https://fr.openfoodfacts.org/categorie/volailles" + }, + { + "products": 1238, + "id": "en:artificially-sweetened-beverages", + "name": "Boissons édulcorées", + "url": "https://fr.openfoodfacts.org/categorie/boissons-edulcorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q147538" + ], + "products": 1233, + "name": "Sodas", + "id": "en:sodas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-seches", + "products": 1220, + "id": "en:dry-pasta", + "name": "Pâtes sèches" + }, + { + "products": 1220, + "id": "en:compotes", + "name": "Compotes", + "url": "https://fr.openfoodfacts.org/categorie/compotes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q635999" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-en-conserve", + "name": "Poissons en conserve", + "id": "en:canned-fishes", + "products": 1183 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-pour-bebe", + "sameAs": [ + "https://www.wikidata.org/wiki/Q797971" + ], + "id": "en:baby-foods", + "name": "Aliments pour bébé", + "products": 1172 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q630531" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-francais", + "name": "Vins français", + "id": "en:wines-from-france", + "products": 1107 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions", + "sameAs": [ + "https://www.wikidata.org/wiki/Q379932" + ], + "name": "Infusions", + "id": "en:herbal-teas", + "products": 1101 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viennoiseries", + "id": "en:viennoiseries", + "name": "Viennoiseries", + "products": 1101 + }, + { + "id": "en:crackers", + "name": "Biscuits apéritifs", + "products": 1082, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs" + }, + { + "products": 1079, + "name": "Yaourts aux fruits", + "id": "en:fruit-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits" + }, + { + "products": 1070, + "name": "Produits lyophilisés à reconstituer", + "id": "en:dried-products-to-be-rehydrated", + "url": "https://fr.openfoodfacts.org/categorie/produits-lyophilises-a-reconstituer" + }, + { + "products": 1063, + "name": "Aliments à base de plantes séchées", + "id": "en:dried-plant-based-foods", + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-plantes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-en-conserve", + "products": 1039, + "id": "en:canned-meals", + "name": "Plats préparés en conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-de-la-ruche", + "products": 1039, + "id": "en:bee-products", + "name": "Produits de la ruche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-rouges", + "name": "Confitures de fruits rouges", + "id": "en:berry-jams", + "products": 1022 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-en-grains", + "products": 1021, + "id": "en:cereal-grains", + "name": "Céréales en grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13233" + ], + "products": 1004, + "id": "en:ice-creams", + "name": "Glaces" + }, + { + "products": 994, + "name": "Plats à base de poisson", + "id": "en:meals-with-fish", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-poisson" + }, + { + "products": 994, + "name": "Flocons", + "id": "en:flakes", + "url": "https://fr.openfoodfacts.org/categorie/flocons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-cereales", + "id": "en:cereal-flakes", + "name": "Flocons de céréales", + "products": 992 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-volaille", + "id": "en:poultry-meals", + "name": "Plats à base de volaille", + "products": 990 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-blancs", + "products": 989, + "id": "en:white-hams", + "name": "Jambons blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4739805" + ], + "id": "en:vegetable-oils", + "name": "Huiles", + "products": 974 + }, + { + "products": 957, + "id": "en:squeezed-juices", + "name": "Jus de fruits 100% pur jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-100-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/refrigeres", + "products": 956, + "name": "Réfrigérés", + "id": "en:refrigerated-foods" + }, + { + "name": "Miels", + "id": "en:honeys", + "products": 950, + "url": "https://fr.openfoodfacts.org/categorie/miels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q28803" + ], + "id": "en:sandwiches", + "name": "Sandwichs", + "products": 949 + }, + { + "products": 928, + "name": "Sirops", + "id": "en:syrups", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6584340" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops" + }, + { + "name": "Pâtés à tartiner végétaux", + "id": "en:plant-based-pates", + "products": 921, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-vegetaux" + }, + { + "products": 917, + "name": "Produits de l'olivier", + "id": "en:olive-tree-products", + "sameAs": [ + "https://www.wikidata.org/wiki/Q37083" + ], + "url": "https://fr.openfoodfacts.org/categorie/produits-de-l-olivier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3272827" + ], + "products": 913, + "name": "Bonbons de chocolat", + "id": "en:bonbons" + }, + { + "id": "en:spreadable-fats", + "name": "Matières grasses à tartiner", + "products": 889, + "url": "https://fr.openfoodfacts.org/categorie/matieres-grasses-a-tartiner" + }, + { + "products": 884, + "name": "Fruits à coques", + "id": "en:nuts", + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coques", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11009" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-refrigeres", + "name": "Plats préparés réfrigérés", + "id": "en:refrigerated-meals", + "products": 882 + }, + { + "id": "en:chickens", + "name": "Poulets", + "products": 875, + "url": "https://fr.openfoodfacts.org/categorie/poulets" + }, + { + "id": "en:fruits", + "name": "Fruits", + "products": 874, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1364" + ], + "url": "https://fr.openfoodfacts.org/categorie/fruits" + }, + { + "name": "Légumineuses en conserve", + "id": "en:canned-legumes", + "products": 874, + "url": "https://fr.openfoodfacts.org/categorie/legumineuses-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-et-viandes-et-oeufs", + "name": "Poissons et viandes et oeufs", + "id": "en:fish-and-meat-and-eggs", + "products": 872 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q8486" + ], + "url": "https://fr.openfoodfacts.org/categorie/cafes", + "products": 871, + "name": "Cafés", + "id": "en:coffees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons", + "products": 850, + "id": "fr:saucissons", + "name": "Saucissons" + }, + { + "products": 844, + "id": "en:pasta-dishes", + "name": "Plats préparés à base de pâtes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18679685" + ], + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-base-de-pates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-secs", + "products": 822, + "id": "en:dried-fruits", + "name": "Fruits secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres", + "products": 819, + "name": "Barres", + "id": "en:bars" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q618345" + ], + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-pomme", + "name": "Compotes de pomme", + "id": "en:apple-compotes", + "products": 816 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q145909" + ], + "url": "https://fr.openfoodfacts.org/categorie/legumineuses", + "id": "en:legumes", + "name": "Légumineuses", + "products": 816 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3596097" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomate", + "name": "Sauces tomate", + "id": "en:tomato-sauces", + "products": 792 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses", + "products": 788, + "name": "Saucisses", + "id": "en:sausages" + }, + { + "products": 774, + "name": "Pizzas", + "id": "en:pizzas-pies-and-quiches", + "url": "https://fr.openfoodfacts.org/categorie/pizzas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-flocons-de-cereales", + "id": "en:mixed-cereal-flakes", + "name": "Mélanges de flocons de céréales", + "products": 766 + }, + { + "name": "Mueslis", + "id": "en:mueslis", + "products": 763, + "url": "https://fr.openfoodfacts.org/categorie/mueslis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-sables", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2915670" + ], + "id": "fr:biscuits-sables", + "name": "Biscuits sablés", + "products": 756 + }, + { + "name": "Epices", + "id": "en:spices", + "products": 742, + "url": "https://fr.openfoodfacts.org/categorie/epices", + "sameAs": [ + "https://www.wikidata.org/wiki/Q42527" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickles", + "name": "Pickles", + "id": "en:pickles", + "products": 735 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q173265" + ], + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre", + "products": 729, + "id": "en:potato-crisps", + "name": "Chips de pommes de terre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q283" + ], + "url": "https://fr.openfoodfacts.org/categorie/eaux", + "products": 729, + "name": "Eaux", + "id": "en:waters" + }, + { + "products": 727, + "id": "en:plant-based-pickles", + "name": "Pickles d'origine végétale", + "url": "https://fr.openfoodfacts.org/categorie/pickles-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porc", + "name": "Porc", + "id": "en:pork", + "products": 715 + }, + { + "products": 706, + "name": "Foies gras", + "id": "en:foies-gras", + "url": "https://fr.openfoodfacts.org/categorie/foies-gras", + "sameAs": [ + "https://www.wikidata.org/wiki/Q34807" + ] + }, + { + "products": 704, + "name": "Légumes préparés", + "id": "en:prepared-vegetables", + "url": "https://fr.openfoodfacts.org/categorie/legumes-prepares" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1256296" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-molle-a-croute-fleurie", + "id": "en:soft-cheeses-with-bloomy-rind", + "name": "Fromages à pâte molle à croûte fleurie", + "products": 703 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-labellises", + "id": "en:labeled-products", + "name": "Produits labellisés", + "products": 696 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q917574" + ], + "products": 694, + "name": "Brioches", + "id": "en:brioches" + }, + { + "products": 683, + "id": "en:stuffed-pastas", + "name": "Pâtes farcies", + "url": "https://fr.openfoodfacts.org/categorie/pates-farcies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-fumes", + "products": 680, + "name": "Poissons fumés", + "id": "en:smoked-fishes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-et-derives", + "sameAs": [ + "https://www.wikidata.org/wiki/Q23501" + ], + "products": 678, + "name": "Tomates et dérivés", + "id": "en:tomatoes-and-tomato-products" + }, + { + "products": 675, + "name": "Soupes de légumes", + "id": "en:vegetable-soups", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes" + }, + { + "products": 671, + "name": "Matières grasses animales", + "id": "en:animal-fats", + "url": "https://fr.openfoodfacts.org/categorie/matieres-grasses-animales", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1423543" + ] + }, + { + "products": 670, + "id": "en:salmons", + "name": "Saumons", + "url": "https://fr.openfoodfacts.org/categorie/saumons" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1472481" + ], + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner", + "name": "Pâtes à tartiner", + "id": "fr:pates-a-tartiner", + "products": 657 + }, + { + "products": 653, + "name": "Bœuf", + "id": "en:beef", + "url": "https://fr.openfoodfacts.org/categorie/boeuf", + "sameAs": [ + "https://www.wikidata.org/wiki/Q192628" + ] + }, + { + "products": 650, + "id": "en:flavoured-syrups", + "name": "Sirops aromatisés", + "url": "https://fr.openfoodfacts.org/categorie/sirops-aromatises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5458204" + ] + }, + { + "id": "en:teas", + "name": "Thés", + "products": 649, + "url": "https://fr.openfoodfacts.org/categorie/thes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6097" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-bovine", + "products": 647, + "id": "en:beef-dishes", + "name": "Plats à base de viande bovine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/milkfat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q909729" + ], + "name": "Milkfat", + "id": "en:milkfat", + "products": 638 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q34172" + ], + "name": "Beurres", + "id": "en:butters", + "products": 635 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard", + "products": 624, + "id": "en:foies-gras-from-ducks", + "name": "Foies gras de canard" + }, + { + "products": 624, + "name": "Gâteaux au chocolat", + "id": "en:chocolate-cakes", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q30186" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-panes", + "name": "Produits panés", + "id": "en:breaded-products", + "products": 607 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-composees", + "id": "en:prepared-salads", + "name": "Salades composées", + "products": 599 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz", + "sameAs": [ + "https://www.wikidata.org/wiki/Q161426" + ], + "name": "Riz", + "id": "en:rices", + "products": 593 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-artisanaux", + "id": "en:artisan-products", + "name": "Produits artisanaux", + "products": 592 + }, + { + "name": "Yaourts sucrés", + "id": "en:sweetened-yogurts", + "products": 588, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sucres" + }, + { + "products": 580, + "id": "en:cooked-pressed-cheeses", + "name": "Fromages à pâte pressée cuite", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3088330" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-pressee-cuite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-poulet", + "products": 580, + "id": "en:meals-with-chicken", + "name": "Plats à base de poulet" + }, + { + "products": 568, + "name": "Thons", + "id": "en:tunas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2346039" + ], + "url": "https://fr.openfoodfacts.org/categorie/thons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-d-oiseau", + "sameAs": [ + "https://www.wikidata.org/wiki/Q659503" + ], + "name": "Œufs d'oiseau", + "id": "en:bird-eggs", + "products": 567 + }, + { + "products": 566, + "id": "en:pork-meals", + "name": "Plats à base de viande porcine", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-porcine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-legumineuses", + "products": 563, + "id": "en:legume-seeds", + "name": "Graines de légumineuses" + }, + { + "id": "en:italian-cheeses", + "name": "Fromages italiens", + "products": 561, + "url": "https://fr.openfoodfacts.org/categorie/fromages-italiens" + }, + { + "products": 552, + "id": "en:fish-fillets", + "name": "Filets de poissons", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poissons" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1781317" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange", + "products": 547, + "name": "Jus d'orange", + "id": "en:orange-juices" + }, + { + "products": 545, + "name": "Eaux de sources", + "id": "en:spring-waters", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3046697" + ], + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-sources" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q93189" + ], + "products": 541, + "id": "en:eggs", + "name": "Œufs" + }, + { + "products": 538, + "id": "en:pulses", + "name": "Légumes secs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2727662" + ], + "url": "https://fr.openfoodfacts.org/categorie/legumes-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q208600" + ], + "id": "en:sardines", + "name": "Sardines", + "products": 537 + }, + { + "products": 536, + "id": "en:frozen-plant-based-foods", + "name": "Aliments à base de plantes surgelés", + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-plantes-surgeles" + }, + { + "id": "en:plant-based-meals", + "name": "Plats préparés d'origine végétale", + "products": 534, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-chair-de-poisson", + "products": 534, + "name": "Préparations à base de chair de poisson", + "id": "en:preparations-made-from-fish-meat" + }, + { + "products": 530, + "name": "Substitut du lait", + "id": "en:milk-substitute", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1626970" + ], + "url": "https://fr.openfoodfacts.org/categorie/substitut-du-lait" + }, + { + "id": "en:industrial-cheese", + "name": "Fromages industriels", + "products": 528, + "url": "https://fr.openfoodfacts.org/categorie/fromages-industriels" + }, + { + "id": "en:plant-milks", + "name": "Boissons végétales", + "products": 526, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2640574" + ], + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q131748" + ], + "url": "https://fr.openfoodfacts.org/categorie/moutardes", + "products": 519, + "id": "en:mustards", + "name": "Moutardes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees", + "name": "Crèmes glacées", + "id": "en:ice-cream-tubs", + "products": 518 + }, + { + "products": 516, + "id": "en:dairy-drinks", + "name": "Boissons lactées", + "url": "https://fr.openfoodfacts.org/categorie/boissons-lactees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-en-conserve", + "products": 512, + "name": "Sardines en conserve", + "id": "en:canned-sardines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-de-noel", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5876127" + ], + "name": "Aliments et boissons de Noël", + "id": "en:christmas-foods-and-drinks", + "products": 508 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q13228" + ], + "url": "https://fr.openfoodfacts.org/categorie/cremes", + "id": "en:creams", + "name": "Crèmes", + "products": 506 + }, + { + "id": "en:lagers", + "name": "Bières blondes", + "products": 505, + "url": "https://fr.openfoodfacts.org/categorie/bieres-blondes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2792509" + ] + }, + { + "id": "", + "name": "", + "products": 490, + "sameAs": [ + "https://www.wikidata.org/wiki/Q35855322" + ], + "url": "https://fr.openfoodfacts.org/categorie/" + }, + { + "id": "en:smoked-salmons", + "name": "Saumons fumés", + "products": 483, + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes" + }, + { + "name": "Desserts au chocolat", + "id": "en:chocolate-desserts", + "products": 482, + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive", + "sameAs": [ + "https://www.wikidata.org/wiki/Q93165" + ], + "name": "Huiles d'olive", + "id": "en:olive-oils", + "products": 482 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-condimentaires", + "products": 480, + "name": "Plantes condimentaires", + "id": "en:culinary-plants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble", + "id": "en:wheat-pasta", + "name": "Pâtes de blé", + "products": 480 + }, + { + "products": 476, + "name": "Madeleines", + "id": "en:madeleines", + "url": "https://fr.openfoodfacts.org/categorie/madeleines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q604408" + ] + }, + { + "name": "Fromages au lait cru", + "id": "en:unpasteurised-cheeses", + "products": 476, + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-lait-cru", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3088297" + ] + }, + { + "name": "Chips de pommes de terre à l'huile de tournesol", + "id": "en:potato-crisps-in-sunflower-oil", + "products": 474, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-a-l-huile-de-tournesol" + }, + { + "name": "Tartes", + "id": "en:pies", + "products": 471, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1142483" + ], + "url": "https://fr.openfoodfacts.org/categorie/tartes" + }, + { + "products": 465, + "name": "Nectars de fruits", + "id": "en:fruit-nectars", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-fruits" + }, + { + "id": "en:artisanal-spirits", + "name": "Alcools artisanaux", + "products": 463, + "url": "https://fr.openfoodfacts.org/categorie/alcools-artisanaux" + }, + { + "products": 463, + "name": "Crêpes et galettes", + "id": "en:crepes-and-galettes", + "url": "https://fr.openfoodfacts.org/categorie/crepes-et-galettes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1827" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-rouges", + "name": "Vins rouges", + "id": "en:red-wines", + "products": 461 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur", + "name": "Pâtes de blé dur", + "id": "en:durum-wheat-pasta", + "products": 452 + }, + { + "products": 449, + "name": "Vinaigres", + "id": "en:vinegars", + "sameAs": [ + "https://www.wikidata.org/wiki/Q41354" + ], + "url": "https://fr.openfoodfacts.org/categorie/vinaigres" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1754566" + ], + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-chocolat", + "id": "en:chocolate-spreads", + "name": "Pâtes à tartiner au chocolat", + "products": 447 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-crus", + "id": "fr:jambons-crus", + "name": "Jambons crus", + "products": 441 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-gelifies", + "products": 436, + "name": "Bonbons gélifiés", + "id": "en:gelified-candies" + }, + { + "products": 434, + "name": "Jus multifruits", + "id": "en:multifruit-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q134152" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie", + "products": 434, + "id": "en:sliced-breads", + "name": "Pains de mie" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1621080" + ], + "url": "https://fr.openfoodfacts.org/categorie/olives", + "id": "en:olives", + "name": "Olives", + "products": 431 + }, + { + "products": 430, + "name": "Fromages labellisés", + "id": "en:labeled-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-labellises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines", + "products": 429, + "id": "en:flours", + "name": "Farines" + }, + { + "products": 428, + "id": "en:sorbets", + "name": "Sorbets", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13302" + ], + "url": "https://fr.openfoodfacts.org/categorie/sorbets" + }, + { + "name": "Yaourts natures", + "id": "en:plain-yogurts", + "products": 425, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-natures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches", + "name": "Viandes fraîches", + "id": "en:fresh-meats", + "products": 423 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-chevre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q198815" + ], + "name": "Fromages de chèvre", + "id": "en:goat-cheeses", + "products": 422 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-pressee-non-cuite", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2213488" + ], + "products": 419, + "name": "Fromages à pâte pressée non cuite", + "id": "en:uncooked-pressed-cheeses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/complements-alimentaires", + "sameAs": [ + "https://www.wikidata.org/wiki/Q645858" + ], + "name": "Compléments alimentaires", + "id": "en:dietary-supplements", + "products": 419 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q178921" + ], + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales", + "name": "Eaux minérales", + "id": "en:mineral-waters", + "products": 417 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert", + "products": 416, + "name": "Crèmes dessert", + "id": "en:dessert-creams" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-noisettes", + "products": 414, + "id": "en:hazelnut-spreads", + "name": "Pâtes à tartiner aux noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-chocolat", + "products": 414, + "name": "Céréales au chocolat", + "id": "en:chocolate-cereals" + }, + { + "products": 413, + "name": "Légumes surgelés", + "id": "en:frozen-vegetables", + "url": "https://fr.openfoodfacts.org/categorie/legumes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-pates", + "products": 412, + "name": "Sauces pour pâtes", + "id": "en:pasta-sauces" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q134041" + ], + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-cola", + "products": 412, + "id": "en:colas", + "name": "Sodas au cola" + }, + { + "id": "en:leaf-vegetables", + "name": "Légumes-feuilles", + "products": 409, + "url": "https://fr.openfoodfacts.org/categorie/legumes-feuilles" + }, + { + "products": 409, + "id": "fr:fromages-blancs", + "name": "Fromages blancs", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15080546" + ] + }, + { + "name": "Bières artisanales", + "id": "en:craft-beers", + "products": 408, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2905030" + ], + "url": "https://fr.openfoodfacts.org/categorie/bieres-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-aoc", + "name": "Fromages AOC", + "id": "en:aoc-cheeses", + "products": 407 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q11175039" + ], + "url": "https://fr.openfoodfacts.org/categorie/terrines", + "products": 407, + "name": "Terrines", + "id": "en:terrine" + }, + { + "name": "Charcuteries cuites", + "id": "fr:charcuteries-cuites", + "products": 403, + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-cuites" + }, + { + "id": "en:cookies", + "name": "Cookies", + "products": 402, + "url": "https://fr.openfoodfacts.org/categorie/cookies", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13266" + ] + }, + { + "id": "en:waffles", + "name": "Gaufres", + "products": 397, + "url": "https://fr.openfoodfacts.org/categorie/gaufres" + }, + { + "products": 394, + "id": "en:extra-virgin-olive-oils", + "name": "Huiles d'olive vierges extra", + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-vierges-extra" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-diverses", + "products": 390, + "name": "Charcuteries diverses", + "id": "fr:charcuteries-diverses" + }, + { + "id": "en:apple-juices", + "name": "Jus de pomme", + "products": 389, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme", + "sameAs": [ + "https://www.wikidata.org/wiki/Q618355" + ] + }, + { + "id": "en:pizzas", + "name": "Pizzas", + "products": 388, + "url": "https://fr.openfoodfacts.org/categorie/pizzas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q177" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-francaises", + "id": "en:french-beers", + "name": "Bières françaises", + "products": 387 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-tartes-salees-et-quiches", + "products": 381, + "id": "fr:pizzas-tartes-salees-et-quiches", + "name": "Pizzas-tartes-salees-et-quiches" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q11002" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres", + "id": "en:sugars", + "name": "Sucres", + "products": 376 + }, + { + "products": 375, + "id": "en:canned-tunas", + "name": "Thons en conserve", + "url": "https://fr.openfoodfacts.org/categorie/thons-en-conserve" + }, + { + "id": "en:frozen-pizzas-and-pies", + "name": "Pizzas et tartes surgelées", + "products": 375, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-et-tartes-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q167893" + ], + "products": 373, + "name": "Mayonnaises", + "id": "en:mayonnaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile", + "sameAs": [ + "https://www.wikidata.org/wiki/Q297296" + ], + "name": "Sardines à l'huile", + "id": "en:sardines-in-oil", + "products": 372 + }, + { + "products": 364, + "id": "en:stirred-yogurts", + "name": "Yaourts brassés", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-entiers", + "id": "en:whole-milk-yogurts", + "name": "Yaourts entiers", + "products": 362 + }, + { + "id": "en:long-grain-rices", + "name": "Riz long grain", + "products": 360, + "url": "https://fr.openfoodfacts.org/categorie/riz-long-grain" + }, + { + "id": "en:cream-cheeses", + "name": "Fromages à pâte fraîche", + "products": 360, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-fraiche", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3323634" + ] + }, + { + "name": "Laits demi-écrémés", + "id": "en:semi-skimmed-milks", + "products": 359, + "url": "https://fr.openfoodfacts.org/categorie/laits-demi-ecremes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q10581201" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2885525" + ], + "name": "Barres de céréales", + "id": "en:cereal-bars", + "products": 358 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q192874" + ], + "url": "https://fr.openfoodfacts.org/categorie/nouilles", + "products": 356, + "id": "en:noodles", + "name": "Nouilles" + }, + { + "products": 355, + "name": "Crèmes fraîches", + "id": "en:sour-creams", + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches" + }, + { + "products": 354, + "id": "en:dried-meals", + "name": "Plats préparés déshydratés", + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-deshydrates" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q20053" + ], + "url": "https://fr.openfoodfacts.org/categorie/ravioli", + "products": 354, + "name": "Ravioli", + "id": "en:ravioli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q348958" + ], + "products": 353, + "name": "Thés glacés", + "id": "en:iced-teas" + }, + { + "name": "Saucisses françaises", + "id": "en:french-sausages", + "products": 352, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-francaises" + }, + { + "products": 351, + "id": "en:cocoa-and-hazelnuts-spreads", + "name": "Pâtes à tartiner aux noisettes et au cacao", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-noisettes-et-au-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fraises", + "products": 343, + "id": "en:strawberry-jams", + "name": "Confitures de fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-et-produits-derives", + "products": 336, + "name": "Champignons et produits dérivés", + "id": "en:mushrooms-and-their-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-a-base-de-concentre", + "id": "en:concentrated-fruit-juices", + "name": "Jus de fruits à base de concentré", + "products": 336 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-en-conserve", + "name": "Fruits en conserve", + "id": "en:canned-fruits", + "products": 334 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-brebis", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1411808" + ], + "name": "Fromages de brebis", + "id": "en:sheep-cheeses", + "products": 333 + }, + { + "id": "en:apricot-jams", + "name": "Confitures d'abricot", + "products": 330, + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-abricot" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1361086" + ], + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees", + "id": "en:chocolate-bars", + "name": "Barres chocolatées", + "products": 329 + }, + { + "products": 328, + "id": "en:main-meals-for-babies", + "name": "Plats principaux pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/plats-principaux-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmentals", + "sameAs": [ + "https://www.wikidata.org/wiki/Q932214" + ], + "products": 327, + "id": "en:emmentaler", + "name": "Emmentals" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches", + "products": 327, + "name": "Pâtes fraîches", + "id": "en:fresh-pasta" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q12200" + ], + "url": "https://fr.openfoodfacts.org/categorie/crepes", + "name": "Crêpes", + "id": "en:crepes", + "products": 326 + }, + { + "products": 325, + "name": "Moulages en chocolat", + "id": "en:chocolate-molds", + "url": "https://fr.openfoodfacts.org/categorie/moulages-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-100-pur-jus", + "id": "en:squeezed-orange-juices", + "name": "Jus d'orange 100% pur jus", + "products": 322 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-secs", + "products": 320, + "id": "en:dry-biscuits", + "name": "Biscuits secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-fruits", + "id": "en:fruit-sodas", + "name": "Sodas aux fruits", + "products": 320 + }, + { + "name": "Fromages à pâte filée", + "id": "en:stretched-curd-cheeses", + "products": 314, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-filee", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1412505" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aromatises", + "products": 312, + "id": "en:flavoured-yogurts", + "name": "Yaourts aromatisés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-surgelees", + "id": "en:frozen-pizzas", + "name": "Pizzas surgelées", + "products": 310 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-pour-bebe", + "products": 307, + "id": "en:baby-milks", + "name": "Laits pour bébé" + }, + { + "name": "Jambons secs", + "id": "en:dried-hams", + "products": 307, + "url": "https://fr.openfoodfacts.org/categorie/jambons-secs" + }, + { + "id": "en:milk-chocolate-biscuits", + "name": "Biscuits au chocolat au lait", + "products": 305, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-cereales", + "products": 305, + "id": "en:puffed-cereal-cakes", + "name": "Galettes de céréales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes-d-elevage", + "id": "en:smoked-salmons-from-farming", + "name": "Saumons fumés d'élevage", + "products": 304 + }, + { + "name": "Laits homogénéisés", + "id": "en:homogenized-milks", + "products": 304, + "url": "https://fr.openfoodfacts.org/categorie/laits-homogeneises" + }, + { + "name": "Chips de pommes de terre aromatisées", + "id": "en:flavoured-potato-crisps", + "products": 303, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-aromatisees" + }, + { + "name": "Camemberts", + "id": "en:camemberts", + "products": 303, + "sameAs": [ + "https://www.wikidata.org/wiki/Q131480" + ], + "url": "https://fr.openfoodfacts.org/categorie/camemberts" + }, + { + "products": 302, + "id": "en:instant-hot-beverages", + "name": "Boissons chaudes instantanées", + "url": "https://fr.openfoodfacts.org/categorie/boissons-chaudes-instantanees" + }, + { + "id": "en:cheese-spreads", + "name": "Fromages à tartiner", + "products": 302, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-doux", + "products": 302, + "name": "Beurres doux", + "id": "en:sweet-cream-butters" + }, + { + "name": "Veloutés", + "id": "en:cream-soups", + "products": 301, + "url": "https://fr.openfoodfacts.org/categorie/veloutes" + }, + { + "id": "en:uht-milks", + "name": "Laits UHT", + "products": 300, + "url": "https://fr.openfoodfacts.org/categorie/laits-uht", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13616188" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-6-mois", + "name": "Dès 6 mois", + "id": "en:from-6-months", + "products": 298 + }, + { + "name": "Pains spéciaux", + "id": "en:special-breads", + "products": 298, + "url": "https://fr.openfoodfacts.org/categorie/pains-speciaux" + }, + { + "products": 297, + "id": "en:lentils", + "name": "Lentilles", + "url": "https://fr.openfoodfacts.org/categorie/lentilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q131226" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-surgelees", + "products": 295, + "id": "en:frozen-meats", + "name": "Viandes surgelées" + }, + { + "id": "en:snacks-and-desserts-for-babies", + "name": "Goûters et desserts pour bébé", + "products": 295, + "url": "https://fr.openfoodfacts.org/categorie/gouters-et-desserts-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-dosettes", + "id": "en:coffee-capsules", + "name": "Cafés en dosettes", + "products": 294 + }, + { + "products": 294, + "id": "fr:miels-de-fleurs", + "name": "Miels de fleurs", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-fleurs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-souffles", + "id": "fr:biscuits-aperitifs-souffles", + "name": "Biscuits apéritifs soufflés", + "products": 293 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-entiers", + "products": 292, + "id": "fr:foies-gras-entiers", + "name": "Foies gras entiers" + }, + { + "name": "Pommes de terre préfrites surgelées", + "id": "fr:pommes-de-terre-prefrites-surgelees", + "products": 291, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-prefrites-surgelees" + }, + { + "name": "Entrées", + "id": "en:starters", + "products": 291, + "url": "https://fr.openfoodfacts.org/categorie/entrees" + }, + { + "products": 290, + "name": "Soupes déshydratées", + "id": "en:dehydrated-soups", + "url": "https://fr.openfoodfacts.org/categorie/soupes-deshydratees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-boeuf", + "products": 285, + "id": "en:beef-steaks", + "name": "Steaks de bœuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-en-poudre", + "products": 284, + "name": "Chocolats en poudre", + "id": "en:cocoa-powder" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alcools-forts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2832208" + ], + "id": "en:hard-liquors", + "name": "Alcools forts", + "products": 283 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crustaces", + "id": "en:crustaceans", + "name": "Crustacés", + "products": 283 + }, + { + "products": 282, + "id": "en:steaks", + "name": "Steaks", + "url": "https://fr.openfoodfacts.org/categorie/steaks" + }, + { + "name": "Fromages en tranches", + "id": "en:sliced-cheeses", + "products": 281, + "url": "https://fr.openfoodfacts.org/categorie/fromages-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras", + "id": "fr:bloc-de-foie-gras", + "name": "Bloc de foie gras", + "products": 280 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-haches", + "name": "Steaks hachés", + "id": "en:ground-steaks", + "products": 277 + }, + { + "products": 276, + "name": "Fromages râpés", + "id": "en:grated-cheese", + "url": "https://fr.openfoodfacts.org/categorie/fromages-rapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fermented-drinks", + "name": "Fermented drinks", + "id": "en:fermented-drinks", + "products": 276 + }, + { + "products": 275, + "name": "Boissons lactées fermentées", + "id": "en:fermented-milk-drinks", + "url": "https://fr.openfoodfacts.org/categorie/boissons-lactees-fermentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-d-oleagineux", + "name": "Purées d'oléagineux", + "id": "en:oilseed-purees", + "products": 274 + }, + { + "products": 274, + "name": "Fruits au sirop", + "id": "en:fruits-in-syrup", + "url": "https://fr.openfoodfacts.org/categorie/fruits-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs", + "name": "Saucissons secs", + "id": "fr:saucissons-secs", + "products": 273 + }, + { + "products": 271, + "id": "en:diet-beverages", + "name": "Boissons light", + "url": "https://fr.openfoodfacts.org/categorie/boissons-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-cuisines", + "products": 271, + "name": "Poulets cuisinés", + "id": "en:cooked-chicken" + }, + { + "products": 270, + "id": "en:mackerels", + "name": "Maquereaux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q8064278" + ], + "url": "https://fr.openfoodfacts.org/categorie/maquereaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mozzarella", + "sameAs": [ + "https://www.wikidata.org/wiki/Q14088" + ], + "products": 269, + "id": "en:mozzarella", + "name": "Mozzarella" + }, + { + "name": "Yaourts à boire", + "id": "en:drinkable-yogurts", + "products": 266, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire" + }, + { + "id": "en:ketchup", + "name": "Ketchup", + "products": 265, + "sameAs": [ + "https://www.wikidata.org/wiki/Q178143" + ], + "url": "https://fr.openfoodfacts.org/categorie/ketchup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-boeuf-haches", + "products": 265, + "name": "Steaks de bœuf hachés", + "id": "en:ground-beef-steaks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-noisettes", + "products": 264, + "name": "Chocolats aux noisettes", + "id": "en:chocolates-with-hazelnuts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/additifs-alimentaires", + "sameAs": [ + "https://www.wikidata.org/wiki/Q189567" + ], + "products": 262, + "name": "Additifs alimentaires", + "id": "en:food-additives" + }, + { + "products": 262, + "name": "Sauces salades", + "id": "en:salad-dressings", + "url": "https://fr.openfoodfacts.org/categorie/sauces-salades" + }, + { + "products": 261, + "name": "Haricots en conserve", + "id": "en:canned-common-beans", + "url": "https://fr.openfoodfacts.org/categorie/haricots-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-poules-elevees-en-plein-air", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2920887" + ], + "products": 260, + "name": "Œufs de poules élevées en plein air", + "id": "en:free-range-eggs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-fruits", + "products": 259, + "id": "en:mueslis-with-fruits", + "name": "Mueslis aux fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q275068" + ], + "name": "Bouillons", + "id": "en:broths", + "products": 258 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1343997" + ], + "url": "https://fr.openfoodfacts.org/categorie/substituts-de-viande", + "products": 257, + "id": "en:meat-analogues", + "name": "Substituts de viande" + }, + { + "products": 257, + "id": "en:chocolate-cookies", + "name": "Cookies au chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat" + }, + { + "name": "Veloutés de légumes", + "id": "en:cream-of-vegetable-soups", + "products": 257, + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-legumes" + }, + { + "id": "en:turkeys", + "name": "Dindes", + "products": 256, + "url": "https://fr.openfoodfacts.org/categorie/dindes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins", + "products": 256, + "id": "en:gratins", + "name": "Gratins" + }, + { + "products": 256, + "id": "en:green-olives", + "name": "Olives vertes", + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-porc", + "products": 256, + "name": "Allumettes de porc", + "id": "fr:allumettes-de-porc" + }, + { + "name": "Farines de céréales", + "id": "en:cereal-flours", + "products": 255, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-cereales" + }, + { + "id": "en:chewing-gum", + "name": "Chewing-gum", + "products": 255, + "sameAs": [ + "https://www.wikidata.org/wiki/Q130878" + ], + "url": "https://fr.openfoodfacts.org/categorie/chewing-gum" + }, + { + "products": 254, + "id": "fr:eaux-de-vie", + "name": "Eaux-de-vie", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2166541" + ], + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-vie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-poissons", + "id": "en:fish-rillettes", + "name": "Rillettes de poissons", + "products": 253 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-moulus", + "products": 248, + "id": "en:ground-coffees", + "name": "Cafés moulus" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q10210" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs", + "name": "Vins blancs", + "id": "en:white-wines", + "products": 245 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1933110" + ], + "url": "https://fr.openfoodfacts.org/categorie/rillettes", + "products": 244, + "id": "en:rillettes", + "name": "Rillettes" + }, + { + "products": 244, + "id": "en:margarines", + "name": "Margarines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4287" + ], + "url": "https://fr.openfoodfacts.org/categorie/margarines" + }, + { + "products": 244, + "name": "Beurres de fruits à coques", + "id": "en:nut-butters", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-fruits-a-coques", + "sameAs": [ + "https://www.wikidata.org/wiki/Q10752679" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q742385" + ], + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs", + "products": 243, + "id": "en:white-chocolates", + "name": "Chocolats blancs" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q168461" + ], + "url": "https://fr.openfoodfacts.org/categorie/bordeaux", + "products": 238, + "id": "en:bordeaux", + "name": "Bordeaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques", + "id": "en:aromatic-plants", + "name": "Plantes aromatiques", + "products": 237 + }, + { + "name": "Sandwichs garnis de charcuteries", + "id": "en:sandwiches-filled-with-cold-cuts", + "products": 237, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-garnis-de-charcuteries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-light", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3246353" + ], + "products": 236, + "id": "en:diet-sodas", + "name": "Sodas light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aides-culinaires", + "products": 234, + "id": "en:cooking-helpers", + "name": "Aides culinaires" + }, + { + "id": "en:salts", + "name": "Sels", + "products": 234, + "url": "https://fr.openfoodfacts.org/categorie/sels" + }, + { + "name": "Tuiles salées", + "id": "fr:tuiles-salees", + "products": 233, + "url": "https://fr.openfoodfacts.org/categorie/tuiles-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-demi-sel", + "name": "Beurres demi-sel", + "id": "en:half-salted-butter", + "products": 232 + }, + { + "id": "fr:chocolats-fourres", + "name": "Chocolats fourrés", + "products": 231, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q773108" + ], + "url": "https://fr.openfoodfacts.org/categorie/assaisonnements", + "name": "Assaisonnements", + "id": "en:seasonings", + "products": 231 + }, + { + "products": 231, + "id": "en:mackerels-fillets", + "name": "Filets de maquereaux", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-de-paques", + "products": 231, + "name": "Chocolats de Pâques", + "id": "en:easter-chocolates" + }, + { + "products": 230, + "name": "Pains grillés", + "id": "en:toasts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6128" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-grilles" + }, + { + "id": "en:lardons", + "name": "Lardons de porc", + "products": 229, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3217888" + ], + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-d-olive", + "name": "Sardines à l'huile d'olive", + "id": "en:sardines-in-olive-oil", + "products": 229 + }, + { + "products": 229, + "name": "Plats à base de canard", + "id": "en:duck-dishes", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-canard" + }, + { + "products": 229, + "id": "en:honeys-from-france", + "name": "Miels français", + "url": "https://fr.openfoodfacts.org/categorie/miels-francais" + }, + { + "products": 225, + "name": "Aliments-a-base-de-plantes-seches", + "id": "fr:aliments-a-base-de-plantes-seches", + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-plantes-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coque-sales", + "products": 223, + "name": "Fruits à coque salés", + "id": "fr:fruits-a-coque-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-teneur-reduite-en-sel", + "products": 221, + "id": "en:products-with-reduced-salt", + "name": "Produits à teneur réduite en sel" + }, + { + "name": "Biscottes", + "id": "en:zwieback", + "products": 218, + "url": "https://fr.openfoodfacts.org/categorie/biscottes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4122049" + ] + }, + { + "products": 218, + "id": "en:tabbouleh", + "name": "Taboulés", + "url": "https://fr.openfoodfacts.org/categorie/taboules", + "sameAs": [ + "https://www.wikidata.org/wiki/Q607690" + ] + }, + { + "products": 217, + "name": "Fromages à pâte persillée", + "id": "en:blue-veined-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-persillee", + "sameAs": [ + "https://www.wikidata.org/wiki/Q746471" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-molle-a-croute-lavee", + "products": 215, + "name": "Fromages à pâte molle à croûte lavée", + "id": "en:soft-cheeses-with-washed-rind" + }, + { + "products": 214, + "id": "en:canned-green-beans", + "name": "Haricots verts en conserve", + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-en-conserve" + }, + { + "products": 213, + "id": "en:green-teas", + "name": "Thés verts", + "url": "https://fr.openfoodfacts.org/categorie/thes-verts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q484083" + ] + }, + { + "name": "Rillettes de viande", + "id": "en:potted-meats", + "products": 213, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-viande" + }, + { + "products": 213, + "id": "en:black-teas", + "name": "Thés noirs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q203415" + ], + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes", + "name": "Poissons panés", + "id": "en:breaded-fish", + "products": 212 + }, + { + "products": 210, + "name": "Confitures de framboises", + "id": "en:raspberry-jams", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-framboises" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q264554" + ], + "url": "https://fr.openfoodfacts.org/categorie/eaux-gazeuses", + "products": 210, + "id": "en:carbonated-waters", + "name": "Eaux gazeuses" + }, + { + "products": 210, + "id": "en:mollusc", + "name": "Mollusques", + "sameAs": [ + "https://www.wikidata.org/wiki/Q25326" + ], + "url": "https://fr.openfoodfacts.org/categorie/mollusques" + }, + { + "products": 209, + "name": "Filets de poulet", + "id": "en:chicken-breasts", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet" + }, + { + "products": 209, + "name": "Confitures de myrtilles", + "id": "en:bilberries-jams", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-myrtilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-rouges", + "products": 209, + "name": "Fruits rouges", + "id": "en:berries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-de-montagne", + "id": "en:mountain-products", + "name": "Produits de montagne", + "products": 209 + }, + { + "name": "Pâtes à tarte", + "id": "en:pie-dough", + "products": 209, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tarte" + }, + { + "products": 208, + "id": "en:meat-preparations", + "name": "Préparations de viande", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande" + }, + { + "id": "en:non-dairy-desserts", + "name": "Desserts végétaliens", + "products": 206, + "url": "https://fr.openfoodfacts.org/categorie/desserts-vegetaliens" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q178600" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epices", + "id": "en:gingerbreads", + "name": "Pains d'épices", + "products": 206 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q20026" + ], + "url": "https://fr.openfoodfacts.org/categorie/spaghetti", + "id": "en:spaghetti", + "name": "Spaghetti", + "products": 205 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-et-patisseries-surgeles", + "id": "fr:gateaux-et-patisseries-surgeles", + "name": "Gâteaux et pâtisseries surgelés", + "products": 204 + }, + { + "name": "Bouillons déshydratés", + "id": "en:dehydrated-broths", + "products": 203, + "url": "https://fr.openfoodfacts.org/categorie/bouillons-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-cereales", + "sameAs": [ + "https://www.wikidata.org/wiki/Q381350" + ], + "name": "Semoules de céréales", + "id": "en:cereal-semolinas", + "products": 201 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-de-brebis", + "id": "en:sheep-s-milk-yogurts", + "name": "Yaourts au lait de brebis", + "products": 200 + }, + { + "name": "Jambons de Paris", + "id": "fr:jambons-de-paris", + "products": 200, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3160842" + ], + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-paris" + }, + { + "products": 200, + "name": "Vinaigrettes", + "id": "en:vinaigrettes", + "url": "https://fr.openfoodfacts.org/categorie/vinaigrettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q847441" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-surgeles", + "products": 199, + "id": "en:frozen-fishes", + "name": "Poissons surgelés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-parfumes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4795514" + ], + "id": "en:aromatic-rices", + "name": "Riz parfumés", + "products": 199 + }, + { + "products": 198, + "id": "en:compotes-to-drink", + "name": "Compotes à boire", + "url": "https://fr.openfoodfacts.org/categorie/compotes-a-boire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickles-de-legumes", + "name": "Pickles de légumes", + "id": "en:vegetable-pickles", + "products": 197 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades", + "name": "Salades", + "id": "en:leaf-salads", + "products": 197 + }, + { + "products": 197, + "id": "en:products-without-gluten", + "name": "Produits sans gluten", + "url": "https://fr.openfoodfacts.org/categorie/produits-sans-gluten" + }, + { + "products": 196, + "name": "Produits-aoc", + "id": "fr:produits-aoc", + "url": "https://fr.openfoodfacts.org/categorie/produits-aoc" + }, + { + "products": 195, + "id": "en:flavored-teas", + "name": "Thés aromatisés", + "url": "https://fr.openfoodfacts.org/categorie/thes-aromatises" + }, + { + "id": "en:mixed-fruit-jams", + "name": "Confitures multifruits", + "products": 195, + "url": "https://fr.openfoodfacts.org/categorie/confitures-multifruits" + }, + { + "products": 194, + "name": "Charcuteries à teneur réduite en sel", + "id": "en:prepared-meats-with-less-salt", + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-a-teneur-reduite-en-sel" + }, + { + "products": 193, + "id": "en:shrimps", + "name": "Crevettes", + "url": "https://fr.openfoodfacts.org/categorie/crevettes" + }, + { + "name": "Assortiments de bonbons de chocolat", + "id": "en:assorted-chocolate-candies", + "products": 188, + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-bonbons-de-chocolat" + }, + { + "id": "en:dark-chocolate-biscuits", + "name": "Biscuits au chocolat noir", + "products": 187, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chocolat-noir" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q207123" + ], + "url": "https://fr.openfoodfacts.org/categorie/herbes-aromatiques", + "name": "Herbes aromatiques", + "id": "en:aromatic-herbs", + "products": 187 + }, + { + "products": 187, + "id": "en:vegetable-gratins", + "name": "Gratins de légumes", + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-legumes" + }, + { + "name": "Gaufrettes", + "id": "en:wafers", + "products": 186, + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-au-chocolat", + "products": 186, + "id": "en:mueslis-with-chocolate", + "name": "Mueslis au chocolat" + }, + { + "products": 186, + "id": "fr:raclettes", + "name": "Raclettes", + "url": "https://fr.openfoodfacts.org/categorie/raclettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20748" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-instantanees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1051265" + ], + "name": "Nouilles instantanées", + "id": "en:instant-noodles", + "products": 186 + }, + { + "products": 185, + "name": "Cidres", + "id": "en:ciders", + "url": "https://fr.openfoodfacts.org/categorie/cidres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q167296" + ] + }, + { + "id": "en:prepared-lasagne", + "name": "Lasagnes préparées", + "products": 185, + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-preparees", + "name": "Céréales préparées", + "id": "fr:cereales-preparees", + "products": 185 + }, + { + "products": 185, + "id": "en:chocolates-with-almonds", + "name": "Chocolats avec amandes", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-avec-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-salees", + "products": 184, + "name": "Tartes salées", + "id": "en:salted-pies" + }, + { + "id": "en:canned-mushrooms", + "name": "Champignons en conserve", + "products": 184, + "url": "https://fr.openfoodfacts.org/categorie/champignons-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-de-variete-indica", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5360953" + ], + "name": "Riz de variété indica", + "id": "en:indica-rices", + "products": 182 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates", + "name": "Tomates", + "id": "en:tomatoes", + "products": 182 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-agrumes", + "name": "Confitures d'agrumes", + "id": "en:citrus-jams", + "products": 181 + }, + { + "id": "en:almonds", + "name": "Amandes", + "products": 181, + "url": "https://fr.openfoodfacts.org/categorie/amandes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q39918" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/limonades", + "sameAs": [ + "https://www.wikidata.org/wiki/Q893" + ], + "products": 181, + "name": "Limonades", + "id": "en:lemonades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-jambon", + "products": 180, + "id": "en:ham-sandwiches", + "name": "Sandwichs au jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz", + "products": 180, + "name": "Galettes de riz", + "id": "en:puffed-rice-cakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-tropicaux", + "products": 179, + "name": "Fruits tropicaux", + "id": "en:tropical-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chorizos", + "name": "Chorizos", + "id": "fr:chorizos", + "products": 179 + }, + { + "products": 178, + "name": "Jus de pommes pur jus", + "id": "en:squeezed-apple-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-pur-jus" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q12958" + ], + "url": "https://fr.openfoodfacts.org/categorie/quenelles", + "products": 178, + "id": "fr:quenelles", + "name": "Quenelles" + }, + { + "name": "Sirops traditionnels", + "id": "en:simple-syrups", + "products": 177, + "url": "https://fr.openfoodfacts.org/categorie/sirops-traditionnels" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q204226" + ], + "url": "https://fr.openfoodfacts.org/categorie/moutardes-de-dijon", + "products": 177, + "name": "Moutardes de Dijon", + "id": "en:dijon-mustards" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-hachee", + "products": 176, + "name": "Préparations de viande hachée", + "id": "en:ground-meat-preparations" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comte", + "products": 175, + "id": "fr:comte", + "name": "Comté" + }, + { + "products": 174, + "name": "Miels crémeux", + "id": "fr:miels-cremeux", + "url": "https://fr.openfoodfacts.org/categorie/miels-cremeux" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q4145855" + ], + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-en-conserve", + "id": "en:canned-peas", + "name": "Petits pois en conserve", + "products": 174 + }, + { + "name": "Pickles de concombres", + "id": "en:pickled-cucumbers", + "products": 173, + "url": "https://fr.openfoodfacts.org/categorie/pickles-de-concombres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1211297" + ] + }, + { + "products": 173, + "name": "Blanc de poulet", + "id": "en:chicken-ham", + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-poulet" + }, + { + "products": 173, + "name": "Surimi", + "id": "en:surimi", + "url": "https://fr.openfoodfacts.org/categorie/surimi", + "sameAs": [ + "https://www.wikidata.org/wiki/Q815740" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q170037" + ], + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-balsamiques", + "products": 173, + "id": "en:balsamic-vinegars", + "name": "Vinaigres balsamiques" + }, + { + "name": "Semoules de blé", + "id": "en:wheat-semolinas", + "products": 173, + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-ble" + }, + { + "products": 172, + "id": "en:wheat-flours", + "name": "Farines de blé", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2249305" + ] + }, + { + "id": "en:canned-tomatoes", + "name": "Tomates en conserve", + "products": 172, + "url": "https://fr.openfoodfacts.org/categorie/tomates-en-conserve" + }, + { + "name": "Sandwichs à la volaille", + "id": "en:poultry-sandwiches", + "products": 171, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-volaille" + }, + { + "name": "Cornichons", + "id": "en:gherkins", + "products": 171, + "url": "https://fr.openfoodfacts.org/categorie/cornichons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1365891" + ] + }, + { + "products": 171, + "name": "Cacahuètes", + "id": "en:peanuts", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q37383" + ] + }, + { + "name": "Confiseries de Noël", + "id": "en:christmas-sweets", + "products": 171, + "url": "https://fr.openfoodfacts.org/categorie/confiseries-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-en-conserve", + "products": 170, + "name": "Maquereaux en conserve", + "id": "en:tinned-mackerels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-fruits", + "products": 170, + "id": "en:fruit-jellies", + "name": "Gelées de fruits" + }, + { + "id": "en:legume-milks", + "name": "Boissons végétales", + "products": 170, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-soja", + "sameAs": [ + "https://www.wikidata.org/wiki/Q192199" + ], + "id": "en:soy-milks", + "name": "Boissons végétales de soja", + "products": 169 + }, + { + "name": "Desserts lactés au chocolat", + "id": "en:dairy-chocolate-desserts", + "products": 169, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-chocolat" + }, + { + "products": 169, + "name": "Frites", + "id": "en:fries", + "url": "https://fr.openfoodfacts.org/categorie/frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-oeufs", + "products": 168, + "name": "Pâtes aux œufs", + "id": "en:egg-pastas" + }, + { + "products": 167, + "id": "en:chicken-sandwiches", + "name": "Sandwichs au poulet", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-poulet" + }, + { + "id": "en:french-emmentaler", + "name": "Emmentals français", + "products": 166, + "url": "https://fr.openfoodfacts.org/categorie/emmentals-francais" + }, + { + "products": 166, + "id": "en:legume-butters", + "name": "Beurres de légumineuses", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-legumineuses" + }, + { + "products": 165, + "id": "en:peanut-butters", + "name": "Beurres de cacahuètes", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacahuetes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q147651" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-bovine", + "name": "Préparations de viande bovine", + "id": "en:beef-preparations", + "products": 165 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales-naturelles", + "products": 164, + "name": "Eaux minérales naturelles", + "id": "en:natural-mineral-waters" + }, + { + "products": 164, + "id": "en:meringues", + "name": "Meringues", + "sameAs": [ + "https://www.wikidata.org/wiki/Q276276" + ], + "url": "https://fr.openfoodfacts.org/categorie/meringues" + }, + { + "products": 162, + "id": "en:shelled-nuts", + "name": "Fruits à coques décortiquées", + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coques-decortiquees" + }, + { + "id": "en:flavored-waters", + "name": "Eaux aromatisées", + "products": 162, + "url": "https://fr.openfoodfacts.org/categorie/eaux-aromatisees" + }, + { + "products": 161, + "id": "fr:cremes-dessert-chocolat", + "name": "Crèmes dessert chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-cola-light", + "products": 161, + "name": "Sodas au cola light", + "id": "en:diet-cola-soft-drink" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmentals-rapes", + "id": "en:grated-emmentaler", + "name": "Emmentals râpés", + "products": 160 + }, + { + "products": 160, + "id": "en:aliments-et-boissons-a-base-de-vegetaux", + "name": "en:Aliments-et-boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "name": "Abats", + "id": "en:offals", + "products": 160, + "url": "https://fr.openfoodfacts.org/categorie/abats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-extra-fin", + "products": 160, + "name": "Chocolats noirs extra fin", + "id": "en:extra-fine-black-chocolates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-fourrees", + "name": "Céréales fourrées", + "id": "en:filled-cereals", + "products": 159 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batonnets-glaces", + "id": "en:ice-cream-bars", + "name": "Bâtonnets glacés", + "products": 159 + }, + { + "products": 159, + "id": "en:soy-desserts", + "name": "Desserts au soja", + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons", + "products": 157, + "name": "en:Boissons", + "id": "en:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-aux-fruits", + "products": 157, + "name": "Yaourts brassés aux fruits", + "id": "en:fruit-stirred-yogurts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-roses", + "products": 157, + "name": "Vins rosés", + "id": "en:rose-wines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-de-france", + "products": 157, + "name": "Confiseries de France", + "id": "en:french-confectioneries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes", + "id": "en:tartlets", + "name": "Tartelettes", + "products": 156 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-belges", + "products": 155, + "name": "Bières belges", + "id": "en:belgian-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-et-derives", + "sameAs": [ + "https://www.wikidata.org/wiki/Q23485" + ], + "products": 155, + "id": "en:onions-and-their-products", + "name": "Oignons et dérivés" + }, + { + "products": 155, + "name": "Fromages à pâte persillée français", + "id": "en:french-blue-veined-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-persillee-francais" + }, + { + "id": "en:pestos", + "name": "Sauces Pesto", + "products": 155, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pesto", + "sameAs": [ + "https://www.wikidata.org/wiki/Q9896" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-bifidus", + "products": 154, + "id": "en:bifidus-yogurts", + "name": "Yaourts au Bifidus" + }, + { + "name": "Beurres pasteurisés", + "id": "en:pasteurized-butters", + "products": 153, + "url": "https://fr.openfoodfacts.org/categorie/beurres-pasteurises" + }, + { + "products": 153, + "id": "en:sparkling-wines", + "name": "Vins effervescents", + "sameAs": [ + "https://www.wikidata.org/wiki/Q321263" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-effervescents" + }, + { + "id": "fr:brioches-pur-beurre", + "name": "Brioches pur beurre", + "products": 153, + "url": "https://fr.openfoodfacts.org/categorie/brioches-pur-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puddings", + "sameAs": [ + "https://www.wikidata.org/wiki/Q9053" + ], + "name": "Puddings", + "id": "en:puddings", + "products": 152 + }, + { + "products": 152, + "name": "Quinoa", + "id": "en:quinoa", + "url": "https://fr.openfoodfacts.org/categorie/quinoa", + "sameAs": [ + "https://www.wikidata.org/wiki/Q139925" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-blancs-a-teneur-reduite-en-sel", + "products": 151, + "name": "Jambons blancs à teneur réduite en sel", + "id": "en:white-hams-with-less-salt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entrees-froides", + "id": "en:cold-starters", + "name": "Entrées froides", + "products": 150 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-souffles-a-base-de-mais", + "id": "fr:biscuits-aperitifs-souffles-a-base-de-mais", + "name": "Biscuits apéritifs soufflés à base de maïs", + "products": 150 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-a-base-de-legumes", + "name": "Aliments et boissons à base de légumes", + "id": "en:vegetable-based-foods-and-beverages", + "products": 150 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-fromage", + "products": 150, + "id": "en:cheese-sandwiches", + "name": "Sandwichs au fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-ble-dur", + "name": "Semoules de blé dur", + "id": "en:durum-wheat-semolinas", + "products": 150 + }, + { + "products": 150, + "id": "fr:poulets-panes", + "name": "Poulets panés", + "url": "https://fr.openfoodfacts.org/categorie/poulets-panes" + }, + { + "products": 149, + "id": "en:applesauces", + "name": "Compotes pommes nature", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-des-pays-bas", + "products": 149, + "name": "Fromages des Pays-Bas", + "id": "en:cheeses-of-the-netherlands" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-denoyautees", + "id": "en:pitted-olives", + "name": "Olives dénoyautées", + "products": 149 + }, + { + "id": "en:cheese-pizzas", + "name": "Pizzas au fromage", + "products": 148, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-fromage" + }, + { + "products": 148, + "name": "Cafés en dosettes compatible Nespresso", + "id": "en:nespresso-compatible-coffee-capsules", + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-dosettes-compatible-nespresso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassoulets", + "id": "en:cassoulets", + "name": "Cassoulets", + "products": 147 + }, + { + "id": "fr:charcuteries-a-cuire", + "name": "Charcuteries à cuire", + "products": 146, + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-a-cuire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-aromatises", + "name": "Laits aromatisés", + "id": "en:flavoured-milks", + "products": 145 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q854342" + ], + "url": "https://fr.openfoodfacts.org/categorie/panettone", + "products": 145, + "name": "Panettone", + "id": "en:panettone" + }, + { + "name": "Chocolats au lait aux noisettes", + "id": "en:milk-chocolate-with-hazelnuts", + "products": 145, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-noisettes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2271859" + ], + "url": "https://fr.openfoodfacts.org/categorie/bieres-ambrees", + "products": 144, + "name": "Bières ambrées", + "id": "en:amber-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-cubes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q937013" + ], + "id": "en:bouillon-cubes", + "name": "Bouillons cubes", + "products": 144 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-cerises", + "products": 144, + "id": "en:cherry-jams", + "name": "Confitures de cerises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees", + "id": "fr:poelees", + "name": "Poêlées", + "products": 144 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-aux-legumes", + "products": 143, + "name": "Boissons aux légumes", + "id": "en:vegetable-based-beverages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coque-grilles", + "products": 142, + "name": "Fruits à coque grillés", + "id": "en:roasted-nuts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-salees", + "id": "en:savory-mousses", + "name": "Mousses salées", + "products": 142 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frites-surgelees", + "id": "en:frozen-fries", + "name": "Frites surgelées", + "products": 142 + }, + { + "name": "Steaks hachés frais", + "id": "en:fresh-ground-steaks", + "products": 141, + "url": "https://fr.openfoodfacts.org/categorie/steaks-haches-frais" + }, + { + "products": 141, + "name": "Dès 12 mois", + "id": "en:from-12-months-old", + "url": "https://fr.openfoodfacts.org/categorie/des-12-mois" + }, + { + "products": 140, + "id": "en:ice-cream-cones", + "name": "Cônes", + "url": "https://fr.openfoodfacts.org/categorie/cones" + }, + { + "products": 139, + "id": "en:caramels", + "name": "Caramels", + "url": "https://fr.openfoodfacts.org/categorie/caramels", + "sameAs": [ + "https://www.wikidata.org/wiki/Q183440" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-au-naturel", + "products": 139, + "name": "Thons au naturel", + "id": "en:tuna-in-brine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-multifruits", + "products": 139, + "name": "Nectars multifruits", + "id": "en:multifruit-nectars" + }, + { + "products": 139, + "name": "Oeufs labellisés", + "id": "en:labeled-eggs", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-labellises" + }, + { + "products": 138, + "id": "en:low-fat-yogurts", + "name": "Yaourts allégés en matière grasse", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-alleges-en-matiere-grasse" + }, + { + "products": 138, + "id": "en:fresh-ground-beef-steaks", + "name": "Steaks hachés de bœuf frais", + "url": "https://fr.openfoodfacts.org/categorie/steaks-haches-de-boeuf-frais" + }, + { + "name": "Tartines craquantes", + "id": "en:crispbreads", + "products": 138, + "sameAs": [ + "https://www.wikidata.org/wiki/Q251981" + ], + "url": "https://fr.openfoodfacts.org/categorie/tartines-craquantes" + }, + { + "id": "en:wheat-beers", + "name": "Bières blanches", + "products": 137, + "url": "https://fr.openfoodfacts.org/categorie/bieres-blanches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15079724" + ] + }, + { + "products": 137, + "name": "Mousses au chocolat", + "id": "fr:mousses-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1381277" + ] + }, + { + "products": 136, + "name": "Champignons de Paris en conserve", + "id": "en:canned-champignon-mushrooms", + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-liquides", + "products": 136, + "id": "en:liquid-honeys", + "name": "Miels liquides" + }, + { + "id": "en:stuffed-wafers", + "name": "Gaufrettes fourrées", + "products": 136, + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees" + }, + { + "name": "Boudins", + "id": "fr:boudins", + "products": 135, + "url": "https://fr.openfoodfacts.org/categorie/boudins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-en-conserve", + "id": "en:canned-cereals", + "name": "Céréales en conserve", + "products": 135 + }, + { + "products": 135, + "name": "Brioches tranchées", + "id": "fr:brioches-tranchees", + "url": "https://fr.openfoodfacts.org/categorie/brioches-tranchees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees", + "products": 135, + "name": "Gaufres fourrées", + "id": "en:stuffed-waffles" + }, + { + "name": "Maïs en conserve", + "id": "en:canned-corn", + "products": 135, + "url": "https://fr.openfoodfacts.org/categorie/mais-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-feuilletes", + "products": 134, + "name": "Plats préparés feuilletés", + "id": "en:puff-pastry-meals" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque", + "products": 134, + "name": "Yaourts à la grecque", + "id": "en:greek-yogurts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-figues", + "products": 134, + "name": "Confitures de figues", + "id": "en:figs-jams" + }, + { + "id": "fr:purees", + "name": "Purées", + "products": 133, + "url": "https://fr.openfoodfacts.org/categorie/purees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q636056" + ] + }, + { + "products": 133, + "id": "en:sauerkrauts", + "name": "Choucroutes", + "url": "https://fr.openfoodfacts.org/categorie/choucroutes" + }, + { + "products": 133, + "id": "en:galettes", + "name": "Galettes", + "url": "https://fr.openfoodfacts.org/categorie/galettes" + }, + { + "id": "en:potato-gratin", + "name": "Gratins de pomme de terre", + "products": 133, + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-pomme-de-terre" + }, + { + "products": 133, + "name": "Cafés solubles", + "id": "en:instant-coffees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q858049" + ], + "url": "https://fr.openfoodfacts.org/categorie/cafes-solubles" + }, + { + "products": 133, + "id": "en:frozen-steaks", + "name": "Steaks surgelés", + "url": "https://fr.openfoodfacts.org/categorie/steaks-surgeles" + }, + { + "products": 133, + "name": "Noix de cajou", + "id": "en:cashew-nuts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q34007" + ], + "url": "https://fr.openfoodfacts.org/categorie/noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-epaisses", + "products": 133, + "id": "fr:cremes-fraiches-epaisses", + "name": "Crèmes fraîches épaisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19029" + ], + "id": "en:rice-puddings", + "name": "Riz au lait", + "products": 132 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-fruits", + "products": 132, + "name": "Yaourts sur lit de fruits", + "id": "fr:yaourts-sur-lit-de-fruits" + }, + { + "id": "en:frozen-ground-steaks", + "name": "Steaks hachés surgelés", + "products": 132, + "url": "https://fr.openfoodfacts.org/categorie/steaks-haches-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-porc-fumes", + "products": 131, + "name": "Lardons de porc fumés", + "id": "en:smoked-lardons" + }, + { + "products": 131, + "name": "Nougats", + "id": "en:nougats", + "url": "https://fr.openfoodfacts.org/categorie/nougats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-d-origine-vegetale", + "products": 131, + "name": "en:Aliments-d-origine-vegetale", + "id": "en:aliments-d-origine-vegetale" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q241987" + ], + "url": "https://fr.openfoodfacts.org/categorie/houmous", + "name": "Houmous", + "id": "en:hummus", + "products": 130 + }, + { + "id": "en:balsamic-vinegars-of-modena", + "name": "Vinaigres balsamiques de Modène", + "products": 130, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3604285" + ], + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-balsamiques-de-modene" + }, + { + "name": "Jus de légumes", + "id": "en:vegetable-juices", + "products": 129, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1501257" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-legumes" + }, + { + "products": 128, + "name": "Chips de maïs", + "id": "de:mais-chips", + "url": "https://fr.openfoodfacts.org/categorie/chips-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-rapees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q22708802" + ], + "name": "Carottes râpées", + "id": "en:grated-carrots", + "products": 128 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-bovine-hachee", + "name": "Préparations de viande bovine hachée", + "id": "en:ground-beef-preparations", + "products": 128 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus", + "sameAs": [ + "https://www.wikidata.org/wiki/Q190531" + ], + "name": "Fromages fondus", + "id": "en:melted-cheese", + "products": 128 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q6663" + ], + "url": "https://fr.openfoodfacts.org/categorie/hamburgers", + "products": 127, + "id": "en:hamburgers", + "name": "Hamburgers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-gateaux", + "id": "en:preparations-for-cakes", + "name": "Préparations pour gâteaux", + "products": 127 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q171497" + ], + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-et-derives", + "products": 126, + "name": "Graines de tournesol et dérivés", + "id": "en:sunflower-seeds-and-their-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-prepares", + "id": "fr:riz-prepares", + "name": "Riz préparés", + "products": 126 + }, + { + "name": "Dès 4 mois", + "id": "en:from-4-months", + "products": 126, + "url": "https://fr.openfoodfacts.org/categorie/des-4-mois" + }, + { + "id": "en:sweet-pies", + "name": "Tartes sucrées", + "products": 126, + "url": "https://fr.openfoodfacts.org/categorie/tartes-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-haches-de-boeuf-surgeles", + "name": "Steaks hachés de bœuf surgelés", + "id": "en:frozen-ground-beef-steaks", + "products": 125 + }, + { + "products": 125, + "name": "Yaourts vanille", + "id": "en:vanilla-yogurt", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-vanille" + }, + { + "id": "en:peppers", + "name": "Poivres", + "products": 125, + "sameAs": [ + "https://www.wikidata.org/wiki/Q43084" + ], + "url": "https://fr.openfoodfacts.org/categorie/poivres" + }, + { + "products": 125, + "name": "Thons à l'huile", + "id": "fr:thons-a-l-huile", + "url": "https://fr.openfoodfacts.org/categorie/thons-a-l-huile" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2996948" + ], + "url": "https://fr.openfoodfacts.org/categorie/coquillettes", + "id": "fr:coquillettes", + "name": "Coquillettes", + "products": 125 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-ble-dur-pour-couscous", + "name": "Semoules de blé dur pour couscous", + "id": "en:durum-wheat-semolinas-for-couscous", + "products": 125 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-a-la-vanille", + "products": 124, + "name": "Desserts lactés à la vanille", + "id": "fr:desserts-lactes-a-la-vanille" + }, + { + "id": "fr:brioches-au-chocolat", + "name": "Brioches au chocolat", + "products": 124, + "url": "https://fr.openfoodfacts.org/categorie/brioches-au-chocolat" + }, + { + "id": "en:strasbourg-sausages", + "name": "Saucisses de Strasbourg", + "products": 124, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-strasbourg" + }, + { + "products": 124, + "id": "en:liqueurs", + "name": "Liqueurs", + "url": "https://fr.openfoodfacts.org/categorie/liqueurs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q178780" + ] + }, + { + "name": "Petits beurres", + "id": "fr:petits-beurres", + "products": 123, + "url": "https://fr.openfoodfacts.org/categorie/petits-beurres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-bolognaises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1162965" + ], + "products": 123, + "id": "en:bolognese-sauce", + "name": "Sauces bolognaises" + }, + { + "name": "Compléments pour le Bodybuilding", + "id": "en:bodybuilding-supplements", + "products": 123, + "url": "https://fr.openfoodfacts.org/categorie/complements-pour-le-bodybuilding", + "sameAs": [ + "https://www.wikidata.org/wiki/Q908809" + ] + }, + { + "products": 123, + "id": "en:cereal-milks", + "name": "Boissons végétales de céréales", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1754817" + ], + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-cereales" + }, + { + "name": "Purées en flocons", + "id": "en:instant-mashed-potatoes", + "products": 123, + "url": "https://fr.openfoodfacts.org/categorie/purees-en-flocons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3411001" + ] + }, + { + "products": 122, + "name": "Jus d'orange à base de concentré", + "id": "en:concentrated-orange-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-a-base-de-concentre" + }, + { + "name": "Croûtons", + "id": "en:croutons", + "products": 121, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1197400" + ], + "url": "https://fr.openfoodfacts.org/categorie/croutons" + }, + { + "products": 121, + "name": "Riz Basmati", + "id": "en:basmati-rices", + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1649635" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q429518" + ], + "url": "https://fr.openfoodfacts.org/categorie/cordons-bleus", + "id": "fr:cordons-bleus", + "name": "Cordons bleus", + "products": 119 + }, + { + "id": "en:whole-milks", + "name": "Laits entiers", + "products": 118, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3374445" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-entiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-vanille", + "products": 118, + "id": "en:vanilla-ice-cream-tubs", + "name": "Glaces à la vanille" + }, + { + "products": 118, + "name": "Truites", + "id": "en:trouts", + "url": "https://fr.openfoodfacts.org/categorie/truites" + }, + { + "products": 118, + "name": "Dès 8 mois", + "id": "en:from-8-months", + "url": "https://fr.openfoodfacts.org/categorie/des-8-mois" + }, + { + "products": 118, + "name": "Sels marins", + "id": "en:sea-salts", + "url": "https://fr.openfoodfacts.org/categorie/sels-marins" + }, + { + "products": 117, + "name": "Soupes de poissons", + "id": "en:fish-soups", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-poissons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5454668" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3360557" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-au-lait", + "products": 117, + "name": "Pains au lait", + "id": "en:milk-bread-rolls" + }, + { + "id": "fr:ratatouilles", + "name": "Ratatouilles", + "products": 117, + "sameAs": [ + "https://www.wikidata.org/wiki/Q183095" + ], + "url": "https://fr.openfoodfacts.org/categorie/ratatouilles" + }, + { + "products": 116, + "name": "Camemberts au lait cru", + "id": "en:camembert-made-with-raw-milk", + "url": "https://fr.openfoodfacts.org/categorie/camemberts-au-lait-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-energisantes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q215754" + ], + "products": 116, + "id": "en:energy-drinks", + "name": "Boissons énergisantes" + }, + { + "products": 116, + "id": "en:light-jams", + "name": "Confitures allégées", + "url": "https://fr.openfoodfacts.org/categorie/confitures-allegees" + }, + { + "products": 116, + "id": "en:white-meat-rillettes", + "name": "Rillettes de viande blanche", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-viande-blanche" + }, + { + "products": 115, + "name": "Pâtés de campagne", + "id": "en:country-style-pate", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-campagne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/meta-categorie", + "name": "Meta-categorie", + "id": "fr:meta-categorie", + "products": 115 + }, + { + "name": "Eaux minérales gazeuses", + "id": "en:carbonated-mineral-waters", + "products": 115, + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales-gazeuses" + }, + { + "products": 115, + "name": "Rillettes de volaille", + "id": "fr:rillettes-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nems", + "name": "Nems", + "id": "en:nems", + "products": 115 + }, + { + "products": 115, + "id": "fr:crepes-de-froment", + "name": "Crêpes de froment", + "url": "https://fr.openfoodfacts.org/categorie/crepes-de-froment" + }, + { + "id": "en:dried-prunes", + "name": "Pruneaux", + "products": 114, + "url": "https://fr.openfoodfacts.org/categorie/pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-miel", + "name": "Céréales au miel", + "id": "en:cereals-with-honey", + "products": 114 + }, + { + "products": 114, + "id": "fr:brownies", + "name": "Brownies", + "url": "https://fr.openfoodfacts.org/categorie/brownies" + }, + { + "id": "en:marmalades", + "name": "Marmelades", + "products": 114, + "sameAs": [ + "https://www.wikidata.org/wiki/Q5834964" + ], + "url": "https://fr.openfoodfacts.org/categorie/marmelades" + }, + { + "products": 114, + "name": "Miels d'acacia", + "id": "fr:miels-d-acacia", + "url": "https://fr.openfoodfacts.org/categorie/miels-d-acacia" + }, + { + "products": 113, + "name": "Agrumes", + "id": "en:citrus", + "url": "https://fr.openfoodfacts.org/categorie/agrumes" + }, + { + "id": "en:flaky-biscuits", + "name": "Biscuits feuilletés", + "products": 113, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-feuilletes" + }, + { + "name": "Tapenade", + "id": "en:tapenade", + "products": 113, + "url": "https://fr.openfoodfacts.org/categorie/tapenade", + "sameAs": [ + "https://www.wikidata.org/wiki/Q129031" + ] + }, + { + "products": 113, + "id": "en:tofu", + "name": "Tofu", + "url": "https://fr.openfoodfacts.org/categorie/tofu", + "sameAs": [ + "https://www.wikidata.org/wiki/Q177378" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-de-ble-dur", + "id": "en:durum-wheat-spaghetti", + "name": "Spaghettis de blé dur", + "products": 113 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-noires", + "id": "en:black-olives", + "name": "Olives noires", + "products": 112 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-marrons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1363560" + ], + "name": "Crèmes de marrons", + "id": "en:chestnut-spreads", + "products": 112 + }, + { + "products": 112, + "name": "Cacahuètes grillées", + "id": "en:roasted-peanuts", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-grillees" + }, + { + "id": "en:dates", + "name": "Dattes", + "products": 112, + "url": "https://fr.openfoodfacts.org/categorie/dattes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q675987" + ], + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-fruits", + "id": "en:fruit-cakes", + "name": "Cakes aux fruits", + "products": 112 + }, + { + "name": "Pistaches", + "id": "en:pistachios", + "products": 111, + "sameAs": [ + "https://www.wikidata.org/wiki/Q19958754" + ], + "url": "https://fr.openfoodfacts.org/categorie/pistaches" + }, + { + "id": "fr:saucisses-seches", + "name": "Saucisses sèches", + "products": 111, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-seches" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q17069317" + ], + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-l-orange", + "id": "en:orange-soft-drinks", + "name": "Sodas à l'orange", + "products": 111 + }, + { + "name": "Ravioli en conserve", + "id": "en:canned-raviolis", + "products": 111, + "url": "https://fr.openfoodfacts.org/categorie/ravioli-en-conserve" + }, + { + "products": 110, + "id": "en:frozen-meat-preparations", + "name": "Préparations de viande surgelées", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-surgelees" + }, + { + "products": 110, + "name": "Fromages à pâte fondue", + "id": "en:processed-cheese", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1570052" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-fondue" + }, + { + "id": "en:sugar-free-chewing-gum", + "name": "Chewing-gum sans sucres", + "products": 109, + "url": "https://fr.openfoodfacts.org/categorie/chewing-gum-sans-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-a-la-bolognaise", + "products": 109, + "name": "Lasagnes à la bolognaise", + "id": "en:bolognese-lasagne" + }, + { + "id": "fr:compotes-pour-bebe", + "name": "Compotes pour bébé", + "products": 109, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pour-bebe" + }, + { + "name": "Cacahuètes salées", + "id": "fr:cacahuetes-salees", + "products": 109, + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-salees" + }, + { + "products": 109, + "name": "Mousses sucrées", + "id": "en:sweet-mousses", + "url": "https://fr.openfoodfacts.org/categorie/mousses-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre", + "products": 108, + "id": "en:potatoes", + "name": "Pommes de terre" + }, + { + "id": "en:cherry-tomatoes", + "name": "Tomates cerise", + "products": 108, + "url": "https://fr.openfoodfacts.org/categorie/tomates-cerise", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6540634" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-au-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1190838" + ], + "id": "en:chocolate-croissant", + "name": "Pains au chocolat", + "products": 108 + }, + { + "products": 108, + "id": "fr:saucissons-secs-pur-porc", + "name": "Saucissons secs pur porc", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-pur-porc" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q9362753" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres-de-canne", + "name": "Sucres de canne", + "id": "en:cane-sugar", + "products": 108 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-lait-de-bufflonne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1020491" + ], + "products": 108, + "id": "en:buffalo-s-milk-cheese", + "name": "Fromages au lait de bufflonne" + }, + { + "name": "Baguettes", + "id": "en:baguettes", + "products": 107, + "sameAs": [ + "https://www.wikidata.org/wiki/Q208172" + ], + "url": "https://fr.openfoodfacts.org/categorie/baguettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-feuilletees", + "products": 107, + "name": "Pâtes feuilletées", + "id": "en:puff-pastry-sheets" + }, + { + "products": 107, + "id": "en:beef-ravioli", + "name": "Raviolis au bœuf", + "url": "https://fr.openfoodfacts.org/categorie/raviolis-au-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-tropicaux", + "products": 107, + "id": "en:tropical-fruit-jams", + "name": "Confitures de fruits tropicaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-prunes", + "products": 106, + "id": "en:plum-jams", + "name": "Confitures de prunes" + }, + { + "products": 106, + "id": "en:pots", + "name": "Box", + "url": "https://fr.openfoodfacts.org/categorie/box" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-coco", + "sameAs": [ + "https://www.wikidata.org/wiki/Q841779" + ], + "products": 106, + "id": "en:coconut-milks", + "name": "Laits de coco" + }, + { + "products": 106, + "id": "en:flans", + "name": "Flans gélifiés", + "url": "https://fr.openfoodfacts.org/categorie/flans-gelifies", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16636380" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-vertes", + "id": "en:green-lentils", + "name": "Lentilles vertes", + "products": 106 + }, + { + "id": "en:grape-juices", + "name": "Jus de raisin", + "products": 105, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1209756" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-allegees", + "name": "Compotes allégées", + "id": "en:light-compotes", + "products": 105 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-doux-en-conserve", + "products": 105, + "name": "Maïs doux en conserve", + "id": "en:canned-sweet-corn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/camemberts-pasteurises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q47472053" + ], + "id": "en:pasteurized-camembert", + "name": "Camemberts pasteurisés", + "products": 105 + }, + { + "products": 105, + "name": "Légumes tiges", + "id": "en:vegetable-rods", + "url": "https://fr.openfoodfacts.org/categorie/legumes-tiges" + }, + { + "name": "Chocolats fourrés au praliné", + "id": "en:chocolates-stuffed-with-praline", + "products": 104, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-fraise", + "name": "Yaourts à la fraise", + "id": "en:strawberry-yogurts", + "products": 104 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/margarines-allegees", + "products": 104, + "name": "Margarines allégées", + "id": "en:light-margarines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-au-bain-marie", + "products": 104, + "id": "fr:plats-prepares-a-rechauffer-au-bain-marie", + "name": "Plats-prepares-a-rechauffer-au-bain-marie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-complet", + "id": "en:wholemeal-english-bread", + "name": "Pains de mie complet", + "products": 104 + }, + { + "products": 103, + "name": "de:Aliments-et-boissons-a-base-de-vegetaux", + "id": "de:aliments-et-boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "products": 103, + "name": "Sirops de grenadine", + "id": "en:grenadine", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1136498" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-grenadine" + }, + { + "id": "en:ham-and-cheese-sandwiches", + "name": "Sandwichs Jambon Fromage", + "products": 103, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3782694" + ], + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-jambon-fromage" + }, + { + "name": "Galettes de blé noir", + "id": "fr:galettes-de-ble-noir", + "products": 103, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-ble-noir" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q29443" + ], + "url": "https://fr.openfoodfacts.org/categorie/quatre-quarts", + "products": 103, + "name": "Quatre-quarts", + "id": "en:pound-cake" + }, + { + "products": 103, + "name": "Jus d'ananas", + "id": "en:pineapple-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3190226" + ] + }, + { + "products": 103, + "name": "Biscuits-fourres", + "id": "fr:biscuits-fourres", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truites-fumees", + "name": "Truites fumées", + "id": "en:smoked-trouts", + "products": 103 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchi", + "id": "en:gnocchi", + "name": "Gnocchi", + "products": 103 + }, + { + "id": "fr:nonnettes", + "name": "Nonnettes", + "products": 102, + "url": "https://fr.openfoodfacts.org/categorie/nonnettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3343365" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees", + "id": "en:dairy-mousses", + "name": "Mousses lactées", + "products": 102 + }, + { + "id": "en:dry-egg-pastas", + "name": "Pâtes sèches aux œufs", + "products": 102, + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-aux-oeufs" + }, + { + "products": 102, + "id": "en:tropical-tunas", + "name": "Thons tropicaux", + "url": "https://fr.openfoodfacts.org/categorie/thons-tropicaux" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q13290" + ], + "url": "https://fr.openfoodfacts.org/categorie/smoothies", + "name": "Smoothies", + "id": "en:smoothies", + "products": 101 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-decongeles", + "id": "fr:produits-decongeles", + "name": "Produits-decongeles", + "products": 101 + }, + { + "id": "en:puffed-cereals", + "name": "Céréales soufflées", + "products": 101, + "url": "https://fr.openfoodfacts.org/categorie/cereales-soufflees" + }, + { + "products": 101, + "name": "Brioches tressées", + "id": "fr:brioches-tressees", + "url": "https://fr.openfoodfacts.org/categorie/brioches-tressees" + }, + { + "products": 101, + "id": "en:puffed-grains", + "name": "Grains soufflées", + "sameAs": [ + "https://www.wikidata.org/wiki/Q12961445" + ], + "url": "https://fr.openfoodfacts.org/categorie/grains-soufflees" + }, + { + "id": "en:cold-soups", + "name": "Soupes froides", + "products": 100, + "url": "https://fr.openfoodfacts.org/categorie/soupes-froides", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16635700" + ] + }, + { + "name": "Abricots secs", + "id": "en:dried-apricots", + "products": 100, + "url": "https://fr.openfoodfacts.org/categorie/abricots-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-poulet", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1072190" + ], + "id": "en:chicken-nuggets", + "name": "Nuggets de poulet", + "products": 100 + }, + { + "products": 99, + "id": "en:licensed-products", + "name": "Produits sous license", + "url": "https://fr.openfoodfacts.org/categorie/produits-sous-license" + }, + { + "products": 99, + "name": "Bières aromatisées", + "id": "en:flavored-beers", + "url": "https://fr.openfoodfacts.org/categorie/bieres-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-multifruits", + "name": "Yaourts multifruits", + "id": "fr:yaourts-multifruits", + "products": 99 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-caramel", + "products": 99, + "id": "en:cereals-with-caramel", + "name": "Céréales au caramel" + }, + { + "name": "Produits tripiers", + "id": "en:tripe-dishes", + "products": 99, + "url": "https://fr.openfoodfacts.org/categorie/produits-tripiers" + }, + { + "products": 99, + "name": "Chocolats salés", + "id": "en:salted-chocolates", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-labellises-biologiques", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7101842" + ], + "products": 99, + "id": "en:organic-eggs", + "name": "Oeufs labellisés biologiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-bio", + "products": 98, + "id": "en:organic-beers", + "name": "Bières bio" + }, + { + "products": 98, + "id": "en:champagnes", + "name": "Champagnes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q134862" + ], + "url": "https://fr.openfoodfacts.org/categorie/champagnes" + }, + { + "id": "en:green-pitted-olives", + "name": "Olives vertes dénoyautées", + "products": 98, + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-denoyautees" + }, + { + "products": 98, + "name": "Petits pots pour bébé", + "id": "fr:petits-pots-pour-bebe", + "url": "https://fr.openfoodfacts.org/categorie/petits-pots-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:snacks-sucres", + "id": "en:snacks-sucres", + "name": "en:Snacks-sucres", + "products": 98 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pruneaux-d-agen", + "products": 97, + "name": "Pruneaux d'Agen", + "id": "fr:pruneaux-d-agen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quiches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q722595" + ], + "id": "en:quiches", + "name": "Quiches", + "products": 97 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-poires", + "products": 97, + "name": "Compotes pommes poires", + "id": "en:pear-applesauces" + }, + { + "products": 97, + "name": "Whiskys", + "id": "en:whisky", + "sameAs": [ + "https://www.wikidata.org/wiki/Q281" + ], + "url": "https://fr.openfoodfacts.org/categorie/whiskys" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corn-flakes", + "name": "Corn-flakes", + "id": "en:corn-flakes", + "products": 96 + }, + { + "name": "Glaces au chocolat", + "id": "en:chocolate-ice-cream-tubs", + "products": 96, + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-de-colin", + "name": "Poissons panés de colin", + "id": "en:breaded-hake-fish", + "products": 96 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entrees-et-snacks-surgeles", + "id": "fr:entrees-et-snacks-surgeles", + "name": "Entrées et snacks surgelés", + "products": 95 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-poisson", + "name": "Sandwichs au poisson", + "id": "en:fish-sandwiches", + "products": 95 + }, + { + "name": "Fromages de montagne", + "id": "en:mountain-cheeses", + "products": 95, + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-montagne" + }, + { + "products": 95, + "id": "en:blueberry-yogurts", + "name": "Yaourts à la myrtille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-myrtille" + }, + { + "name": "Gâches", + "id": "fr:gaches", + "products": 95, + "url": "https://fr.openfoodfacts.org/categorie/gaches" + }, + { + "id": "fr:guimauves", + "name": "Guimauves", + "products": 95, + "url": "https://fr.openfoodfacts.org/categorie/guimauves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-secs", + "products": 94, + "id": "en:dried-mixed-fruits", + "name": "Mélanges de fruits secs" + }, + { + "products": 94, + "name": "Sirops de menthe", + "id": "en:mint-syrups", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-menthe", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16676963" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calendriers-de-l-avent", + "id": "en:advent-calendars", + "name": "Calendriers de l'avent", + "products": 94 + }, + { + "products": 94, + "id": "en:flavored-black-teas", + "name": "Thés noirs aromatisés", + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-hachees-surgelees", + "name": "Préparations de viande hachées surgelées", + "id": "en:frozen-ground-meat-preparations", + "products": 94 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-poules-elevees-en-cage", + "sameAs": [ + "https://www.wikidata.org/wiki/Q35855119" + ], + "products": 94, + "name": "Œufs de poules élevées en cage", + "id": "en:cage-eggs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-campagne", + "id": "fr:terrines-de-campagne", + "name": "Terrines de campagne", + "products": 94 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-viande-rouge", + "id": "fr:rillettes-de-viande-rouge", + "name": "Rillettes de viande rouge", + "products": 94 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mozzarella-di-bufala-campana", + "sameAs": [ + "https://www.wikidata.org/wiki/Q941068" + ], + "name": "Mozzarella di Bufala Campana", + "id": "fr:mozzarella-di-bufala-campana", + "products": 93 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-porc", + "products": 93, + "id": "fr:rillettes-de-porc", + "name": "Rillettes de porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choucroutes-garnies", + "products": 93, + "id": "fr:choucroutes-garnies", + "name": "Choucroutes garnies" + }, + { + "products": 93, + "name": "Flocons d'avoine", + "id": "en:oat-flakes", + "url": "https://fr.openfoodfacts.org/categorie/flocons-d-avoine" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q155922" + ], + "url": "https://fr.openfoodfacts.org/categorie/parmigiano-reggiano", + "products": 92, + "name": "Parmigiano Reggiano", + "id": "en:parmigiano-reggiano" + }, + { + "products": 92, + "name": "Moules", + "id": "en:mussels", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15735642" + ], + "url": "https://fr.openfoodfacts.org/categorie/moules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-volailles", + "name": "Terrines de volailles", + "id": "fr:terrines-de-volailles", + "products": 92 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q217446" + ], + "products": 92, + "name": "Sucettes", + "id": "en:lollipops" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-a-l-ancienne", + "products": 92, + "name": "Chips à l'ancienne", + "id": "en:old-fashioned-crisps" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/speculoos", + "name": "Spéculoos", + "id": "fr:speculoos", + "products": 92 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-de-noel", + "name": "Chocolats de Noël", + "id": "en:christmas-chocolates", + "products": 92 + }, + { + "products": 91, + "name": "Préparations de viande fraîches", + "id": "en:fresh-meat-preparations", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-fraiches" + }, + { + "id": "en:sugar-substitutes", + "name": "Succédanés du sucre", + "products": 91, + "url": "https://fr.openfoodfacts.org/categorie/succedanes-du-sucre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q626292" + ] + }, + { + "id": "en:eastern-tabbouleh", + "name": "Taboulés orientaux", + "products": 91, + "url": "https://fr.openfoodfacts.org/categorie/taboules-orientaux" + }, + { + "id": "en:pork-belly", + "name": "Poitrine de porc", + "products": 91, + "url": "https://fr.openfoodfacts.org/categorie/poitrine-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-porc", + "products": 91, + "name": "Rôtis de porc", + "id": "fr:rotis-de-porc" + }, + { + "id": "en:swiss-chocolates", + "name": "Chocolats suisses", + "products": 91, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-suisses" + }, + { + "name": "Champignons", + "id": "de:pilze", + "products": 91, + "url": "https://fr.openfoodfacts.org/categorie/champignons" + }, + { + "products": 90, + "name": "Taramas", + "id": "en:taramasalata", + "url": "https://fr.openfoodfacts.org/categorie/taramas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1246721" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q229385" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-soja", + "products": 90, + "name": "Sauces au soja", + "id": "en:soy-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-entieres", + "products": 90, + "id": "fr:cremes-entieres", + "name": "Crèmes entières" + }, + { + "products": 90, + "name": "Pommes", + "id": "en:apples", + "sameAs": [ + "https://www.wikidata.org/wiki/Q89" + ], + "url": "https://fr.openfoodfacts.org/categorie/pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-souffles-a-base-de-pomme-de-terre", + "name": "Biscuits apéritifs soufflés à base de pomme de terre", + "id": "fr:biscuits-aperitifs-souffles-a-base-de-pomme-de-terre", + "products": 90 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q269781" + ], + "url": "https://fr.openfoodfacts.org/categorie/thons-albacore", + "products": 90, + "name": "Thons albacore", + "id": "en:yellowfin-tunas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gressins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q514467" + ], + "products": 90, + "id": "en:breadsticks", + "name": "Gressins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/premier-cru", + "name": "Premier cru", + "id": "en:flavoured", + "products": 90 + }, + { + "products": 90, + "name": "Sauces pimentées", + "id": "en:pimented-sauces", + "url": "https://fr.openfoodfacts.org/categorie/sauces-pimentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-d-origine-vegetale", + "id": "de:aliments-d-origine-vegetale", + "name": "de:Aliments-d-origine-vegetale", + "products": 89 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chipolatas", + "products": 89, + "name": "Chipolatas", + "id": "fr:chipolatas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-extra-fin", + "name": "Chocolats au lait extra fin", + "id": "en:chocolates-with-extra-fine-milk", + "products": 89 + }, + { + "id": "en:greek-cheeses", + "name": "Fromages de Grèce", + "products": 89, + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-grece" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q593675" + ], + "url": "https://fr.openfoodfacts.org/categorie/goudas", + "id": "en:gouda", + "name": "Goudas", + "products": 89 + }, + { + "id": "en:nut-confectioneries", + "name": "Confiseries de fruits à coques", + "products": 89, + "url": "https://fr.openfoodfacts.org/categorie/confiseries-de-fruits-a-coques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-roses", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1058410" + ], + "name": "Crevettes roses", + "id": "en:prawns", + "products": 88 + }, + { + "products": 88, + "name": "Wraps", + "id": "fr:wraps", + "url": "https://fr.openfoodfacts.org/categorie/wraps" + }, + { + "products": 88, + "name": "Tagliatelles", + "id": "en:tagliatelle", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20044" + ], + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-fruits-a-coque", + "products": 88, + "name": "Boissons végétales de fruits à coque", + "id": "en:nut-milks" + }, + { + "products": 88, + "id": "en:teas-in-tea-bags", + "name": "Infusions en sachets", + "url": "https://fr.openfoodfacts.org/categorie/infusions-en-sachets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flageolets-en-conserve", + "id": "en:canned-flageolet-beans", + "name": "Flageolets en conserve", + "products": 88 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-fruits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1136961" + ], + "products": 87, + "name": "Coulis de fruits", + "id": "en:fruits-coulis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-mi-cuits", + "id": "fr:foies-gras-mi-cuits", + "name": "Foies gras mi-cuits", + "products": 87 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-fruits", + "products": 87, + "id": "en:fruit-pastes", + "name": "Pâtes de fruits" + }, + { + "id": "en:fruit-yogurts-with-fruit-chunks", + "name": "Yaourts aux fruits avec morceaux", + "products": 87, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-avec-morceaux" + }, + { + "id": "en:canned-chickpeas", + "name": "Pois chiches en conserve", + "products": 87, + "url": "https://fr.openfoodfacts.org/categorie/pois-chiches-en-conserve" + }, + { + "products": 87, + "id": "en:cods", + "name": "Morues", + "url": "https://fr.openfoodfacts.org/categorie/morues" + }, + { + "name": "Pâtes d'Alsace", + "id": "fr:pates-d-alsace", + "products": 87, + "url": "https://fr.openfoodfacts.org/categorie/pates-d-alsace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bacon", + "name": "Bacon", + "id": "en:bacon", + "products": 87 + }, + { + "name": "Huiles de fruits et graines de fruits", + "id": "en:fruit-and-fruit-seed-oils", + "products": 86, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-fruits-et-graines-de-fruits" + }, + { + "name": "Jus de citron", + "id": "en:lemon-juice", + "products": 86, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1375049" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-preparees", + "name": "Lentilles préparées", + "id": "en:prepared-lentils", + "products": 86 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-rouges-melanges", + "name": "Confitures de fruits rouges mélanges", + "id": "en:mixed-berry-jams", + "products": 86 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises", + "products": 86, + "id": "en:strawberries", + "name": "Fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-thon", + "id": "en:tuna-rillettes", + "name": "Rillettes de thon", + "products": 85 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pains-grilles", + "products": 85, + "name": "Petits pains grillés", + "id": "en:toasted-bread-rolls" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-au-fromage", + "name": "Ravioli au fromage", + "id": "en:cheese-ravioli", + "products": 85 + }, + { + "name": "Mayonnaises de Dijon", + "id": "en:dijon-mayonnaises", + "products": 85, + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-de-dijon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/piments", + "name": "Piments", + "id": "en:chili-peppers", + "products": 85 + }, + { + "name": "Compotes pommes banane", + "id": "fr:compotes-pommes-banane", + "products": 85, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-banane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-amandes", + "id": "en:dark-chocolates-with-almonds", + "name": "Chocolats noirs aux amandes", + "products": 85 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q207220" + ], + "name": "Muffins", + "id": "en:muffins", + "products": 85 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aides-a-la-patisserie", + "name": "Aides à la pâtisserie", + "id": "en:pastry-helpers", + "products": 84 + }, + { + "products": 84, + "name": "Raisins secs", + "id": "en:raisins", + "url": "https://fr.openfoodfacts.org/categorie/raisins-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-legeres", + "products": 84, + "id": "fr:cremes-fraiches-legeres", + "name": "Crèmes fraîches légères" + }, + { + "products": 83, + "name": "Bloc de foie gras avec morceaux", + "id": "fr:bloc-de-foie-gras-avec-morceaux", + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-avec-morceaux" + }, + { + "id": "en:burgundy-wines", + "name": "Bourgogne", + "products": 83, + "url": "https://fr.openfoodfacts.org/categorie/bourgogne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1016093" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-prepares", + "products": 83, + "name": "Couscous préparés", + "id": "en:prepared-couscous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-pelees", + "products": 83, + "name": "Tomates pelées", + "id": "en:peeled-tomatoes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/prefous", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3408933" + ], + "id": "fr:prefous", + "name": "Préfous", + "products": 83 + }, + { + "products": 82, + "name": "Feta", + "id": "en:feta", + "sameAs": [ + "https://www.wikidata.org/wiki/Q182760" + ], + "url": "https://fr.openfoodfacts.org/categorie/feta" + }, + { + "products": 82, + "name": "Taramas au cabillaud", + "id": "fr:taramas-au-cabillaud", + "url": "https://fr.openfoodfacts.org/categorie/taramas-au-cabillaud" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amandes-decortiquees", + "name": "Amandes décortiquées", + "id": "en:shelled-almonds", + "products": 82 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assiettes-pour-bebe", + "name": "Assiettes pour bébé", + "id": "en:baby-dishes", + "products": 82 + }, + { + "name": "Pâtes instantanées", + "id": "en:instant-pasta", + "products": 82, + "url": "https://fr.openfoodfacts.org/categorie/pates-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pamplemousse", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1138468" + ], + "id": "en:grapefruit-juices", + "name": "Jus de pamplemousse", + "products": 82 + }, + { + "products": 81, + "name": "Truffes en chocolat", + "id": "en:chocolate-truffles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1063560" + ], + "url": "https://fr.openfoodfacts.org/categorie/truffes-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-canard", + "products": 81, + "id": "fr:mousses-de-canard", + "name": "Mousses de canard" + }, + { + "name": "Rillettes françaises", + "id": "fr:rillettes-francaises", + "products": 81, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-francaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-liquides", + "id": "fr:cremes-fraiches-liquides", + "name": "Crèmes fraîches liquides", + "products": 81 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q159304" + ], + "url": "https://fr.openfoodfacts.org/categorie/touron", + "name": "Touron", + "id": "en:turron", + "products": 81 + }, + { + "name": "Cafés en dosettes compatible Senseo", + "id": "en:senseo-compatible-coffee-capsules", + "products": 80, + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-dosettes-compatible-senseo" + }, + { + "products": 80, + "id": "en:popcorn", + "name": "Popcorn", + "url": "https://fr.openfoodfacts.org/categorie/popcorn", + "sameAs": [ + "https://www.wikidata.org/wiki/Q165112" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots", + "sameAs": [ + "https://www.wikidata.org/wiki/Q42339" + ], + "products": 80, + "name": "Haricots", + "id": "en:common-beans" + }, + { + "name": "Salades au thon", + "id": "en:tuna-salad", + "products": 80, + "url": "https://fr.openfoodfacts.org/categorie/salades-au-thon" + }, + { + "name": "Knacks industrielles", + "id": "en:industrial-knacks", + "products": 80, + "url": "https://fr.openfoodfacts.org/categorie/knacks-industrielles" + }, + { + "products": 80, + "id": "en:sunflower-oils", + "name": "Huiles de tournesol", + "sameAs": [ + "https://www.wikidata.org/wiki/Q94787" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-fruits-a-coques", + "products": 80, + "id": "en:nut-oils", + "name": "Huiles de fruits à coques" + }, + { + "products": 79, + "id": "en:risottos", + "name": "Risottos", + "url": "https://fr.openfoodfacts.org/categorie/risottos", + "sameAs": [ + "https://www.wikidata.org/wiki/Q208105" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees", + "products": 79, + "name": "Crêpes fourrées", + "id": "en:filled-crepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-pour-bebe", + "products": 79, + "name": "Desserts lactés pour bébé", + "id": "en:baby-dairy-desserts" + }, + { + "id": "fr:jambons-serrano", + "name": "Jambons Serrano", + "products": 79, + "sameAs": [ + "https://www.wikidata.org/wiki/Q584324" + ], + "url": "https://fr.openfoodfacts.org/categorie/jambons-serrano" + }, + { + "products": 79, + "name": "Préparations de viande bovine hachée surgelées", + "id": "en:frozen-ground-beef-preparations", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-bovine-hachee-surgelees" + }, + { + "products": 79, + "id": "en:spice-mix", + "name": "Mélanges d'épices", + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-epices" + }, + { + "products": 79, + "name": "es:Aliments-et-boissons-a-base-de-vegetaux", + "id": "es:aliments-et-boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "products": 79, + "name": "Céréales pour bébé", + "id": "en:cereals-for-babies", + "url": "https://fr.openfoodfacts.org/categorie/cereales-pour-bebe" + }, + { + "id": "fr:croque-monsieur", + "name": "Croque-monsieur", + "products": 78, + "url": "https://fr.openfoodfacts.org/categorie/croque-monsieur", + "sameAs": [ + "https://www.wikidata.org/wiki/Q738" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hachis-parmentier", + "name": "Hachis parmentier", + "id": "en:shepherd-s-pie", + "products": 78 + }, + { + "name": "Camemberts de Normandie", + "id": "en:camemberts-de-normandie", + "products": 78, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1086855" + ], + "url": "https://fr.openfoodfacts.org/categorie/camemberts-de-normandie" + }, + { + "products": 78, + "name": "Olives farcies", + "id": "en:stuffed-olives", + "url": "https://fr.openfoodfacts.org/categorie/olives-farcies" + }, + { + "products": 78, + "name": "Roqueforts", + "id": "fr:roqueforts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q189221" + ], + "url": "https://fr.openfoodfacts.org/categorie/roqueforts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paella", + "products": 78, + "name": "Paëlla", + "id": "en:paella" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-au-chocolat", + "products": 78, + "name": "Madeleines au chocolat", + "id": "en:chocolate-madeleines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-noisettes", + "products": 77, + "name": "Chocolats noirs aux noisettes", + "id": "en:dark-chocolates-with-hazelnuts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-barbecue", + "products": 77, + "name": "Sauces barbecue", + "id": "en:barbecue-sauces" + }, + { + "products": 77, + "name": "Tommes", + "id": "fr:tommes", + "url": "https://fr.openfoodfacts.org/categorie/tommes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q4258412" + ], + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales", + "name": "Crèmes végétales", + "id": "en:plant-based-creams", + "products": 77 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q23485" + ], + "url": "https://fr.openfoodfacts.org/categorie/oignons", + "products": 77, + "name": "Oignons", + "id": "en:onions" + }, + { + "products": 77, + "name": "Blancs de dinde", + "id": "en:turkey-breasts", + "url": "https://fr.openfoodfacts.org/categorie/blancs-de-dinde" + }, + { + "products": 77, + "name": "Bières fortes", + "id": "en:strong-beers", + "url": "https://fr.openfoodfacts.org/categorie/bieres-fortes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2905033" + ], + "url": "https://fr.openfoodfacts.org/categorie/bieres-brunes", + "products": 76, + "name": "Bières brunes", + "id": "en:stout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buches-glacees", + "products": 76, + "id": "fr:buches-glacees", + "name": "Bûches glacées" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q83376" + ], + "url": "https://fr.openfoodfacts.org/categorie/rhums", + "name": "Rhums", + "id": "en:rums", + "products": 76 + }, + { + "id": "en:strawberry-applesauces", + "name": "Compotes pommes fraise", + "products": 76, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-fraise" + }, + { + "products": 76, + "id": "en:tomato-pastes", + "name": "Concentrés de tomates", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1499073" + ], + "url": "https://fr.openfoodfacts.org/categorie/concentres-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-de-ble-dur", + "products": 76, + "name": "Coquillettes de blé dur", + "id": "fr:coquillettes-de-ble-dur" + }, + { + "id": "en:poultry-sausages", + "name": "Saucisses de volaille", + "products": 76, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-volaille" + }, + { + "id": "en:croissants", + "name": "Croissants", + "products": 76, + "sameAs": [ + "https://www.wikidata.org/wiki/Q207832" + ], + "url": "https://fr.openfoodfacts.org/categorie/croissants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-blancs-en-conserve", + "products": 75, + "id": "en:canned-white-common-beans", + "name": "Haricots blancs en conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-burger", + "products": 75, + "id": "en:hamburger-buns", + "name": "Pains Burger" + }, + { + "products": 75, + "name": "Harengs", + "id": "en:herring", + "url": "https://fr.openfoodfacts.org/categorie/harengs" + }, + { + "products": 75, + "id": "en:canned-meats", + "name": "Viandes en conserve", + "url": "https://fr.openfoodfacts.org/categorie/viandes-en-conserve" + }, + { + "products": 75, + "name": "Fromages au lait thermisé", + "id": "en:thermised-milk-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-lait-thermise" + }, + { + "name": "Boudins blancs", + "id": "fr:boudins-blancs", + "products": 75, + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2751264" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-vegetaux", + "name": "Yaourts végétaux", + "id": "en:non-dairy-yogurts", + "products": 75 + }, + { + "name": "Preparations-pour-desserts", + "id": "fr:preparations-pour-desserts", + "products": 75, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-desserts" + }, + { + "name": "Confitures de mûres", + "id": "en:blackberry-jams", + "products": 75, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mures" + }, + { + "products": 74, + "id": "fr:palmiers", + "name": "Palmiers", + "url": "https://fr.openfoodfacts.org/categorie/palmiers", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2096475" + ] + }, + { + "products": 74, + "name": "Laits de croissance", + "id": "en:growth-milks", + "url": "https://fr.openfoodfacts.org/categorie/laits-de-croissance" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q177166" + ], + "url": "https://fr.openfoodfacts.org/categorie/galettes-des-rois", + "name": "Galettes des rois", + "id": "en:king-cakes", + "products": 74 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-au-chocolat", + "id": "en:chocolate-cereal-bars", + "name": "Barres de céréales au chocolat", + "products": 74 + }, + { + "name": "Olives vertes farcies", + "id": "en:green-stuffed-olives", + "products": 74, + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies" + }, + { + "products": 74, + "id": "en:gazpacho", + "name": "Gaspacho", + "sameAs": [ + "https://www.wikidata.org/wiki/Q202677" + ], + "url": "https://fr.openfoodfacts.org/categorie/gaspacho" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q975953" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-d-amande", + "products": 74, + "name": "Laits d'amande", + "id": "en:almond-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-caramel", + "id": "en:caramel-chocolates", + "name": "Chocolats au caramel", + "products": 74 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-en-chocolat", + "name": "Oeufs-en-chocolat", + "id": "fr:oeufs-en-chocolat", + "products": 73 + }, + { + "name": "Coulommiers", + "id": "fr:coulommiers", + "products": 73, + "sameAs": [ + "https://www.wikidata.org/wiki/Q774297" + ], + "url": "https://fr.openfoodfacts.org/categorie/coulommiers" + }, + { + "products": 73, + "id": "en:fresh-ground-meat-preparations", + "name": "Préparations de viande hachées fraîches", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-hachees-fraiches" + }, + { + "name": "Crèmes végétales pour cuisiner", + "id": "en:plant-based-creams-for-cooking", + "products": 73, + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-pour-cuisiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-peche", + "products": 73, + "id": "en:peach-flavored-iced-teas", + "name": "Thés glacés saveur pêche" + }, + { + "products": 73, + "id": "en:wine-vinegars", + "name": "Vinaigres de vin", + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-vin" + }, + { + "products": 73, + "id": "en:tomato-purees", + "name": "Purées de tomates", + "url": "https://fr.openfoodfacts.org/categorie/purees-de-tomates" + }, + { + "products": 73, + "id": "es:aliments-d-origine-vegetale", + "name": "es:Aliments-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-d-origine-vegetale" + }, + { + "id": "en:soy-milk-yogurts", + "name": "Yaourts au soja", + "products": 73, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-lyophilisees", + "name": "Boissons lyophilisées", + "id": "en:dehydrated-beverages", + "products": 72 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-en-conserve", + "id": "en:canned-asparagus", + "name": "Asperges en conserve", + "products": 72 + }, + { + "id": "en:frozen-legumes", + "name": "Légumineuses surgelées", + "products": 72, + "url": "https://fr.openfoodfacts.org/categorie/legumineuses-surgelees" + }, + { + "name": "Brandades de morue", + "id": "en:cod-brandade", + "products": 72, + "url": "https://fr.openfoodfacts.org/categorie/brandades-de-morue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivres-noirs", + "products": 71, + "id": "en:black-peppers", + "name": "Poivres noirs" + }, + { + "products": 71, + "name": "Gaufres liégeoises", + "id": "fr:gaufres-liegeoises", + "url": "https://fr.openfoodfacts.org/categorie/gaufres-liegeoises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-frais", + "name": "Ravioli frais", + "id": "fr:ravioli-frais", + "products": 71 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-chocolats", + "products": 71, + "name": "Assortiments de chocolats", + "id": "en:assorted-chocolates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets", + "name": "Beignets", + "id": "fr:beignets", + "products": 71 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-pizza", + "id": "en:pizza-dough", + "name": "Pâtes à pizza", + "products": 71 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salamis", + "id": "en:salami", + "name": "Salamis", + "products": 70 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres", + "products": 70, + "name": "en:Bieres", + "id": "en:bieres" + }, + { + "products": 70, + "id": "en:baby-fruit-desserts", + "name": "Desserts au fruit pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-fruit-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merguez", + "id": "fr:merguez", + "name": "Merguez", + "products": 70 + }, + { + "products": 69, + "name": "Cremes-au-vinaigre-balsamique", + "id": "fr:cremes-au-vinaigre-balsamique", + "url": "https://fr.openfoodfacts.org/categorie/cremes-au-vinaigre-balsamique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-brisees", + "name": "Pâtes brisées", + "id": "fr:pates-brisees", + "products": 69 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistaches-grillees", + "products": 69, + "id": "en:roasted-pistachios", + "name": "Pistaches grillées" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-seches", + "products": 69, + "id": "en:dried-vegetables", + "name": "Légumes séchés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-de-chevre", + "name": "Yaourts au lait de chèvre", + "id": "en:goat-milk-yogurts", + "products": 69 + }, + { + "id": "en:lemon-syrups", + "name": "Sirops de citron", + "products": 69, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tapenades-noires", + "products": 69, + "name": "Tapenades noires", + "id": "fr:tapenades-noires" + }, + { + "id": "en:panna-cottas", + "name": "Panna cottas", + "products": 69, + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigrettes-allegees-en-matieres-grasses", + "name": "Vinaigrettes allégées en matières grasses", + "id": "fr:vinaigrettes-allegees-en-matieres-grasses", + "products": 69 + }, + { + "products": 69, + "id": "fr:madeleines-longues", + "name": "Madeleines longues", + "url": "https://fr.openfoodfacts.org/categorie/madeleines-longues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1057052" + ], + "id": "en:sprouts", + "name": "Pousses", + "products": 69 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/menus-viandes-pour-bebe", + "products": 68, + "name": "Menus Viandes pour bébé", + "id": "en:meat-menus-for-babies" + }, + { + "products": 68, + "name": "Mélanges d'huiles", + "id": "en:mixed-vegetable-oils", + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-huiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-vegetaux-pour-hamburgers", + "products": 68, + "id": "en:veggie-burger-patties", + "name": "Steaks végétaux pour hamburgers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tiramisu", + "sameAs": [ + "https://www.wikidata.org/wiki/Q131582" + ], + "name": "Tiramisu", + "id": "en:tiramisu", + "products": 68 + }, + { + "products": 68, + "name": "Sirops d'agave", + "id": "en:agave-syrups", + "sameAs": [ + "https://www.wikidata.org/wiki/Q392001" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-agave" + }, + { + "products": 68, + "id": "fr:financiers", + "name": "Financiers", + "sameAs": [ + "https://www.wikidata.org/wiki/Q588378" + ], + "url": "https://fr.openfoodfacts.org/categorie/financiers" + }, + { + "products": 68, + "id": "en:skimmed-milks", + "name": "Laits écrémés", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2352187" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-ecremes" + }, + { + "id": "en:egg-noodles", + "name": "Egg noodles", + "products": 68, + "url": "https://fr.openfoodfacts.org/categorie/egg-noodles" + }, + { + "products": 68, + "name": "Yaourts à la framboise", + "id": "en:raspberry-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-framboise" + }, + { + "products": 67, + "name": "Donuts", + "id": "en:doughnuts", + "url": "https://fr.openfoodfacts.org/categorie/donuts" + }, + { + "products": 67, + "id": "en:dark-chocolates-with-orange", + "name": "Chocolats noirs à l'orange", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-sechees", + "id": "en:dried-tomatoes", + "name": "Tomates séchées", + "products": 67 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faisselles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3064619" + ], + "products": 67, + "id": "fr:faisselles", + "name": "Faisselles" + }, + { + "name": "Gâteaux marbrés", + "id": "en:marble-cakes", + "products": 67, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-marbres" + }, + { + "products": 67, + "id": "fr:rosettes", + "name": "Rosettes", + "url": "https://fr.openfoodfacts.org/categorie/rosettes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q193411" + ], + "url": "https://fr.openfoodfacts.org/categorie/bries", + "products": 67, + "id": "en:bries", + "name": "Bries" + }, + { + "products": 66, + "id": "fr:thons-a-l-huile-d-olive", + "name": "Thons à l'huile d'olive", + "url": "https://fr.openfoodfacts.org/categorie/thons-a-l-huile-d-olive" + }, + { + "products": 66, + "name": "Sardines à la tomate", + "id": "en:sardines-in-tomato-sauce", + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-la-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-fraise", + "id": "en:strawberry-biscuits", + "name": "Biscuits à la fraise", + "products": 66 + }, + { + "name": "Côtes du Rhône", + "id": "fr:cotes-du-rhone", + "products": 66, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1151005" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-la-sarthe", + "products": 66, + "id": "fr:rillettes-de-la-sarthe", + "name": "Rillettes de la Sarthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-aliments-a-base-de-plantes-surgeles", + "products": 66, + "id": "en:frozen-plant-based-foods-mixes", + "name": "Mélanges d'aliments à base de plantes surgelés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-au-vinaigre", + "id": "en:pickled-gherkins", + "name": "Cornichons au vinaigre", + "products": 66 + }, + { + "id": "en:organic-semi-skimmed-milks", + "name": "Laits demi-écrémés biologiques", + "products": 66, + "url": "https://fr.openfoodfacts.org/categorie/laits-demi-ecremes-biologiques" + }, + { + "products": 66, + "name": "Lapins en chocolat", + "id": "en:chocolate-rabbits", + "url": "https://fr.openfoodfacts.org/categorie/lapins-en-chocolat" + }, + { + "name": "Noix", + "id": "en:walnuts", + "products": 66, + "url": "https://fr.openfoodfacts.org/categorie/noix", + "sameAs": [ + "https://www.wikidata.org/wiki/Q208021" + ] + }, + { + "id": "en:mashed-vegetables", + "name": "Purées de légumes", + "products": 66, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-legumes" + }, + { + "name": "Champagnes français", + "id": "en:french-champagnes", + "products": 65, + "url": "https://fr.openfoodfacts.org/categorie/champagnes-francais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-legumes", + "id": "en:vegetable-broths", + "name": "Bouillons de légumes", + "products": 65 + }, + { + "products": 65, + "id": "en:white-rices", + "name": "Riz blanc", + "url": "https://fr.openfoodfacts.org/categorie/riz-blanc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2674257" + ] + }, + { + "name": "Kouign-amann", + "id": "en:kouign-amann", + "products": 65, + "sameAs": [ + "https://www.wikidata.org/wiki/Q548319" + ], + "url": "https://fr.openfoodfacts.org/categorie/kouign-amann" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20057" + ], + "id": "en:tortellini", + "name": "Tortellini", + "products": 65 + }, + { + "products": 64, + "id": "en:herbal-tea-blends", + "name": "Tisanes de plantes mélangées", + "url": "https://fr.openfoodfacts.org/categorie/tisanes-de-plantes-melangees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-seches-moulues", + "id": "en:ground-dried-aromatic-plants", + "name": "Plantes aromatiques sèches moulues", + "products": 64 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cordons-bleus-de-dinde", + "products": 64, + "name": "Cordons bleus de dinde", + "id": "fr:cordons-bleus-de-dinde" + }, + { + "products": 64, + "id": "en:carrots", + "name": "Carottes", + "url": "https://fr.openfoodfacts.org/categorie/carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/shortbread", + "sameAs": [ + "https://www.wikidata.org/wiki/Q652695" + ], + "products": 64, + "id": "en:shortbread", + "name": "Shortbread" + }, + { + "products": 64, + "name": "Jus de pomme à base de concentré", + "id": "en:concentrated-apple-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines", + "products": 64, + "name": "Filets de sardines", + "id": "en:sardine-fillets" + }, + { + "name": "Penne rigate", + "id": "en:penne-rigate", + "products": 64, + "url": "https://fr.openfoodfacts.org/categorie/penne-rigate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes-sauvages", + "name": "Saumons fumés sauvages", + "id": "en:wild-smoked-salmons", + "products": 64 + }, + { + "products": 64, + "name": "Jambons blancs fumés", + "id": "en:white-smoked-hams", + "url": "https://fr.openfoodfacts.org/categorie/jambons-blancs-fumes" + }, + { + "products": 64, + "id": "en:soft-cheese-with-a-natural-rind", + "name": "Fromages à pâte molle à croûte naturelle", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3088326" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-molle-a-croute-naturelle" + }, + { + "id": "en:pollocks", + "name": "Colins", + "products": 64, + "url": "https://fr.openfoodfacts.org/categorie/colins" + }, + { + "id": "en:dark-chocolates-with-cocoa-beans", + "name": "Chocolats noirs aux fèves de cacao", + "products": 64, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-feves-de-cacao" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q815898" + ], + "url": "https://fr.openfoodfacts.org/categorie/blinis", + "products": 64, + "id": "fr:blinis", + "name": "Blinis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-sans-croute", + "id": "en:english-bread-without-crust", + "name": "Pains de mie sans croûte", + "products": 64 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-charcutiers", + "products": 64, + "id": "fr:pates-charcutiers", + "name": "Pates-charcutiers" + }, + { + "products": 64, + "id": "en:evening-meals-for-babies", + "name": "Plats du soir pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/plats-du-soir-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-a-l-ancienne", + "products": 63, + "id": "en:old-style-mustards", + "name": "Moutardes à l'ancienne" + }, + { + "name": "Asperges", + "id": "en:asparagus", + "products": 63, + "url": "https://fr.openfoodfacts.org/categorie/asperges" + }, + { + "id": "en:filled-dark-chocolates", + "name": "Chocolats noirs fourrés", + "products": 63, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-en-poudre", + "name": "Sucres en poudre", + "id": "fr:sucres-en-poudre", + "products": 63 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudoirs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16533537" + ], + "products": 62, + "name": "Boudoirs", + "id": "fr:boudoirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-l-emmental", + "name": "Sandwichs à l'emmental", + "id": "en:emmental-cheese-sandwiches", + "products": 62 + }, + { + "id": "en:rice-milks", + "name": "Boissons végétales de riz", + "products": 62, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-riz", + "sameAs": [ + "https://www.wikidata.org/wiki/Q715187" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aromes", + "products": 62, + "name": "Arômes", + "id": "en:flavors" + }, + { + "products": 62, + "id": "en:orange-marmalades", + "name": "Marmelades d'oranges", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19842607" + ], + "url": "https://fr.openfoodfacts.org/categorie/marmelades-d-oranges" + }, + { + "id": "en:plain-stirred-yogurts", + "name": "Yaourts brassés nature", + "products": 62, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caramels-au-beurre-sale", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19544049" + ], + "name": "Caramels au beurre salé", + "id": "en:salted-butter-caramels", + "products": 62 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q578307" + ], + "url": "https://fr.openfoodfacts.org/categorie/noisettes", + "products": 61, + "name": "Noisettes", + "id": "en:hazelnuts" + }, + { + "products": 61, + "id": "en:orange-jams", + "name": "Confitures d'orange", + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-l-abricot", + "products": 61, + "id": "en:apricot-yogurts", + "name": "Yaourts à l'abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois", + "products": 61, + "id": "en:anchovy-fillets", + "name": "Filets d'anchois" + }, + { + "products": 61, + "name": "Produits vendus avant l'an 2000", + "id": "en:products-sold-before-year-2000", + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-avant-l-an-2000" + }, + { + "products": 61, + "id": "en:ducks", + "name": "Canards", + "url": "https://fr.openfoodfacts.org/categorie/canards", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3736439" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macedoines-de-legumes-en-conserve", + "products": 61, + "name": "Macédoines de légumes en conserve", + "id": "fr:macedoines-de-legumes-en-conserve" + }, + { + "id": "en:chocolate-milks", + "name": "Laits aromatisés au chocolat", + "products": 61, + "url": "https://fr.openfoodfacts.org/categorie/laits-aromatises-au-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13253" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alimentaires-sans-gluten", + "products": 61, + "id": "en:gluten-free-pasta", + "name": "Pâtes alimentaires sans gluten" + }, + { + "id": "fr:bouchees-vapeur", + "name": "Bouchees-vapeur", + "products": 60, + "url": "https://fr.openfoodfacts.org/categorie/bouchees-vapeur" + }, + { + "id": "en:flammekueche", + "name": "Flammekueches", + "products": 60, + "url": "https://fr.openfoodfacts.org/categorie/flammekueches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q316849" + ] + }, + { + "id": "en:chocolate-eggs", + "name": "Oeufs de pâques", + "products": 60, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-paques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:snacks-sucres", + "name": "de:Snacks-sucres", + "id": "de:snacks-sucres", + "products": 60 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2733021" + ], + "url": "https://fr.openfoodfacts.org/categorie/riz-thai", + "id": "en:jasmine-rice", + "name": "Riz thaï", + "products": 60 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macarons", + "products": 60, + "name": "Macarons", + "id": "en:macarons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/edulcorants-de-table", + "products": 60, + "name": "Édulcorants de table", + "id": "en:tabletop-sweeteners" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-chataigne", + "name": "Yaourts à la châtaigne", + "id": "en:chestnut-yogurts", + "products": 60 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q13179" + ], + "url": "https://fr.openfoodfacts.org/categorie/framboises", + "name": "Framboises", + "id": "en:raspberries", + "products": 60 + }, + { + "id": "en:vegetable-jams", + "name": "Confitures de légumes", + "products": 60, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-legumes" + }, + { + "products": 60, + "name": "Farines de fruits à coques", + "id": "en:nut-flours", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-fruits-a-coques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-thon", + "id": "en:tuna-chunks", + "name": "Miettes de thon", + "products": 60 + }, + { + "name": "Plats à base de viande de veau", + "id": "en:veal-meat-dishes", + "products": 60, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-de-veau" + }, + { + "name": "Épinards", + "id": "en:spinachs", + "products": 60, + "sameAs": [ + "https://www.wikidata.org/wiki/Q81464" + ], + "url": "https://fr.openfoodfacts.org/categorie/epinards" + }, + { + "name": "Fruits enrobés de chocolat", + "id": "en:chocolate-covered-fruits", + "products": 59, + "url": "https://fr.openfoodfacts.org/categorie/fruits-enrobes-de-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15985102" + ] + }, + { + "products": 59, + "id": "en:salmon-rillettes", + "name": "Rillettes de saumon", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-saumon" + }, + { + "id": "en:chocolate-covered-peanuts", + "name": "Cacahuètes au chocolat", + "products": 59, + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-et-derives", + "sameAs": [ + "https://www.wikidata.org/wiki/Q23400" + ], + "products": 59, + "name": "Ail et dérivés", + "id": "en:garlic-and-their-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crudites", + "id": "fr:crudites", + "name": "Crudites", + "products": 59 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/massepain", + "sameAs": [ + "https://www.wikidata.org/wiki/Q106252" + ], + "name": "Massepain", + "id": "en:marzipan", + "products": 59 + }, + { + "products": 59, + "id": "en:chocolate-muffins", + "name": "Muffins au chocolat", + "url": "https://fr.openfoodfacts.org/categorie/muffins-au-chocolat" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2617260" + ], + "url": "https://fr.openfoodfacts.org/categorie/baies-de-goji-sechees", + "products": 58, + "id": "en:dried-goji", + "name": "Baies de goji séchées" + }, + { + "name": "Tartes surgelées", + "id": "en:frozen-pies", + "products": 58, + "url": "https://fr.openfoodfacts.org/categorie/tartes-surgelees" + }, + { + "id": "en:abbey-beer", + "name": "Bières d'abbayes", + "products": 58, + "url": "https://fr.openfoodfacts.org/categorie/bieres-d-abbayes" + }, + { + "name": "Pizzas aux quatre fromages", + "id": "en:four-cheese-pizza", + "products": 58, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-quatre-fromages" + }, + { + "id": "fr:pistaches-salees", + "name": "Pistaches salées", + "products": 58, + "url": "https://fr.openfoodfacts.org/categorie/pistaches-salees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1436715" + ], + "url": "https://fr.openfoodfacts.org/categorie/gruau", + "products": 58, + "id": "en:groats", + "name": "Gruau" + }, + { + "id": "en:gluten-free-breads", + "name": "Pains sans gluten", + "products": 58, + "url": "https://fr.openfoodfacts.org/categorie/pains-sans-gluten" + }, + { + "products": 58, + "name": "Rillettes de poulet", + "id": "en:chicken-rillettes", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-poulet" + }, + { + "name": "Huiles de coco", + "id": "en:coconut-oils", + "products": 58, + "sameAs": [ + "https://www.wikidata.org/wiki/Q216235" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-coco" + }, + { + "products": 58, + "id": "it:grana-padano", + "name": "Grana Padano", + "url": "https://fr.openfoodfacts.org/categorie/grana-padano" + }, + { + "name": "Saucisses allemandes", + "id": "en:german-sausages", + "products": 57, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-allemandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-tomates", + "sameAs": [ + "https://www.wikidata.org/wiki/Q787325" + ], + "products": 57, + "name": "Jus de tomates", + "id": "en:tomato-juices" + }, + { + "name": "Plats à base de dinde", + "id": "en:turkey-dishes", + "products": 57, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-canard", + "name": "Terrines de canard", + "id": "fr:terrines-de-canard", + "products": 57 + }, + { + "name": "Sels fins", + "id": "fr:sels-fins", + "products": 57, + "url": "https://fr.openfoodfacts.org/categorie/sels-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois", + "sameAs": [ + "https://www.wikidata.org/wiki/Q25237" + ], + "name": "Pois", + "id": "en:peas", + "products": 57 + }, + { + "name": "Huiles de colza", + "id": "en:rapeseed-oils", + "products": 57, + "sameAs": [ + "https://www.wikidata.org/wiki/Q17908ë72" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-colza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-non-sucrees", + "products": 57, + "id": "en:boissons-non-sucrees", + "name": "en:Boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q12106" + ], + "id": "en:wheats", + "name": "Blés", + "products": 57 + }, + { + "products": 57, + "name": "Riz cantonais", + "id": "en:fried-rice", + "url": "https://fr.openfoodfacts.org/categorie/riz-cantonais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1076874" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-abricot", + "products": 57, + "id": "fr:compotes-pommes-abricot", + "name": "Compotes pommes abricot" + }, + { + "products": 57, + "id": "en:lemon-sorbets", + "name": "Sorbets au citron", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-peches", + "id": "en:peach-jams", + "name": "Confitures de pêches", + "products": 57 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-poisson", + "name": "Quenelles de poisson", + "id": "en:fish-quenelles", + "products": 57 + }, + { + "name": "Confitures de mirabelles", + "id": "en:mirabelle-plum-jams", + "products": 56, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mirabelles" + }, + { + "products": 56, + "name": "Reblochons", + "id": "fr:reblochons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q543805" + ], + "url": "https://fr.openfoodfacts.org/categorie/reblochons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-rissolees-surgelees", + "products": 56, + "id": "fr:pommes-rissolees-surgelees", + "name": "Pommes rissolées surgelées" + }, + { + "products": 56, + "id": "fr:palets-palet", + "name": "Palets; Palet", + "url": "https://fr.openfoodfacts.org/categorie/palets-palet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-rhubarbe", + "name": "Confitures de rhubarbe", + "id": "en:rhubarb-jams", + "products": 56 + }, + { + "id": "en:chinese-noodles", + "name": "Nouilles chinoises", + "products": 56, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2723400" + ], + "url": "https://fr.openfoodfacts.org/categorie/nouilles-chinoises" + }, + { + "products": 56, + "id": "en:sweet-peppers", + "name": "Poivrons", + "url": "https://fr.openfoodfacts.org/categorie/poivrons" + }, + { + "name": "Boudins noirs", + "id": "en:black-pudding", + "products": 56, + "sameAs": [ + "https://www.wikidata.org/wiki/Q154482" + ], + "url": "https://fr.openfoodfacts.org/categorie/boudins-noirs" + }, + { + "id": "en:cereales-et-pommes-de-terre", + "name": "en:Cereales-et-pommes-de-terre", + "products": 56, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-et-pommes-de-terre" + }, + { + "id": "fr:saucisses-cocktail", + "name": "Saucisses cocktail", + "products": 56, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-cocktail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-confits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1163138" + ], + "name": "Fruits confits", + "id": "en:candied-fruit", + "products": 55 + }, + { + "id": "en:lettuces", + "name": "Laitues", + "products": 55, + "url": "https://fr.openfoodfacts.org/categorie/laitues" + }, + { + "products": 55, + "name": "Tourtes", + "id": "en:two-crust-pies", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13360264" + ], + "url": "https://fr.openfoodfacts.org/categorie/tourtes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/algues-et-derives", + "sameAs": [ + "https://www.wikidata.org/wiki/Q37868" + ], + "products": 55, + "id": "en:seaweeds-and-their-products", + "name": "Algues et dérivés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-de-tournesol", + "id": "en:sardines-in-sunflower-oil", + "name": "Sardines à l'huile de tournesol", + "products": 55 + }, + { + "products": 55, + "id": "en:canned-spinachs", + "name": "Épinards en conserve", + "url": "https://fr.openfoodfacts.org/categorie/epinards-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-thon", + "name": "Sandwichs au thon", + "id": "en:tuna-sandwiches", + "products": 55 + }, + { + "products": 55, + "name": "Crêpes sucrées", + "id": "en:sugared-crepes", + "url": "https://fr.openfoodfacts.org/categorie/crepes-sucrees" + }, + { + "name": "Chocolats à la fleur de sel", + "id": "en:fleur-de-sel-chocolates", + "products": 55, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-fleur-de-sel" + }, + { + "products": 55, + "name": "Fruits surgelés", + "id": "en:frozen-fruits", + "url": "https://fr.openfoodfacts.org/categorie/fruits-surgeles" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1230067" + ], + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-bayonne", + "products": 55, + "name": "Jambons de Bayonne", + "id": "en:bayonne-ham" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/traiteur", + "products": 55, + "id": "fr:traiteur", + "name": "Traiteur" + }, + { + "name": "Confitures de cassis", + "id": "en:blackcurrant-jams", + "products": 54, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-en-conserve", + "id": "en:canned-carrots", + "name": "Carottes en conserve", + "products": 54 + }, + { + "id": "fr:sandwichs-polaires", + "name": "Sandwichs polaires", + "products": 54, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-polaires" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q722338" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-mutes", + "id": "en:fortified-wines", + "name": "Vins mutés", + "products": 54 + }, + { + "name": "Cheesecakes", + "id": "en:cheesecakes", + "products": 54, + "sameAs": [ + "https://www.wikidata.org/wiki/Q215348" + ], + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes" + }, + { + "id": "en:evaporated-milks", + "name": "Laits concentrés", + "products": 54, + "sameAs": [ + "https://www.wikidata.org/wiki/Q13417087" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-concentres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-fumees", + "id": "en:smoked-sausages", + "name": "Saucisses fumées", + "products": 54 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-agrumes", + "products": 54, + "id": "fr:miels-d-agrumes", + "name": "Miels d'agrumes" + }, + { + "id": "en:pizza-with-ham-and-cheese", + "name": "Pizzas jambon-fromage", + "products": 54, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-jambon-fromage" + }, + { + "products": 53, + "id": "en:sliced-bacon", + "name": "Bacon en tranche", + "url": "https://fr.openfoodfacts.org/categorie/bacon-en-tranche" + }, + { + "id": "fr:entrees-chaudes", + "name": "Entrees-chaudes", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/entrees-chaudes" + }, + { + "products": 53, + "id": "en:chocolates-with-sweeteners", + "name": "Chocolats édulcorés", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-edulcores" + }, + { + "products": 53, + "id": "en:bulgur", + "name": "Boulghours", + "url": "https://fr.openfoodfacts.org/categorie/boulghours", + "sameAs": [ + "https://www.wikidata.org/wiki/Q250432" + ] + }, + { + "products": 53, + "name": "Pains complets", + "id": "en:brown-breads", + "url": "https://fr.openfoodfacts.org/categorie/pains-complets", + "sameAs": [ + "https://www.wikidata.org/wiki/Q940999" + ] + }, + { + "products": 53, + "name": "Pains précuits", + "id": "en:pre-baked-breads", + "url": "https://fr.openfoodfacts.org/categorie/pains-precuits" + }, + { + "id": "en:wheat-groats", + "name": "Gruau de blé", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/gruau-de-ble" + }, + { + "products": 53, + "id": "en:cider-vinegars", + "name": "Vinaigres de cidre", + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-cidre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q618322" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-du-mans", + "id": "fr:rillettes-du-mans", + "name": "Rillettes du Mans", + "products": 53 + }, + { + "name": "Beurres moulés", + "id": "en:molded-butters", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/beurres-moules" + }, + { + "id": "en:breton-cakes", + "name": "Gâteaux bretons", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-bretons" + }, + { + "products": 53, + "name": "Tartiflettes", + "id": "en:tartiflettes", + "url": "https://fr.openfoodfacts.org/categorie/tartiflettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1759775" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chili-con-carne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q863794" + ], + "id": "en:chili-con-carne", + "name": "Chili con carne", + "products": 53 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheeseburger", + "sameAs": [ + "https://www.wikidata.org/wiki/Q667478" + ], + "products": 53, + "id": "en:cheeseburger", + "name": "Cheeseburger" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1042920" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres-en-morceaux", + "name": "Sucres en morceaux", + "id": "en:lump-sugar", + "products": 53 + }, + { + "name": "Pousses en conserve", + "id": "en:canned-sprouts", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/pousses-en-conserve" + }, + { + "products": 53, + "id": "fr:thons-a-l-huile-de-tournesol", + "name": "Thons à l'huile de tournesol", + "url": "https://fr.openfoodfacts.org/categorie/thons-a-l-huile-de-tournesol" + }, + { + "name": "Haricots rouges en conserve", + "id": "en:canned-kidney-common-beans", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/haricots-rouges-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quiches-lorraines", + "id": "en:lorraine-quiche", + "name": "Quiches lorraines", + "products": 53 + }, + { + "products": 53, + "name": "Cidres demi-secs", + "id": "fr:cidres-demi-secs", + "url": "https://fr.openfoodfacts.org/categorie/cidres-demi-secs" + }, + { + "id": "en:strawberry-sorbets", + "name": "Sorbets à la fraise", + "products": 53, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-refrigerees", + "id": "en:refrigerated-soups", + "name": "Soupes réfrigérées", + "products": 53 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-d-amande", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4733896" + ], + "products": 53, + "id": "en:almond-butters", + "name": "Purées d'amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-entremets", + "id": "fr:preparations-pour-entremets", + "name": "Préparations pour entremets", + "products": 53 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cancoillottes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q688947" + ], + "id": "en:cancoillottes", + "name": "Cancoillottes", + "products": 53 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gingembre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q35625" + ], + "name": "Gingembre", + "id": "en:ginger", + "products": 52 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-aux-oeufs", + "products": 52, + "name": "Desserts lactés aux œufs", + "id": "fr:desserts-lactes-aux-oeufs" + }, + { + "name": "Sauces au curry", + "id": "en:curry-sauces", + "products": 52, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-a-la-menthe", + "sameAs": [ + "https://www.wikidata.org/wiki/Q937101" + ], + "products": 52, + "name": "Thés à la menthe", + "id": "en:mint-teas" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3893120" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-de-seigle", + "id": "en:rye-breads", + "name": "Pains de seigle", + "products": 52 + }, + { + "id": "fr:gratins-dauphinois", + "name": "Gratins dauphinois", + "products": 52, + "url": "https://fr.openfoodfacts.org/categorie/gratins-dauphinois", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1647122" + ] + }, + { + "products": 52, + "name": "Vins doux", + "id": "en:sweet-wines", + "url": "https://fr.openfoodfacts.org/categorie/vins-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spiruline", + "sameAs": [ + "https://www.wikidata.org/wiki/Q285335" + ], + "name": "Spiruline", + "id": "en:spirulina", + "products": 52 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-entiers", + "name": "Thons entiers", + "id": "en:whole-tunas", + "products": 52 + }, + { + "id": "en:frozen-vegetable-mixes", + "name": "Mélanges de légumes surgelés", + "products": 52, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes-surgeles" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q855373" + ], + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-l-eau", + "products": 52, + "id": "en:ice-pops", + "name": "Glaces à l'eau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-foies", + "id": "fr:mousses-de-foies", + "name": "Mousses de foies", + "products": 51 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q4733897" + ], + "url": "https://fr.openfoodfacts.org/categorie/amandes-en-poudre", + "products": 51, + "id": "en:almond-meal", + "name": "Amandes en poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pulpes-de-tomates", + "name": "Pulpes de tomates", + "id": "fr:pulpes-de-tomates", + "products": 51 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-bretonnes", + "products": 51, + "name": "Galettes-bretonnes", + "id": "fr:galettes-bretonnes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-citron", + "id": "en:lemon-soft-drinks", + "name": "Sodas au citron", + "products": 51 + }, + { + "id": "en:concentrated-multifruit-juices", + "name": "Jus multifruits à base de jus concentré", + "products": 51, + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruits-a-base-de-jus-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-erable", + "sameAs": [ + "https://www.wikidata.org/wiki/Q402563" + ], + "id": "en:maple-syrups", + "name": "Sirops d'érable", + "products": 51 + }, + { + "name": "Noix de coco", + "id": "en:coconuts", + "products": 51, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3342808" + ], + "url": "https://fr.openfoodfacts.org/categorie/noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-bruts", + "products": 50, + "name": "Champagnes bruts", + "id": "fr:champagnes-bruts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-miel", + "id": "en:honey-based-preparations", + "name": "Préparations à base de miel", + "products": 50 + }, + { + "name": "Coffee drinks", + "id": "en:coffee-drinks", + "products": 50, + "url": "https://fr.openfoodfacts.org/categorie/coffee-drinks" + }, + { + "products": 50, + "id": "en:strawberry-syrups", + "name": "Sirops de fraise", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3485292" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-fraise" + }, + { + "products": 50, + "name": "Marrons glacés", + "id": "en:marrons-glaces", + "url": "https://fr.openfoodfacts.org/categorie/marrons-glaces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2334489" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q81375" + ], + "url": "https://fr.openfoodfacts.org/categorie/pois-chiches", + "products": 50, + "id": "en:chickpeas", + "name": "Pois chiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kiwis", + "id": "en:kiwifruits", + "name": "Kiwis", + "products": 50 + }, + { + "id": "en:fresh-legumes", + "name": "Légumineuses frais", + "products": 50, + "url": "https://fr.openfoodfacts.org/categorie/legumineuses-frais" + }, + { + "products": 50, + "name": "Sauces au poivre", + "id": "en:pepper-sauces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3474121" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-poivre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-extra-fins", + "products": 50, + "id": "en:extra-fine-gherkins", + "name": "Cornichons extra-fins" + }, + { + "products": 50, + "id": "fr:thons-albacore-au-naturel", + "name": "Thons albacore au naturel", + "url": "https://fr.openfoodfacts.org/categorie/thons-albacore-au-naturel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-d-amande", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2631692" + ], + "products": 50, + "id": "en:almond-paste", + "name": "Pâtes d'amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-trois-fromages", + "id": "en:three-cheese-pizza", + "name": "Pizzas aux trois fromages", + "products": 50 + }, + { + "id": "en:non-alcoholic-beers", + "name": "Bières sans alcool", + "products": 50, + "sameAs": [ + "https://www.wikidata.org/wiki/Q524679" + ], + "url": "https://fr.openfoodfacts.org/categorie/bieres-sans-alcool" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/celeris-remoulade", + "products": 50, + "id": "fr:celeris-remoulade", + "name": "Céleris Rémoulade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-poisson", + "products": 50, + "id": "en:fish-eggs", + "name": "Œufs de poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-caramel", + "products": 50, + "id": "fr:cremes-dessert-caramel", + "name": "Crèmes dessert caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-de-la-plante-de-courge", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5339301" + ], + "products": 50, + "id": "en:pumpkin-plant-products", + "name": "Produits de la plante de courge" + }, + { + "id": "en:brown-sugars", + "name": "Sucres roux", + "products": 50, + "sameAs": [ + "https://www.wikidata.org/wiki/Q11190742" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres-roux" + }, + { + "name": "Sirops de fruits", + "id": "en:fruit-syrups", + "products": 50, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-fruits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5506416" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-veau", + "id": "en:veal-meat", + "name": "Viandes de veau", + "products": 49 + }, + { + "products": 49, + "id": "fr:barres-aux-fruits", + "name": "Barres aux fruits", + "url": "https://fr.openfoodfacts.org/categorie/barres-aux-fruits" + }, + { + "products": 49, + "id": "en:light-fruit-sodas", + "name": "Sodas aux fruits light", + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-fruits-light" + }, + { + "products": 49, + "id": "en:duck-breasts", + "name": "Magrets de canard", + "url": "https://fr.openfoodfacts.org/categorie/magrets-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres", + "name": "Chocolats au lait fourrés", + "id": "en:filled-milk-chocolates", + "products": 49 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/curry", + "products": 49, + "id": "fr:curry", + "name": "Curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-au-four-traditionnel", + "name": "Plats-prepares-a-rechauffer-au-four-traditionnel", + "id": "fr:plats-prepares-a-rechauffer-au-four-traditionnel", + "products": 49 + }, + { + "id": "fr:saucisses-de-francfort", + "name": "Saucisses de Francfort", + "products": 49, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-francfort" + }, + { + "products": 49, + "name": "Huiles d'olive vierges", + "id": "en:virgin-olive-oils", + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-vierges" + }, + { + "products": 49, + "name": "Salades de pommes de terre", + "id": "en:potato-salads", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pommes-de-terre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q152964" + ] + }, + { + "products": 49, + "name": "Tapas", + "id": "en:tapas", + "url": "https://fr.openfoodfacts.org/categorie/tapas" + }, + { + "id": "en:snails", + "name": "Escargots", + "products": 49, + "url": "https://fr.openfoodfacts.org/categorie/escargots", + "sameAs": [ + "https://www.wikidata.org/wiki/Q308841" + ] + }, + { + "id": "en:scotch-whisky", + "name": "Whisky écossais", + "products": 49, + "url": "https://fr.openfoodfacts.org/categorie/whisky-ecossais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-montagne", + "products": 49, + "name": "Miels de montagne", + "id": "en:honeys-from-the-mountains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-de-guerande", + "id": "en:guerande-salts", + "name": "Sels de Guérande", + "products": 48 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-caramel", + "name": "Chocolats au lait au caramel", + "id": "en:milk-chocolate-with-caramel", + "products": 48 + }, + { + "id": "en:fortified-wines-such-as-natural-sweet-wines", + "name": "Vins mutés de type vin doux naturel", + "products": 48, + "url": "https://fr.openfoodfacts.org/categorie/vins-mutes-de-type-vin-doux-naturel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-entieres", + "id": "en:whole-olives", + "name": "Olives entières", + "products": 48 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-saveur-vanille", + "products": 48, + "name": "Riz au lait saveur vanille", + "id": "en:vanilla-flavored-rice-pudding" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickles-de-legumineuses", + "name": "Pickles de légumineuses", + "id": "en:legume-pickles", + "products": 48 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coeurs-de-palmier-en-conserve", + "sameAs": [ + "https://www.wikidata.org/wiki/Q743144" + ], + "products": 48, + "id": "en:canned-hearts-of-palm", + "name": "Coeurs de palmier en conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-d-orange", + "products": 48, + "id": "en:orange-nectars", + "name": "Nectars d'orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-d-avoine", + "products": 48, + "name": "Laits d'avoine", + "id": "en:oat-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-frais", + "products": 48, + "name": "Taboulés frais", + "id": "en:fresh-tabbouleh" + }, + { + "id": "en:albacore", + "name": "Thons blancs", + "products": 48, + "sameAs": [ + "https://www.wikidata.org/wiki/Q239977" + ], + "url": "https://fr.openfoodfacts.org/categorie/thons-blancs" + }, + { + "id": "fr:fromages-du-nord-pas-de-calais", + "name": "Fromages du Nord-Pas-de-Calais", + "products": 48, + "url": "https://fr.openfoodfacts.org/categorie/fromages-du-nord-pas-de-calais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tramousses", + "name": "Tramousses", + "id": "en:pickled-lupin-beans", + "products": 48 + }, + { + "products": 48, + "id": "fr:noix-de-cajou-salees", + "name": "Noix de cajou salées", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-cajou-salees" + }, + { + "id": "en:frozen-green-beans", + "name": "Haricots verts surgelés", + "products": 48, + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-sales", + "id": "en:salted-milk-chocolates", + "name": "Chocolats au lait salés", + "products": 48 + }, + { + "name": "Décorations alimentaires", + "id": "en:food-decorations", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/decorations-alimentaires" + }, + { + "id": "de:boissons", + "name": "de:Boissons", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/de:boissons" + }, + { + "name": "Chips de manioc", + "id": "en:cassava-crisps", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-manioc" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q13204" + ], + "url": "https://fr.openfoodfacts.org/categorie/citronnades", + "products": 47, + "id": "fr:citronnades", + "name": "Citronnades" + }, + { + "name": "Sauces burger", + "id": "fr:sauces-burger", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/sauces-burger" + }, + { + "products": 47, + "id": "en:raspberry-sorbets", + "name": "Sorbets à la framboise", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-framboise" + }, + { + "id": "en:salted-dark-chocolates", + "name": "Chocolats noirs salés", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-sales" + }, + { + "products": 47, + "id": "fr:sauces-tomates-au-basilic", + "name": "Sauces tomates au basilic", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-au-basilic" + }, + { + "name": "Pâtes à tartiner au caramel", + "id": "en:caramel-spreads", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-caramel" + }, + { + "id": "fr:genoises", + "name": "Genoises", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/genoises" + }, + { + "products": 47, + "id": "fr:mimolettes", + "name": "Mimolettes", + "url": "https://fr.openfoodfacts.org/categorie/mimolettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q749121" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-baratte", + "products": 47, + "name": "Beurres-de-baratte", + "id": "fr:beurres-de-baratte" + }, + { + "name": "Aiguillettes de poulet", + "id": "fr:aiguillettes-de-poulet", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-aromatisees-aux-fruits", + "products": 47, + "id": "en:beers-with-fruits", + "name": "Bieres aromatisées aux fruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q917761" + ], + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-lait", + "name": "Confitures de lait", + "id": "en:milk-jams", + "products": 47 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q169757" + ], + "url": "https://fr.openfoodfacts.org/categorie/mortadelle", + "products": 47, + "id": "en:mortadella", + "name": "Mortadelle" + }, + { + "name": "Crabes", + "id": "en:crab", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/crabes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q158954" + ], + "id": "en:corn-salad", + "name": "Mâches", + "products": 47 + }, + { + "products": 47, + "id": "en:light-mayonnaises", + "name": "Mayonnaises allégées", + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-allegees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-bovine-hachee-fraiches", + "products": 47, + "name": "Préparations de viande bovine hachée fraîches", + "id": "en:fresh-ground-beef-preparations" + }, + { + "id": "fr:biscuits-aperitif-souffles-a-la-cacahuete", + "name": "Biscuits-aperitif-souffles-a-la-cacahuete", + "products": 47, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitif-souffles-a-la-cacahuete" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-cereales", + "products": 46, + "id": "en:cereal-oils", + "name": "Huiles de céréales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pays-d-oc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2404201" + ], + "products": 46, + "name": "Pays d'Oc", + "id": "fr:pays-d-oc" + }, + { + "products": 46, + "id": "en:fresh-green-beans", + "name": "Haricots verts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2987371" + ], + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tzatziki", + "id": "en:tzatzikis", + "name": "Tzatzíki", + "products": 46 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-dinde", + "products": 46, + "name": "Escalopes de dinde", + "id": "en:turkey-cutlets" + }, + { + "id": "en:plain-quenelles", + "name": "Quenelles nature", + "products": 46, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-nature" + }, + { + "name": "Ravioli aux légumes", + "id": "en:ravioli-with-vegetables", + "products": 46, + "url": "https://fr.openfoodfacts.org/categorie/ravioli-aux-legumes" + }, + { + "products": 46, + "name": "Fromages d'Angleterre", + "id": "en:cheeses-from-england", + "url": "https://fr.openfoodfacts.org/categorie/fromages-d-angleterre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q207968" + ], + "url": "https://fr.openfoodfacts.org/categorie/guacamoles", + "id": "en:guacamoles", + "name": "Guacamoles", + "products": 46 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivres-moulus", + "products": 46, + "name": "Poivres moulus", + "id": "en:ground-peppers" + }, + { + "id": "fr:soupes-de-nouilles", + "name": "Soupes-de-nouilles", + "products": 46, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-nouilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-a-la-frangipane", + "id": "fr:galettes-a-la-frangipane", + "name": "Galettes à la frangipane", + "products": 46 + }, + { + "products": 46, + "id": "en:unleavened-breads", + "name": "Pains azymes", + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13365777" + ] + }, + { + "id": "en:lemon-teas", + "name": "Thés au citron", + "products": 46, + "url": "https://fr.openfoodfacts.org/categorie/thes-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mascarpone", + "sameAs": [ + "https://www.wikidata.org/wiki/Q209889" + ], + "products": 46, + "name": "Mascarpone", + "id": "en:mascarpone" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coppa", + "products": 46, + "name": "Coppa", + "id": "en:capicola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1076906" + ], + "id": "en:sunflower-seeds", + "name": "Graines de tournesol", + "products": 46 + }, + { + "products": 46, + "id": "en:cheeses-from-the-united-kingdom", + "name": "Fromages du Royaume-Uni", + "url": "https://fr.openfoodfacts.org/categorie/fromages-du-royaume-uni" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris", + "products": 46, + "name": "Champignons de Paris", + "id": "de:champignons" + }, + { + "name": "Plats préparés à faible teneur en matières grasses", + "id": "en:low-fat-prepared-meals", + "products": 45, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-faible-teneur-en-matieres-grasses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q548309" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-nectaire", + "name": "Saint-nectaire", + "id": "fr:saint-nectaire", + "products": 45 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epinards-surgeles", + "products": 45, + "id": "en:frozen-spinachs", + "name": "Épinards surgelés" + }, + { + "products": 45, + "name": "Châtaignes", + "id": "en:chestnuts", + "sameAs": [ + "https://www.wikidata.org/wiki/Q129324" + ], + "url": "https://fr.openfoodfacts.org/categorie/chataignes" + }, + { + "products": 45, + "id": "en:cheddar-cheese", + "name": "Cheddars", + "sameAs": [ + "https://www.wikidata.org/wiki/Q217525" + ], + "url": "https://fr.openfoodfacts.org/categorie/cheddars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/andouillettes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11164" + ], + "products": 45, + "id": "fr:andouillettes", + "name": "Andouillettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chia", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1071585" + ], + "products": 45, + "id": "en:chia", + "name": "Chia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-de-france", + "products": 45, + "name": "Huiles d'olive de France", + "id": "en:olive-oils-from-france" + }, + { + "id": "fr:biscuits-aperitif-souffles-au-fromage", + "name": "Biscuits-aperitif-souffles-au-fromage", + "products": 45, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitif-souffles-au-fromage" + }, + { + "products": 44, + "name": "Soupes de légumes déshydratées", + "id": "en:dehydrated-vegetable-soups", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-deshydratees" + }, + { + "id": "en:cereales-pour-petit-dejeuner", + "name": "en:Cereales-pour-petit-dejeuner", + "products": 44, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-pour-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-sucrees", + "products": 44, + "name": "en:Boissons-sucrees", + "id": "en:boissons-sucrees" + }, + { + "products": 44, + "name": "Artichauts en conserve", + "id": "en:canned-artichokes", + "url": "https://fr.openfoodfacts.org/categorie/artichauts-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pamplemousse-rose", + "products": 44, + "id": "fr:jus-de-pamplemousse-rose", + "name": "Jus de pamplemousse rose" + }, + { + "id": "en:egg-tagliatelle", + "name": "Tagliatelles aux œufs", + "products": 44, + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-brochet", + "products": 44, + "id": "en:pike-quenelles", + "name": "Quenelles de brochet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-d-elevage", + "products": 44, + "name": "Saumons d'élevage", + "id": "en:salmons-from-farming" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:petit-dejeuners", + "products": 44, + "name": "en:Petit-dejeuners", + "id": "en:petit-dejeuners" + }, + { + "products": 44, + "name": "Sardines à l'huile et au citron", + "id": "en:sardines-in-oil-and-lemon", + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-et-au-citron" + }, + { + "products": 44, + "id": "en:duck-confit", + "name": "Confits de canard", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-canard" + }, + { + "products": 44, + "name": "Pâtes de curry", + "id": "en:curry-pastes", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-curry" + }, + { + "name": "Chips barbecue", + "id": "en:barbecue-crisps", + "products": 44, + "url": "https://fr.openfoodfacts.org/categorie/chips-barbecue" + }, + { + "name": "Oeufs de pâques en chocolat", + "id": "en:easter-chocolate-eggs", + "products": 44, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-paques-en-chocolat" + }, + { + "products": 44, + "id": "en:pryaniki", + "name": "Prianiki", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2572122" + ], + "url": "https://fr.openfoodfacts.org/categorie/prianiki" + }, + { + "products": 44, + "name": "Nectars d'abricot", + "id": "en:apricot-nectars", + "url": "https://fr.openfoodfacts.org/categorie/nectars-d-abricot" + }, + { + "name": "Plats préparés aux noix de Saint-Jacques", + "id": "en:prepared-dishes-with-scallops", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-aux-noix-de-saint-jacques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-au-poulet", + "name": "Taboulés au poulet", + "id": "en:chicken-tabbouleh", + "products": 43 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-aux-fruits", + "products": 43, + "name": "Yaourts soja aux fruits", + "id": "en:fruit-soy-yogurts" + }, + { + "id": "fr:fromages-a-pate-molle", + "name": "Fromages-a-pate-molle", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-molle" + }, + { + "products": 43, + "id": "en:fresh-milks", + "name": "Laits frais", + "url": "https://fr.openfoodfacts.org/categorie/laits-frais" + }, + { + "products": 43, + "id": "fr:pastis", + "name": "Pastis", + "url": "https://fr.openfoodfacts.org/categorie/pastis" + }, + { + "products": 43, + "name": "Jus d'ananas pur jus", + "id": "en:squeezed-pineapple-juices", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas-pur-jus" + }, + { + "products": 43, + "id": "en:camargue-rices", + "name": "Riz de Camargue", + "url": "https://fr.openfoodfacts.org/categorie/riz-de-camargue", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18745430" + ] + }, + { + "products": 43, + "id": "en:beverages-with-orange", + "name": "Boissons à l'orange", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11575" + ], + "name": "Maïs", + "id": "en:corn", + "products": 43 + }, + { + "products": 43, + "name": "Pousses de légumineuses en conserve", + "id": "en:canned-legume-sprouts", + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-legumineuses-en-conserve" + }, + { + "products": 43, + "id": "fr:brioches-tranchees-pur-beurre", + "name": "Brioches tranchées pur beurre", + "url": "https://fr.openfoodfacts.org/categorie/brioches-tranchees-pur-beurre" + }, + { + "name": "Lasagnes surgelées", + "id": "en:frozen-lasagne", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins", + "name": "Raisins", + "id": "en:grapes", + "products": 43 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coleslaw", + "sameAs": [ + "https://www.wikidata.org/wiki/Q945475" + ], + "name": "Coleslaw", + "id": "en:coleslaw", + "products": 43 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aoc-products", + "products": 43, + "id": "en:aoc-products", + "name": "en:Aoc-products" + }, + { + "id": "fr:pates-en-croute", + "name": "Pates-en-croute", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/pates-en-croute" + }, + { + "id": "en:artisanal-ciders", + "name": "Cidres artisanaux", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/cidres-artisanaux" + }, + { + "name": "Mélanges de plantes aromatiques", + "id": "en:mixtures-of-aromatic-plants", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-plantes-aromatiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-10-mois", + "id": "en:from-10-months", + "name": "Dès 10 mois", + "products": 43 + }, + { + "id": "en:canned-mung-bean-sprouts", + "name": "Pousses de haricot mungo en conserve", + "products": 43, + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-haricot-mungo-en-conserve" + }, + { + "id": "en:white-beans", + "name": "Haricots blancs", + "products": 42, + "url": "https://fr.openfoodfacts.org/categorie/haricots-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bananes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q503" + ], + "products": 42, + "id": "en:bananas", + "name": "Bananes" + }, + { + "id": "en:cereales-et-derives", + "name": "en:Cereales-et-derives", + "products": 42, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-potiron", + "name": "Veloutés de potiron", + "id": "en:cream-of-pumpkin-soups", + "products": 42 + }, + { + "name": "Sucres blancs", + "id": "en:granulated-sugars", + "products": 42, + "url": "https://fr.openfoodfacts.org/categorie/sucres-blancs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15631442" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-a-l-oeuf", + "name": "Pâtes de blé dur à l'œuf", + "id": "en:durum-wheat-pasta-with-egg", + "products": 42 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-manioc-a-la-crevette", + "products": 42, + "name": "Chips de manioc à la crevette", + "id": "fr:chips-de-manioc-a-la-crevette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-medoc", + "products": 42, + "id": "en:medoc-wines", + "name": "Vins du Médoc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-eminces-en-conserve", + "id": "en:canned-sliced-champignon-mushrooms", + "name": "Champignons de Paris émincés en conserve", + "products": 42 + }, + { + "products": 42, + "id": "fr:petits-pois-et-carottes-en-conserve", + "name": "Petits-pois-et-carottes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-et-carottes-en-conserve" + }, + { + "id": "en:coffee-milks", + "name": "Boissons lactées au café", + "products": 42, + "url": "https://fr.openfoodfacts.org/categorie/boissons-lactees-au-cafe" + }, + { + "name": "Galettes de riz au chocolat noir", + "id": "en:puffed-rice-cakes-with-black-chocolate", + "products": 42, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-desoja-a-la-vanille", + "products": 42, + "name": "Boissons végétales desoja à la vanille", + "id": "en:vanilla-soy-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-vanille", + "products": 42, + "name": "Crèmes dessert vanille", + "id": "fr:cremes-dessert-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-decafeines", + "name": "Cafés décaféinés", + "id": "en:decaffeinated-coffees", + "products": 42 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-piemontaises", + "products": 42, + "id": "en:piemontese-salads", + "name": "Salades piémontaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-18-mois", + "id": "en:from-18-months", + "name": "Dès 18 mois", + "products": 42 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-doux", + "name": "Cidres doux", + "id": "en:sweet-ciders", + "products": 42 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-peche", + "products": 42, + "name": "Yaourts à la pêche", + "id": "en:peach-yogurts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-montagne", + "products": 42, + "id": "en:mountain-waters", + "name": "Eaux de montagne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-alcoolisees", + "products": 41, + "name": "en:Boissons-alcoolisees", + "id": "en:boissons-alcoolisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-d-alsace", + "products": 41, + "id": "fr:vin-d-alsace", + "name": "Vin d'Alsace" + }, + { + "name": "Gnocchi de pommes de terre", + "id": "en:potato-gnocchi", + "products": 41, + "url": "https://fr.openfoodfacts.org/categorie/gnocchi-de-pommes-de-terre" + }, + { + "products": 41, + "id": "en:florentines", + "name": "Florentins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1429469" + ], + "url": "https://fr.openfoodfacts.org/categorie/florentins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-marcellin", + "name": "Saint-Marcellin", + "id": "fr:saint-marcellin", + "products": 41 + }, + { + "products": 41, + "id": "fr:coulis-de-tomates", + "name": "Coulis de tomates", + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-tomates" + }, + { + "name": "Bacon fumé", + "id": "en:smoked-bacon", + "products": 41, + "url": "https://fr.openfoodfacts.org/categorie/bacon-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:epicerie", + "products": 41, + "name": "en:Epicerie", + "id": "en:epicerie" + }, + { + "products": 41, + "name": "Chocolats au lait aux amandes", + "id": "en:milk-chocolate-with-almonds", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-amandes" + }, + { + "id": "fr:poissons-prepares", + "name": "Poissons-prepares", + "products": 41, + "url": "https://fr.openfoodfacts.org/categorie/poissons-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-noix", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1434098" + ], + "products": 41, + "id": "en:walnut-oils", + "name": "Huiles de noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aromatises", + "products": 41, + "name": "Chocolats aromatisés", + "id": "en:flavoured-chocolates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-en-conserve", + "products": 41, + "name": "Lentilles en conserve", + "id": "en:canned-lentils" + }, + { + "id": "en:red-lentils", + "name": "Lentilles rouges", + "products": 41, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-rouges" + }, + { + "name": "Protéines en poudre", + "id": "en:protein-powders", + "products": 41, + "url": "https://fr.openfoodfacts.org/categorie/proteines-en-poudre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3567034" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-grenade", + "name": "Jus de grenade", + "id": "en:pomegranate-juices", + "products": 40 + }, + { + "products": 40, + "name": "Biscuits édulcorés", + "id": "fr:biscuits-edulcores", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-en-poudre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q496696" + ], + "products": 40, + "id": "en:milk-powders", + "name": "Laits en poudre" + }, + { + "products": 40, + "name": "Produits-label-rouge", + "id": "fr:produits-label-rouge", + "url": "https://fr.openfoodfacts.org/categorie/produits-label-rouge" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2147909" + ], + "url": "https://fr.openfoodfacts.org/categorie/mont-d-or", + "products": 40, + "name": "Mont d'Or", + "id": "fr:mont-d-or" + }, + { + "products": 40, + "id": "en:flavored-and-colored-dry-pastas", + "name": "Pâtes sèches aromatisées et colorées", + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-aromatisees-et-colorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pamplemousse-100-pur-jus", + "products": 40, + "id": "en:squeezed-grapefruit-juices", + "name": "Jus de pamplemousse 100% pur jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-ail-et-fines-herbes", + "products": 40, + "name": "Fromages Ail et fines herbes", + "id": "fr:fromages-ail-et-fines-herbes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-toulouse", + "id": "en:toulouse-sausages", + "name": "Saucisses de Toulouse", + "products": 40 + }, + { + "products": 40, + "id": "en:food-colorings", + "name": "Colorants alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/colorants-alimentaires" + }, + { + "products": 40, + "id": "de:cereales-et-pommes-de-terre", + "name": "de:Cereales-et-pommes-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-tomates", + "id": "en:cream-of-tomato-soups", + "name": "Veloutés de tomates", + "products": 40 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-1er-age", + "products": 40, + "name": "Laits 1er âge", + "id": "en:infant-formulas" + }, + { + "products": 40, + "name": "Saucissons à l'ail", + "id": "fr:saucissons-a-l-ail", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-a-l-ail" + }, + { + "products": 40, + "name": "Brandades de Morue parmentière", + "id": "fr:brandades-de-morue-parmentiere", + "sameAs": [ + "https://www.wikidata.org/wiki/Q612283" + ], + "url": "https://fr.openfoodfacts.org/categorie/brandades-de-morue-parmentiere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viennoiseries-surgelees", + "products": 40, + "id": "fr:viennoiseries-surgelees", + "name": "Viennoiseries surgelées" + }, + { + "products": 40, + "name": "Jambons crus fumés", + "id": "fr:jambons-crus-fumes", + "url": "https://fr.openfoodfacts.org/categorie/jambons-crus-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-blancs", + "products": 40, + "id": "en:white-nougat", + "name": "Nougats blancs" + }, + { + "products": 39, + "name": "Crèmes anglaises", + "id": "fr:cremes-anglaises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1342574" + ], + "url": "https://fr.openfoodfacts.org/categorie/cremes-anglaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-morue", + "id": "en:cod-livers", + "name": "Foies de morue", + "products": 39 + }, + { + "products": 39, + "name": "Laits 2ème âge", + "id": "en:baby-follow-on-milk-from-5-months", + "url": "https://fr.openfoodfacts.org/categorie/laits-2eme-age" + }, + { + "name": "Betteraves en conserve", + "id": "en:canned-beet", + "products": 39, + "url": "https://fr.openfoodfacts.org/categorie/betteraves-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-samourai", + "name": "Sauces samourai", + "id": "en:samourai-sauces", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-refrigerees", + "name": "Soupes de légumes réfrigérées", + "id": "en:refrigerated-vegetable-soups", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-rouges-surgeles", + "name": "Fruits rouges surgelés", + "id": "en:frozen-berries", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-noix", + "products": 39, + "id": "fr:mueslis-aux-noix", + "name": "Mueslis aux noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-canard", + "id": "en:duck-rillettes", + "name": "Rillettes de canard", + "products": 39 + }, + { + "id": "en:pork-nems", + "name": "Nems au porc", + "products": 39, + "url": "https://fr.openfoodfacts.org/categorie/nems-au-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-blanches-en-conserve", + "products": 39, + "name": "Asperges blanches en conserve", + "id": "en:canned-white-asparagus" + }, + { + "products": 39, + "name": "Avocats", + "id": "en:avocados", + "sameAs": [ + "https://www.wikidata.org/wiki/Q961769" + ], + "url": "https://fr.openfoodfacts.org/categorie/avocats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-poulet", + "id": "en:roasted-chicken-and-thyme-crisps", + "name": "Chips au poulet", + "products": 39 + }, + { + "products": 39, + "name": "Yaourts au citron", + "id": "en:lemon-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-citron" + }, + { + "products": 39, + "name": "Galettes de maïs", + "id": "en:puffed-corn-cakes", + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-mais" + }, + { + "products": 39, + "id": "en:dried-figs", + "name": "Figues sèches", + "url": "https://fr.openfoodfacts.org/categorie/figues-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-de-table", + "name": "Sels de table", + "id": "en:table-salts", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-et-au-piment", + "name": "Sardines à l'huile et au piment", + "id": "fr:sardines-a-l-huile-et-au-piment", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-bearnaises", + "products": 39, + "id": "en:bearnaise-sauce", + "name": "Sauces béarnaises" + }, + { + "name": "Salades-de-pates", + "id": "fr:salades-de-pates", + "products": 39, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates" + }, + { + "id": "fr:eclairs", + "name": "Éclairs", + "products": 39, + "url": "https://fr.openfoodfacts.org/categorie/eclairs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q273426" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-proteinees", + "id": "en:protein-bars", + "name": "Barres protéinées", + "products": 39 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-rapees-assaisonnees", + "products": 38, + "name": "Carottes-rapees-assaisonnees", + "id": "fr:carottes-rapees-assaisonnees" + }, + { + "id": "fr:miels-d-oranger", + "name": "Miels d'oranger", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/miels-d-oranger" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-la-moutarde", + "products": 38, + "name": "Filets de maquereaux à la moutarde", + "id": "en:mackerel-fillets-in-mustard-sauce" + }, + { + "id": "en:puffed-wholegrain-rice-cakes", + "name": "Galettes de riz complet", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-a-base-de-tripes", + "products": 38, + "id": "en:specialty-made-with-tripe", + "name": "Spécialités à base de tripes" + }, + { + "id": "en:peach-syrups", + "name": "Sirops de pêche", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-peche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-chataignier", + "name": "Miels de châtaignier", + "id": "en:chestnut-honey", + "products": 38 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q673154" + ], + "url": "https://fr.openfoodfacts.org/categorie/cervelas", + "products": 38, + "name": "Cervelas", + "id": "fr:cervelas" + }, + { + "id": "en:canned-mixed-fruit-in-syrup", + "name": "Cocktail de fruits au sirop", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/cocktail-de-fruits-au-sirop" + }, + { + "products": 38, + "name": "Saumon en conserve", + "id": "en:canned-salmons", + "url": "https://fr.openfoodfacts.org/categorie/saumon-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-volaille", + "name": "Bouillons de volaille", + "id": "en:poultry-broth", + "products": 38 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1237731" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-felicien", + "products": 38, + "id": "en:saint-felicien-cheese", + "name": "Saint-Félicien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-bouches", + "products": 38, + "id": "en:sparkling-ciders", + "name": "Cidres bouchés" + }, + { + "name": "Sardines à l'ancienne", + "id": "fr:sardines-a-l-ancienne", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-ancienne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-poissons", + "products": 38, + "name": "Préparations à base de poissons", + "id": "en:preparations-made-from-fish" + }, + { + "name": "Compotes pommes mangue", + "id": "en:mango-applesauces", + "products": 38, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-triple", + "name": "Bière triple", + "id": "en:triple-beer", + "products": 38 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q625957" + ], + "url": "https://fr.openfoodfacts.org/categorie/cremes-fouettees", + "name": "Crèmes fouettées", + "id": "en:whipped-creams", + "products": 37 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-cerise", + "id": "en:cherry-yogurts", + "name": "Yaourts à la cerise", + "products": 37 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1190074" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-carotte", + "id": "en:carrot-juices", + "name": "Jus de carotte", + "products": 37 + }, + { + "products": 37, + "id": "en:herbes-de-provence", + "name": "Herbes de Provence", + "url": "https://fr.openfoodfacts.org/categorie/herbes-de-provence", + "sameAs": [ + "https://www.wikidata.org/wiki/Q913548" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-aux-cereales", + "products": 37, + "id": "en:sliced-breads-with-cereals", + "name": "Pains de mie aux céréales" + }, + { + "products": 37, + "id": "fr:filets-de-harengs", + "name": "Filets de harengs", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-harengs" + }, + { + "products": 37, + "id": "fr:barquettes", + "name": "Barquettes", + "url": "https://fr.openfoodfacts.org/categorie/barquettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-laitiers", + "name": "en:Produits-laitiers", + "id": "en:produits-laitiers", + "products": 37 + }, + { + "name": "Confitures de clémentine", + "id": "en:clementine-jams", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-clementine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pflanzliche-lebensmittel-und-getranke", + "products": 37, + "name": "Pflanzliche-lebensmittel-und-getranke", + "id": "fr:pflanzliche-lebensmittel-und-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anchois", + "products": 37, + "id": "en:anchovy", + "name": "Anchois" + }, + { + "products": 37, + "id": "en:brown-rices", + "name": "Riz complet", + "url": "https://fr.openfoodfacts.org/categorie/riz-complet", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1066624" + ] + }, + { + "products": 37, + "id": "fr:torsades", + "name": "Torsades", + "url": "https://fr.openfoodfacts.org/categorie/torsades" + }, + { + "id": "en:lemons", + "name": "Citrons", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/citrons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-en-conserve-au-jus", + "name": "Fruits en conserve au jus", + "id": "en:canned-fruits-in-juice", + "products": 37 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-a-la-menthe", + "products": 37, + "name": "Thés verts à la menthe", + "id": "en:green-teas-with-mint" + }, + { + "products": 37, + "id": "en:legume-flours", + "name": "Farines de légumineuses", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-legumineuses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2746070" + ], + "url": "https://fr.openfoodfacts.org/categorie/caneles", + "products": 37, + "name": "Canelés", + "id": "en:caneles" + }, + { + "id": "en:lavender-honey", + "name": "Miels de lavande", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-lavande" + }, + { + "name": "Chocolats noirs aromatisés", + "id": "fr:chocolats-noirs-aromatises", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-pates", + "products": 37, + "id": "fr:gratins-de-pates", + "name": "Gratins-de-pates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-alleges", + "products": 37, + "id": "en:light-butter", + "name": "Beurres allégés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tripes", + "name": "Tripes", + "id": "en:tripe", + "products": 37 + }, + { + "id": "de:produits-laitiers", + "name": "de:Produits-laitiers", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/de:produits-laitiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paves-de-saumon", + "id": "fr:paves-de-saumon", + "name": "Pavés de saumon", + "products": 37 + }, + { + "name": "Sorbets à la mangue", + "id": "en:mango-sorbets", + "products": 37, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-mangue" + }, + { + "id": "en:halloween-foods-and-drinks", + "name": "Aliments et boissons d'Halloween", + "products": 36, + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-d-halloween" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats", + "id": "en:chocolats", + "name": "en:Chocolats", + "products": 36 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/india-pale-ale", + "name": "India-pale-ale", + "id": "fr:india-pale-ale", + "products": 36 + }, + { + "products": 36, + "id": "en:cassoulets-with-duck-confit", + "name": "Cassoulets au confit de canard", + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-au-confit-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cannelle", + "sameAs": [ + "https://www.wikidata.org/wiki/Q28165" + ], + "products": 36, + "name": "Cannelle", + "id": "en:cinnamon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-souffle", + "products": 36, + "name": "Riz soufflé", + "id": "en:puffed-rice" + }, + { + "name": "Soupes de nouilles instantanées", + "id": "en:instant-noodle-soups", + "products": 36, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-nouilles-instantanees" + }, + { + "products": 36, + "id": "fr:truites-fumees-d-elevage", + "name": "Truites-fumees-d-elevage", + "url": "https://fr.openfoodfacts.org/categorie/truites-fumees-d-elevage" + }, + { + "products": 36, + "name": "Pizzas au chorizo", + "id": "en:chorizo-pizzas", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-chorizo" + }, + { + "products": 36, + "id": "fr:burrata", + "name": "Burrata", + "sameAs": [ + "https://www.wikidata.org/wiki/Q543512" + ], + "url": "https://fr.openfoodfacts.org/categorie/burrata" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhums-francais", + "products": 36, + "id": "en:french-rums", + "name": "Rhums français" + }, + { + "products": 36, + "id": "en:pumpkin-seeds-and-their-products", + "name": "Graines de courge et dérivés", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-pour-risotto", + "name": "Riz pour risotto", + "id": "en:rices-for-risotto", + "products": 36 + }, + { + "products": 36, + "name": "Blanquettes de veau", + "id": "en:veal-blanquette", + "url": "https://fr.openfoodfacts.org/categorie/blanquettes-de-veau", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1191278" + ] + }, + { + "id": "fr:purees-de-pommes-de-terre", + "name": "Purées de pommes de terre", + "products": 36, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-edulcorants", + "id": "en:dark-chocolates-with-sweeteners", + "name": "Chocolats noirs aux édulcorants", + "products": 36 + }, + { + "products": 36, + "name": "Thons à la tomate", + "id": "fr:thons-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/thons-a-la-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-aigres-doux", + "name": "Cornichons aigres-doux", + "id": "fr:cornichons-aigres-doux", + "products": 36 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-decortiquees", + "products": 36, + "id": "en:decorticated-lentils", + "name": "Lentilles décortiquées" + }, + { + "name": "Cantal", + "id": "fr:cantal", + "products": 36, + "url": "https://fr.openfoodfacts.org/categorie/cantal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-aux-fruits", + "products": 36, + "name": "Fromages blancs aux fruits", + "id": "fr:fromages-blancs-aux-fruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q5881191" + ], + "url": "https://fr.openfoodfacts.org/categorie/melons-et-pasteques", + "id": "en:melons", + "name": "Melons et pastèques", + "products": 36 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-corail", + "name": "Lentilles corail", + "id": "en:decorticated-red-lentils", + "products": 36 + }, + { + "name": "Yaourts à boire goût fraise", + "id": "fr:yaourts-a-boire-gout-fraise", + "products": 36, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-gout-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confits-de-figues", + "products": 35, + "id": "fr:confits-de-figues", + "name": "Confits-de-figues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manchons-de-poulet", + "name": "Manchons de poulet", + "id": "en:chicken-drumsticks", + "products": 35 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cordons-bleus-de-poulet", + "name": "Cordons bleus de poulet", + "id": "fr:cordons-bleus-de-poulet", + "products": 35 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-jambon", + "products": 35, + "name": "Pizzas au jambon", + "id": "en:ham-pizzas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-legumes-deshydrates", + "name": "Bouillons de légumes déshydratés", + "id": "en:dehydrated-vegetable-bouillons", + "products": 35 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-a-garnir", + "products": 35, + "name": "Lasagnes à garnir", + "id": "fr:lasagnes-a-garnir" + }, + { + "id": "en:munsters", + "name": "Munsters", + "products": 35, + "url": "https://fr.openfoodfacts.org/categorie/munsters" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farfalles", + "products": 35, + "id": "fr:farfalles", + "name": "Farfalles" + }, + { + "products": 35, + "id": "en:tartare-sauces", + "name": "Sauces tartare", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tartare" + }, + { + "id": "en:apple-pies", + "name": "Tartes aux pommes", + "products": 35, + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-entiers-en-conserve", + "products": 35, + "id": "en:canned-whole-champignon-mushrooms", + "name": "Champignons de Paris entiers en conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-de-jambon", + "products": 35, + "id": "en:diced-ham", + "name": "Dés de jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-a-base-de-vegetaux", + "name": "en:Boissons-a-base-de-vegetaux", + "id": "en:boissons-a-base-de-vegetaux", + "products": 35 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-patisseries", + "name": "Préparations pour pâtisseries", + "id": "fr:preparations-pour-patisseries", + "products": 35 + }, + { + "products": 35, + "id": "en:pont-l-eveque", + "name": "Pont-l'évêque", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1233145" + ], + "url": "https://fr.openfoodfacts.org/categorie/pont-l-eveque" + }, + { + "name": "Bâtonnets glacés au chocolat", + "id": "en:chocolate-ice-cream-bars", + "products": 35, + "url": "https://fr.openfoodfacts.org/categorie/batonnets-glaces-au-chocolat" + }, + { + "products": 34, + "id": "fr:pates-de-porc", + "name": "Pates-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-caramel", + "id": "fr:glaces-au-caramel", + "name": "Glaces au caramel", + "products": 34 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-coco-rapee", + "name": "Noix de coco râpée", + "id": "en:grated-coconut", + "products": 34 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nems-au-poulet", + "products": 34, + "id": "en:chicken-nems", + "name": "Nems au poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pesto-rosso", + "name": "Sauces Pesto Rosso", + "id": "en:red-pestos", + "products": 34 + }, + { + "products": 34, + "name": "Cannelloni préparés", + "id": "fr:cannelloni-prepares", + "url": "https://fr.openfoodfacts.org/categorie/cannelloni-prepares", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20010" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-salades", + "products": 34, + "id": "fr:melanges-de-salades", + "name": "Melanges-de-salades" + }, + { + "products": 34, + "name": "Riz étuvé", + "id": "en:parboiled-rices", + "url": "https://fr.openfoodfacts.org/categorie/riz-etuve", + "sameAs": [ + "https://www.wikidata.org/wiki/Q732925" + ] + }, + { + "id": "en:black-pitted-olives", + "name": "Olives noires dénoyautées", + "products": 34, + "url": "https://fr.openfoodfacts.org/categorie/olives-noires-denoyautees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-cassis", + "id": "en:blackcurrant-syrups", + "name": "Sirops de cassis", + "products": 34 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilli-de-ble-dur", + "id": "es:fusilli", + "name": "Fusilli de blé dur", + "products": 34 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alimentos-y-bebidas-de-origen-vegetal", + "id": "fr:alimentos-y-bebidas-de-origen-vegetal", + "name": "Alimentos-y-bebidas-de-origen-vegetal", + "products": 34 + }, + { + "products": 34, + "id": "en:lemon-tarts", + "name": "Tartes au citron", + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-citron" + }, + { + "name": "Crèmes végétales à base de soja pour cuisiner", + "id": "en:soy-based-creams-for-cooking", + "products": 34, + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-de-soja-pour-cuisiner" + }, + { + "id": "fr:gros-sels", + "name": "Gros sels", + "products": 34, + "url": "https://fr.openfoodfacts.org/categorie/gros-sels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-au-vin-blanc-et-aromates", + "products": 34, + "id": "en:mackerel-fillets-in-white-wine-and-herbs", + "name": "Filets de maquereaux au vin blanc et aromates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-aromatises", + "name": "Vinaigres aromatisés", + "id": "fr:vinaigres-aromatises", + "products": 34 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-soja-au-chocolat", + "id": "en:chocolate-soy-milks", + "name": "Boissons végétales de soja au chocolat", + "products": 34 + }, + { + "products": 34, + "id": "en:coffee-desserts", + "name": "Desserts au café", + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-cafe" + }, + { + "products": 34, + "id": "en:provencale-sauces", + "name": "Sauces provençales", + "url": "https://fr.openfoodfacts.org/categorie/sauces-provencales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salsifis-en-conserve", + "name": "Salsifis en conserve", + "id": "en:canned-salsifis", + "products": 33 + }, + { + "id": "en:butter-croissants", + "name": "Croissants au beurre", + "products": 33, + "url": "https://fr.openfoodfacts.org/categorie/croissants-au-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-au-sirop", + "products": 33, + "id": "en:pears-in-syrup", + "name": "Poires au sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-de-cabillaud", + "products": 33, + "id": "en:breaded-cod-fish", + "name": "Poissons panés de cabillaud" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-marinees", + "products": 33, + "id": "en:marinated-olives", + "name": "Olives marinées" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pestos-au-basilic", + "id": "en:green-pestos", + "name": "Pestos au basilic", + "products": 33 + }, + { + "id": "en:rooibos", + "name": "Rooibos", + "products": 33, + "sameAs": [ + "https://www.wikidata.org/wiki/Q272181" + ], + "url": "https://fr.openfoodfacts.org/categorie/rooibos" + }, + { + "id": "fr:alimentos-de-origen-vegetal", + "name": "Alimentos-de-origen-vegetal", + "products": 33, + "url": "https://fr.openfoodfacts.org/categorie/alimentos-de-origen-vegetal" + }, + { + "name": "Vodkas", + "id": "en:vodka", + "products": 33, + "sameAs": [ + "https://www.wikidata.org/wiki/Q374" + ], + "url": "https://fr.openfoodfacts.org/categorie/vodkas" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q12860188" + ], + "url": "https://fr.openfoodfacts.org/categorie/acras-de-morue", + "products": 33, + "name": "Acras de morue", + "id": "fr:acras-de-morue" + }, + { + "products": 33, + "id": "en:meat-based-sauces", + "name": "Sauces à la viande", + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-la-viande" + }, + { + "products": 33, + "id": "en:liqueur-chocolates", + "name": "Chocolats à la liqueur", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-liqueur" + }, + { + "name": "Pâtes à tartiner à base de levures", + "id": "en:yeast-extract-spreads", + "products": 33, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-a-base-de-levures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-au-lait", + "id": "en:semolina-desserts", + "name": "Semoules au lait", + "products": 33 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-clementine", + "products": 33, + "id": "en:clementine-juices", + "name": "Jus de clémentine" + }, + { + "products": 33, + "id": "fr:chocolats-au-cafe", + "name": "Chocolats-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-cafe" + }, + { + "products": 33, + "id": "en:petits-suisses", + "name": "Petits suisses", + "sameAs": [ + "https://www.wikidata.org/wiki/Q585246" + ], + "url": "https://fr.openfoodfacts.org/categorie/petits-suisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pancakes", + "name": "Pancakes", + "id": "en:pancakes", + "products": 33 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-gingembre", + "id": "fr:chocolats-noirs-au-gingembre", + "name": "Chocolats noirs au gingembre", + "products": 33 + }, + { + "name": "Menus Poissons pour bébé", + "id": "en:fish-menus-for-babies", + "products": 33, + "url": "https://fr.openfoodfacts.org/categorie/menus-poissons-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-prepares", + "id": "fr:colins-prepares", + "name": "Colins-prepares", + "products": 33 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-a-la-bolognaise", + "products": 33, + "id": "en:bolognese-pizzas", + "name": "Pizzas à la bolognaise" + }, + { + "id": "en:pretzel", + "name": "Bretzels", + "products": 33, + "url": "https://fr.openfoodfacts.org/categorie/bretzels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-lentilles", + "id": "fr:saucisses-aux-lentilles", + "name": "Saucisses-aux-lentilles", + "products": 33 + }, + { + "products": 33, + "id": "en:vegetables-menus-for-babies", + "name": "Menus Légumes pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/menus-legumes-pour-bebe" + }, + { + "products": 32, + "id": "en:wines-from-italy", + "name": "Vins italiens", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1125341" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-italiens" + }, + { + "products": 32, + "id": "fr:pates-a-sucre", + "name": "Pâtes à sucre", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-sucre" + }, + { + "name": "Lasagnes végétariennes", + "id": "en:vegetarian-lasagne", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-vegetariennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-a-tartiner", + "id": "en:produits-a-tartiner", + "name": "en:Produits-a-tartiner", + "products": 32 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brocolis", + "products": 32, + "id": "en:broccoli", + "name": "Brocolis" + }, + { + "id": "en:sesame", + "name": "Sésame", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/sesame", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2763698" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3230686" + ], + "url": "https://fr.openfoodfacts.org/categorie/escargots-de-bourgogne", + "products": 32, + "name": "Escargots de Bourgogne", + "id": "en:snails-from-burgundy" + }, + { + "id": "en:gizzards", + "name": "Gésiers", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/gesiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mandarines", + "name": "Mandarines", + "id": "en:mandarin-oranges", + "products": 32 + }, + { + "products": 32, + "id": "fr:morbiers", + "name": "Morbiers", + "url": "https://fr.openfoodfacts.org/categorie/morbiers", + "sameAs": [ + "https://www.wikidata.org/wiki/Q177727" + ] + }, + { + "name": "Falafel", + "id": "en:falafel", + "products": 32, + "sameAs": [ + "https://www.wikidata.org/wiki/Q188788" + ], + "url": "https://fr.openfoodfacts.org/categorie/falafel" + }, + { + "id": "en:rosehip-jam", + "name": "Confiture d'églantines", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/confiture-d-eglantines" + }, + { + "products": 32, + "name": "Gyoza", + "id": "fr:gyoza", + "url": "https://fr.openfoodfacts.org/categorie/gyoza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-fleur-de-sel", + "id": "en:dark-chocolates-with-fleur-de-sel", + "name": "Chocolats noirs à la fleur de sel", + "products": 32 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-et-aux-noisettes", + "products": 32, + "name": "Cookies au chocolat et aux noisettes", + "id": "en:chocolate-and-hazelnut-cookies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orangettes", + "products": 32, + "id": "fr:orangettes", + "name": "Orangettes" + }, + { + "name": "Farines de blé type T45", + "id": "en:wheat-flour-t405", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t45" + }, + { + "products": 32, + "name": "Pignons de pin", + "id": "en:pine-nuts", + "url": "https://fr.openfoodfacts.org/categorie/pignons-de-pin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q212933" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-surgelees", + "id": "en:frozen-soups", + "name": "Soupes surgelées", + "products": 32 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-ovales", + "name": "Pizzas ovales", + "id": "en:oval-pizzas", + "products": 32 + }, + { + "id": "fr:rillettes-de-maquereau", + "name": "Rillettes de maquereau", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-maquereau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-croustillants", + "products": 32, + "name": "Pains croustillants", + "id": "fr:pains-croustillants" + }, + { + "products": 32, + "id": "en:cheddar-sandwiches", + "name": "Sandwichs au cheddar", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-cheddar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macaroni", + "id": "fr:macaroni", + "name": "Macaroni", + "products": 32 + }, + { + "name": "Quenelles de volaille", + "id": "en:chicken-quenelles", + "products": 32, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-blondes", + "products": 32, + "id": "en:blonde-lentils", + "name": "Lentilles blondes" + }, + { + "products": 31, + "id": "en:beers-from-germany", + "name": "Bières allemandes", + "url": "https://fr.openfoodfacts.org/categorie/bieres-allemandes" + }, + { + "products": 31, + "name": "es:Aliments-a-base-de-fruits-et-de-legumes", + "id": "es:aliments-a-base-de-fruits-et-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q851428" + ], + "url": "https://fr.openfoodfacts.org/categorie/pralines", + "products": 31, + "id": "de:pralinen", + "name": "Pralines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-cabillaud", + "name": "Filets de cabillaud", + "id": "en:cod-fillets", + "products": 31 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-mousseux", + "products": 31, + "name": "Vins mousseux", + "id": "fr:vins-mousseux" + }, + { + "products": 31, + "id": "en:dried-mushrooms", + "name": "Champignons séchés", + "url": "https://fr.openfoodfacts.org/categorie/champignons-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calamars", + "sameAs": [ + "https://www.wikidata.org/wiki/Q550774" + ], + "products": 31, + "name": "Calamars", + "id": "en:calamari" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-naturels", + "products": 31, + "name": "Sels naturels", + "id": "fr:sels-naturels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas-au-sirop", + "products": 31, + "name": "Ananas au sirop", + "id": "en:pineapple-in-syrup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/harengs-fumes", + "name": "Harengs fumés", + "id": "en:smoked-herrings", + "products": 31 + }, + { + "products": 31, + "id": "fr:tagliatelles-fraiches", + "name": "Tagliatelles fraîches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20044" + ], + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-canard-au-porto", + "name": "Mousses de canard au porto", + "id": "fr:mousses-de-canard-au-porto", + "products": 31 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-mangue", + "products": 31, + "name": "Nectars de mangue", + "id": "en:mango-nectars" + }, + { + "id": "fr:laits-concentres-sucres", + "name": "Laits concentrés sucrés", + "products": 31, + "url": "https://fr.openfoodfacts.org/categorie/laits-concentres-sucres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2830455" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-double-creme", + "products": 31, + "id": "fr:fromages-double-creme", + "name": "Fromages-double-creme" + }, + { + "name": "Stévia et dérivés", + "id": "en:stevia-and-their-products", + "products": 31, + "sameAs": [ + "https://www.wikidata.org/wiki/Q7213452" + ], + "url": "https://fr.openfoodfacts.org/categorie/stevia-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-jambon-beurre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3160836" + ], + "products": 31, + "name": "Sandwichs Jambon Beurre", + "id": "en:ham-and-butter-sandwiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-vins-rouges", + "products": 31, + "id": "en:red-wine-vinegars", + "name": "Vinaigres de vins rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pflanzliche-lebensmittel", + "name": "Pflanzliche-lebensmittel", + "id": "fr:pflanzliche-lebensmittel", + "products": 31 + }, + { + "name": "Bâtonnets glacés à la vanille", + "id": "en:vanilla-ice-cream-bars", + "products": 31, + "url": "https://fr.openfoodfacts.org/categorie/batonnets-glaces-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bleus-d-auvergne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q883954" + ], + "id": "fr:bleus-d-auvergne", + "name": "Bleus d'Auvergne", + "products": 31 + }, + { + "products": 31, + "name": "Noisettes décortiquées", + "id": "en:shelled-hazelnuts", + "url": "https://fr.openfoodfacts.org/categorie/noisettes-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-saumon", + "products": 31, + "name": "Sandwichs au saumon", + "id": "en:salmon-sandwiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-secs-sultanines", + "name": "Raisins secs Sultanines", + "id": "en:sultana-raisins", + "products": 31 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas-a-base-de-concentre", + "products": 31, + "id": "en:concentrated-pineapple-juices", + "name": "Jus d'ananas à base de concentré" + }, + { + "products": 30, + "name": "Biscuits-aux-cereales", + "id": "fr:biscuits-aux-cereales", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas-au-jus", + "products": 30, + "id": "en:pineapple-in-juice", + "name": "Ananas au jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t55", + "products": 30, + "name": "Farines de blé type T55", + "id": "en:white-wheat-flours" + }, + { + "name": "Bières bretonnes", + "id": "fr:bieres-bretonnes", + "products": 30, + "url": "https://fr.openfoodfacts.org/categorie/bieres-bretonnes" + }, + { + "name": "Confits d'oignons", + "id": "fr:confits-d-oignons", + "products": 30, + "url": "https://fr.openfoodfacts.org/categorie/confits-d-oignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-a-la-bergamote", + "products": 30, + "name": "Thés à la bergamote", + "id": "en:teas-with-bergamot" + }, + { + "products": 30, + "id": "en:oranges", + "name": "Oranges", + "url": "https://fr.openfoodfacts.org/categorie/oranges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liegeois", + "id": "fr:liegeois", + "name": "Liegeois", + "products": 30 + }, + { + "name": "Purées de sésame", + "id": "en:tahini", + "products": 30, + "sameAs": [ + "https://www.wikidata.org/wiki/Q383389" + ], + "url": "https://fr.openfoodfacts.org/categorie/purees-de-sesame" + }, + { + "products": 30, + "id": "en:peach-applesauce", + "name": "Compotes pommes pêche", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-peche" + }, + { + "products": 30, + "id": "fr:fusilli", + "name": "Fusilli", + "url": "https://fr.openfoodfacts.org/categorie/fusilli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons", + "name": "es:Boissons", + "id": "es:boissons", + "products": 30 + }, + { + "name": "Tapenades vertes", + "id": "fr:tapenades-vertes", + "products": 30, + "url": "https://fr.openfoodfacts.org/categorie/tapenades-vertes" + }, + { + "products": 30, + "id": "fr:buches-de-noel", + "name": "Buches-de-noel", + "url": "https://fr.openfoodfacts.org/categorie/buches-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-d-alcools", + "products": 30, + "id": "en:alcohol-vinegars", + "name": "Vinaigres d'alcools" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-cereales", + "name": "Purées de céréales", + "id": "en:cereal-butters", + "products": 30 + }, + { + "products": 30, + "name": "Amandes grillées", + "id": "en:grilled-almonds", + "url": "https://fr.openfoodfacts.org/categorie/amandes-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerneaux-de-noix", + "products": 30, + "id": "en:walnut-kernels", + "name": "Cerneaux de noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-a-la-bolognaise", + "products": 30, + "id": "en:bolognese-raviolis", + "name": "Ravioli à la bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sculptures-en-chocolat", + "products": 30, + "id": "en:chocolate-scupltures", + "name": "Sculptures en chocolat" + }, + { + "products": 30, + "id": "fr:desserts-lactes-au-cafe", + "name": "Desserts lactés au café", + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-cafe" + }, + { + "products": 30, + "name": "Tomates séchées à l'huile", + "id": "en:dried-tomatoes-in-oil", + "url": "https://fr.openfoodfacts.org/categorie/tomates-sechees-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aide-culinaire-sucree", + "products": 29, + "id": "en:sugary-cooking-helpers", + "name": "Aide culinaire sucrée" + }, + { + "name": "Papillotes en chocolat", + "id": "fr:papillotes-en-chocolat", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/papillotes-en-chocolat" + }, + { + "id": "fr:pates-seches-completes", + "name": "Pates-seches-completes", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-completes" + }, + { + "id": "en:coconut-waters", + "name": "Eaux de coco", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-coco", + "sameAs": [ + "https://www.wikidata.org/wiki/Q633401" + ] + }, + { + "products": 29, + "id": "en:biscuits-et-gateaux", + "name": "en:Biscuits-et-gateaux", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-et-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-label-rouge", + "id": "fr:oeufs-label-rouge", + "name": "Oeufs-label-rouge", + "products": 29 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q38859" + ], + "url": "https://fr.openfoodfacts.org/categorie/basilic", + "id": "en:basil", + "name": "Basilic", + "products": 29 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-muffins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q429483" + ], + "products": 29, + "name": "Pains Muffins", + "id": "en:english-muffins" + }, + { + "products": 29, + "id": "en:filled-crepes-with-chocolate", + "name": "Crêpes fourrées au chocolat", + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-au-chocolat" + }, + { + "products": 29, + "name": "Substitut-de-repas", + "id": "fr:substitut-de-repas", + "url": "https://fr.openfoodfacts.org/categorie/substitut-de-repas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-a-grain-court", + "products": 29, + "name": "Riz à grain court", + "id": "en:short-grain-rices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-tilleul", + "products": 29, + "id": "fr:miels-de-tilleul", + "name": "Miels de tilleul" + }, + { + "id": "en:sardines-without-oil", + "name": "Sardines sans huile", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/sardines-sans-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalotes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q193498" + ], + "id": "en:shallots", + "name": "Échalotes", + "products": 29 + }, + { + "products": 29, + "id": "en:white-chocolate-biscuits", + "name": "Biscuits au chocolat blanc", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chocolat-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-biscuitees", + "products": 29, + "id": "en:chocolate-biscuity-bars", + "name": "Barres chocolatées biscuitées" + }, + { + "name": "Biscuits sans gluten", + "id": "en:gluten-free-biscuits", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-sans-gluten" + }, + { + "products": 29, + "name": "Farines de blé type T65", + "id": "fr:farines-de-ble-type-t65", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t65" + }, + { + "id": "en:cereal-brans", + "name": "Sons de céréales", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/sons-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-au-ble-complet", + "name": "Spaghettis au blé complet", + "id": "en:whole-wheat-spaghetti", + "products": 29 + }, + { + "products": 29, + "id": "en:honey-and-royal-jelly-mixtures", + "name": "Mélanges de miel et gelée royale", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-miel-et-gelee-royale" + }, + { + "products": 29, + "id": "en:plats-prepares", + "name": "en:Plats-prepares", + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-thon", + "products": 29, + "id": "en:tuna-fillets", + "name": "Filets de thon" + }, + { + "products": 29, + "name": "Viandes d'agneau", + "id": "en:lamb-meat", + "url": "https://fr.openfoodfacts.org/categorie/viandes-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marshmallows", + "sameAs": [ + "https://www.wikidata.org/wiki/Q272198" + ], + "name": "Marshmallows", + "id": "en:marshmallows", + "products": 29 + }, + { + "id": "en:arrabbiata-sauces", + "name": "Sauces Arrabiata", + "products": 29, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1891043" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-arrabiata" + }, + { + "products": 29, + "id": "en:calissons-d-aix", + "name": "Calissons d'Aix", + "url": "https://fr.openfoodfacts.org/categorie/calissons-d-aix" + }, + { + "name": "Oignons frits", + "id": "en:fried-onions", + "products": 29, + "url": "https://fr.openfoodfacts.org/categorie/oignons-frits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/peches-au-sirop", + "name": "Pêches au sirop", + "id": "en:peaches-in-syrup", + "products": 29 + }, + { + "name": "Graines de courge", + "id": "en:pumpkin-seeds", + "products": 29, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3056521" + ], + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge" + }, + { + "products": 29, + "name": "Rillettes de crustacés", + "id": "fr:rillettes-de-crustaces", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-crustaces" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q212317" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-sesame", + "products": 28, + "name": "Huiles de sésame", + "id": "en:sesame-oils" + }, + { + "products": 28, + "id": "fr:torti", + "name": "Torti", + "url": "https://fr.openfoodfacts.org/categorie/torti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortillas", + "name": "Tortillas", + "id": "fr:tortillas", + "products": 28 + }, + { + "name": "Bœufs bourguignons", + "id": "en:boeufs-bourguignons", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/boeufs-bourguignons" + }, + { + "id": "en:thickeners", + "name": "Gélifiants", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/gelifiants" + }, + { + "id": "en:redcurrants-jellies", + "name": "Gelées de groseilles", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-groseilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-alleges", + "products": 28, + "id": "fr:fromages-alleges", + "name": "Fromages-alleges" + }, + { + "products": 28, + "id": "en:aiolis", + "name": "Aïolis", + "url": "https://fr.openfoodfacts.org/categorie/aiolis", + "sameAs": [ + "https://www.wikidata.org/wiki/Q283231" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croissants-ordinaires", + "name": "Croissants-ordinaires", + "id": "fr:croissants-ordinaires", + "products": 28 + }, + { + "products": 28, + "name": "Yaourts à la mangue", + "id": "en:mango-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-mangue" + }, + { + "id": "fr:palets", + "name": "Palets", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/palets" + }, + { + "name": "Boissons-instantanees", + "id": "fr:boissons-instantanees", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/boissons-instantanees" + }, + { + "products": 28, + "id": "fr:saint-emilion", + "name": "Saint-émilion", + "url": "https://fr.openfoodfacts.org/categorie/saint-emilion", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2715616" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-lapin", + "id": "en:rabbit-terrines", + "name": "Terrines de lapin", + "products": 28 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q19344246" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-pasteurises", + "name": "Laits pasteurisés", + "id": "en:pasteurised-milks", + "products": 28 + }, + { + "products": 28, + "name": "Biscottes complètes", + "id": "fr:biscottes-completes", + "url": "https://fr.openfoodfacts.org/categorie/biscottes-completes" + }, + { + "name": "Côtes de porc", + "id": "en:pork-ribs", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/congolais", + "name": "Congolais", + "id": "fr:congolais", + "products": 28 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crozets", + "id": "fr:crozets", + "name": "Crozets", + "products": 28 + }, + { + "products": 28, + "name": "Galettes de riz au chocolat au lait", + "id": "en:puffed-rice-cakes-with-milk-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-au-chocolat-au-lait" + }, + { + "products": 28, + "id": "de:chocolats", + "name": "de:Chocolats", + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhums-blancs", + "name": "Rhums blancs", + "id": "en:white-rums", + "products": 28 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chapelures", + "sameAs": [ + "https://www.wikidata.org/wiki/Q658413" + ], + "products": 28, + "id": "en:bread-crumbs", + "name": "Chapelures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-noisettes-surgelees", + "products": 28, + "id": "fr:pommes-noisettes-surgelees", + "name": "Pommes noisettes surgelées" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-bacon", + "products": 28, + "name": "Sandwichs au bacon", + "id": "en:bacon-sandwiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioles", + "products": 28, + "name": "Ravioles", + "id": "fr:ravioles" + }, + { + "products": 28, + "name": "Maasdam", + "id": "en:maasdam", + "url": "https://fr.openfoodfacts.org/categorie/maasdam", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3273732" + ] + }, + { + "products": 28, + "id": "en:boissons-aux-fruits", + "name": "en:Boissons-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-vanilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3492989" + ], + "products": 28, + "id": "en:vanilla-sugars", + "name": "Sucres vanillés" + }, + { + "name": "Omelettes de pommes de terre", + "id": "en:spanish-omelettes", + "products": 28, + "sameAs": [ + "https://www.wikidata.org/wiki/Q281751" + ], + "url": "https://fr.openfoodfacts.org/categorie/omelettes-de-pommes-de-terre" + }, + { + "products": 28, + "name": "Moussakas", + "id": "fr:moussakas", + "url": "https://fr.openfoodfacts.org/categorie/moussakas" + }, + { + "name": "Jus de pruneaux", + "id": "en:prune-juice", + "products": 28, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pruneaux" + }, + { + "products": 27, + "name": "Rochers-a-la-noix-de-coco", + "id": "fr:rochers-a-la-noix-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/rochers-a-la-noix-de-coco" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2905058" + ], + "url": "https://fr.openfoodfacts.org/categorie/bieres-rousses", + "products": 27, + "name": "Bières rousses", + "id": "en:red-beer" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q804297" + ], + "url": "https://fr.openfoodfacts.org/categorie/haricots-a-la-tomate", + "products": 27, + "name": "Haricots à la tomate", + "id": "en:baked-beans-in-tomato-sauce" + }, + { + "name": "Susswaren", + "id": "fr:susswaren", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/susswaren" + }, + { + "name": "Fourme d'Ambert", + "id": "fr:fourme-d-ambert", + "products": 27, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1245530" + ], + "url": "https://fr.openfoodfacts.org/categorie/fourme-d-ambert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-aromatises", + "id": "en:flavoured-wines", + "name": "Vins aromatisés", + "products": 27 + }, + { + "name": "Quiches au poireau", + "id": "en:leek-quiche", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/quiches-au-poireau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-biscuits", + "products": 27, + "name": "Assortiments-de-biscuits", + "id": "fr:assortiments-de-biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-la-noix-de-coco", + "name": "Chocolats blancs à la noix de coco", + "id": "fr:chocolats-blancs-a-la-noix-de-coco", + "products": 27 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-casses", + "products": 27, + "name": "Pois-casses", + "id": "fr:pois-casses" + }, + { + "name": "Viande des grisons", + "id": "en:meat-of-the-grisons", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/viande-des-grisons" + }, + { + "products": 27, + "id": "fr:andouilles", + "name": "Andouilles", + "url": "https://fr.openfoodfacts.org/categorie/andouilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q492769" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-foie", + "products": 27, + "id": "fr:pates-de-foie", + "name": "Pates-de-foie" + }, + { + "products": 27, + "name": "Samoussas", + "id": "en:samosas", + "url": "https://fr.openfoodfacts.org/categorie/samoussas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q491517" + ] + }, + { + "id": "en:green-olives-in-brine", + "name": "Olives vertes en saumure", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-en-saumure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-fruits-a-coques", + "products": 27, + "id": "en:nut-bars", + "name": "Barres de fruits à coques" + }, + { + "name": "Legumes-cuisines", + "id": "fr:legumes-cuisines", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/legumes-cuisines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-de-montelimar", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3344838" + ], + "products": 27, + "name": "Nougats de Montélimar", + "id": "en:nougats-from-montelimar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/getranke", + "products": 27, + "id": "fr:getranke", + "name": "Getranke" + }, + { + "id": "en:white-basmati-rices", + "name": "Riz Basmati blancs", + "products": 27, + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati-blancs" + }, + { + "products": 27, + "id": "fr:biscuits-aux-amandes", + "name": "Biscuits-aux-amandes", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-amandes" + }, + { + "products": 27, + "name": "Chips au sel et vinaigre", + "id": "en:salt-and-vinegar-crisps", + "url": "https://fr.openfoodfacts.org/categorie/chips-au-sel-et-vinaigre" + }, + { + "products": 27, + "id": "fr:boissons-concentrees", + "name": "Boissons-concentrees", + "url": "https://fr.openfoodfacts.org/categorie/boissons-concentrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-brulees", + "name": "Crèmes brûlées", + "id": "fr:cremes-brulees", + "products": 27 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-au-froment", + "products": 27, + "id": "fr:biscottes-au-froment", + "name": "Biscottes au froment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-poires", + "id": "en:pear-jams", + "name": "Confitures de poires", + "products": 27 + }, + { + "products": 27, + "id": "en:multifruit-pastes", + "name": "Pâtes de fruits multifruits", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-fruits-multifruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-framboise", + "id": "en:raspberry-coulis", + "name": "Coulis de framboise", + "products": 27 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-blanches", + "products": 27, + "id": "en:white-asparagus", + "name": "Asperges blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierges-de-coco", + "products": 27, + "id": "en:virgin-coco-oils", + "name": "Huiles vierges de coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nuggets", + "products": 27, + "id": "fr:nuggets", + "name": "Nuggets" + }, + { + "name": "Semi-conserves", + "id": "en:semi-preserved-foods", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/semi-conserves" + }, + { + "products": 26, + "name": "Crêpes dentelle", + "id": "fr:crepes-dentelle", + "url": "https://fr.openfoodfacts.org/categorie/crepes-dentelle", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16545117" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-surgeles", + "name": "Champignons surgelés", + "id": "en:frozen-mushrooms", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-poivre", + "name": "Graines de poivre", + "id": "en:peppercorns", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/substituts-de-repas", + "id": "fr:substituts-de-repas", + "name": "Substituts-de-repas", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-et-a-la-nougatine", + "id": "en:cookies-with-chocolate-and-nougat", + "name": "Cookies au chocolat et à la nougatine", + "products": 26 + }, + { + "name": "Thés noirs aromatisés à la bergamote", + "id": "en:bergamot-flavored-black-teas", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-aromatises-a-la-bergamote" + }, + { + "products": 26, + "id": "en:canned-herrings", + "name": "Harengs en conserve", + "url": "https://fr.openfoodfacts.org/categorie/harengs-en-conserve" + }, + { + "id": "en:soy", + "name": "Soja", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/soja", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11006" + ] + }, + { + "products": 26, + "name": "Biscuits-petits-dejeuners", + "id": "fr:biscuits-petits-dejeuners", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-petits-dejeuners" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-susceptibles-de-contenir-de-la-viande-de-cheval", + "id": "en:dishes-that-may-contain-horse-meat", + "name": "Plats susceptibles de contenir de la viande de cheval", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-foret", + "id": "fr:miels-de-foret", + "name": "Miels de forêt", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/canneberges", + "id": "en:cranberries", + "name": "Canneberges", + "products": 26 + }, + { + "products": 26, + "name": "Galettes-sablees", + "id": "fr:galettes-sablees", + "url": "https://fr.openfoodfacts.org/categorie/galettes-sablees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-en-conserve", + "products": 26, + "name": "Pommes de terre en conserve", + "id": "en:canned-potatoes" + }, + { + "products": 26, + "id": "en:biscuits-for-babies", + "name": "Biscuits pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pour-bebe" + }, + { + "name": "Lots retirés de la vente", + "id": "en:batches-withdrawn-from-retail-stores", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/lots-retires-de-la-vente" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-betteraves", + "name": "Salades de betteraves", + "id": "en:beets-salads", + "products": 26 + }, + { + "products": 26, + "id": "en:batches-withdrawn-from-retail-stores-in-february-2013", + "name": "Lots retirés de la vente en février 2013", + "url": "https://fr.openfoodfacts.org/categorie/lots-retires-de-la-vente-en-fevrier-2013" + }, + { + "name": "Laits-fermentes", + "id": "fr:laits-fermentes", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/laits-fermentes" + }, + { + "products": 26, + "id": "en:chestnut-applesauces", + "name": "Compotes pommes châtaigne", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-chataigne" + }, + { + "products": 26, + "name": "Œufs de lump", + "id": "fr:oeufs-de-lump", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-lump", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3594120" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-poire", + "name": "Nectars de poire", + "id": "en:pear-nectars", + "products": 26 + }, + { + "products": 26, + "id": "en:cauliflowers", + "name": "Choux-fleurs", + "url": "https://fr.openfoodfacts.org/categorie/choux-fleurs" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q13241" + ], + "url": "https://fr.openfoodfacts.org/categorie/vanille", + "id": "en:vanilla", + "name": "Vanille", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buches-patissieres", + "id": "fr:buches-patissieres", + "name": "Bûches pâtissières", + "products": 26 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-sardine", + "name": "Rillettes de sardine", + "id": "fr:rillettes-de-sardine", + "products": 26 + }, + { + "name": "Sandwichs à la rosette", + "id": "en:rosette-sandwiches", + "products": 26, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-rosette" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q45108" + ], + "url": "https://fr.openfoodfacts.org/categorie/lins", + "id": "en:flax-seeds", + "name": "Lins", + "products": 26 + }, + { + "products": 26, + "name": "Plats susceptibles de contenir de la viande de cheval - lots retirés de la vente en février 2013", + "id": "fr:plats-susceptibles-de-contenir-de-la-viande-de-cheval-lots-retires-de-la-vente-en-fevrier-2013", + "url": "https://fr.openfoodfacts.org/categorie/plats-susceptibles-de-contenir-de-la-viande-de-cheval-lots-retires-de-la-vente-en-fevrier-2013" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:snacks-sucres", + "products": 25, + "id": "es:snacks-sucres", + "name": "es:Snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-et-derives", + "products": 25, + "id": "de:cereales-et-derives", + "name": "de:Cereales-et-derives" + }, + { + "id": "en:cinnamon-powder", + "name": "Cannelle en poudre", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/cannelle-en-poudre" + }, + { + "products": 25, + "id": "fr:matiere-grasse-a-tartiner-et-a-cuire-allegee", + "name": "Matiere-grasse-a-tartiner-et-a-cuire-allegee", + "url": "https://fr.openfoodfacts.org/categorie/matiere-grasse-a-tartiner-et-a-cuire-allegee" + }, + { + "id": "en:farmer-s-crisps", + "name": "Chips paysannes", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/chips-paysannes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/edulcorants-naturels", + "id": "en:natural-sugar-substitutes", + "name": "Édulcorants naturels", + "products": 25 + }, + { + "id": "en:fleurs-de-sel", + "name": "Fleurs de sel", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/fleurs-de-sel" + }, + { + "name": "Betteraves", + "id": "en:beet", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/betteraves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies-au-poivron", + "name": "Olives vertes farcies au poivron", + "id": "en:green-olives-stuffed-of-pepper", + "products": 25 + }, + { + "products": 25, + "name": "Livarot", + "id": "fr:livarot", + "url": "https://fr.openfoodfacts.org/categorie/livarot", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1144668" + ] + }, + { + "name": "Polenta", + "id": "fr:polenta", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/polenta" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-asiatiques", + "products": 25, + "id": "fr:nouilles-asiatiques", + "name": "Nouilles-asiatiques" + }, + { + "id": "en:chocolate-tartlets", + "name": "Tartelettes au chocolat", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-chocolat" + }, + { + "products": 25, + "id": "en:sushi-and-maki", + "name": "Sushi and Maki", + "url": "https://fr.openfoodfacts.org/categorie/sushi-and-maki" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fondants-au-chocolat", + "name": "Fondants-au-chocolat", + "id": "fr:fondants-au-chocolat", + "products": 25 + }, + { + "products": 25, + "id": "fr:chocolats-noirs-au-cafe", + "name": "Chocolats-noirs-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-cafe" + }, + { + "id": "fr:barres-patissieres", + "name": "Barres-patissieres", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/barres-patissieres" + }, + { + "id": "fr:nappages", + "name": "Nappages", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/nappages" + }, + { + "products": 25, + "name": "Arômes pâtisserie", + "id": "fr:aromes-patisserie", + "url": "https://fr.openfoodfacts.org/categorie/aromes-patisserie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures", + "id": "fr:levures", + "name": "Levures", + "products": 25 + }, + { + "products": 25, + "name": "Tripes à la mode de Caen", + "id": "fr:tripes-a-la-mode-de-caen", + "url": "https://fr.openfoodfacts.org/categorie/tripes-a-la-mode-de-caen", + "sameAs": [ + "https://www.wikidata.org/wiki/Q356690" + ] + }, + { + "id": "en:raspberry-applesauces", + "name": "Compotes pommes framboise", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-framboise" + }, + { + "id": "en:quince-jellies", + "name": "Gelées de coings", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-coings" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-fromage", + "products": 25, + "id": "en:cheese-sauces", + "name": "Sauces au fromage" + }, + { + "name": "Viandes-sechees", + "id": "fr:viandes-sechees", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/viandes-sechees" + }, + { + "products": 25, + "name": "Rhums agricoles", + "id": "en:agricultural-rum", + "url": "https://fr.openfoodfacts.org/categorie/rhums-agricoles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3429796" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-eucalyptus", + "id": "fr:miels-d-eucalyptus", + "name": "Miels d'eucalyptus", + "products": 25 + }, + { + "id": "en:peach-nectars", + "name": "Nectars de pêche", + "products": 25, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-peche" + }, + { + "products": 24, + "name": "Crunchy almond turrón", + "id": "en:crunchy-almond-turron", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3995784" + ], + "url": "https://fr.openfoodfacts.org/categorie/crunchy-almond-turron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sushi", + "products": 24, + "id": "en:sushi", + "name": "Sushi" + }, + { + "products": 24, + "name": "Miels-de-thym", + "id": "fr:miels-de-thym", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-thym" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-gazeuses", + "products": 24, + "name": "en:Boissons-gazeuses", + "id": "en:boissons-gazeuses" + }, + { + "products": 24, + "name": "Persil", + "id": "en:parsley", + "sameAs": [ + "https://www.wikidata.org/wiki/Q25284" + ], + "url": "https://fr.openfoodfacts.org/categorie/persil" + }, + { + "name": "Maroilles", + "id": "fr:maroilles", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/maroilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q734978" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas-en-conserve", + "id": "en:canned-pineapples", + "name": "Ananas en conserve", + "products": 24 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-entiers", + "name": "Poulets-entiers", + "id": "fr:poulets-entiers", + "products": 24 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail", + "products": 24, + "name": "Ail", + "id": "en:garlic" + }, + { + "products": 24, + "name": "Desserts de soja au cacao", + "id": "en:cocoa-soy-desserts", + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-au-cacao" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3360595" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-de-campagne", + "products": 24, + "id": "en:pains-de-campagne", + "name": "Pains de campagne" + }, + { + "name": "Sauces tomates aux legumes", + "id": "fr:sauces-tomates-aux-legumes", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-vendeennes", + "name": "Brioches Vendéennes", + "id": "fr:brioches-vendeennes", + "products": 24 + }, + { + "name": "Saucisses de poulet", + "id": "en:chicken-sausages", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-poulet" + }, + { + "products": 24, + "id": "en:buckwheat-flours", + "name": "Farines de sarrasin", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-sarrasin" + }, + { + "products": 24, + "id": "en:salted-popcorn", + "name": "Popcorn salé", + "url": "https://fr.openfoodfacts.org/categorie/popcorn-sale" + }, + { + "products": 24, + "name": "Sirops à l'anis", + "id": "en:syrups-with-anise", + "url": "https://fr.openfoodfacts.org/categorie/sirops-a-l-anis" + }, + { + "id": "en:confiseries", + "name": "en:Confiseries", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/en:confiseries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-douces", + "name": "Moutardes douces", + "id": "en:sweet-mustards", + "products": 24 + }, + { + "name": "Cappuccino en poudre", + "id": "en:powdered-cappucino", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/cappuccino-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-piemontaises-au-jambon", + "id": "en:piemontese-salads-with-ham", + "name": "Salades piémontaises au jambon", + "products": 24 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-aux-cereales", + "name": "Biscottes aux céréales", + "id": "fr:biscottes-aux-cereales", + "products": 24 + }, + { + "products": 24, + "name": "Yaourts à boire goût vanille", + "id": "fr:yaourts-a-boire-gout-vanille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-gout-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-saumon", + "id": "fr:plats-a-base-de-saumon", + "name": "Plats-a-base-de-saumon", + "products": 24 + }, + { + "name": "Filets de sardines à l'huile d'olive", + "id": "fr:filets-de-sardines-a-l-huile-d-olive", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-a-l-huile-d-olive" + }, + { + "products": 24, + "id": "en:grape-seed-oils", + "name": "Huiles de pépins de raisins", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-pepins-de-raisins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q898982" + ] + }, + { + "name": "Beaujolais", + "id": "fr:beaujolais", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/beaujolais" + }, + { + "name": "Farines de pois chiche", + "id": "en:chickpeas-flours", + "products": 24, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-pois-chiche" + }, + { + "products": 24, + "name": "Macaroni de blé dur", + "id": "en:durum-wheat-macaroni", + "url": "https://fr.openfoodfacts.org/categorie/macaroni-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-saint-jacques", + "id": "en:scallop", + "name": "Noix de Saint-Jacques", + "products": 24 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickled-caper-berries", + "id": "en:pickled-caper-berries", + "name": "Pickled caper berries", + "products": 23 + }, + { + "name": "Miels de romarin", + "id": "fr:miels-de-romarin", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-romarin" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q148668" + ], + "url": "https://fr.openfoodfacts.org/categorie/thym", + "id": "en:thyme", + "name": "Thym", + "products": 23 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscats", + "products": 23, + "id": "fr:muscats", + "name": "Muscats" + }, + { + "name": "Terrines de sanglier", + "id": "en:boar-terrine", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-sanglier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-mais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q837118" + ], + "products": 23, + "name": "Farines de maïs", + "id": "en:cornmeal" + }, + { + "name": "Clafoutis", + "id": "en:clafoutis", + "products": 23, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1094707" + ], + "url": "https://fr.openfoodfacts.org/categorie/clafoutis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-aux-noix", + "products": 23, + "id": "en:cheeses-with-walnuts", + "name": "Fromages aux noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioles-du-dauphine", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3420363" + ], + "name": "Ravioles du Dauphiné", + "id": "fr:ravioles-du-dauphine", + "products": 23 + }, + { + "id": "en:black-pudding-with-onions", + "name": "Boudins noirs aux oignons", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/boudins-noirs-aux-oignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escargots-prepares", + "id": "en:snails-preparations", + "name": "Escargots préparés", + "products": 23 + }, + { + "products": 23, + "name": "Baba au rhum", + "id": "en:rum-baba", + "sameAs": [ + "https://www.wikidata.org/wiki/Q265457" + ], + "url": "https://fr.openfoodfacts.org/categorie/baba-au-rhum" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-la-fleur-de-sel", + "id": "en:milk-chocolates-with-fleur-de-sel", + "name": "Chocolats au lait à la fleur de sel", + "products": 23 + }, + { + "name": "Haricots beurre en conserve", + "id": "fr:haricots-beurre-en-conserve", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/haricots-beurre-en-conserve" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q42562" + ], + "url": "https://fr.openfoodfacts.org/categorie/curcuma", + "products": 23, + "id": "en:turmeric", + "name": "Curcuma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-et-carottes", + "id": "fr:petits-pois-et-carottes", + "name": "Petits-pois-et-carottes", + "products": 23 + }, + { + "id": "fr:capres", + "name": "Capres", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/capres" + }, + { + "products": 23, + "name": "Cappuccino", + "id": "fr:cappuccino", + "url": "https://fr.openfoodfacts.org/categorie/cappuccino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-noires-entieres", + "products": 23, + "name": "Olives noires entières", + "id": "en:whole-black-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-poire", + "products": 23, + "id": "fr:compotes-de-poire", + "name": "Compotes de poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cones-et-batonnets-surgeles", + "products": 23, + "id": "fr:cones-et-batonnets-surgeles", + "name": "Cônes et batonnets surgelés" + }, + { + "name": "Parmentiers de canard", + "id": "fr:parmentiers-de-canard", + "products": 23, + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassonades", + "id": "fr:cassonades", + "name": "Cassonades", + "products": 23 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-poire", + "products": 23, + "id": "en:pear-sorbets", + "name": "Sorbets à la poire" + }, + { + "products": 23, + "id": "en:barn-eggs", + "name": "Œufs de poules élevées au sol", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-poules-elevees-au-sol" + }, + { + "products": 23, + "name": "Condiments à tartiner", + "id": "fr:condiments-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/condiments-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-frais", + "products": 23, + "id": "en:fresh-eggs", + "name": "Œufs frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-pecan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q333877" + ], + "id": "en:pecan-nuts", + "name": "Noix de pécan", + "products": 23 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-au-lait", + "name": "Jus de fruits au lait", + "id": "en:fruit-and-milk-juices", + "products": 23 + }, + { + "name": "Poivre noir en grains", + "id": "en:black-peppercorns", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/poivre-noir-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beurres-de-cacahuetes", + "name": "en:Beurres-de-cacahuetes", + "id": "en:beurres-de-cacahuetes", + "products": 22 + }, + { + "id": "en:creamy-almond-turron", + "name": "Creamy almond turrón", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/creamy-almond-turron" + }, + { + "products": 22, + "name": "de:Fromages", + "id": "de:fromages", + "url": "https://fr.openfoodfacts.org/categorie/de:fromages" + }, + { + "products": 22, + "id": "en:honey-mustards", + "name": "Moutardes au miel", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-miel" + }, + { + "products": 22, + "name": "de:Boissons-non-sucrees", + "id": "de:boissons-non-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-framboise", + "products": 22, + "name": "Sirops de framboise", + "id": "en:raspberry-syrups" + }, + { + "name": "Sauces béchamel", + "id": "en:bechamel-sauces", + "products": 22, + "sameAs": [ + "https://www.wikidata.org/wiki/Q209974" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-bechamel" + }, + { + "products": 22, + "name": "Selles-sur-Cher", + "id": "fr:selles-sur-cher", + "url": "https://fr.openfoodfacts.org/categorie/selles-sur-cher" + }, + { + "id": "en:lychees-in-syrup", + "name": "Lychees au sirop", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/lychees-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-aux-oeufs", + "id": "fr:cremes-aux-oeufs", + "name": "Cremes-aux-oeufs", + "products": 22 + }, + { + "products": 22, + "name": "Flatbreads", + "id": "en:flatbreads", + "url": "https://fr.openfoodfacts.org/categorie/flatbreads", + "sameAs": [ + "https://www.wikidata.org/wiki/Q666242" + ] + }, + { + "id": "fr:fruits-de-mer", + "name": "Fruits-de-mer", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/fruits-de-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-montbeliard", + "products": 22, + "id": "en:montbeliard-sausages", + "name": "Saucisses de Montbéliard" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q160525" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-bretzels", + "name": "Pains Bretzels", + "id": "fr:pains-bretzels", + "products": 22 + }, + { + "products": 22, + "id": "en:strawberry-tartlets", + "name": "Tartelettes à la fraise", + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wheat-tortillas", + "products": 22, + "name": "Wheat-tortillas", + "id": "fr:wheat-tortillas" + }, + { + "id": "en:refrigerated-squeezed-juices", + "name": "Jus de fruits frais", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-frais" + }, + { + "products": 22, + "id": "en:red-beans", + "name": "Haricots rouges", + "url": "https://fr.openfoodfacts.org/categorie/haricots-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/goudas-au-cumin", + "products": 22, + "name": "Goudas au cumin", + "id": "en:goudas-with-cumin" + }, + { + "products": 22, + "name": "Sauces napolitaines", + "id": "en:neapolitan-sauces", + "url": "https://fr.openfoodfacts.org/categorie/sauces-napolitaines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4886791" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-framboises", + "products": 22, + "name": "Gelées de framboises", + "id": "en:raspberry-jellies" + }, + { + "products": 22, + "id": "en:pears", + "name": "Poires", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13099586" + ], + "url": "https://fr.openfoodfacts.org/categorie/poires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-basquaise", + "products": 22, + "id": "fr:poulet-basquaise", + "name": "Poulet basquaise" + }, + { + "name": "Semoules de maïs", + "id": "en:corn-semolinas", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-mais" + }, + { + "products": 22, + "id": "en:pickled-capers", + "name": "Pickled capers", + "url": "https://fr.openfoodfacts.org/categorie/pickled-capers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petit-sale", + "products": 22, + "id": "fr:petit-sale", + "name": "Petit-sale" + }, + { + "name": "Gorgonzolas", + "id": "en:gorgonzolas", + "products": 22, + "sameAs": [ + "https://www.wikidata.org/wiki/Q209044" + ], + "url": "https://fr.openfoodfacts.org/categorie/gorgonzolas" + }, + { + "name": "Caviars-d-aubergines", + "id": "fr:caviars-d-aubergines", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/caviars-d-aubergines" + }, + { + "products": 22, + "id": "en:apricots", + "name": "Abricots", + "url": "https://fr.openfoodfacts.org/categorie/abricots", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3733836" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-colin", + "products": 22, + "id": "en:pollock-fillets", + "name": "Filets de colin" + }, + { + "products": 22, + "id": "en:apple-nectars", + "name": "Nectars de pomme", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastilles", + "products": 22, + "name": "Pastilles", + "id": "fr:pastilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-chinois", + "products": 22, + "name": "Thés verts chinois", + "id": "en:chinese-green-teas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-fourres", + "id": "fr:gateaux-fourres", + "name": "Gateaux-fourres", + "products": 22 + }, + { + "id": "en:egg-spaghetti", + "name": "Spaghettis aux œufs", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-aux-oeufs" + }, + { + "name": "Sorbets au fruit de la passion", + "id": "en:passion-fruit-sorbets", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-fruit-de-la-passion" + }, + { + "id": "en:insects", + "name": "Insectes", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/insectes" + }, + { + "name": "Bonbons-de-chocolat-au-lait", + "id": "fr:bonbons-de-chocolat-au-lait", + "products": 22, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-cassis", + "name": "Sorbets au cassis", + "id": "fr:sorbets-au-cassis", + "products": 22 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bars", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1224135" + ], + "products": 22, + "id": "en:bass", + "name": "Bars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas", + "name": "Ananas", + "id": "en:pineapple", + "products": 22 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-aux-fruits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q744457" + ], + "products": 22, + "id": "en:fruit-teas", + "name": "Infusions aux fruits" + }, + { + "products": 22, + "id": "en:muskmelons", + "name": "Melons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q81602" + ], + "url": "https://fr.openfoodfacts.org/categorie/melons" + }, + { + "name": "Filets d'anchois marinés", + "id": "fr:filets-d-anchois-marines", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-entiers", + "id": "en:whole-champignon-mushrooms", + "name": "Champignons de Paris entiers", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-a-la-moutarde", + "products": 21, + "id": "fr:chips-a-la-moutarde", + "name": "Chips à la moutarde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ciboulette", + "sameAs": [ + "https://www.wikidata.org/wiki/Q51148" + ], + "id": "en:chives", + "name": "Ciboulette", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/myrtilles", + "name": "Myrtilles", + "id": "en:blueberries", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-caramel", + "id": "en:dark-chocolate-with-caramel", + "name": "Chocolats noirs au caramel", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-fleurs-en-fleurettes-surgeles", + "name": "Choux-fleurs en fleurettes surgelés", + "id": "en:frozen-cauliflower-florets", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-fromage", + "products": 21, + "id": "en:cheese-pies", + "name": "Tartes au fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs", + "id": "en:chocolats-noirs", + "name": "en:Chocolats-noirs", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-andalouse", + "id": "fr:sauce-andalouse", + "name": "Sauce andalouse", + "products": 21 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-graines", + "products": 21, + "id": "fr:barres-de-graines", + "name": "Barres-de-graines" + }, + { + "name": "Éclairs au chocolat", + "id": "en:chocolate-eclairs", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/eclairs-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-paprika", + "id": "en:paprika-crisps", + "name": "Chips au paprika", + "products": 21 + }, + { + "products": 21, + "id": "en:coconut-yogurts", + "name": "Yaourts à la noix de coco", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-noix-de-coco" + }, + { + "id": "en:pasteurised-milk-munsters", + "name": "Munsters au lait pasteurisé", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/munsters-au-lait-pasteurise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-dinde", + "id": "en:turkey-fillets", + "name": "Filets de dinde", + "products": 21 + }, + { + "name": "Côtes du Roussillon", + "id": "fr:cotes-du-roussillon", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-roussillon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-surgeles", + "id": "en:frozen-ravioli", + "name": "Ravioli surgelés", + "products": 21 + }, + { + "products": 21, + "name": "Confitures de mangues", + "id": "en:mango-jams", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mangues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-brick", + "name": "Feuilles-de-brick", + "id": "fr:feuilles-de-brick", + "products": 21 + }, + { + "name": "Clémentines", + "id": "en:clementines", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/clementines" + }, + { + "products": 21, + "name": "Poissons-d-elevage", + "id": "fr:poissons-d-elevage", + "url": "https://fr.openfoodfacts.org/categorie/poissons-d-elevage" + }, + { + "products": 21, + "id": "fr:infusion-bio", + "name": "Infusion-bio", + "url": "https://fr.openfoodfacts.org/categorie/infusion-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-concentres-non-sucres", + "name": "Laits concentrés non sucrés", + "id": "fr:laits-concentres-non-sucres", + "products": 21 + }, + { + "name": "Jus d'orange sanguine", + "id": "fr:jus-d-orange-sanguine", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-sanguine" + }, + { + "name": "Chicoree", + "id": "fr:chicoree", + "products": 21, + "url": "https://fr.openfoodfacts.org/categorie/chicoree" + }, + { + "products": 21, + "id": "fr:cotes-de-provence", + "name": "Côtes de Provence", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1150990" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-pamplemousse", + "name": "Sirops de pamplemousse", + "id": "fr:sirops-de-pamplemousse", + "products": 21 + }, + { + "products": 21, + "id": "en:coffee-ice-cream-tubs", + "name": "Glaces au café", + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/courgettes", + "id": "en:zucchini", + "name": "Courgettes", + "products": 21 + }, + { + "products": 21, + "id": "fr:brioches-aux-fruits", + "name": "Brioches aux fruits", + "url": "https://fr.openfoodfacts.org/categorie/brioches-aux-fruits" + }, + { + "products": 21, + "id": "en:whole-green-olives", + "name": "Olives vertes entières", + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-entieres" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3127593" + ], + "url": "https://fr.openfoodfacts.org/categorie/paprika", + "products": 21, + "id": "en:paprika", + "name": "Paprika" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-grillees", + "products": 21, + "id": "en:roasted-sunflower-seeds", + "name": "Graines de tournesol grillées" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-l-abricot", + "name": "Sorbets à l'abricot", + "id": "fr:sorbets-a-l-abricot", + "products": 20 + }, + { + "products": 20, + "id": "en:dragees", + "name": "Dragées", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1255306" + ], + "url": "https://fr.openfoodfacts.org/categorie/dragees" + }, + { + "products": 20, + "id": "en:salted-butters", + "name": "Beurres salés", + "url": "https://fr.openfoodfacts.org/categorie/beurres-sales" + }, + { + "products": 20, + "id": "fr:neufchatel", + "name": "Neufchâtel", + "url": "https://fr.openfoodfacts.org/categorie/neufchatel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-miel", + "id": "en:honey-yogurts", + "name": "Yaourts au miel", + "products": 20 + }, + { + "id": "en:coriander-products", + "name": "Produits de coriandre", + "products": 20, + "sameAs": [ + "https://www.wikidata.org/wiki/Q41611" + ], + "url": "https://fr.openfoodfacts.org/categorie/produits-de-coriandre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/abricots-au-sirop", + "products": 20, + "id": "en:apricots-in-syrup", + "name": "Abricots au sirop" + }, + { + "name": "Gambas", + "id": "en:gambas", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/gambas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-de-bouchot", + "name": "Moules de Bouchot", + "id": "fr:moules-de-bouchot", + "products": 20 + }, + { + "id": "en:regina-pizza", + "name": "Pizzas royale", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-royale" + }, + { + "name": "Huiles de noisette", + "id": "en:hazelnut-oils", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-noisette", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1112606" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potages", + "name": "Potages", + "id": "fr:potages", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-deshydratees", + "name": "Sauces déshydratées", + "id": "en:dehydrated-sauces", + "products": 20 + }, + { + "products": 20, + "name": "Saucisses de Morteau", + "id": "en:morteau-sausages", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-morteau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-chevre-lardons", + "id": "en:goat-cheese-and-bacon-pizzas", + "name": "Pizzas chèvre-lardons", + "products": 20 + }, + { + "products": 20, + "id": "de:gefrohrene-grune-bohnen", + "name": "Petits pois surgelés", + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes", + "name": "Paniers feuilletés", + "id": "fr:paniers-feuilletes", + "products": 20 + }, + { + "id": "fr:briochettes", + "name": "Briochettes", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/briochettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cumin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q132624" + ], + "id": "en:cumin", + "name": "Cumin", + "products": 20 + }, + { + "products": 20, + "name": "Rillettes spéciales", + "id": "fr:rillettes-speciales", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-speciales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-d-isigny", + "id": "fr:beurres-d-isigny", + "name": "Beurres-d-isigny", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-au-curry", + "products": 20, + "id": "en:chicken-curry", + "name": "Poulets au curry" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q28843386" + ], + "url": "https://fr.openfoodfacts.org/categorie/poivrons-grilles", + "name": "Poivrons grillés", + "id": "en:grilled-peppers", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-nuoc-mam", + "products": 20, + "name": "Sauces Nuoc-mâm", + "id": "fr:sauces-nuoc-mam" + }, + { + "id": "en:japonica-rices", + "name": "Riz de variété japonica", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/riz-de-variete-japonica" + }, + { + "id": "en:coconut-based-creams-for-cooking", + "name": "Crèmes végétales à base de coco pour cuisiner", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-de-coco-pour-cuisiner" + }, + { + "id": "en:greengage-plum-jams", + "name": "Confitures de Reine-Claude", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-reine-claude" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-boeuf", + "id": "en:beef-broth", + "name": "Bouillons de bœuf", + "products": 20 + }, + { + "products": 20, + "name": "Taboulés à l'huile d'olive", + "id": "en:tabbouleh-with-olive-oil", + "url": "https://fr.openfoodfacts.org/categorie/taboules-a-l-huile-d-olive" + }, + { + "products": 20, + "name": "Allumettes de volaille", + "id": "fr:allumettes-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pasta-in-a-box", + "id": "en:pasta-in-a-box", + "name": "en:Pasta-in-a-box", + "products": 20 + }, + { + "products": 20, + "id": "en:corn-semolinas-for-polenta", + "name": "Semoules de maïs pour polenta", + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-mais-pour-polenta" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-fermentes", + "products": 20, + "name": "de:Produits-fermentes", + "id": "de:produits-fermentes" + }, + { + "products": 20, + "name": "Rochers-au-chocolat", + "id": "fr:rochers-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/rochers-au-chocolat" + }, + { + "products": 20, + "id": "en:cucumber-salads", + "name": "Salades de concombres", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-concombres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-au-saumon", + "name": "Lasagnes au saumon", + "id": "en:salmon-lasagne", + "products": 20 + }, + { + "products": 20, + "name": "Sorbets multifruits", + "id": "en:multifruit-sorbets", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-multifruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivre-noir-moulu", + "products": 20, + "name": "Poivre noir moulu", + "id": "en:ground-black-peppers" + }, + { + "name": "Salades de fruits", + "id": "en:fruit-salads", + "products": 20, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:surgeles", + "id": "en:surgeles", + "name": "en:Surgeles", + "products": 20 + }, + { + "products": 20, + "id": "fr:pains-de-tradition-francaise", + "name": "Pains de tradition française", + "url": "https://fr.openfoodfacts.org/categorie/pains-de-tradition-francaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes", + "name": "en:Cafes", + "id": "en:cafes", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-artisanales", + "products": 20, + "name": "Confitures artisanales", + "id": "en:artisan-jams" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-saumon", + "id": "en:salmon-fillets", + "name": "Filets de saumon", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-asiatiques", + "name": "Produits-asiatiques", + "id": "fr:produits-asiatiques", + "products": 20 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raifort-rape", + "products": 20, + "id": "en:grated-horseradish", + "name": "Raifort râpé" + }, + { + "id": "en:candy-meringues", + "name": "Meringues fantaisie", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/meringues-fantaisie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/clafoutis-aux-cerises", + "products": 19, + "name": "Clafoutis aux cerises", + "id": "en:cherry-clafoutis" + }, + { + "products": 19, + "id": "fr:tartines", + "name": "Tartines", + "url": "https://fr.openfoodfacts.org/categorie/tartines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-canard", + "products": 19, + "name": "Gésiers de canard", + "id": "en:duck-gizzards" + }, + { + "products": 19, + "name": "en:Fruits-a-coques-et-derives", + "id": "en:fruits-a-coques-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-a-coques-et-derives" + }, + { + "products": 19, + "name": "Yaourts à l'ananas", + "id": "en:pineapple-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-l-ananas" + }, + { + "products": 19, + "name": "Bouillons en poudre", + "id": "en:bouillon-powders", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-en-poudre" + }, + { + "name": "Gouters-fourres", + "id": "fr:gouters-fourres", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/gouters-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-lapin-ou-lievre", + "products": 19, + "name": "Plats à base de lapin ou lièvre", + "id": "en:meals-with-rabbit-or-hare" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitif-souffles-a-la-tomate", + "products": 19, + "id": "fr:biscuits-aperitif-souffles-a-la-tomate", + "name": "Biscuits-aperitif-souffles-a-la-tomate" + }, + { + "id": "en:light-potato-crisps", + "name": "Chips de pommes de terre allégées", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-allegees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chaource", + "products": 19, + "name": "Chaource", + "id": "fr:chaource" + }, + { + "products": 19, + "name": "Bonbons au miel", + "id": "en:honey-candies", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-au-miel" + }, + { + "products": 19, + "id": "fr:potage", + "name": "Potage", + "url": "https://fr.openfoodfacts.org/categorie/potage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brocolis-en-fleurettes-surgeles", + "id": "en:frozen-broccoli-florets", + "name": "Brocolis en fleurettes surgelés", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-poulet", + "name": "Cuisses-de-poulet", + "id": "fr:cuisses-de-poulet", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-biologiques", + "id": "fr:oeufs-biologiques", + "name": "Oeufs-biologiques", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-poulet", + "name": "Escalopes de poulet", + "id": "en:chicken-cutlets", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corned-beef", + "products": 19, + "name": "Corned-beef", + "id": "fr:corned-beef" + }, + { + "products": 19, + "id": "en:salted-almonds", + "name": "Amandes salées", + "url": "https://fr.openfoodfacts.org/categorie/amandes-salees" + }, + { + "products": 19, + "name": "Ricotta", + "id": "fr:ricotta", + "url": "https://fr.openfoodfacts.org/categorie/ricotta" + }, + { + "id": "fr:iles-flottantes", + "name": "Iles-flottantes", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/iles-flottantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-de-bruxelles-en-conserve", + "id": "en:canned-brussels-sprouts", + "name": "Choux de Bruxelles en conserve", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-fourres", + "name": "Beignets-fourres", + "id": "fr:beignets-fourres", + "products": 19 + }, + { + "products": 19, + "name": "Sauces crudites", + "id": "fr:sauces-crudites", + "url": "https://fr.openfoodfacts.org/categorie/sauces-crudites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-ble", + "name": "Galettes de blé", + "id": "en:puffed-wheat-cakes", + "products": 19 + }, + { + "products": 19, + "id": "en:guava-nectars", + "name": "Nectars de goyave", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-goyave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-bolognaise", + "name": "Chips bolognaise", + "id": "en:bolognese-crisps", + "products": 19 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q716004" + ], + "url": "https://fr.openfoodfacts.org/categorie/vermicelle-de-riz", + "products": 19, + "id": "en:rice-vermicelli", + "name": "Vermicelle de riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-au-caramel", + "name": "Panna-cottas-au-caramel", + "id": "fr:panna-cottas-au-caramel", + "products": 19 + }, + { + "id": "fr:panaches", + "name": "Panaches", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/panaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-surgelees", + "id": "en:frozen-aromatic-plants", + "name": "Plantes aromatiques surgelées", + "products": 19 + }, + { + "id": "en:from-15-months", + "name": "Dès 15 mois", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/des-15-mois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-a-base-de-vegetaux", + "name": "de:Boissons-a-base-de-vegetaux", + "id": "de:boissons-a-base-de-vegetaux", + "products": 19 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3088328" + ], + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-pressee-demi-cuite", + "name": "Fromages à pâte pressée demi-cuite", + "id": "en:half-cooked-pressed-cheeses", + "products": 19 + }, + { + "id": "fr:pommes-dauphines-surgelees", + "name": "Pommes dauphines surgelées", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/pommes-dauphines-surgelees" + }, + { + "id": "en:harissa-sauces", + "name": "Sauces harissa", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/sauces-harissa" + }, + { + "products": 19, + "id": "fr:barres-glacees", + "name": "Barres glacées", + "url": "https://fr.openfoodfacts.org/categorie/barres-glacees" + }, + { + "name": "Bieres-de-noel", + "id": "fr:bieres-de-noel", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumineuses-et-derives", + "products": 19, + "id": "en:legumineuses-et-derives", + "name": "en:Legumineuses-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-en-conserve", + "name": "Soupes en conserve", + "id": "en:canned-soups", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-golden-delicious", + "sameAs": [ + "https://www.wikidata.org/wiki/Q201996" + ], + "id": "en:golden-delicious-apples", + "name": "Pommes Golden Delicious", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-a-base-de-fruits-et-de-legumes", + "products": 19, + "name": "en:Aliments-a-base-de-fruits-et-de-legumes", + "id": "en:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "id": "en:vegetable-sauces", + "name": "Sauces aux légumes", + "products": 19, + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure-de-boulanger", + "sameAs": [ + "https://www.wikidata.org/wiki/Q911712" + ], + "name": "Levure de boulanger", + "id": "en:baker-s-yeast", + "products": 19 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poules-en-chocolat", + "products": 18, + "name": "Poules-en-chocolat", + "id": "fr:poules-en-chocolat" + }, + { + "products": 18, + "name": "Produits vendus dans les années 1970", + "id": "en:products-sold-in-the-1970s", + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-dans-les-annees-1970" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roquette", + "sameAs": [ + "https://www.wikidata.org/wiki/Q156884" + ], + "id": "en:salad-rocket", + "name": "Roquette", + "products": 18 + }, + { + "products": 18, + "id": "fr:pates-sablees", + "name": "Pâtes sablées", + "url": "https://fr.openfoodfacts.org/categorie/pates-sablees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/curcuma-en-poudre", + "id": "en:turmeric-powder", + "name": "Curcuma en poudre", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-seches-moulus", + "name": "Légumes séchés moulus", + "id": "en:ground-dried-vegetables", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/genoise", + "products": 18, + "name": "Genoise", + "id": "fr:genoise" + }, + { + "id": "en:vegetable-bouillon-cubes", + "name": "Bouillons cube de légumes", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/bouillons-cube-de-legumes" + }, + { + "name": "Viande de lapin", + "id": "fr:viande-de-lapin", + "products": 18, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3556748" + ], + "url": "https://fr.openfoodfacts.org/categorie/viande-de-lapin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-suisse", + "id": "en:cheeses-from-switzerland", + "name": "Fromages de Suisse", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-a-la-framboise", + "name": "Tartelettes à la framboise", + "id": "en:raspberry-tartlets", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-a-l-abricot", + "name": "Tartelettes à l'abricot", + "id": "en:apricot-tartlets", + "products": 18 + }, + { + "products": 18, + "id": "fr:gateaux-de-riz", + "name": "Gâteaux de riz", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitif-souffles-au-bacon", + "products": 18, + "id": "fr:biscuits-aperitif-souffles-au-bacon", + "name": "Biscuits-aperitif-souffles-au-bacon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/framboises-surgelees", + "name": "Framboises surgelées", + "id": "en:frozen-raspberries", + "products": 18 + }, + { + "products": 18, + "id": "fr:amandes-effilees", + "name": "Amandes effilées", + "url": "https://fr.openfoodfacts.org/categorie/amandes-effilees" + }, + { + "products": 18, + "name": "Sirops d'orgeat", + "id": "en:orgeat-syrups", + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-orgeat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1939771" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts", + "products": 18, + "name": "en:Yaourts", + "id": "en:yaourts" + }, + { + "name": "Antipasti", + "id": "fr:antipasti", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/antipasti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-chocolat-noir", + "id": "fr:mousses-au-chocolat-noir", + "name": "Mousses-au-chocolat-noir", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-crabe", + "id": "fr:rillettes-de-crabe", + "name": "Rillettes de crabe", + "products": 18 + }, + { + "name": "Langues de chat", + "id": "en:cat-tongue", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/langues-de-chat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q960635" + ] + }, + { + "products": 18, + "name": "Ailes de poulet", + "id": "en:chicken-wings", + "url": "https://fr.openfoodfacts.org/categorie/ailes-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-munsters", + "products": 18, + "id": "fr:petits-munsters", + "name": "Petits Munsters" + }, + { + "products": 18, + "id": "en:artificial-sugar-substitutes", + "name": "Édulcorants artificiels", + "url": "https://fr.openfoodfacts.org/categorie/edulcorants-artificiels" + }, + { + "name": "Lardons-natures", + "id": "fr:lardons-natures", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/lardons-natures" + }, + { + "id": "fr:piments-rouges", + "name": "Piments rouges", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/piments-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-l-orange-light", + "name": "Sodas à l'orange light", + "id": "en:light-orange-soft-drinks", + "products": 18 + }, + { + "products": 18, + "id": "en:garlic-powder", + "name": "Ail sec broyé", + "url": "https://fr.openfoodfacts.org/categorie/ail-sec-broye" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-ananas", + "products": 18, + "id": "en:pineapple-jams", + "name": "Confitures d'ananas" + }, + { + "products": 18, + "name": "Produits vendus dans les années 1980", + "id": "en:products-sold-in-the-1980s", + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-dans-les-annees-1980" + }, + { + "products": 18, + "id": "fr:saucissons-cuits", + "name": "Saucissons cuits", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-cuits" + }, + { + "name": "es:Cereales-et-pommes-de-terre", + "id": "es:cereales-et-pommes-de-terre", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-montagne", + "products": 18, + "name": "Laits de montagne", + "id": "en:mountain-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:surgeles", + "id": "de:surgeles", + "name": "de:Surgeles", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-pruneau", + "name": "Compotes pommes pruneau", + "id": "fr:compotes-pommes-pruneau", + "products": 18 + }, + { + "products": 18, + "id": "fr:chinois", + "name": "Chinois", + "url": "https://fr.openfoodfacts.org/categorie/chinois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-amandes-ou-noisettes", + "id": "fr:barres-de-cereales-aux-amandes-ou-noisettes", + "name": "Barres de céréales aux amandes ou noisettes", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-sapin", + "id": "fr:miels-de-sapin", + "name": "Miels de sapin", + "products": 18 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gingembre-confit", + "products": 18, + "name": "Gingembre confit", + "id": "en:crystallized-ginger" + }, + { + "products": 18, + "name": "Confitures de goyaves", + "id": "en:guava-jams", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-goyaves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/endives", + "products": 18, + "id": "en:belgian-endives", + "name": "Endives" + }, + { + "id": "fr:foies-gras-crus", + "name": "Foies gras crus", + "products": 18, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-crus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bio", + "products": 17, + "name": "Bio", + "id": "fr:bio" + }, + { + "products": 17, + "name": "Poivrons en conserve", + "id": "en:canned-peppers", + "url": "https://fr.openfoodfacts.org/categorie/poivrons-en-conserve" + }, + { + "name": "en:Beurres-de-fruits-a-coques", + "id": "en:beurres-de-fruits-a-coques", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/en:beurres-de-fruits-a-coques" + }, + { + "name": "Langue de bœuf", + "id": "en:beef-tongue", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/langue-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-aux-olives", + "name": "Sauces tomates aux olives", + "id": "fr:sauces-tomates-aux-olives", + "products": 17 + }, + { + "products": 17, + "id": "en:mackerels-fillets-with-tomato-and-basilisk", + "name": "Filets de maquereaux tomate-basilic", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-tomate-basilic" + }, + { + "products": 17, + "id": "fr:gateaux-a-la-fraise", + "name": "Gateaux-a-la-fraise", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/figues", + "id": "en:figs", + "name": "Figues", + "products": 17 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-cajou-grillees", + "id": "en:roasted-cashew-nuts", + "name": "Noix de Cajou grillées", + "products": 17 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/medoc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q592785" + ], + "name": "Médoc", + "id": "fr:medoc", + "products": 17 + }, + { + "products": 17, + "name": "Fromages-blancs-au-lait-de-brebis", + "id": "fr:fromages-blancs-au-lait-de-brebis", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-au-lait-de-brebis" + }, + { + "products": 17, + "id": "fr:tielles-setoises", + "name": "Tielles Sétoises", + "url": "https://fr.openfoodfacts.org/categorie/tielles-setoises", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3528208" + ] + }, + { + "products": 17, + "name": "de:Aliments-a-base-de-fruits-et-de-legumes", + "id": "de:aliments-a-base-de-fruits-et-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "id": "fr:compotes-de-peche", + "name": "Compotes de pêche", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-peche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/artichauts", + "name": "Artichauts", + "id": "en:artichokes", + "products": 17 + }, + { + "products": 17, + "name": "Verveine", + "id": "en:vervains", + "url": "https://fr.openfoodfacts.org/categorie/verveine", + "sameAs": [ + "https://www.wikidata.org/wiki/Q165290" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/verbenacees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q156960" + ], + "name": "Verbénacées", + "id": "en:verbena-family", + "products": 17 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-bonne-nuit", + "id": "en:good-nightrest-tea-blends", + "name": "Infusions Bonne Nuit", + "products": 17 + }, + { + "products": 17, + "id": "en:durum-wheat-noodles", + "name": "Nouilles de blé dur", + "url": "https://fr.openfoodfacts.org/categorie/nouilles-de-ble-dur" + }, + { + "name": "Lentilles-vertes-du-puy", + "id": "fr:lentilles-vertes-du-puy", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-vertes-du-puy" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sons-d-avoine", + "products": 17, + "id": "en:oat-brans", + "name": "Sons d'avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-brunes", + "products": 17, + "name": "Graines de lin brunes", + "id": "en:brown-flax-seeds" + }, + { + "name": "Sodas au cola sans caféine", + "id": "en:cola-sodas-without-caffeine", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-cola-sans-cafeine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-vertes-en-conserve", + "name": "Asperges vertes en conserve", + "id": "en:canned-green-asparagus", + "products": 17 + }, + { + "name": "Salades de lentilles", + "id": "en:lentil-salads", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-portugais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1754670" + ], + "name": "Vins portugais", + "id": "en:wines-from-portugal", + "products": 17 + }, + { + "id": "en:light-iced-teas", + "name": "Ice-tea light", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/ice-tea-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-vins-blancs", + "name": "Vinaigres de vins blancs", + "id": "en:white-wine-vinegars", + "products": 17 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1572135" + ], + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-cailles", + "products": 17, + "id": "en:quail-eggs", + "name": "Œufs de cailles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pamplemousse-a-base-de-concentre", + "name": "Jus de pamplemousse à base de concentré", + "id": "en:concentrated-grapefruit-juices", + "products": 17 + }, + { + "id": "en:shelled-walnuts", + "name": "Noix décortiquées", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/noix-decortiquees" + }, + { + "name": "Edam", + "id": "en:edam", + "products": 17, + "sameAs": [ + "https://www.wikidata.org/wiki/Q597473" + ], + "url": "https://fr.openfoodfacts.org/categorie/edam" + }, + { + "products": 17, + "id": "de:epicerie", + "name": "de:Epicerie", + "url": "https://fr.openfoodfacts.org/categorie/de:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-foie", + "products": 17, + "id": "en:liver-terrines", + "name": "Terrines de foie" + }, + { + "id": "en:pizza-sauces", + "name": "Sauces pour pizzas", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-pizzas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-surgelees", + "id": "en:frozen-carrots", + "name": "Carottes surgelées", + "products": 17 + }, + { + "products": 17, + "id": "fr:rotis-de-dinde", + "name": "Rôtis de dinde", + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-non-decortiquees", + "products": 17, + "id": "en:shelled-peanuts", + "name": "Cacahuètes non décortiquées" + }, + { + "name": "Noix de muscade", + "id": "en:nutmeg", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/noix-de-muscade", + "sameAs": [ + "https://www.wikidata.org/wiki/Q83165" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-chocolat-noir", + "products": 17, + "id": "fr:cremes-dessert-chocolat-noir", + "name": "Crèmes dessert chocolat noir" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2724976" + ], + "url": "https://fr.openfoodfacts.org/categorie/produits-de-le-muscadier", + "name": "Produits de le muscadier", + "id": "en:nutmeg-tree-products", + "products": 17 + }, + { + "products": 17, + "id": "fr:chipolatas-aux-herbes", + "name": "Chipolatas aux herbes", + "url": "https://fr.openfoodfacts.org/categorie/chipolatas-aux-herbes" + }, + { + "name": "Rillettes de Saint-Jacques", + "id": "fr:rillettes-de-saint-jacques", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-saint-jacques" + }, + { + "name": "Risottos aux champignons", + "id": "en:mushrooms-risottos", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/risottos-aux-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:petit-dejeuners", + "products": 17, + "name": "de:Petit-dejeuners", + "id": "de:petit-dejeuners" + }, + { + "name": "Feculents", + "id": "fr:feculents", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/feculents" + }, + { + "products": 17, + "id": "en:pollens", + "name": "Pollens", + "url": "https://fr.openfoodfacts.org/categorie/pollens", + "sameAs": [ + "https://www.wikidata.org/wiki/Q79932" + ] + }, + { + "products": 17, + "name": "Teurgoules", + "id": "fr:teurgoules", + "url": "https://fr.openfoodfacts.org/categorie/teurgoules" + }, + { + "id": "en:vegetarian-sausages", + "name": "Saucisses végétales", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-vegetales" + }, + { + "id": "en:potted-plants", + "name": "Plantes en pot", + "products": 17, + "url": "https://fr.openfoodfacts.org/categorie/plantes-en-pot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-en-pot", + "products": 17, + "name": "Plantes aromatiques en pot", + "id": "en:potted-aromatic-plants" + }, + { + "products": 17, + "id": "en:apple-sorbets", + "name": "Sorbets à la pomme", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-pomme" + }, + { + "products": 17, + "name": "Huile d'olive de Nyons", + "id": "en:olive-oil-from-nyons", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-nyons" + }, + { + "products": 17, + "name": "Baguettes de tradition française", + "id": "fr:baguettes-de-tradition-francaise", + "url": "https://fr.openfoodfacts.org/categorie/baguettes-de-tradition-francaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-myrtille", + "products": 17, + "name": "Compotes pommes myrtille", + "id": "en:blueberry-applesauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-d-amande-complete", + "products": 17, + "id": "en:whole-almond-purees", + "name": "Purées d'amande complète" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-melanges", + "products": 17, + "name": "Yaourts-aux-fruits-melanges", + "id": "fr:yaourts-aux-fruits-melanges" + }, + { + "products": 17, + "name": "Confitures de coings", + "id": "fr:confitures-de-coings", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-coings" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-crus", + "id": "fr:chocolats-crus", + "name": "Chocolats-crus", + "products": 17 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grenouille", + "products": 17, + "name": "Grenouille", + "id": "en:frogs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-garde", + "id": "fr:bieres-de-garde", + "name": "Bieres-de-garde", + "products": 17 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tiramisu-aux-fruits", + "products": 17, + "id": "fr:tiramisu-aux-fruits", + "name": "Tiramisu aux fruits" + }, + { + "products": 16, + "name": "Archeologie-dordogne-annees-1970", + "id": "fr:archeologie-dordogne-annees-1970", + "url": "https://fr.openfoodfacts.org/categorie/archeologie-dordogne-annees-1970" + }, + { + "id": "en:purees-d-oleagineux", + "name": "en:Purees-d-oleagineux", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/en:purees-d-oleagineux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chair-de-tomates", + "products": 16, + "id": "fr:chair-de-tomates", + "name": "Chair de tomates" + }, + { + "products": 16, + "name": "Desserts de soja à la vanille", + "id": "en:vanilla-soy-desserts", + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-reputes", + "products": 16, + "name": "Miels-reputes", + "id": "fr:miels-reputes" + }, + { + "products": 16, + "name": "Soupes de tomate", + "id": "en:tomato-soups", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-tomate" + }, + { + "id": "fr:tomme-de-savoie", + "name": "Tomme de Savoie", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/tomme-de-savoie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/radis", + "products": 16, + "id": "en:radishes", + "name": "Radis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-d-oies", + "products": 16, + "id": "en:foies-gras-from-gooses", + "name": "Foies gras d'oies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies-aux-anchois", + "products": 16, + "id": "en:green-olives-stuffed-of-anchovies", + "name": "Olives vertes farcies aux anchois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-fraise", + "name": "Coulis de fraise", + "id": "en:strawberry-coulis", + "products": 16 + }, + { + "products": 16, + "name": "Gaufres nappées de chocolat", + "id": "en:chocolate-coated-waffles", + "url": "https://fr.openfoodfacts.org/categorie/gaufres-nappees-de-chocolat" + }, + { + "id": "fr:sables-a-la-noix-de-coco", + "name": "Sables-a-la-noix-de-coco", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/sables-a-la-noix-de-coco" + }, + { + "id": "fr:beaufort", + "name": "Beaufort", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/beaufort" + }, + { + "products": 16, + "id": "fr:sauces-cocktail", + "name": "Sauces cocktail", + "url": "https://fr.openfoodfacts.org/categorie/sauces-cocktail" + }, + { + "name": "Yaourts-aux-fruits-rouges", + "id": "fr:yaourts-aux-fruits-rouges", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-rouges" + }, + { + "name": "Barquettes à la fraise", + "id": "fr:barquettes-a-la-fraise", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/barquettes-a-la-fraise" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q23425" + ], + "url": "https://fr.openfoodfacts.org/categorie/concombres", + "products": 16, + "name": "Concombres", + "id": "en:cucumbers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelatine", + "id": "en:gelatin", + "name": "Gélatine", + "products": 16 + }, + { + "id": "en:breaded-turkey", + "name": "Dinde panée", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/dinde-panee" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q883744" + ], + "url": "https://fr.openfoodfacts.org/categorie/blended-whisky", + "id": "fr:blended-whisky", + "name": "Blended whisky", + "products": 16 + }, + { + "products": 16, + "id": "fr:sauces-kebab", + "name": "Sauces-kebab", + "url": "https://fr.openfoodfacts.org/categorie/sauces-kebab" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q618324" + ], + "url": "https://fr.openfoodfacts.org/categorie/bles-durs", + "products": 16, + "name": "Blés durs", + "id": "en:durum-wheats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-aux-champignons", + "products": 16, + "id": "en:mushroom-ravioli", + "name": "Ravioli aux champignons" + }, + { + "products": 16, + "id": "en:violet-syrups", + "name": "Sirops de violette", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-violette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-fourres-au-fromage", + "name": "Biscuits apéritifs fourrés au fromage", + "id": "fr:biscuits-aperitifs-fourres-au-fromage", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-poireaux", + "products": 16, + "name": "Veloutés de poireaux", + "id": "en:cream-of-leek-soups" + }, + { + "id": "fr:rillettes-poulet-roti", + "name": "Rillettes poulet rôti", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-poulet-roti" + }, + { + "products": 16, + "id": "fr:mueslis-aux-graines", + "name": "Mueslis-aux-graines", + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-graines" + }, + { + "name": "Poissons-sauvages", + "id": "fr:poissons-sauvages", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/poissons-sauvages" + }, + { + "products": 16, + "id": "fr:cremes-caramel", + "name": "Cremes-caramel", + "url": "https://fr.openfoodfacts.org/categorie/cremes-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-et-produits-derives", + "name": "es:Fruits-et-produits-derives", + "id": "es:fruits-et-produits-derives", + "products": 16 + }, + { + "products": 16, + "name": "Miels de Provence", + "id": "fr:miels-de-provence", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies-aux-amandes", + "products": 16, + "id": "en:green-olives-stuffed-of-almond", + "name": "Olives vertes farcies aux amandes" + }, + { + "id": "en:lemon-tartlets", + "name": "Tartelettes au citron", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specks", + "name": "Specks", + "id": "fr:specks", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-ondulees", + "products": 16, + "id": "fr:chips-ondulees", + "name": "Chips-ondulees" + }, + { + "name": "Cheesecakes au citron", + "id": "en:lemon-cheesecakes", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-au-citron" + }, + { + "id": "en:sausages-from-savoy", + "name": "Saucisses savoyardes", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-savoyardes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-thon", + "products": 16, + "id": "en:tuna-pizzas", + "name": "Pizzas au thon" + }, + { + "products": 16, + "name": "Tomme des Pyrénées", + "id": "fr:tomme-des-pyrenees", + "url": "https://fr.openfoodfacts.org/categorie/tomme-des-pyrenees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-rhubarbe", + "products": 16, + "id": "en:rhubarb-applesauces", + "name": "Compotes pommes rhubarbe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-au-ble-dur-complet", + "products": 16, + "id": "fr:spaghetti-au-ble-dur-complet", + "name": "Spaghetti au blé dur complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/peches", + "name": "Pêches", + "id": "en:peaches", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-ricotta-epinards", + "name": "Tortellini Ricotta & Épinards", + "id": "fr:tortellini-ricotta-epinards", + "products": 16 + }, + { + "id": "fr:tartelettes-au-caramel-beurre-sale", + "name": "Tartelettes au caramel beurre salé", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-caramel-beurre-sale" + }, + { + "products": 16, + "name": "Fondues", + "id": "fr:fondues", + "url": "https://fr.openfoodfacts.org/categorie/fondues", + "sameAs": [ + "https://www.wikidata.org/wiki/Q190531" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard", + "name": "Bloc-de-foie-gras-de-canard", + "id": "fr:bloc-de-foie-gras-de-canard", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure", + "products": 16, + "name": "Levure", + "id": "fr:levure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-fraiche-d-isigny", + "products": 16, + "name": "Crème Fraîche d'Isigny", + "id": "fr:creme-fraiche-d-isigny" + }, + { + "id": "fr:palmiers-aux-olives", + "name": "Palmiers-aux-olives", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/palmiers-aux-olives" + }, + { + "products": 16, + "id": "fr:mousses", + "name": "Mousses", + "url": "https://fr.openfoodfacts.org/categorie/mousses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1357168" + ], + "url": "https://fr.openfoodfacts.org/categorie/cafes-torrefies", + "products": 16, + "id": "en:torrefacto-coffees", + "name": "Cafés torréfiés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-l-escabeche", + "products": 16, + "id": "en:mackerel-fillets-in-escabeche", + "name": "Filets de maquereaux à l'escabeche" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1432594" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-espagnols", + "products": 16, + "name": "Vins espagnols", + "id": "en:wines-from-spain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-a-tartiner", + "products": 16, + "id": "de:produits-a-tartiner", + "name": "de:Produits-a-tartiner" + }, + { + "id": "en:bagel", + "name": "Pains Bagel", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/pains-bagel", + "sameAs": [ + "https://www.wikidata.org/wiki/Q272502" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhums-agricoles-aoc", + "products": 16, + "name": "Rhums agricoles AOC", + "id": "en:aoc-agricultural-rums" + }, + { + "products": 16, + "name": "de:Confiseries", + "id": "de:confiseries", + "url": "https://fr.openfoodfacts.org/categorie/de:confiseries" + }, + { + "id": "en:halva", + "name": "Halva", + "products": 16, + "sameAs": [ + "https://www.wikidata.org/wiki/Q183599" + ], + "url": "https://fr.openfoodfacts.org/categorie/halva" + }, + { + "name": "Cookies au chocolat au lait", + "id": "en:cookies-with-milk-chocolate", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-au-lait" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q146391" + ], + "url": "https://fr.openfoodfacts.org/categorie/graines-de-pavot", + "products": 16, + "name": "Graines de pavot", + "id": "en:papaver-seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-a-la-framboise", + "products": 16, + "id": "fr:panna-cottas-a-la-framboise", + "name": "Panna-cottas-a-la-framboise" + }, + { + "id": "en:powdered-sugars", + "name": "Sucres glaces", + "products": 16, + "sameAs": [ + "https://www.wikidata.org/wiki/Q151070" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres-glaces" + }, + { + "products": 16, + "name": "Biscuits-pur-beurre", + "id": "fr:biscuits-pur-beurre", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pur-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate", + "id": "fr:pate", + "name": "Pate", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-edulcorees", + "products": 16, + "name": "en:Boissons-edulcorees", + "id": "en:boissons-edulcorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-villages", + "products": 16, + "name": "Côtes du Rhône Villages", + "id": "fr:cotes-du-rhone-villages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moelleux-au-chocolat", + "name": "Moelleux au chocolat", + "id": "fr:moelleux-au-chocolat", + "products": 16 + }, + { + "products": 16, + "name": "Escargots en conserve", + "id": "en:canned-snails", + "url": "https://fr.openfoodfacts.org/categorie/escargots-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-a-teneur-reduite-en-lactose", + "id": "en:low-lactose-milk", + "name": "Laits à teneur réduite en lactose", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vitamines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q34956" + ], + "name": "Vitamines", + "id": "en:vitamines", + "products": 16 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-vache-prim-holstein", + "products": 16, + "id": "fr:fromages-de-vache-prim-holstein", + "name": "Fromages-de-vache-prim-holstein" + }, + { + "id": "en:lobster-bisque", + "name": "Bisques de homard", + "products": 16, + "url": "https://fr.openfoodfacts.org/categorie/bisques-de-homard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-chaudes-instantanees", + "products": 16, + "id": "en:boissons-chaudes-instantanees", + "name": "en:Boissons-chaudes-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/diots", + "products": 16, + "id": "fr:diots", + "name": "Diots" + }, + { + "products": 16, + "id": "fr:biscuits-au-caramel", + "name": "Biscuits-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-caramel" + }, + { + "products": 16, + "name": "Pains Pita", + "id": "en:pitas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q211340" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-pita" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-cedrats", + "name": "Confitures-de-cedrats", + "id": "fr:confitures-de-cedrats", + "products": 15 + }, + { + "products": 15, + "name": "it:Boissons", + "id": "it:boissons", + "url": "https://fr.openfoodfacts.org/categorie/it:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues-au-sirop", + "products": 15, + "name": "Mangues au sirop", + "id": "en:mangoes-in-syrup" + }, + { + "id": "fr:pains-aux-cereales", + "name": "Pains-aux-cereales", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:snacks-sales", + "id": "en:snacks-sales", + "name": "en:Snacks-sales", + "products": 15 + }, + { + "name": "Milchprodukte", + "id": "fr:milchprodukte", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/milchprodukte" + }, + { + "products": 15, + "name": "Sodas à la pomme", + "id": "en:apple-soft-drinks", + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-la-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-mollusques", + "products": 15, + "name": "Plats-a-base-de-mollusques", + "id": "fr:plats-a-base-de-mollusques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-surgeles", + "products": 15, + "name": "Pommes de terre surgelés", + "id": "en:frozen-potatoes" + }, + { + "products": 15, + "id": "en:sheepmeat-meals", + "name": "Plats à base de viande ovine", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-ovine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-hachees", + "name": "Viandes-hachees", + "id": "fr:viandes-hachees", + "products": 15 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hot-dog", + "sameAs": [ + "https://www.wikidata.org/wiki/Q181055" + ], + "id": "en:hot-dog-sandwiches", + "name": "Hot-dog", + "products": 15 + }, + { + "products": 15, + "id": "fr:graves", + "name": "Graves", + "url": "https://fr.openfoodfacts.org/categorie/graves", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1543969" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-la-pomme", + "products": 15, + "id": "en:apple-cereal-bars", + "name": "Barres de céréales à la pomme" + }, + { + "products": 15, + "name": "Desserts-fruitiers", + "id": "fr:desserts-fruitiers", + "url": "https://fr.openfoodfacts.org/categorie/desserts-fruitiers" + }, + { + "products": 15, + "name": "Algues sèches", + "id": "en:dried-seaweeds", + "url": "https://fr.openfoodfacts.org/categorie/algues-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-a-la-volaille", + "products": 15, + "name": "Ravioli à la volaille", + "id": "fr:ravioli-a-la-volaille" + }, + { + "id": "en:liquid-caramel", + "name": "Caramel liquide", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/caramel-liquide" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-chaudes", + "name": "en:Boissons-chaudes", + "id": "en:boissons-chaudes", + "products": 15 + }, + { + "products": 15, + "id": "fr:bordeaux-superieur", + "name": "Bordeaux supérieur", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2910687" + ], + "url": "https://fr.openfoodfacts.org/categorie/bordeaux-superieur" + }, + { + "name": "Gruyere", + "id": "fr:gruyere", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/gruyere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajines", + "products": 15, + "name": "Tajines", + "id": "fr:tajines" + }, + { + "products": 15, + "name": "Chocolats-noirs-dessert", + "id": "fr:chocolats-noirs-dessert", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-dessert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-farcies-au-riz", + "products": 15, + "id": "en:rice-stuffed-tomatoes", + "name": "Tomates farcies au riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-riz", + "products": 15, + "name": "Mélanges de riz", + "id": "en:mixed-rices" + }, + { + "products": 15, + "name": "en:Beurres-de-legumineuses", + "id": "en:beurres-de-legumineuses", + "url": "https://fr.openfoodfacts.org/categorie/en:beurres-de-legumineuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-dans-les-annees-1990", + "id": "en:products-sold-in-the-1990s", + "name": "Produits vendus dans les années 1990", + "products": 15 + }, + { + "name": "Getreide-und-kartoffeln", + "id": "fr:getreide-und-kartoffeln", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/getreide-und-kartoffeln" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-bambou", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2157176" + ], + "products": 15, + "name": "Pousses de bambou", + "id": "en:bamboo-shoots" + }, + { + "name": "Sirops aux fruits", + "id": "en:syrups-with-fruits", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/sirops-aux-fruits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5506416" + ] + }, + { + "name": "Cheddar en tranches", + "id": "en:cheddar-slices", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/cheddar-en-tranches" + }, + { + "name": "Fromages-fermiers", + "id": "fr:fromages-fermiers", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/fromages-fermiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-bio", + "products": 15, + "name": "Legumes-bio", + "id": "fr:legumes-bio" + }, + { + "id": "fr:penne", + "name": "Penne", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/penne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-grenouilles", + "id": "en:frog-legs", + "name": "Cuisses de Grenouilles", + "products": 15 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner-vegetaux", + "products": 15, + "name": "en:Pates-a-tartiner-vegetaux", + "id": "en:pates-a-tartiner-vegetaux" + }, + { + "name": "Cakes-sales", + "id": "fr:cakes-sales", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/cakes-sales" + }, + { + "name": "Cookies au chocolat et à la noix de coco", + "id": "en:cookies-with-chocolate-and-coconut", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-et-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/celeri-en-conserve", + "id": "en:canned-celery", + "name": "Céleri en conserve", + "products": 15 + }, + { + "products": 15, + "name": "Cerises", + "id": "en:cherries", + "url": "https://fr.openfoodfacts.org/categorie/cerises" + }, + { + "name": "en:Produits-de-la-mer", + "id": "en:produits-de-la-mer", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-de-la-mer" + }, + { + "name": "Jambons de Parme", + "id": "fr:jambons-de-parme", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-parme", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13360207" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/profiteroles", + "products": 15, + "name": "Profiteroles", + "id": "fr:profiteroles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-hollandaise", + "products": 15, + "name": "Sauces hollandaise", + "id": "fr:sauces-hollandaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-en-rondelles-surgelees", + "id": "en:frozen-chopped-carrots", + "name": "Carottes en rondelles surgelées", + "products": 15 + }, + { + "name": "Cigarettes", + "id": "en:cigarettes", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/cigarettes" + }, + { + "name": "Tagliatelles à la carbonara", + "id": "en:tagliatelle-with-carbonara", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-a-la-carbonara" + }, + { + "products": 15, + "id": "en:rice-flours", + "name": "Farines de riz", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-riz", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1269205" + ] + }, + { + "products": 15, + "id": "es:boissons-a-base-de-vegetaux", + "name": "es:Boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-a-base-de-vegetaux" + }, + { + "products": 15, + "id": "en:complements-alimentaires", + "name": "en:Complements-alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/en:complements-alimentaires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-citron-vert", + "id": "en:lime-syrups", + "name": "Sirops de citron vert", + "products": 15 + }, + { + "name": "Fonds-de-veau", + "id": "fr:fonds-de-veau", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-veau" + }, + { + "id": "en:matieres-grasses", + "name": "en:Matieres-grasses", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/en:matieres-grasses" + }, + { + "name": "Confitures d'oranges amères", + "id": "fr:confitures-d-oranges-ameres", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-oranges-ameres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles", + "id": "fr:vermicelles", + "name": "Vermicelles", + "products": 15 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues", + "products": 15, + "name": "Mangues", + "id": "en:mangoes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-farcies", + "products": 15, + "id": "fr:tomates-farcies", + "name": "Tomates-farcies" + }, + { + "name": "Sauces aigre-douces", + "id": "en:sweet-and-sour-sauces", + "products": 15, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2550606" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-aigre-douces" + }, + { + "name": "Sarrasin", + "id": "en:buckwheat", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/sarrasin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q132734" + ] + }, + { + "products": 15, + "id": "en:pistachio-ice-cream-tubs", + "name": "Glaces à la pistache", + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-bananes", + "products": 15, + "name": "Confitures de bananes", + "id": "en:banana-jams" + }, + { + "products": 15, + "id": "en:camemberts-from-microfiltered-milk", + "name": "Camemberts au lait microfiltré", + "url": "https://fr.openfoodfacts.org/categorie/camemberts-au-lait-microfiltre" + }, + { + "name": "Sorbets à la pêche", + "id": "fr:sorbets-a-la-peche", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-peche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-d-oie", + "name": "Rillettes d'oie", + "id": "fr:rillettes-d-oie", + "products": 15 + }, + { + "id": "fr:jus-multifruits-pur-jus", + "name": "Jus-multifruits-pur-jus", + "products": 15, + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruits-pur-jus" + }, + { + "products": 15, + "name": "Piments d'Espelette", + "id": "fr:piments-d-espelette", + "url": "https://fr.openfoodfacts.org/categorie/piments-d-espelette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerises-au-sirop", + "products": 14, + "name": "Cerises au sirop", + "id": "en:cherries-in-syrup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-patissiers", + "sameAs": [ + "https://www.wikidata.org/wiki/Q14747193" + ], + "products": 14, + "name": "Flans pâtissiers", + "id": "en:open-pies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:petit-dejeuners", + "products": 14, + "id": "es:petit-dejeuners", + "name": "es:Petit-dejeuners" + }, + { + "id": "en:sauces-pimentees", + "name": "en:Sauces-pimentees", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-pimentees" + }, + { + "products": 14, + "name": "Croissants au jambon", + "id": "en:ham-croissants", + "url": "https://fr.openfoodfacts.org/categorie/croissants-au-jambon" + }, + { + "name": "Glaces rhum-raisin", + "id": "en:rum-and-raisins-ice-cream-tubs", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/glaces-rhum-raisin" + }, + { + "name": "es:Legumes-et-derives", + "id": "es:legumes-et-derives", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/es:legumes-et-derives" + }, + { + "products": 14, + "id": "en:chocolats-au-lait", + "name": "en:Chocolats-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait" + }, + { + "id": "fr:noisettes-en-poudre", + "name": "Noisettes en poudre", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/noisettes-en-poudre" + }, + { + "name": "Haut-Médoc", + "id": "fr:haut-medoc", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/haut-medoc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1591387" + ] + }, + { + "name": "Volailles surgelées", + "id": "en:frozen-poultry", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/volailles-surgelees" + }, + { + "products": 14, + "name": "Lasagnes aux légumes", + "id": "en:vegetable-lasagne", + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-aux-legumes" + }, + { + "products": 14, + "name": "Röstis de pommes de terre surgelés", + "id": "fr:rostis-de-pommes-de-terre-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/rostis-de-pommes-de-terre-surgeles" + }, + { + "id": "en:pear-juices", + "name": "Jus de poire", + "products": 14, + "sameAs": [ + "https://www.wikidata.org/wiki/Q15951991" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-rouille", + "name": "Sauces-rouille", + "id": "fr:sauces-rouille", + "products": 14 + }, + { + "products": 14, + "name": "Jambons ibériques", + "id": "fr:jambons-iberiques", + "url": "https://fr.openfoodfacts.org/categorie/jambons-iberiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croissants-surgeles", + "products": 14, + "name": "Croissants surgelés", + "id": "fr:croissants-surgeles" + }, + { + "id": "fr:biscottes-pauvres-en-sel", + "name": "Biscottes pauvres en sel", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/biscottes-pauvres-en-sel" + }, + { + "name": "Champignons de Paris émincés surgelés", + "id": "en:frozen-sliced-champignon-mushrooms", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-eminces-surgeles" + }, + { + "products": 14, + "name": "Sauces bourguignonnes", + "id": "fr:sauces-bourguignonnes", + "url": "https://fr.openfoodfacts.org/categorie/sauces-bourguignonnes" + }, + { + "id": "fr:corbieres", + "name": "Corbières", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/corbieres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q650077" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gingembre-en-poudre", + "name": "Gingembre en poudre", + "id": "en:ginger-powder", + "products": 14 + }, + { + "products": 14, + "id": "en:lemon-meringue-pies", + "name": "Tartes au citron meringuées", + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-citron-meringuees" + }, + { + "id": "fr:foies-gras-de-canard-mi-cuits", + "name": "Foies-gras-de-canard-mi-cuits", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-mi-cuits" + }, + { + "products": 14, + "id": "fr:brillat-savarin", + "name": "Brillat-Savarin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q724855" + ], + "url": "https://fr.openfoodfacts.org/categorie/brillat-savarin" + }, + { + "name": "Moutardes fines", + "id": "en:fine-mustards", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-fines" + }, + { + "products": 14, + "name": "Asperges vertes", + "id": "en:green-asparagus", + "url": "https://fr.openfoodfacts.org/categorie/asperges-vertes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois", + "products": 14, + "name": "Petits-pois", + "id": "fr:petits-pois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aide-alimentaire", + "name": "Aide-alimentaire", + "id": "fr:aide-alimentaire", + "products": 14 + }, + { + "products": 14, + "id": "en:rabbit-dishes", + "name": "Plats à base de lapin", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-lapin" + }, + { + "products": 14, + "name": "Barres de céréales aux noisettes", + "id": "fr:barres-de-cereales-aux-noisettes", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantaardige-levensmiddelen-en-dranken", + "products": 14, + "name": "Plantaardige-levensmiddelen-en-dranken", + "id": "fr:plantaardige-levensmiddelen-en-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-a-tartiner-sucres", + "products": 14, + "id": "en:produits-a-tartiner-sucres", + "name": "en:Produits-a-tartiner-sucres" + }, + { + "products": 14, + "name": "Courgettes surgelées", + "id": "en:frozen-zucchini", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-veau", + "id": "en:veal-quenelles", + "name": "Quenelles de veau", + "products": 14 + }, + { + "products": 14, + "name": "Legumes-sechees", + "id": "fr:legumes-sechees", + "url": "https://fr.openfoodfacts.org/categorie/legumes-sechees" + }, + { + "name": "Cerises enrobées au chocolat", + "id": "en:chocolate-covered-cherries", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/cerises-enrobees-au-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16242001" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-traditionnels", + "name": "Cidres traditionnels", + "id": "en:traditional-ciders", + "products": 14 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/perail", + "products": 14, + "id": "fr:perail", + "name": "Pérail" + }, + { + "name": "Marmelades de citrons", + "id": "en:lemon-marmelades", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-citrons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q40867220" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fars-bretons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1396059" + ], + "name": "Fars bretons", + "id": "en:fars-bretons", + "products": 14 + }, + { + "name": "Confitures de quetsches", + "id": "fr:confitures-de-quetsches", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-quetsches" + }, + { + "products": 14, + "id": "fr:barres-de-cereales-aux-fruits", + "name": "Barres de céréales aux fruits", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantaardige-levensmiddelen", + "name": "Plantaardige-levensmiddelen", + "id": "fr:plantaardige-levensmiddelen", + "products": 14 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q410209" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucralose", + "id": "en:sucralose", + "name": "Sucralose", + "products": 14 + }, + { + "name": "Thés noirs aromatisés au citron", + "id": "en:lemon-flavored-black-teas", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-aromatises-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/omelettes-norvegiennes", + "id": "fr:omelettes-norvegiennes", + "name": "Omelettes-norvegiennes", + "products": 14 + }, + { + "products": 14, + "id": "en:liquor-filled-chocolate-covered-cherries", + "name": "Bonbons de chocolat fourrés cerise et liqueur", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-fourres-cerise-et-liqueur" + }, + { + "id": "en:ostrich", + "name": "Autruche", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/autruche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-chili", + "sameAs": [ + "https://www.wikidata.org/wiki/Q522171" + ], + "id": "en:hot-sauces", + "name": "Sauces chili", + "products": 14 + }, + { + "products": 14, + "name": "Marmelades d'oranges amères", + "id": "en:bigarade-orange-marmelades", + "url": "https://fr.openfoodfacts.org/categorie/marmelades-d-oranges-ameres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-de-froment", + "name": "Pains azymes à la farine de froment", + "id": "fr:pains-azymes-a-la-farine-de-froment", + "products": 14 + }, + { + "products": 14, + "name": "Thes-verts-aromatises", + "id": "fr:thes-verts-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-aromatises" + }, + { + "id": "fr:croquets", + "name": "Croquets", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/croquets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-mure", + "products": 14, + "id": "fr:yaourts-a-la-mure", + "name": "Yaourts-a-la-mure" + }, + { + "products": 14, + "name": "Fromages artisanaux", + "id": "en:artisan-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-artisanaux" + }, + { + "id": "en:pumpkins-and-their-products", + "name": "Courges et dérivés", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/courges-et-derives" + }, + { + "name": "Ossau-lraty", + "id": "fr:ossau-lraty", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/ossau-lraty", + "sameAs": [ + "https://www.wikidata.org/wiki/Q520598" + ] + }, + { + "id": "en:rice-pasta", + "name": "Pâtes de riz", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-riz" + }, + { + "name": "Farines de froment", + "id": "en:common-wheat-flours", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-arborio", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2615884" + ], + "products": 14, + "id": "en:arborio-rices", + "name": "Riz arborio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-legumineuses", + "products": 14, + "id": "en:legume-oils", + "name": "Huiles de légumineuses" + }, + { + "products": 14, + "name": "Boissons-a-l-aloe-vera", + "id": "fr:boissons-a-l-aloe-vera", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-l-aloe-vera" + }, + { + "products": 14, + "name": "Chips-de-banane", + "id": "fr:chips-de-banane", + "url": "https://fr.openfoodfacts.org/categorie/chips-de-banane" + }, + { + "name": "Pastèques", + "id": "en:watermelons", + "products": 14, + "sameAs": [ + "https://www.wikidata.org/wiki/Q38645" + ], + "url": "https://fr.openfoodfacts.org/categorie/pasteques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-surgeles", + "products": 14, + "name": "Champignons de Paris surgelés", + "id": "en:frozen-champignon-mushrooms" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:epicerie", + "products": 14, + "name": "es:Epicerie", + "id": "es:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coeurs-d-artichauts", + "products": 14, + "name": "Coeurs-d-artichauts", + "id": "fr:coeurs-d-artichauts" + }, + { + "products": 14, + "name": "Pancetta", + "id": "fr:pancetta", + "url": "https://fr.openfoodfacts.org/categorie/pancetta" + }, + { + "products": 14, + "id": "en:white-jasmine-rices", + "name": "Riz thaï blanc", + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-blanc" + }, + { + "name": "Blend écossais", + "id": "en:blended-scotch-whisky", + "products": 14, + "url": "https://fr.openfoodfacts.org/categorie/blend-ecossais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacahuetes-croustillants", + "products": 13, + "name": "Beurres-de-cacahuetes-croustillants", + "id": "fr:beurres-de-cacahuetes-croustillants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-fruits-rouges", + "name": "Coulis de fruits rouges", + "id": "fr:coulis-de-fruits-rouges", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-aux-fruits-mixes", + "id": "en:mixed-fruit-soy-yogurts", + "name": "Yaourts soja aux fruits mixés", + "products": 13 + }, + { + "products": 13, + "id": "en:smoked-mackerels", + "name": "Maquereaux fumés", + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-non-sucrees", + "products": 13, + "name": "es:Boissons-non-sucrees", + "id": "es:boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-semi-completes", + "name": "Pates-seches-semi-completes", + "id": "fr:pates-seches-semi-completes", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-a-la-fraise", + "products": 13, + "id": "en:stirred-strawberry-yogurts", + "name": "Yaourts brassés à la fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains", + "products": 13, + "name": "de:Pains", + "id": "de:pains" + }, + { + "name": "Crocodiles gélifiés", + "id": "en:gummy-crocodiles", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/crocodiles-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-et-gateaux", + "products": 13, + "name": "es:Biscuits-et-gateaux", + "id": "es:biscuits-et-gateaux" + }, + { + "id": "en:pflanzliche-lebensmittel-und-getranke", + "name": "en:Pflanzliche-lebensmittel-und-getranke", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/en:pflanzliche-lebensmittel-und-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-algeriennes", + "products": 13, + "name": "Sauces-algeriennes", + "id": "fr:sauces-algeriennes" + }, + { + "id": "fr:nouilles-orientales", + "name": "Nouilles-orientales", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/nouilles-orientales" + }, + { + "name": "Escargots-surgeles", + "id": "fr:escargots-surgeles", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/escargots-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-vendee", + "id": "fr:jambons-de-vendee", + "name": "Jambons-de-vendee", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-figues", + "products": 13, + "id": "en:figs-yogurts", + "name": "Yaourts aux figues" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q284" + ], + "url": "https://fr.openfoodfacts.org/categorie/cognac", + "products": 13, + "name": "Cognac", + "id": "fr:cognac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-nems", + "products": 13, + "id": "fr:sauces-pour-nems", + "name": "Sauces pour nems" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-poisson", + "products": 13, + "id": "en:fish-gratin", + "name": "Gratins de poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brochettes", + "products": 13, + "id": "fr:brochettes", + "name": "Brochettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/andouillettes-de-troyes", + "products": 13, + "name": "Andouillettes de Troyes", + "id": "fr:andouillettes-de-troyes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1147946" + ], + "url": "https://fr.openfoodfacts.org/categorie/tartes-tatin", + "id": "fr:tartes-tatin", + "name": "Tartes Tatin", + "products": 13 + }, + { + "id": "fr:sainte-maure-de-touraine", + "name": "Sainte-Maure de Touraine", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/sainte-maure-de-touraine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-italiennes", + "name": "Bières italiennes", + "id": "en:italian-beers", + "products": 13 + }, + { + "products": 13, + "name": "Tortellinis-frais", + "id": "fr:tortellinis-frais", + "url": "https://fr.openfoodfacts.org/categorie/tortellinis-frais" + }, + { + "name": "Rhums ambrés", + "id": "en:amber-rum", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/rhums-ambres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brie-de-meaux", + "name": "Brie de Meaux", + "id": "fr:brie-de-meaux", + "products": 13 + }, + { + "id": "fr:amandes-grillees-et-salees", + "name": "Amandes grillées et salées", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/amandes-grillees-et-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-en-coque", + "name": "Graines de tournesol en coque", + "id": "en:unshelled-sunflower-seeds", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-glaces", + "products": 13, + "name": "en:Thes-glaces", + "id": "en:thes-glaces" + }, + { + "products": 13, + "name": "Patates douces", + "id": "en:sweet-potatoes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q37937" + ], + "url": "https://fr.openfoodfacts.org/categorie/patates-douces" + }, + { + "products": 13, + "name": "Yaourts mixés", + "id": "en:mixed-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-mixes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-cuits", + "id": "fr:foies-gras-cuits", + "name": "Foies gras cuits", + "products": 13 + }, + { + "products": 13, + "id": "en:banana-yogurts", + "name": "Yaourts à la banane", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-banane" + }, + { + "id": "en:linseed-oils", + "name": "Huiles de lin", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-lin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q818405" + ] + }, + { + "id": "fr:pains-au-lait-aux-pepites-de-chocolat", + "name": "Pains-au-lait-aux-pepites-de-chocolat", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/pains-au-lait-aux-pepites-de-chocolat" + }, + { + "products": 13, + "name": "Levures-chimiques", + "id": "fr:levures-chimiques", + "url": "https://fr.openfoodfacts.org/categorie/levures-chimiques" + }, + { + "products": 13, + "id": "en:frozen-sliced-zucchini", + "name": "Courgettes en rondelles surgelées", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-en-rondelles-surgelees" + }, + { + "id": "fr:purees-surgelees", + "name": "Purees-surgelees", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/purees-surgelees" + }, + { + "id": "en:banana-nectars", + "name": "Nectars de banane", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-banane" + }, + { + "name": "en:Barres", + "id": "en:barres", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/en:barres" + }, + { + "products": 13, + "name": "Entremets", + "id": "fr:entremets", + "url": "https://fr.openfoodfacts.org/categorie/entremets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-a-rechauffer-au-micro-ondes", + "products": 13, + "id": "en:plats-prepares-a-rechauffer-au-micro-ondes", + "name": "en:Plats-prepares-a-rechauffer-au-micro-ondes" + }, + { + "products": 13, + "id": "de:produits-laitiers-fermentes", + "name": "de:Produits-laitiers-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/de:produits-laitiers-fermentes" + }, + { + "products": 13, + "id": "fr:haricots-beurre", + "name": "Haricots-beurre", + "url": "https://fr.openfoodfacts.org/categorie/haricots-beurre" + }, + { + "id": "fr:yaourts-aux-fruits-sans-morceaux", + "name": "Yaourts-aux-fruits-sans-morceaux", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-sans-morceaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes-frais", + "products": 13, + "name": "Mélanges de légumes frais", + "id": "en:fresh-vegetable-mixes" + }, + { + "id": "en:refrigerated-squeezed-multifruit-juices", + "name": "Jus multifruits frais", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruits-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-surgelees", + "name": "Crevettes-surgelees", + "id": "fr:crevettes-surgelees", + "products": 13 + }, + { + "name": "Cafés en poudre décaféinés", + "id": "en:decaffeinated-instant-coffees", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-poudre-decafeines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains", + "products": 13, + "id": "en:pains", + "name": "en:Pains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/proteine-vegetale-texturee", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2120234" + ], + "products": 13, + "id": "en:textured-vegetable-protein", + "name": "Protéine végétale texturée" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-blancs-au-naturel", + "products": 13, + "name": "Thons blancs au naturel", + "id": "fr:thons-blancs-au-naturel" + }, + { + "id": "fr:fromages-bio", + "name": "Fromages-bio", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/fromages-bio" + }, + { + "products": 13, + "name": "Fromages-alleges-en-matiere-grasse", + "id": "fr:fromages-alleges-en-matiere-grasse", + "url": "https://fr.openfoodfacts.org/categorie/fromages-alleges-en-matiere-grasse" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q179158" + ], + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-champignons", + "name": "Veloutés de champignons", + "id": "en:cream-of-mushroom-soups", + "products": 13 + }, + { + "id": "en:cauliflower-gratins", + "name": "Gratins de choux-fleurs", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-choux-fleurs" + }, + { + "products": 13, + "name": "Preparations-pour-pains", + "id": "fr:preparations-pour-pains", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-pains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poitrines-fumees", + "products": 13, + "name": "Poitrines-fumees", + "id": "fr:poitrines-fumees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-surgelees", + "products": 13, + "name": "Soupes de légumes surgelées", + "id": "en:frozen-vegetable-soups" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-vanille", + "id": "fr:desserts-vanille", + "name": "Desserts-vanille", + "products": 13 + }, + { + "id": "de:plats-prepares", + "name": "de:Plats-prepares", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-citron", + "products": 13, + "id": "fr:chocolats-noirs-au-citron", + "name": "Chocolats-noirs-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-et-produits-derives", + "products": 13, + "name": "de:Fruits-et-produits-derives", + "id": "de:fruits-et-produits-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/harengs-marines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q695101" + ], + "id": "en:pickled-herring", + "name": "Harengs marinés", + "products": 13 + }, + { + "products": 13, + "name": "Saucisses espagnoles", + "id": "en:sausages-from-spain", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-espagnoles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-au-chocolat", + "products": 13, + "id": "en:biscuits-au-chocolat", + "name": "en:Biscuits-au-chocolat" + }, + { + "products": 13, + "id": "fr:pommes-de-terre-categorie-1", + "name": "Pommes de terre catégorie 1", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-categorie-1" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-au-lait", + "products": 13, + "name": "de:Chocolats-au-lait", + "id": "de:chocolats-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-a-la-menthe", + "products": 13, + "name": "Bonbons-a-la-menthe", + "id": "fr:bonbons-a-la-menthe" + }, + { + "id": "fr:chablis", + "name": "Chablis", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/chablis" + }, + { + "products": 13, + "name": "Cumin en poudre", + "id": "en:ground-cumin-seeds", + "url": "https://fr.openfoodfacts.org/categorie/cumin-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheveux-d-ange", + "products": 13, + "id": "fr:cheveux-d-ange", + "name": "Cheveux-d-ange" + }, + { + "products": 13, + "id": "en:salmon-taramasalata", + "name": "Taramas au saumon", + "url": "https://fr.openfoodfacts.org/categorie/taramas-au-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-soja-salees", + "products": 13, + "name": "Sauces au soja salées", + "id": "fr:sauces-au-soja-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aromates", + "products": 13, + "id": "fr:aromates", + "name": "Aromates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porto", + "products": 13, + "name": "Porto", + "id": "fr:porto" + }, + { + "id": "en:concentrated-grape-juices", + "name": "Jus de raisin à base de concentré", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin-a-base-de-concentre" + }, + { + "products": 13, + "id": "fr:ungezuckerte-getranke", + "name": "Ungezuckerte-getranke", + "url": "https://fr.openfoodfacts.org/categorie/ungezuckerte-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-label-rouge", + "name": "Jambons Label Rouge", + "id": "fr:jambons-label-rouge", + "products": 13 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q168263" + ], + "url": "https://fr.openfoodfacts.org/categorie/couronnes-des-rois", + "id": "fr:couronnes-des-rois", + "name": "Couronnes des rois", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/whisky-americain", + "products": 13, + "id": "en:american-whiskeys", + "name": "Whisky américain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-de-boeuf", + "name": "Charcuteries-de-boeuf", + "id": "fr:charcuteries-de-boeuf", + "products": 13 + }, + { + "id": "en:baby-drinks", + "name": "Boissons pour bébé", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/boissons-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-semoule", + "products": 13, + "name": "Gâteaux de semoule", + "id": "fr:gateaux-de-semoule" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-pommes", + "id": "fr:gelees-de-pommes", + "name": "Gelées de pommes", + "products": 13 + }, + { + "name": "Risottos aux cèpes", + "id": "fr:risottos-aux-cepes", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/risottos-aux-cepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues-sechees", + "name": "Mangues séchées", + "id": "en:dried-mangoes", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/origan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q134283" + ], + "id": "en:oregano", + "name": "Origan", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q959362" + ], + "name": "Gins", + "id": "fr:gins", + "products": 13 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/peres-noel-en-chocolat", + "products": 13, + "name": "Pères Noël en chocolat", + "id": "en:chocolate-santa-clauses" + }, + { + "id": "fr:viandes-marinees", + "name": "Viandes-marinees", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/viandes-marinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-tendres", + "products": 13, + "name": "Nougats-tendres", + "id": "fr:nougats-tendres" + }, + { + "name": "Desserts-lactes-natures", + "id": "fr:desserts-lactes-natures", + "products": 13, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-natures" + }, + { + "products": 12, + "id": "en:breads-with-raisins", + "name": "Pains aux raisins", + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-raisins" + }, + { + "products": 12, + "id": "en:bieres-artisanales", + "name": "en:Bieres-artisanales", + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-artisanales" + }, + { + "products": 12, + "id": "en:pates-a-tartiner-vegetales", + "name": "en:Pates-a-tartiner-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner-vegetales" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q201565" + ], + "url": "https://fr.openfoodfacts.org/categorie/algues-nori", + "products": 12, + "id": "en:nori-seaweeds", + "name": "Algues nori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farces", + "products": 12, + "name": "Farces", + "id": "fr:farces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mendiants", + "name": "Mendiants", + "id": "fr:mendiants", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schokoladen", + "name": "Schokoladen", + "id": "fr:schokoladen", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-chocolat", + "id": "en:chocolate-yogurts", + "name": "Yaourts au chocolat", + "products": 12 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q235169" + ], + "url": "https://fr.openfoodfacts.org/categorie/miso", + "products": 12, + "name": "Miso", + "id": "en:misos" + }, + { + "name": "Tortelloni", + "id": "en:tortelloni", + "products": 12, + "sameAs": [ + "https://www.wikidata.org/wiki/Q20061" + ], + "url": "https://fr.openfoodfacts.org/categorie/tortelloni" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-en-coque-grillees", + "id": "en:roasted-unshelled-sunflower-seeds", + "name": "Graines de tournesol en coque grillées", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-et-boissons-a-base-de-vegetaux", + "products": 12, + "name": "it:Aliments-et-boissons-a-base-de-vegetaux", + "id": "it:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "products": 12, + "id": "fr:chocolats-noirs-au-quinoa", + "name": "Chocolats-noirs-au-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-quinoa" + }, + { + "name": "Cookies aux amandes", + "id": "en:almond-cookies", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/cookies-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartiflettes-en-conserve", + "products": 12, + "name": "Tartiflettes en conserve", + "id": "en:canned-tartiflettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/homards", + "id": "en:lobsters", + "name": "Homards", + "products": 12 + }, + { + "products": 12, + "id": "fr:coteaux-d-aix-en-provence", + "name": "Coteaux d'Aix-en-Provence", + "url": "https://fr.openfoodfacts.org/categorie/coteaux-d-aix-en-provence", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2998538" + ] + }, + { + "products": 12, + "id": "en:peanut-oils", + "name": "Huiles d'arachide", + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-arachide", + "sameAs": [ + "https://www.wikidata.org/wiki/Q265878" + ] + }, + { + "products": 12, + "name": "Tapioca", + "id": "fr:tapioca", + "url": "https://fr.openfoodfacts.org/categorie/tapioca" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-legumes-du-soleil", + "products": 12, + "id": "fr:veloutes-de-legumes-du-soleil", + "name": "Veloutés de légumes du soleil" + }, + { + "id": "en:pork-tongue", + "name": "Langue de porc", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/langue-de-porc" + }, + { + "name": "Pains de mie sans gluten", + "id": "en:gluten-free-sliced-breads", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-sans-gluten" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1047392" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-hot-dog", + "id": "en:hot-dog-buns", + "name": "Pains Hot Dog", + "products": 12 + }, + { + "id": "en:white-teas", + "name": "Thés blancs", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/thes-blancs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q238306" + ] + }, + { + "products": 12, + "id": "fr:panna-cottas-aux-fruits-rouges", + "name": "Panna-cottas-aux-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-aux-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/andouilles-de-guemene", + "products": 12, + "name": "Andouilles de Guémené", + "id": "fr:andouilles-de-guemene" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-l-orange", + "id": "en:orange-sorbets", + "name": "Sorbets à l'orange", + "products": 12 + }, + { + "products": 12, + "name": "Poulets-fermiers-entiers", + "id": "fr:poulets-fermiers-entiers", + "url": "https://fr.openfoodfacts.org/categorie/poulets-fermiers-entiers" + }, + { + "id": "fr:getreide-und-getreideprodukte", + "name": "Getreide-und-getreideprodukte", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/getreide-und-getreideprodukte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-speculoos", + "products": 12, + "name": "Chocolats-au-lait-au-speculoos", + "id": "fr:chocolats-au-lait-au-speculoos" + }, + { + "products": 12, + "name": "Sirops d'orange", + "id": "en:orange-syrups", + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-mures", + "products": 12, + "name": "Gelées de mûres", + "id": "en:blackberry-jellies" + }, + { + "name": "Compotes pommes vanille", + "id": "fr:compotes-pommes-vanille", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-vanille" + }, + { + "id": "en:hazelnut-butters", + "name": "Purées de noisette", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-noisette", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5688100" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blanc-a-l-ancienne", + "products": 12, + "id": "fr:boudins-blanc-a-l-ancienne", + "name": "Boudins blanc à l'ancienne" + }, + { + "products": 12, + "name": "it:Snacks-sucres", + "id": "it:snacks-sucres", + "url": "https://fr.openfoodfacts.org/categorie/it:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-citron", + "name": "Thés glacés saveur citron", + "id": "en:lemon-flavored-iced-teas", + "products": 12 + }, + { + "products": 12, + "name": "Poireaux", + "id": "en:leeks", + "url": "https://fr.openfoodfacts.org/categorie/poireaux" + }, + { + "id": "en:unsweetened-natural-soy-milks", + "name": "Boissons végétales de soja nature", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-soja-nature" + }, + { + "name": "Filets-de-colin-d-alaska", + "id": "fr:filets-de-colin-d-alaska", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-colin-d-alaska" + }, + { + "name": "Petits-pains-grilles-au-froment", + "id": "fr:petits-pains-grilles-au-froment", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/petits-pains-grilles-au-froment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/linguine", + "name": "Linguine", + "id": "fr:linguine", + "products": 12 + }, + { + "name": "Cremes-de-cassis", + "id": "fr:cremes-de-cassis", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-sesame-crues", + "products": 12, + "name": "Graines de sésame crues", + "id": "en:raw-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/joghurt", + "products": 12, + "id": "fr:joghurt", + "name": "Joghurt" + }, + { + "id": "en:puffed-wheat", + "name": "Blé soufflé", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/ble-souffle" + }, + { + "name": "Chaussons aux pommes", + "id": "en:apple-turnovers", + "products": 12, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2461000" + ], + "url": "https://fr.openfoodfacts.org/categorie/chaussons-aux-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gressins-artisanaux", + "id": "en:handmade-breadsticks", + "name": "Gressins artisanaux", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-betterave", + "products": 12, + "id": "fr:jus-de-betterave", + "name": "Jus de betterave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-aux-tomates", + "name": "Taboulés aux tomates", + "id": "en:tabbouleh-with-tomatoes", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-blancs", + "id": "en:white-vinegars", + "name": "Vinaigres blancs", + "products": 12 + }, + { + "products": 12, + "id": "en:duck-fat", + "name": "Graisse de canard", + "url": "https://fr.openfoodfacts.org/categorie/graisse-de-canard" + }, + { + "id": "en:skipjack-tuna", + "name": "Thons listao", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/thons-listao", + "sameAs": [ + "https://www.wikidata.org/wiki/Q633957" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-et-derives", + "name": "es:Cereales-et-derives", + "id": "es:cereales-et-derives", + "products": 12 + }, + { + "name": "Cabernet d'Anjou", + "id": "fr:cabernet-d-anjou", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/cabernet-d-anjou" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q18966" + ], + "url": "https://fr.openfoodfacts.org/categorie/mais-doux", + "id": "en:sweet-corn", + "name": "Maïs doux", + "products": 12 + }, + { + "products": 12, + "id": "en:avena", + "name": "Avena", + "url": "https://fr.openfoodfacts.org/categorie/avena", + "sameAs": [ + "https://www.wikidata.org/wiki/Q146760" + ] + }, + { + "products": 12, + "name": "Avoines", + "id": "en:oat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q12104" + ], + "url": "https://fr.openfoodfacts.org/categorie/avoines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aligots", + "id": "fr:aligots", + "name": "Aligots", + "products": 12 + }, + { + "products": 12, + "name": "Lasagne Chèvre Épinards", + "id": "en:lasagne-with-goat-cheese-and-spinach", + "url": "https://fr.openfoodfacts.org/categorie/lasagne-chevre-epinards" + }, + { + "products": 12, + "name": "Pignons de pin décortiqués", + "id": "en:shelled-pine-nuts", + "url": "https://fr.openfoodfacts.org/categorie/pignons-de-pin-decortiques" + }, + { + "products": 12, + "name": "Boulettes-de-viande", + "id": "fr:boulettes-de-viande", + "url": "https://fr.openfoodfacts.org/categorie/boulettes-de-viande" + }, + { + "name": "Courges", + "id": "en:pumpkins", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/courges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aspics", + "id": "fr:aspics", + "name": "Aspics", + "products": 12 + }, + { + "products": 12, + "name": "Produits-dietetiques", + "id": "fr:produits-dietetiques", + "url": "https://fr.openfoodfacts.org/categorie/produits-dietetiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-saint-jacques", + "products": 12, + "id": "fr:terrines-de-saint-jacques", + "name": "Terrines de Saint-Jacques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquilles-saint-jacques", + "products": 12, + "name": "Coquilles Saint-Jacques", + "id": "en:st-jacques-shells" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-refrigeres", + "id": "en:plats-prepares-refrigeres", + "name": "en:Plats-prepares-refrigeres", + "products": 12 + }, + { + "name": "Desserts-lactes-au-caramel", + "id": "fr:desserts-lactes-au-caramel", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-blanches", + "products": 12, + "id": "fr:saucisses-blanches", + "name": "Saucisses-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuterie-de-volaille", + "name": "Charcuterie-de-volaille", + "id": "fr:charcuterie-de-volaille", + "products": 12 + }, + { + "name": "Soupe miso", + "id": "en:miso-soup", + "products": 12, + "sameAs": [ + "https://www.wikidata.org/wiki/Q471866" + ], + "url": "https://fr.openfoodfacts.org/categorie/soupe-miso" + }, + { + "products": 12, + "id": "fr:kebab", + "name": "Kebab", + "url": "https://fr.openfoodfacts.org/categorie/kebab" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/concentres", + "name": "Concentres", + "id": "fr:concentres", + "products": 12 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pflanzliche-lebensmittel", + "products": 12, + "name": "en:Pflanzliche-lebensmittel", + "id": "en:pflanzliche-lebensmittel" + }, + { + "products": 12, + "id": "en:veggie-burgers", + "name": "Hamburgers végétales", + "url": "https://fr.openfoodfacts.org/categorie/hamburgers-vegetales", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1884503" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-garnies", + "name": "Galettes-garnies", + "id": "fr:galettes-garnies", + "products": 12 + }, + { + "name": "Laits de noisettes", + "id": "en:hazelnut-milks", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/laits-de-noisettes" + }, + { + "products": 12, + "name": "Farines d'épeautre", + "id": "en:spelt-flours", + "url": "https://fr.openfoodfacts.org/categorie/farines-d-epeautre" + }, + { + "name": "Caviars", + "id": "en:caviars", + "products": 12, + "url": "https://fr.openfoodfacts.org/categorie/caviars", + "sameAs": [ + "https://www.wikidata.org/wiki/Q186385" + ] + }, + { + "products": 12, + "id": "fr:laits-de-chevre", + "name": "Laits de chèvre", + "url": "https://fr.openfoodfacts.org/categorie/laits-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:snacks", + "name": "en:Snacks", + "id": "en:snacks", + "products": 12 + }, + { + "products": 11, + "name": "Beurres-de-cacahuetes-cremeux", + "id": "fr:beurres-de-cacahuetes-cremeux", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacahuetes-cremeux" + }, + { + "id": "fr:pandoros", + "name": "Pandoros", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/pandoros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-piment-d-espelette", + "products": 11, + "name": "Chocolats-noirs-au-piment-d-espelette", + "id": "fr:chocolats-noirs-au-piment-d-espelette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-d-orge", + "name": "Sucres-d-orge", + "id": "fr:sucres-d-orge", + "products": 11 + }, + { + "products": 11, + "id": "en:apple-jams", + "name": "Confitures de pommes", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-poire", + "products": 11, + "name": "Yaourts-a-la-poire", + "id": "fr:yaourts-a-la-poire" + }, + { + "id": "de:biscuits-et-gateaux", + "name": "de:Biscuits-et-gateaux", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-et-gateaux" + }, + { + "id": "fr:coquilles-saint-jacques-surgelees", + "name": "Coquilles Saint-Jacques surgelées", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/coquilles-saint-jacques-surgelees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1032806" + ], + "url": "https://fr.openfoodfacts.org/categorie/canapes", + "id": "fr:canapes", + "name": "Canapés", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huitres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q107411" + ], + "products": 11, + "name": "Huîtres", + "id": "en:oysters" + }, + { + "products": 11, + "id": "de:boissons-alcoolisees", + "name": "de:Boissons-alcoolisees", + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-alcoolisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-liege", + "name": "Sirops-de-liege", + "id": "fr:sirops-de-liege", + "products": 11 + }, + { + "products": 11, + "id": "en:white-almond-purees", + "name": "Purées d'amande blanche", + "url": "https://fr.openfoodfacts.org/categorie/purees-d-amande-blanche" + }, + { + "products": 11, + "name": "Produits-de-regime", + "id": "fr:produits-de-regime", + "url": "https://fr.openfoodfacts.org/categorie/produits-de-regime" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-italiens", + "products": 11, + "id": "fr:miels-italiens", + "name": "Miels-italiens" + }, + { + "id": "fr:produits-minceur", + "name": "Produits-minceur", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/produits-minceur" + }, + { + "products": 11, + "name": "Salades mexicaines", + "id": "en:mexican-salads", + "url": "https://fr.openfoodfacts.org/categorie/salades-mexicaines" + }, + { + "products": 11, + "id": "fr:mandu", + "name": "Mandu", + "url": "https://fr.openfoodfacts.org/categorie/mandu" + }, + { + "id": "fr:salades-preparees", + "name": "Salades-preparees", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/salades-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-a-la-vanille", + "name": "Gaufres-fourrees-a-la-vanille", + "id": "fr:gaufres-fourrees-a-la-vanille", + "products": 11 + }, + { + "id": "fr:biscuits-aux-fruits", + "name": "Biscuits-aux-fruits", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-fruits" + }, + { + "id": "fr:snack", + "name": "Snack", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/snack" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages", + "id": "en:fromages", + "name": "en:Fromages", + "products": 11 + }, + { + "name": "Côtes du Roussillon Villages", + "id": "fr:cotes-du-roussillon-villages", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-roussillon-villages", + "sameAs": [ + "https://www.wikidata.org/wiki/Q469048" + ] + }, + { + "products": 11, + "id": "en:lemon-jams", + "name": "Confitures de citron", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-la-framboise", + "products": 11, + "name": "Nonnettes-a-la-framboise", + "id": "fr:nonnettes-a-la-framboise" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2140793" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-de-pays", + "products": 11, + "name": "Vins de pays", + "id": "fr:vins-de-pays" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q155814" + ], + "url": "https://fr.openfoodfacts.org/categorie/estragon", + "id": "en:tarragon", + "name": "Estragon", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-americaines", + "products": 11, + "id": "fr:sauces-americaines", + "name": "Sauces américaines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coq-au-vin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q527323" + ], + "products": 11, + "name": "Coq au vin", + "id": "fr:coq-au-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-sales-aux-lentilles", + "products": 11, + "id": "fr:petits-sales-aux-lentilles", + "name": "Petits salés aux lentilles" + }, + { + "products": 11, + "name": "Pates-completes", + "id": "fr:pates-completes", + "url": "https://fr.openfoodfacts.org/categorie/pates-completes" + }, + { + "products": 11, + "id": "fr:cacahuetes-enrobees", + "name": "Cacahuetes-enrobees", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-enrobees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-a-la-sarladaise", + "products": 11, + "name": "Poêlées à la sarladaise", + "id": "fr:poelees-a-la-sarladaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/snacks-dulces", + "id": "fr:snacks-dulces", + "name": "Snacks-dulces", + "products": 11 + }, + { + "name": "Chocolats-a-la-nougatine", + "id": "fr:chocolats-a-la-nougatine", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-nougatine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-muscade-en-poudre", + "products": 11, + "id": "en:ground-nutmeg", + "name": "Noix de muscade en poudre" + }, + { + "products": 11, + "name": "Kekse-mit-milchschokolade", + "id": "fr:kekse-mit-milchschokolade", + "url": "https://fr.openfoodfacts.org/categorie/kekse-mit-milchschokolade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-de-grece", + "products": 11, + "name": "Huiles d'olive de Grèce", + "id": "en:olive-oils-from-greece" + }, + { + "name": "Laits-microfiltres", + "id": "fr:laits-microfiltres", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/laits-microfiltres" + }, + { + "name": "Sauces tomates aux champignons", + "id": "fr:sauces-tomates-aux-champignons", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-aux-champignons" + }, + { + "id": "fr:sans-gluten", + "name": "Sans-gluten", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-champignons-en-conserve", + "products": 11, + "name": "Mélanges de champignons en conserve", + "id": "en:canned-mixed-mushrooms" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q249873" + ], + "url": "https://fr.openfoodfacts.org/categorie/crottins-de-chavignol", + "id": "fr:crottins-de-chavignol", + "name": "Crottins de Chavignol", + "products": 11 + }, + { + "products": 11, + "name": "Merguez de bœuf", + "id": "en:beef-merguez", + "url": "https://fr.openfoodfacts.org/categorie/merguez-de-boeuf" + }, + { + "id": "fr:miels-de-citronnier", + "name": "Miels de citronnier", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-citronnier" + }, + { + "products": 11, + "name": "Ras el hanout", + "id": "en:ras-el-hanout", + "url": "https://fr.openfoodfacts.org/categorie/ras-el-hanout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-toulousains", + "products": 11, + "id": "en:cassoulets-from-toulouse", + "name": "Cassoulets toulousains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-extra-fins", + "products": 11, + "id": "fr:haricots-verts-extra-fins", + "name": "Haricots-verts-extra-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-bacon", + "products": 11, + "name": "Allumettes de bacon", + "id": "en:smoked-bacon-lardons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-aux-cepes", + "products": 11, + "name": "Ravioli aux cèpes", + "id": "en:ravioli-with-porcini-mushrooms" + }, + { + "id": "fr:jus-de-raisin-pur-jus", + "name": "Jus-de-raisin-pur-jus", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-citron", + "products": 11, + "name": "Gateaux-au-citron", + "id": "fr:gateaux-au-citron" + }, + { + "products": 11, + "name": "Sons de blé", + "id": "en:wheat-brans", + "url": "https://fr.openfoodfacts.org/categorie/sons-de-ble" + }, + { + "name": "Nids", + "id": "fr:nids", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/nids" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-aux-fruits-rouges", + "name": "Infusions aux fruits rouges", + "id": "en:red-fruit-teas", + "products": 11 + }, + { + "products": 11, + "name": "Pflanzliche-getranke", + "id": "fr:pflanzliche-getranke", + "url": "https://fr.openfoodfacts.org/categorie/pflanzliche-getranke" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q702104" + ], + "url": "https://fr.openfoodfacts.org/categorie/poivrons-farcis", + "name": "Poivrons farcis", + "id": "en:stuffed-peppers", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-au-caramel", + "products": 11, + "name": "Mueslis-au-caramel", + "id": "fr:mueslis-au-caramel" + }, + { + "products": 11, + "name": "Grattons", + "id": "fr:grattons", + "url": "https://fr.openfoodfacts.org/categorie/grattons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilletes", + "id": "fr:feuilletes", + "name": "Feuilletes", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-de-cereales", + "name": "en:Barres-de-cereales", + "id": "en:barres-de-cereales", + "products": 11 + }, + { + "id": "en:mueslis-croustillants", + "name": "en:Mueslis-croustillants", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/en:mueslis-croustillants" + }, + { + "id": "fr:vin-de-savoie", + "name": "Vin de Savoie", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/vin-de-savoie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-cereales", + "id": "fr:melanges-de-cereales", + "name": "Melanges-de-cereales", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-d-origine-vegetale", + "products": 11, + "name": "it:Aliments-d-origine-vegetale", + "id": "it:aliments-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-patates-douces", + "id": "fr:purees-de-patates-douces", + "name": "Purees-de-patates-douces", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/abondance", + "name": "Abondance", + "id": "fr:abondance", + "products": 11 + }, + { + "id": "fr:miettes-de-thon-a-la-tomate", + "name": "Miettes-de-thon-a-la-tomate", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-thon-a-la-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutas-y-verduras-y-sus-productos", + "products": 11, + "name": "Frutas-y-verduras-y-sus-productos", + "id": "fr:frutas-y-verduras-y-sus-productos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:french-wines", + "name": "en:French-wines", + "id": "en:french-wines", + "products": 11 + }, + { + "name": "Terrines de cerf", + "id": "fr:terrines-de-cerf", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-cerf" + }, + { + "products": 11, + "id": "en:fruits-et-produits-derives", + "name": "en:Fruits-et-produits-derives", + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-et-produits-derives" + }, + { + "products": 11, + "name": "Quinoa rouge", + "id": "en:red-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/quinoa-rouge" + }, + { + "id": "en:mashed-carrots", + "name": "Purées de carottes", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-aperitif", + "id": "fr:fromages-aperitif", + "name": "Fromages apéritif", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-culinaires", + "id": "fr:preparations-culinaires", + "name": "Preparations-culinaires", + "products": 11 + }, + { + "id": "fr:biscuits-aperitifs-au-fromage", + "name": "Biscuits-aperitifs-au-fromage", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-au-fromage" + }, + { + "products": 11, + "id": "en:lime-sorbets", + "name": "Sorbets au citron vert", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-citron-vert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-noix-de-coco", + "products": 11, + "id": "en:coconut-ice-cream-tubs", + "name": "Glaces à la noix de coco" + }, + { + "products": 11, + "name": "Sauces aux champignons", + "id": "en:mushroom-sauces", + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-champignons" + }, + { + "id": "fr:chocolats-noirs-aux-pistaches", + "name": "Chocolats noirs aux pistaches", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-pistaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-riz", + "id": "en:rice-vinegars", + "name": "Vinaigres de riz", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit", + "name": "Yaourts-sur-lit", + "id": "fr:yaourts-sur-lit", + "products": 11 + }, + { + "products": 11, + "name": "Rollmops", + "id": "en:rollmops", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1424531" + ], + "url": "https://fr.openfoodfacts.org/categorie/rollmops" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bles-durs-precuits", + "id": "fr:bles-durs-precuits", + "name": "Bles-durs-precuits", + "products": 11 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q15260613" + ], + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-poules", + "id": "en:chicken-eggs", + "name": "Œufs de poules", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremant-d-alsace", + "id": "fr:cremant-d-alsace", + "name": "Crémant d'Alsace", + "products": 11 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mixtures-of-herbs-and-spices", + "name": "Mixtures of herbs and spices", + "id": "en:mixtures-of-herbs-and-spices", + "products": 11 + }, + { + "id": "de:cereales-pour-petit-dejeuner", + "name": "de:Cereales-pour-petit-dejeuner", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-pour-petit-dejeuner" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q677640" + ], + "url": "https://fr.openfoodfacts.org/categorie/pecorino", + "id": "it:pecorino", + "name": "Pecorino", + "products": 11 + }, + { + "products": 11, + "id": "fr:poissons-a-tartiner", + "name": "Poissons-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/poissons-a-tartiner" + }, + { + "id": "fr:eminces-de-poulet", + "name": "Eminces-de-poulet", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-normandes", + "name": "Tartes normandes", + "id": "en:pies-from-normandy", + "products": 11 + }, + { + "products": 11, + "name": "en:Sirops", + "id": "en:sirops", + "url": "https://fr.openfoodfacts.org/categorie/en:sirops" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-mais", + "products": 11, + "name": "Pâtes de maïs", + "id": "en:corn-pasta" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-base-d-algues", + "products": 11, + "name": "Produits à base d'algues", + "id": "en:seaweed-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-poulet", + "products": 11, + "id": "fr:pizzas-au-poulet", + "name": "Pizzas-au-poulet" + }, + { + "name": "Beignets-de-crevettes", + "id": "fr:beignets-de-crevettes", + "products": 11, + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-crevettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-nougat", + "id": "en:nougat-ice-cream-tubs", + "name": "Glaces au nougat", + "products": 11 + }, + { + "products": 11, + "id": "en:milk-chocolates-with-sweeteners", + "name": "Chocolats au lait édulcorés", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-au-praline", + "products": 11, + "id": "fr:bonbons-de-chocolat-au-praline", + "name": "Bonbons-de-chocolat-au-praline" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3665589" + ], + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-broche", + "name": "Gâteaux à la broche", + "id": "en:baumkuchen", + "products": 11 + }, + { + "name": "Nonnettes-a-l-orange", + "id": "fr:nonnettes-a-l-orange", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-l-orange" + }, + { + "products": 10, + "id": "fr:des-9-mois", + "name": "Des-9-mois", + "url": "https://fr.openfoodfacts.org/categorie/des-9-mois" + }, + { + "products": 10, + "id": "en:canned-vegetable-soups", + "name": "Soupes de légumes en conserve", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-piment", + "name": "Chocolats-noirs-au-piment", + "id": "fr:chocolats-noirs-au-piment", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-dinde", + "name": "Jambons-de-dinde", + "id": "fr:jambons-de-dinde", + "products": 10 + }, + { + "products": 10, + "id": "en:agar-agar", + "name": "Agar-agar", + "url": "https://fr.openfoodfacts.org/categorie/agar-agar", + "sameAs": [ + "https://www.wikidata.org/wiki/Q177998" + ] + }, + { + "products": 10, + "name": "Levure-de-biere", + "id": "fr:levure-de-biere", + "url": "https://fr.openfoodfacts.org/categorie/levure-de-biere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-cafe", + "products": 10, + "id": "fr:chocolats-au-lait-au-cafe", + "name": "Chocolats-au-lait-au-cafe" + }, + { + "products": 10, + "id": "fr:carres-de-l-est", + "name": "Carrés de l'Est", + "url": "https://fr.openfoodfacts.org/categorie/carres-de-l-est", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2726262" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-noix-de-coco", + "products": 10, + "name": "Chocolats-noirs-a-la-noix-de-coco", + "id": "fr:chocolats-noirs-a-la-noix-de-coco" + }, + { + "id": "es:produits-a-tartiner", + "name": "es:Produits-a-tartiner", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/es:produits-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-a-la-crevette", + "name": "Ravioli-a-la-crevette", + "id": "fr:ravioli-a-la-crevette", + "products": 10 + }, + { + "id": "en:bonbons-de-chocolat", + "name": "en:Bonbons-de-chocolat", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/en:bonbons-de-chocolat" + }, + { + "id": "en:melon-jams", + "name": "Confitures de melon", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-melon" + }, + { + "products": 10, + "id": "en:chips", + "name": "en:Chips", + "url": "https://fr.openfoodfacts.org/categorie/en:chips" + }, + { + "products": 10, + "id": "en:frozen-leeks", + "name": "Poireaux surgelés", + "url": "https://fr.openfoodfacts.org/categorie/poireaux-surgeles" + }, + { + "products": 10, + "name": "Fonds-de-volaille", + "id": "fr:fonds-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-volaille" + }, + { + "id": "en:salmon-quenelles", + "name": "Quenelles de saumon", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rouge-bio", + "products": 10, + "name": "Vin rouge bio", + "id": "en:organic-red-wines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-en-chocolat", + "products": 10, + "name": "Vermicelles-en-chocolat", + "id": "fr:vermicelles-en-chocolat" + }, + { + "products": 10, + "id": "en:jumbo-shrimps", + "name": "Langoustines", + "url": "https://fr.openfoodfacts.org/categorie/langoustines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-decortiquees", + "products": 10, + "name": "Graines de tournesol décortiquées", + "id": "en:shelled-sunflower-seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t80", + "name": "Farines de blé type T80", + "id": "en:semi-polished-wheat-flours", + "products": 10 + }, + { + "name": "Huiles-aromatisees", + "id": "fr:huiles-aromatisees", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/huiles-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-froides", + "name": "Boissons-froides", + "id": "fr:boissons-froides", + "products": 10 + }, + { + "name": "Cake-sale", + "id": "fr:cake-sale", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/cake-sale" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q300472" + ], + "url": "https://fr.openfoodfacts.org/categorie/fritures", + "products": 10, + "name": "Fritures", + "id": "en:fried-foods" + }, + { + "name": "Plats-a-base-de-colin", + "id": "fr:plats-a-base-de-colin", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-colin" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q81671" + ], + "url": "https://fr.openfoodfacts.org/categorie/noix-du-bresil", + "name": "Noix du Brésil", + "id": "en:brazil-nuts", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cakes-au-citron", + "id": "fr:cakes-au-citron", + "name": "Cakes-au-citron", + "products": 10 + }, + { + "products": 10, + "name": "Fromages-triple-cremes", + "id": "fr:fromages-triple-cremes", + "url": "https://fr.openfoodfacts.org/categorie/fromages-triple-cremes" + }, + { + "id": "fr:granen-en-aardappels", + "name": "Granen-en-aardappels", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/granen-en-aardappels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmentals-francais-est-central", + "products": 10, + "id": "fr:emmentals-francais-est-central", + "name": "Emmentals français est-central" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croquants", + "products": 10, + "id": "fr:croquants", + "name": "Croquants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aperitif", + "products": 10, + "name": "en:Aperitif", + "id": "en:aperitif" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-y-patatas", + "products": 10, + "id": "fr:cereales-y-patatas", + "name": "Cereales-y-patatas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-noires", + "name": "Bieres-noires", + "id": "fr:bieres-noires", + "products": 10 + }, + { + "id": "fr:poivrons-de-piquillo", + "name": "Poivrons de piquillo", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/poivrons-de-piquillo" + }, + { + "products": 10, + "id": "de:produits-deshydrates", + "name": "de:Produits-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/de:produits-deshydrates" + }, + { + "products": 10, + "id": "en:light-lemon-soft-drinks", + "name": "Sodas au citron light", + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-citron-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-noix-de-coco", + "products": 10, + "id": "fr:chocolats-a-la-noix-de-coco", + "name": "Chocolats-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-boeuf", + "products": 10, + "name": "Foies-de-boeuf", + "id": "fr:foies-de-boeuf" + }, + { + "products": 10, + "id": "fr:betteraves-rouges", + "name": "Betteraves-rouges", + "url": "https://fr.openfoodfacts.org/categorie/betteraves-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:poissons", + "id": "en:poissons", + "name": "en:Poissons", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/friands", + "id": "fr:friands", + "name": "Friands", + "products": 10 + }, + { + "products": 10, + "name": "Fouets catalans", + "id": "fr:fouets-catalans", + "url": "https://fr.openfoodfacts.org/categorie/fouets-catalans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-saucissons-secs", + "name": "Mini-saucissons-secs", + "id": "fr:mini-saucissons-secs", + "products": 10 + }, + { + "products": 10, + "name": "Salmorejo", + "id": "en:salmorejo", + "url": "https://fr.openfoodfacts.org/categorie/salmorejo", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1635129" + ] + }, + { + "products": 10, + "name": "Bananes séchées", + "id": "en:dried-bananas", + "url": "https://fr.openfoodfacts.org/categorie/bananes-sechees" + }, + { + "products": 10, + "name": "en:Flocons", + "id": "en:flocons", + "url": "https://fr.openfoodfacts.org/categorie/en:flocons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-en-conserve", + "products": 10, + "id": "en:canned-mussels", + "name": "Moules en conserve" + }, + { + "id": "en:conserves", + "name": "en:Conserves", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/en:conserves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit-pour-fajitas", + "products": 10, + "name": "Kit-pour-fajitas", + "id": "fr:kit-pour-fajitas" + }, + { + "id": "fr:panes", + "name": "Panes", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-natures", + "name": "Filets de maquereaux natures", + "id": "en:plain-mackerels-fillets", + "products": 10 + }, + { + "products": 10, + "id": "en:white-peppers", + "name": "Poivres blancs", + "url": "https://fr.openfoodfacts.org/categorie/poivres-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-melon", + "products": 10, + "name": "Sorbets-au-melon", + "id": "fr:sorbets-au-melon" + }, + { + "id": "fr:nems-aux-crevettes", + "name": "Nems-aux-crevettes", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/nems-aux-crevettes" + }, + { + "name": "Jambons de San Daniele", + "id": "en:hams-of-san-daniele", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-san-daniele" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-francaises", + "id": "fr:tartes-francaises", + "name": "Tartes-francaises", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:boissons", + "name": "nl:Boissons", + "id": "nl:boissons", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-salees", + "id": "fr:crepes-salees", + "name": "Crepes-salees", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/languedoc", + "products": 10, + "id": "fr:languedoc", + "name": "Languedoc" + }, + { + "id": "en:gala-apples", + "name": "Pommes gala", + "products": 10, + "sameAs": [ + "https://www.wikidata.org/wiki/Q494259" + ], + "url": "https://fr.openfoodfacts.org/categorie/pommes-gala" + }, + { + "products": 10, + "name": "Bresaola", + "id": "fr:bresaola", + "url": "https://fr.openfoodfacts.org/categorie/bresaola" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1231414" + ], + "url": "https://fr.openfoodfacts.org/categorie/epoisses", + "products": 10, + "id": "en:epoisses-de-bourgogne", + "name": "Époisses" + }, + { + "products": 10, + "name": "Tiefkuhlprodukte", + "id": "fr:tiefkuhlprodukte", + "url": "https://fr.openfoodfacts.org/categorie/tiefkuhlprodukte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vol-au-vent", + "products": 10, + "id": "fr:vol-au-vent", + "name": "Vol-au-vent" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/guimauves-au-chocolat", + "name": "Guimauves-au-chocolat", + "id": "fr:guimauves-au-chocolat", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marrons", + "name": "Marrons", + "id": "fr:marrons", + "products": 10 + }, + { + "products": 10, + "id": "fr:plats-a-base-de-crustaces", + "name": "Plats-a-base-de-crustaces", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-crustaces" + }, + { + "products": 10, + "name": "en:Viandes", + "id": "en:viandes", + "url": "https://fr.openfoodfacts.org/categorie/en:viandes" + }, + { + "name": "Dattes-deglet-nour", + "id": "fr:dattes-deglet-nour", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/dattes-deglet-nour" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-aux-fruits", + "products": 10, + "name": "de:Boissons-aux-fruits", + "id": "de:boissons-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jus-et-nectars", + "id": "de:jus-et-nectars", + "name": "de:Jus-et-nectars", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-truite", + "name": "Rillettes de truite", + "id": "fr:rillettes-de-truite", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/konjacs", + "products": 10, + "name": "Konjacs", + "id": "fr:konjacs" + }, + { + "id": "en:breaded-cheeses", + "name": "Fromages panés", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/fromages-panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xylitol", + "sameAs": [ + "https://www.wikidata.org/wiki/Q212093" + ], + "name": "Xylitol", + "id": "en:xylitol", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:barres", + "products": 10, + "name": "de:Barres", + "id": "de:barres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-l-abricot", + "products": 10, + "id": "fr:nonnettes-a-l-abricot", + "name": "Nonnettes-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epeautres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q158767" + ], + "id": "en:spelts", + "name": "Épeautres", + "products": 10 + }, + { + "products": 10, + "id": "fr:crepes-au-fromage", + "name": "Crêpes au fromage", + "url": "https://fr.openfoodfacts.org/categorie/crepes-au-fromage" + }, + { + "products": 10, + "id": "en:produits-fermentes", + "name": "en:Produits-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/en:produits-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-fraise", + "name": "Glaces à la fraise", + "id": "en:strawberry-ice-cream-tubs", + "products": 10 + }, + { + "id": "fr:saint-paulin", + "name": "Saint-paulin", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/saint-paulin" + }, + { + "products": 10, + "id": "fr:brandades", + "name": "Brandades", + "url": "https://fr.openfoodfacts.org/categorie/brandades" + }, + { + "products": 10, + "id": "en:cloves", + "name": "Clou de girofle", + "sameAs": [ + "https://www.wikidata.org/wiki/Q26736" + ], + "url": "https://fr.openfoodfacts.org/categorie/clou-de-girofle" + }, + { + "id": "en:gray-peppers", + "name": "Poivres gris", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/poivres-gris" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-japonaises", + "name": "Nouilles-japonaises", + "id": "fr:nouilles-japonaises", + "products": 10 + }, + { + "products": 10, + "id": "fr:congolais-au-chocolat", + "name": "Congolais-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/congolais-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-cassis", + "name": "Compotes pommes cassis", + "id": "fr:compotes-pommes-cassis", + "products": 10 + }, + { + "products": 10, + "name": "Poulpes", + "id": "fr:poulpes", + "url": "https://fr.openfoodfacts.org/categorie/poulpes" + }, + { + "products": 10, + "name": "Piperades", + "id": "fr:piperades", + "url": "https://fr.openfoodfacts.org/categorie/piperades" + }, + { + "id": "fr:compotes-d-abricot", + "name": "Compotes d'abricot", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/compotes-d-abricot" + }, + { + "products": 10, + "id": "en:sushi-rice", + "name": "Riz pour sushi", + "url": "https://fr.openfoodfacts.org/categorie/riz-pour-sushi" + }, + { + "products": 10, + "name": "Cafes-en-grains", + "id": "fr:cafes-en-grains", + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-espagnols", + "products": 10, + "id": "fr:miels-espagnols", + "name": "Miels-espagnols" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-pimentees", + "name": "Sauces tomates pimentees", + "id": "fr:sauces-tomates-pimentees", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-groseilles", + "products": 10, + "id": "en:redcurrants-jams", + "name": "Confitures de groseilles" + }, + { + "name": "Pizzas-au-saumon", + "id": "fr:pizzas-au-saumon", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-saumon" + }, + { + "products": 10, + "name": "en:Flocons-de-cereales", + "id": "en:flocons-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/en:flocons-de-cereales" + }, + { + "products": 10, + "id": "en:apricot-coulis", + "name": "Coulis d'abricot", + "url": "https://fr.openfoodfacts.org/categorie/coulis-d-abricot" + }, + { + "id": "de:fruits-a-coques-et-derives", + "name": "de:Fruits-a-coques-et-derives", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-a-coques-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits", + "products": 10, + "name": "Kits", + "id": "fr:kits" + }, + { + "name": "Boulettes", + "id": "fr:boulettes", + "products": 10, + "url": "https://fr.openfoodfacts.org/categorie/boulettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-legumes", + "products": 10, + "id": "fr:pizzas-aux-legumes", + "name": "Pizzas-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-rotis", + "sameAs": [ + "https://www.wikidata.org/wiki/Q899640" + ], + "products": 10, + "id": "en:roast-chicken", + "name": "Poulets rôtis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-de-fromage", + "name": "Des-de-fromage", + "id": "fr:des-de-fromage", + "products": 10 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pale-ale", + "products": 10, + "name": "Pale-ale", + "id": "fr:pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-complets", + "name": "Sucres complets", + "id": "fr:sucres-complets", + "products": 10 + }, + { + "products": 9, + "name": "Foie-gras-de-canard-entier", + "id": "fr:foie-gras-de-canard-entier", + "url": "https://fr.openfoodfacts.org/categorie/foie-gras-de-canard-entier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/repas-a-boire", + "products": 9, + "name": "Repas-a-boire", + "id": "fr:repas-a-boire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-amandes", + "id": "en:almonds-spreads", + "name": "Pâtes à tartiner aux amandes", + "products": 9 + }, + { + "name": "Bieres-americaines", + "id": "fr:bieres-americaines", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/bieres-americaines" + }, + { + "name": "Kéfir", + "id": "en:kefir", + "products": 9, + "sameAs": [ + "https://www.wikidata.org/wiki/Q185749" + ], + "url": "https://fr.openfoodfacts.org/categorie/kefir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-brebis", + "id": "fr:laits-de-brebis", + "name": "Laits de brebis", + "products": 9 + }, + { + "products": 9, + "id": "fr:gateaux-aux-chataignes", + "name": "Gateaux-aux-chataignes", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-chataignes" + }, + { + "products": 9, + "id": "en:einkorn-wheat-flours", + "name": "Farines de Petit Épeautre", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-petit-epeautre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q259438" + ], + "url": "https://fr.openfoodfacts.org/categorie/millet", + "products": 9, + "id": "en:millet", + "name": "Millet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates-alimentaires", + "name": "it:Pates-alimentaires", + "id": "it:pates-alimentaires", + "products": 9 + }, + { + "products": 9, + "name": "Pommes séchées", + "id": "en:dried-apples", + "url": "https://fr.openfoodfacts.org/categorie/pommes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-crus", + "products": 9, + "id": "en:raw-fishes", + "name": "Poissons crus" + }, + { + "name": "Tartes aux framboises", + "id": "en:raspberry-pies", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-framboises" + }, + { + "name": "Gelées de goyave", + "id": "en:guavas-jellies", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-goyave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-acidules", + "products": 9, + "name": "Bonbons-acidules", + "id": "fr:bonbons-acidules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-glaces", + "products": 9, + "name": "en:Desserts-glaces", + "id": "en:desserts-glaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/diot-de-savoie", + "name": "Diot de Savoie", + "id": "fr:diot-de-savoie", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/smoothies-aux-fruits", + "id": "en:fruit-smoothies", + "name": "Smoothies aux fruits", + "products": 9 + }, + { + "products": 9, + "name": "Sauces nantua", + "id": "fr:sauces-nantua", + "url": "https://fr.openfoodfacts.org/categorie/sauces-nantua" + }, + { + "products": 9, + "id": "fr:nectars-de-fraise", + "name": "Nectars-de-fraise", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-fraise" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q49737" + ], + "url": "https://fr.openfoodfacts.org/categorie/barbes-a-papa", + "id": "en:cotton-candy", + "name": "Barbes à papa", + "products": 9 + }, + { + "products": 9, + "id": "de:boissons-sucrees", + "name": "de:Boissons-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-sucrees" + }, + { + "name": "Pâtés de tête", + "id": "en:head-cheese", + "products": 9, + "sameAs": [ + "https://www.wikidata.org/wiki/Q4675762" + ], + "url": "https://fr.openfoodfacts.org/categorie/pates-de-tete" + }, + { + "name": "Produits-grecs", + "id": "fr:produits-grecs", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/produits-grecs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-legumes-bio", + "name": "Bouillons-de-legumes-bio", + "id": "fr:bouillons-de-legumes-bio", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-prepares", + "products": 9, + "id": "fr:haricots-prepares", + "name": "Haricots préparés" + }, + { + "products": 9, + "name": "Galettes d'avoine", + "id": "en:puffed-oat-cakes", + "url": "https://fr.openfoodfacts.org/categorie/galettes-d-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-noirs", + "name": "de:Chocolats-noirs", + "id": "de:chocolats-noirs", + "products": 9 + }, + { + "products": 9, + "name": "Vegetarien", + "id": "fr:vegetarien", + "url": "https://fr.openfoodfacts.org/categorie/vegetarien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/citron-confit", + "products": 9, + "name": "Citron confit", + "id": "fr:citron-confit" + }, + { + "id": "fr:sauces-sucrees", + "name": "Sauces-sucrees", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/sauces-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-brioches", + "products": 9, + "name": "Pains-de-mie-brioches", + "id": "fr:pains-de-mie-brioches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/encornets", + "products": 9, + "id": "fr:encornets", + "name": "Encornets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouchees", + "name": "Bouchees", + "id": "fr:bouchees", + "products": 9 + }, + { + "id": "fr:ristes-d-aubergines", + "name": "Ristes-d-aubergines", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/ristes-d-aubergines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-a-la-myrtille", + "id": "en:blueberry-muffins", + "name": "Muffins à la myrtille", + "products": 9 + }, + { + "products": 9, + "name": "Herbes", + "id": "fr:herbes", + "url": "https://fr.openfoodfacts.org/categorie/herbes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3460601" + ], + "url": "https://fr.openfoodfacts.org/categorie/sable-de-camargue", + "id": "fr:sable-de-camargue", + "name": "Sable de Camargue", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-chocolat", + "products": 9, + "id": "fr:sauces-au-chocolat", + "name": "Sauces-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-de-merlan", + "id": "en:breaded-whiting", + "name": "Poissons panés de merlan", + "products": 9 + }, + { + "name": "Limandes", + "id": "fr:limandes", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/limandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-a-la-vanille", + "products": 9, + "id": "fr:cereales-a-la-vanille", + "name": "Cereales-a-la-vanille" + }, + { + "products": 9, + "id": "en:sauces-tomate", + "name": "en:Sauces-tomate", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-tomate" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q153697" + ], + "url": "https://fr.openfoodfacts.org/categorie/grains-de-cafe", + "products": 9, + "id": "en:coffee-beans", + "name": "Grains de café" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-aux-fruits", + "name": "Fromages-frais-aux-fruits", + "id": "fr:fromages-frais-aux-fruits", + "products": 9 + }, + { + "name": "Flageolets", + "id": "fr:flageolets", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/flageolets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sprits", + "id": "fr:sprits", + "name": "Sprits", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruhstucke", + "id": "fr:fruhstucke", + "name": "Fruhstucke", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-carottes", + "name": "Veloutés de carottes", + "id": "en:cream-of-carrot-soups", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-poule", + "id": "fr:bouillons-de-poule", + "name": "Bouillons-de-poule", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-aux-fruits", + "name": "en:Sodas-aux-fruits", + "id": "en:sodas-aux-fruits", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-chocolatees", + "products": 9, + "id": "en:barres-chocolatees", + "name": "en:Barres-chocolatees" + }, + { + "products": 9, + "name": "Sandwichs au chèvre", + "id": "en:goat-cheese-sandwiches", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-natures", + "name": "Yaourts soja natures", + "id": "en:plain-soy-yogurts", + "products": 9 + }, + { + "products": 9, + "id": "en:wasabi-pastes", + "name": "Pâtes au wasabi", + "url": "https://fr.openfoodfacts.org/categorie/pates-au-wasabi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/accras-de-morue", + "id": "fr:accras-de-morue", + "name": "Accras-de-morue", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pecorino-romano", + "products": 9, + "id": "fr:pecorino-romano", + "name": "Pecorino-romano" + }, + { + "id": "fr:preparation-pour-pain", + "name": "Preparation-pour-pain", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pain" + }, + { + "name": "Choux à la crème pâtissière", + "id": "fr:choux-a-la-creme-patissiere", + "products": 9, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2513811" + ], + "url": "https://fr.openfoodfacts.org/categorie/choux-a-la-creme-patissiere" + }, + { + "id": "fr:mousses-de-foies-de-volailles", + "name": "Mousses de foies de volailles", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-foies-de-volailles" + }, + { + "name": "Allumettes-de-lardons", + "id": "fr:allumettes-de-lardons", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-lardons" + }, + { + "id": "en:aubergines", + "name": "Aubergines", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/aubergines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tisanes-bio", + "id": "fr:tisanes-bio", + "name": "Tisanes-bio", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kekse", + "name": "Kekse", + "id": "fr:kekse", + "products": 9 + }, + { + "products": 9, + "id": "fr:confits", + "name": "Confits", + "url": "https://fr.openfoodfacts.org/categorie/confits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-legumes", + "id": "fr:galettes-de-legumes", + "name": "Galettes-de-legumes", + "products": 9 + }, + { + "products": 9, + "id": "fr:allumettes-de-dinde", + "name": "Allumettes de dinde", + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t150", + "products": 9, + "name": "Farines de blé type T150", + "id": "en:whole-wheat-flours" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plant-based-ice-creams", + "products": 9, + "name": "Plant-based ice creams", + "id": "en:plant-based-ice-creams" + }, + { + "name": "Yaourts au bifidus aromatisé", + "id": "fr:yaourts-au-bifidus-aromatise", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-bifidus-aromatise" + }, + { + "id": "en:soupes", + "name": "en:Soupes", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/en:soupes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/langue-de-boeuf-sauce-piquante", + "products": 9, + "id": "en:tongue-of-beef-with-hot-sauce", + "name": "Langue de bœuf sauce piquante" + }, + { + "products": 9, + "name": "Cacahuetes-sucrees", + "id": "fr:cacahuetes-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jus-et-nectars-de-fruits", + "name": "de:Jus-et-nectars-de-fruits", + "id": "de:jus-et-nectars-de-fruits", + "products": 9 + }, + { + "id": "fr:bacons-de-dindes", + "name": "Bacons de dindes", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/bacons-de-dindes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q127849" + ], + "url": "https://fr.openfoodfacts.org/categorie/tilleul", + "id": "en:limeflower-tea", + "name": "Tilleul", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-deshydrates", + "id": "es:produits-deshydrates", + "name": "es:Produits-deshydrates", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:india-pale-ale", + "name": "en:India-pale-ale", + "id": "en:india-pale-ale", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porridges", + "name": "Porridges", + "id": "fr:porridges", + "products": 9 + }, + { + "products": 9, + "id": "fr:moutardes-aux-noix", + "name": "Moutardes-aux-noix", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:glaces", + "name": "en:Glaces", + "id": "en:glaces", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-soja-sucrees", + "products": 9, + "id": "fr:sauces-au-soja-sucrees", + "name": "Sauces au soja sucrées" + }, + { + "id": "fr:saumons-sauvages", + "name": "Saumons-sauvages", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/saumons-sauvages" + }, + { + "products": 9, + "name": "Beaujolais nouveau", + "id": "fr:beaujolais-nouveau", + "url": "https://fr.openfoodfacts.org/categorie/beaujolais-nouveau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vins-italiens", + "id": "it:vins-italiens", + "name": "it:Vins-italiens", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-gatinais", + "name": "Miels du Gâtinais", + "id": "fr:miels-du-gatinais", + "products": 9 + }, + { + "name": "Pains-au-lait-aux-oeufs-frais", + "id": "fr:pains-au-lait-aux-oeufs-frais", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/pains-au-lait-aux-oeufs-frais" + }, + { + "products": 9, + "name": "Laits de soja naturel avec du sucre", + "id": "en:sweetened-natural-soy-milks", + "url": "https://fr.openfoodfacts.org/categorie/laits-de-soja-naturel-avec-du-sucre" + }, + { + "name": "de:Snacks-sales", + "id": "de:snacks-sales", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/de:snacks-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-l-huitre", + "products": 9, + "name": "Sauces à l'huitre", + "id": "en:oyster-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-basques", + "name": "Gateaux-basques", + "id": "fr:gateaux-basques", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-porc-cuits", + "products": 9, + "id": "fr:rotis-de-porc-cuits", + "name": "Rotis-de-porc-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brocciu-corse", + "products": 9, + "name": "Brocciu Corse", + "id": "fr:brocciu-corse" + }, + { + "products": 9, + "id": "fr:digestifs", + "name": "Digestifs", + "url": "https://fr.openfoodfacts.org/categorie/digestifs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-tartiner-a-base-de-poisson", + "products": 9, + "name": "Preparations-a-tartiner-a-base-de-poisson", + "id": "fr:preparations-a-tartiner-a-base-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rocamadour", + "products": 9, + "name": "Rocamadour", + "id": "fr:rocamadour" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-la-foret-noire", + "products": 9, + "id": "fr:jambons-de-la-foret-noire", + "name": "Jambons de la Forêt Noire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cacahuetes", + "products": 9, + "id": "en:peanut-bars", + "name": "Barres de cacahuètes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/clairette-de-die", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1094848" + ], + "name": "Clairette de Die", + "id": "fr:clairette-de-die", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-fruit-de-la-passion", + "id": "en:passion-fruit-nectars", + "name": "Nectars de fruit de la passion", + "products": 9 + }, + { + "name": "Eaux-gazeuses-aromatisees", + "id": "fr:eaux-gazeuses-aromatisees", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/eaux-gazeuses-aromatisees" + }, + { + "id": "fr:pintades", + "name": "Pintades", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/pintades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner", + "products": 9, + "name": "de:Pates-a-tartiner", + "id": "de:pates-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-ananas", + "products": 9, + "name": "Compotes pommes ananas", + "id": "fr:compotes-pommes-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner-vegetales", + "id": "de:pates-a-tartiner-vegetales", + "name": "de:Pates-a-tartiner-vegetales", + "products": 9 + }, + { + "name": "Nids-d-alsace", + "id": "fr:nids-d-alsace", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/nids-d-alsace" + }, + { + "id": "fr:crevettes-nordiques", + "name": "Crevettes nordiques", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-nordiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-noires", + "products": 9, + "id": "en:black-lentils", + "name": "Lentilles noires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puddings-de-noel", + "sameAs": [ + "https://www.wikidata.org/wiki/Q852576" + ], + "id": "en:christmas-puddings", + "name": "Puddings de Noël", + "products": 9 + }, + { + "id": "en:young-gouda", + "name": "Goudas jeunes", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/goudas-jeunes" + }, + { + "id": "en:frozen-baked-potatoes", + "name": "Pommes de terre cuites surgelées", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-cuites-surgelees" + }, + { + "name": "Jambons-italiens", + "id": "fr:jambons-italiens", + "products": 9, + "url": "https://fr.openfoodfacts.org/categorie/jambons-italiens" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q743144" + ], + "url": "https://fr.openfoodfacts.org/categorie/coeurs-de-palmier", + "products": 9, + "name": "Coeurs de palmier", + "id": "en:hearts-of-palm" + }, + { + "products": 9, + "id": "en:charlotte-potatoes", + "name": "Pommes de terre Charlotte", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-charlotte", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1067085" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1150979" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-bourg", + "name": "Côtes-de-bourg", + "id": "fr:cotes-de-bourg", + "products": 9 + }, + { + "products": 9, + "name": "Safran", + "id": "en:saffron", + "sameAs": [ + "https://www.wikidata.org/wiki/Q25434" + ], + "url": "https://fr.openfoodfacts.org/categorie/safran" + }, + { + "products": 9, + "id": "fr:fleurs-de-sel-de-guerande", + "name": "Fleurs de sel de Guérande", + "url": "https://fr.openfoodfacts.org/categorie/fleurs-de-sel-de-guerande" + }, + { + "products": 9, + "id": "fr:melanges-de-graines", + "name": "Melanges-de-graines", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-millesimees", + "name": "Sardines-millesimees", + "id": "fr:sardines-millesimees", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-legumes-en-poudre", + "name": "Bouillons de légumes en poudre", + "id": "en:vegetable-bouillon-powders", + "products": 9 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-miel-et-propolis", + "products": 8, + "id": "en:blends-of-honey-and-propolis", + "name": "Mélanges de miel et propolis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mandarines", + "products": 8, + "id": "fr:confitures-de-mandarines", + "name": "Confitures de mandarines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-corse", + "products": 8, + "name": "Miels de Corse", + "id": "en:honey-of-corsica" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-canadiennes", + "products": 8, + "name": "Bieres-canadiennes", + "id": "fr:bieres-canadiennes" + }, + { + "products": 8, + "id": "en:non-dairy-cheeses", + "name": "Fromages végétaux", + "url": "https://fr.openfoodfacts.org/categorie/fromages-vegetaux" + }, + { + "products": 8, + "id": "fr:sauces-tomates-au-parmesan", + "name": "Sauces tomates au parmesan", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-au-parmesan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-haches-surgeles", + "products": 8, + "name": "Oignons hachés surgelés", + "id": "en:frozen-chopped-onions" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:cereales-et-pommes-de-terre", + "products": 8, + "id": "it:cereales-et-pommes-de-terre", + "name": "it:Cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-alcoolisees", + "products": 8, + "id": "it:boissons-alcoolisees", + "name": "it:Boissons-alcoolisees" + }, + { + "id": "fr:kits-repas", + "name": "Kits-repas", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/kits-repas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-fourres-a-la-framboise", + "id": "fr:beignets-fourres-a-la-framboise", + "name": "Beignets-fourres-a-la-framboise", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farfalles-de-ble-dur", + "products": 8, + "name": "Farfalles de blé dur", + "id": "es:farfalle-de-trigo-duro" + }, + { + "id": "en:nectarines", + "name": "Nectarines", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/nectarines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-du-nord-pas-de-calais", + "name": "Confiseries du Nord-Pas-de-Calais", + "id": "en:confectioneries-of-nord-pas-de-calais", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-bruyere", + "products": 8, + "name": "Miels de bruyère", + "id": "fr:miels-de-bruyere" + }, + { + "name": "de:Flocons-de-cereales", + "id": "de:flocons-de-cereales", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/de:flocons-de-cereales" + }, + { + "products": 8, + "id": "en:epices", + "name": "en:Epices", + "url": "https://fr.openfoodfacts.org/categorie/en:epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-a-la-reglisse", + "products": 8, + "name": "Bonbons-a-la-reglisse", + "id": "fr:bonbons-a-la-reglisse" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q7818540" + ], + "url": "https://fr.openfoodfacts.org/categorie/fried-tomato-sauces", + "products": 8, + "name": "Fried tomato sauces", + "id": "en:fried-tomato-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerf", + "products": 8, + "name": "Cerf", + "id": "fr:cerf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:frais", + "products": 8, + "id": "en:frais", + "name": "en:Frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:complements-pour-le-bodybuilding", + "products": 8, + "id": "en:complements-pour-le-bodybuilding", + "name": "en:Complements-pour-le-bodybuilding" + }, + { + "name": "Germes de céréales", + "id": "en:cereal-germs", + "products": 8, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1641345" + ], + "url": "https://fr.openfoodfacts.org/categorie/germes-de-cereales" + }, + { + "id": "fr:bieres-de-haute-fermentation", + "name": "Bieres-de-haute-fermentation", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-haute-fermentation" + }, + { + "id": "en:chocolate-stuffed-wafers", + "name": "Gaufrettes fourrées au chocolat", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-cheval-fraiche", + "name": "Viande de cheval fraîche", + "id": "en:horse-fresh-meat", + "products": 8 + }, + { + "products": 8, + "id": "en:green-curry-pastes", + "name": "Pâtes de curry verte", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-curry-verte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anti-agglomerants", + "sameAs": [ + "https://www.wikidata.org/wiki/Q726460" + ], + "products": 8, + "name": "Anti-agglomérants", + "id": "en:anticaking-agents" + }, + { + "products": 8, + "id": "fr:penne-au-poulet", + "name": "Penne-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/penne-au-poulet" + }, + { + "name": "Chouquettes", + "id": "en:chouquettes", + "products": 8, + "sameAs": [ + "https://www.wikidata.org/wiki/Q9167992" + ], + "url": "https://fr.openfoodfacts.org/categorie/chouquettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-a-l-huile-d-olive", + "id": "en:potato-crisps-in-olive-oil", + "name": "Chips de pommes de terre à l'huile d'olive", + "products": 8 + }, + { + "products": 8, + "id": "en:chinese-egg-noodles", + "name": "Nouilles chinoises aux oeufs", + "url": "https://fr.openfoodfacts.org/categorie/nouilles-chinoises-aux-oeufs" + }, + { + "products": 8, + "id": "de:aperitif", + "name": "de:Aperitif", + "url": "https://fr.openfoodfacts.org/categorie/de:aperitif" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-caramel", + "name": "Creme-de-caramel", + "id": "fr:creme-de-caramel", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:melanges-de-flocons-de-cereales", + "products": 8, + "id": "de:melanges-de-flocons-de-cereales", + "name": "de:Melanges-de-flocons-de-cereales" + }, + { + "id": "fr:garnitures-pour-bouchees-a-la-reine", + "name": "Garnitures-pour-bouchees-a-la-reine", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/garnitures-pour-bouchees-a-la-reine" + }, + { + "products": 8, + "id": "fr:salades-de-fruits-de-mer", + "name": "Salades-de-fruits-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-fruits-de-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:streichfette", + "name": "de:Streichfette", + "id": "de:streichfette", + "products": 8 + }, + { + "name": "Frites-au-four", + "id": "fr:frites-au-four", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/frites-au-four" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q390823" + ], + "url": "https://fr.openfoodfacts.org/categorie/burritos", + "products": 8, + "id": "en:burritos", + "name": "Burritos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-crevettes", + "products": 8, + "id": "fr:plats-a-base-de-crevettes", + "name": "Plats-a-base-de-crevettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-sables", + "products": 8, + "id": "en:biscuits-sables", + "name": "en:Biscuits-sables" + }, + { + "products": 8, + "name": "Blancs-d-oeufs", + "id": "fr:blancs-d-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/blancs-d-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bicarbonates-de-sodium", + "sameAs": [ + "https://www.wikidata.org/wiki/Q179731" + ], + "products": 8, + "name": "Bicarbonates de sodium", + "id": "en:bicarbonates-of-soda" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-d-epeautre", + "id": "en:spelt-milks", + "name": "Boissons végétales d'épeautre", + "products": 8 + }, + { + "products": 8, + "id": "de:matieres-grasses", + "name": "de:Matieres-grasses", + "url": "https://fr.openfoodfacts.org/categorie/de:matieres-grasses" + }, + { + "id": "en:dessert-wines", + "name": "Vins liquoreux", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/vins-liquoreux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1200945" + ] + }, + { + "products": 8, + "id": "fr:truites-fumees-elevees-en-france", + "name": "Truites-fumees-elevees-en-france", + "url": "https://fr.openfoodfacts.org/categorie/truites-fumees-elevees-en-france" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-blanches", + "products": 8, + "name": "Pates-seches-blanches", + "id": "fr:pates-seches-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-l-oseille", + "products": 8, + "id": "fr:colins-d-alaska-a-l-oseille", + "name": "Colins-d-alaska-a-l-oseille" + }, + { + "products": 8, + "id": "fr:mogettes", + "name": "Mogettes", + "url": "https://fr.openfoodfacts.org/categorie/mogettes" + }, + { + "name": "Laits-de-soja-naturel-sans-sucre", + "id": "fr:laits-de-soja-naturel-sans-sucre", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/laits-de-soja-naturel-sans-sucre" + }, + { + "products": 8, + "name": "Jus de canneberge", + "id": "en:cranberry-juice", + "sameAs": [ + "https://www.wikidata.org/wiki/Q865448" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-canneberge" + }, + { + "name": "Chocolats-noirs-fourres-a-la-pate-d-amande", + "id": "fr:chocolats-noirs-fourres-a-la-pate-d-amande", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-a-la-pate-d-amande" + }, + { + "products": 8, + "id": "de:bieres-allemandes", + "name": "de:Bieres-allemandes", + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-allemandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-en-croute", + "products": 8, + "id": "fr:pate-en-croute", + "name": "Pate-en-croute" + }, + { + "name": "Pizzas-fraiches", + "id": "fr:pizzas-fraiches", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caviars-d-elevage", + "products": 8, + "id": "en:farmed-caviars", + "name": "Caviars d'élevage" + }, + { + "products": 8, + "id": "fr:macedoines-de-legumes-preparees", + "name": "Macedoines-de-legumes-preparees", + "url": "https://fr.openfoodfacts.org/categorie/macedoines-de-legumes-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fleurs", + "id": "en:flower-jams", + "name": "Confitures de fleurs", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cepes", + "name": "Cepes", + "id": "fr:cepes", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-porc", + "name": "Saucisses-de-porc", + "id": "fr:saucisses-de-porc", + "products": 8 + }, + { + "products": 8, + "id": "en:apricot-cereal-bars", + "name": "Barres de céréales à l'abricot", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-l-abricot" + }, + { + "products": 8, + "id": "en:black-pudding-with-appel", + "name": "Boudins noirs aux pommes", + "url": "https://fr.openfoodfacts.org/categorie/boudins-noirs-aux-pommes" + }, + { + "id": "fr:fromages-frais-sucres", + "name": "Fromages-frais-sucres", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-sucres" + }, + { + "id": "fr:ovo-produits", + "name": "Ovo-produits", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/ovo-produits" + }, + { + "products": 8, + "id": "fr:bergerac", + "name": "Bergerac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2897083" + ], + "url": "https://fr.openfoodfacts.org/categorie/bergerac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-d-alsace", + "name": "Spaghetti-d-alsace", + "id": "fr:spaghetti-d-alsace", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/millefeuilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q12491" + ], + "id": "fr:millefeuilles", + "name": "Millefeuilles", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fricandelles", + "name": "Fricandelles", + "id": "fr:fricandelles", + "products": 8 + }, + { + "name": "Sauces-surgelees", + "id": "fr:sauces-surgelees", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/sauces-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-truite", + "name": "Oeufs-de-truite", + "id": "fr:oeufs-de-truite", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-cerise", + "name": "Sirops de cerise", + "id": "en:cherry-syrups", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:flocons", + "name": "de:Flocons", + "id": "de:flocons", + "products": 8 + }, + { + "id": "de:jus-de-fruits", + "name": "de:Jus-de-fruits", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-mozzarella", + "products": 8, + "name": "Sandwichs à la mozzarella", + "id": "en:mozzarella-sandwiches" + }, + { + "products": 8, + "id": "fr:gaufrettes-au-chocolat", + "name": "Gaufrettes-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-au-chocolat" + }, + { + "products": 8, + "name": "Yaourts-brasses-a-la-myrtille", + "id": "fr:yaourts-brasses-a-la-myrtille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-a-la-myrtille" + }, + { + "products": 8, + "name": "Pomélos", + "id": "en:grapefruits", + "url": "https://fr.openfoodfacts.org/categorie/pomelos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laitues-iceberg", + "products": 8, + "name": "Laitues-iceberg", + "id": "fr:laitues-iceberg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-canard", + "products": 8, + "id": "fr:pates-de-canard", + "name": "Pates-de-canard" + }, + { + "products": 8, + "id": "en:coffee-eclairs", + "name": "Éclairs au café", + "url": "https://fr.openfoodfacts.org/categorie/eclairs-au-cafe" + }, + { + "products": 8, + "name": "en:Confitures-et-marmelades", + "id": "en:confitures-et-marmelades", + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-et-marmelades" + }, + { + "products": 8, + "id": "fr:allumettes-de-porc-fumees", + "name": "Allumettes-de-porc-fumees", + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-porc-fumees" + }, + { + "products": 8, + "id": "en:miniature-asparagus", + "name": "Asperges miniatures", + "url": "https://fr.openfoodfacts.org/categorie/asperges-miniatures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-cocos-blancs", + "name": "Haricots cocos blancs", + "id": "en:coco-white-beans", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t110", + "products": 8, + "name": "Farines de blé type T110", + "id": "fr:farines-de-ble-type-t110" + }, + { + "name": "Galettes de maïs au chocolat noir", + "id": "en:puffed-corn-cakes-with-black-chocolate", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-mais-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-roquefort", + "products": 8, + "id": "en:roquefort-sauces", + "name": "Sauces au roquefort" + }, + { + "name": "es:Conserves", + "id": "es:conserves", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/es:conserves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-noix", + "name": "Gateaux-aux-noix", + "id": "fr:gateaux-aux-noix", + "products": 8 + }, + { + "products": 8, + "name": "Airelles", + "id": "fr:airelles", + "url": "https://fr.openfoodfacts.org/categorie/airelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/capellini", + "products": 8, + "id": "fr:capellini", + "name": "Capellini" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q470974" + ], + "url": "https://fr.openfoodfacts.org/categorie/fitou", + "products": 8, + "id": "fr:fitou", + "name": "Fitou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blaye-cotes-de-bordeaux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2655967" + ], + "id": "fr:blaye-cotes-de-bordeaux", + "name": "Blaye-Côtes-de-Bordeaux", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rouilles", + "name": "Rouilles", + "id": "fr:rouilles", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-saumon", + "id": "en:salmon-terrine", + "name": "Terrines de saumon", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-chataignes", + "name": "Farines de châtaignes", + "id": "en:chestnut-flours", + "products": 8 + }, + { + "products": 8, + "id": "en:puffed-multigrain-cakes", + "name": "Galettes multicéréales", + "url": "https://fr.openfoodfacts.org/categorie/galettes-multicereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-dauphinois", + "products": 8, + "name": "Gateaux-dauphinois", + "id": "fr:gateaux-dauphinois" + }, + { + "products": 8, + "id": "fr:cremes-dessert-cafe", + "name": "Cremes-dessert-cafe", + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-cafe" + }, + { + "name": "Risottos au poulet", + "id": "en:chicken-risottos", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/risottos-au-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-a-garnir", + "products": 8, + "name": "Feuilletes-a-garnir", + "id": "fr:feuilletes-a-garnir" + }, + { + "name": "Preparation", + "id": "fr:preparation", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/preparation" + }, + { + "id": "es:boissons-aux-fruits", + "name": "es:Boissons-aux-fruits", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:snacks-sales", + "name": "es:Snacks-sales", + "id": "es:snacks-sales", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-abricot-aux-amandes", + "products": 8, + "name": "Confitures-d-abricot-aux-amandes", + "id": "fr:confitures-d-abricot-aux-amandes" + }, + { + "products": 8, + "name": "Noix de coco sèches", + "id": "en:dried-coconut", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-coco-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-fruits-exotiques", + "id": "en:sodas-with-exotic-fruits", + "name": "Sodas aux fruits exotiques", + "products": 8 + }, + { + "id": "fr:reglisse", + "name": "Reglisse", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/reglisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-volaille", + "name": "Foies-de-volaille", + "id": "fr:foies-de-volaille", + "products": 8 + }, + { + "id": "fr:chocolats-blancs-aux-amandes", + "name": "Chocolats-blancs-aux-amandes", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aux-amandes" + }, + { + "products": 8, + "name": "Rotis-de-poulet", + "id": "fr:rotis-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-destines-aux-professionnels", + "name": "Produits-destines-aux-professionnels", + "id": "fr:produits-destines-aux-professionnels", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/camemberts-au-lait-thermise", + "id": "en:camemberts-from-thermized-milk", + "name": "Camemberts au lait thermisé", + "products": 8 + }, + { + "products": 8, + "name": "Chocolats-au-lait-au-riz", + "id": "fr:chocolats-au-lait-au-riz", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-aux-champignons", + "name": "Tourtes aux champignons", + "id": "en:mushroom-pies", + "products": 8 + }, + { + "id": "fr:pates-a-base-de-petit-epeautre", + "name": "Pâtes à base de Petit Épeautre", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-base-de-petit-epeautre" + }, + { + "id": "en:cremes-glacees", + "name": "en:Cremes-glacees", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-glacees" + }, + { + "id": "fr:broyes", + "name": "Broyes", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/broyes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q474278" + ], + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-rivesaltes", + "products": 8, + "name": "Muscat de Rivesaltes", + "id": "fr:muscat-de-rivesaltes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-nicoises", + "products": 8, + "id": "fr:salades-nicoises", + "name": "Salades nicoises" + }, + { + "id": "en:gnocchi-of-durum-wheat-semolina", + "name": "Gnocchi de semoule de blé dur", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/gnocchi-de-semoule-de-ble-dur" + }, + { + "products": 8, + "id": "fr:concombres-a-la-creme", + "name": "Concombres-a-la-creme", + "url": "https://fr.openfoodfacts.org/categorie/concombres-a-la-creme" + }, + { + "id": "fr:picodon", + "name": "Picodon", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/picodon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orge", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11577" + ], + "products": 8, + "name": "Orge", + "id": "en:barley" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-rouges-en-conserve", + "name": "Poivrons rouges en conserve", + "id": "en:canned-red-peppers", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bebidas", + "products": 8, + "id": "fr:bebidas", + "name": "Bebidas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/falafel-refrigeres", + "id": "en:refrigerated-falafel", + "name": "Falafel réfrigérés", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-d-aubergine", + "products": 8, + "name": "Gratins d'aubergine", + "id": "en:eggplant-gratin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-framboise", + "id": "en:iced-teas-with-raspberry-flavor", + "name": "Thés glacés saveur framboise", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-aux-raisins", + "products": 8, + "id": "en:madeleines-with-raisin", + "name": "Madeleines aux raisins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-de-ble-dur", + "id": "en:durum-wheat-penne", + "name": "Penne de blé dur", + "products": 8 + }, + { + "name": "Crepes-au-jambon", + "id": "fr:crepes-au-jambon", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/crepes-au-jambon" + }, + { + "products": 8, + "name": "Menthe", + "id": "en:mint", + "sameAs": [ + "https://www.wikidata.org/wiki/Q47859" + ], + "url": "https://fr.openfoodfacts.org/categorie/menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bulots", + "id": "fr:bulots", + "name": "Bulots", + "products": 8 + }, + { + "name": "Aliments-et-boissons-de-paques", + "id": "fr:aliments-et-boissons-de-paques", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-de-paques" + }, + { + "id": "fr:mochis", + "name": "Mochis", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/mochis" + }, + { + "id": "fr:poissons-panes-de-merlu", + "name": "Poissons panés de merlu", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-de-merlu" + }, + { + "products": 8, + "id": "fr:calmars", + "name": "Calmars", + "url": "https://fr.openfoodfacts.org/categorie/calmars" + }, + { + "id": "en:turkey-sausages", + "name": "Saucisses de dinde", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rouleaux-de-printemps", + "name": "Rouleaux de printemps", + "id": "en:spring-rolls", + "products": 8 + }, + { + "name": "Tiefkuhl-desserts", + "id": "fr:tiefkuhl-desserts", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/tiefkuhl-desserts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gezuckerte-getranke", + "name": "Gezuckerte-getranke", + "id": "fr:gezuckerte-getranke", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/costieres-de-nimes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q470355" + ], + "products": 8, + "id": "fr:costieres-de-nimes", + "name": "Costières de Nîmes" + }, + { + "name": "Single-malts", + "id": "fr:single-malts", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/single-malts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-tomate", + "products": 8, + "name": "de:Sauces-tomate", + "id": "de:sauces-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brotaufstriche", + "products": 8, + "id": "fr:brotaufstriche", + "name": "Brotaufstriche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumineuses-et-derives", + "products": 8, + "name": "de:Legumineuses-et-derives", + "id": "de:legumineuses-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/speiseeis-und-sorbets", + "id": "fr:speiseeis-und-sorbets", + "name": "Speiseeis-und-sorbets", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/virgin-mojito", + "products": 8, + "id": "fr:virgin-mojito", + "name": "Virgin-mojito" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dessert-fruitier", + "name": "Dessert-fruitier", + "id": "fr:dessert-fruitier", + "products": 8 + }, + { + "products": 8, + "id": "en:ice-cream-sandwiches", + "name": "Sandwichs à la crème glacée", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-creme-glacee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:aliments-et-boissons-a-base-de-vegetaux", + "id": "nl:aliments-et-boissons-a-base-de-vegetaux", + "name": "nl:Aliments-et-boissons-a-base-de-vegetaux", + "products": 8 + }, + { + "name": "en:Plats-prepares-d-origine-vegetale", + "id": "en:plats-prepares-d-origine-vegetale", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-d-origine-vegetale" + }, + { + "products": 8, + "name": "Proteines-de-soja", + "id": "fr:proteines-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/proteines-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-decortiquees", + "products": 8, + "name": "Graines de courge décortiquées", + "id": "en:shelled-pumpkin-seeds" + }, + { + "products": 8, + "name": "Calvados", + "id": "fr:calvados", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3268" + ], + "url": "https://fr.openfoodfacts.org/categorie/calvados" + }, + { + "id": "fr:vins-petillant", + "name": "Vins pétillant", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/vins-petillant" + }, + { + "name": "Crozes-Hermitage", + "id": "fr:crozes-hermitage", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/crozes-hermitage" + }, + { + "products": 8, + "name": "Sauces tomates basilic", + "id": "fr:sauces-tomates-basilic", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-au-celeri", + "name": "Sels au céleri", + "id": "fr:sels-au-celeri", + "products": 8 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-ble", + "name": "Boissons végétales de blé", + "id": "en:wheat-milks", + "products": 8 + }, + { + "products": 8, + "name": "Ours gélifiés", + "id": "en:gummy-bears", + "url": "https://fr.openfoodfacts.org/categorie/ours-gelifies" + }, + { + "id": "en:energy-bars", + "name": "Energy bars", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/energy-bars" + }, + { + "products": 8, + "id": "fr:pates-de-sesame", + "name": "Pates-de-sesame", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-sesame" + }, + { + "id": "fr:rillettes-de-homard", + "name": "Rillettes de homard", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-homard" + }, + { + "name": "Stollens", + "id": "fr:stollens", + "products": 8, + "url": "https://fr.openfoodfacts.org/categorie/stollens" + }, + { + "products": 7, + "id": "fr:pieds-paquets", + "name": "Pieds-paquets", + "url": "https://fr.openfoodfacts.org/categorie/pieds-paquets" + }, + { + "id": "fr:loukoums", + "name": "Loukoums", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/loukoums" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rations-de-combat", + "products": 7, + "name": "Rations-de-combat", + "id": "fr:rations-de-combat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-myrtilles", + "products": 7, + "name": "Jus de myrtilles", + "id": "en:blueberry-juices" + }, + { + "products": 7, + "id": "fr:yaourts-a-la-mirabelle", + "name": "Yaourts-a-la-mirabelle", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-mirabelle" + }, + { + "products": 7, + "name": "Cidres-fermiers", + "id": "fr:cidres-fermiers", + "url": "https://fr.openfoodfacts.org/categorie/cidres-fermiers" + }, + { + "name": "Tartes au chocolat", + "id": "en:chocolate-pies", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-chocolat" + }, + { + "id": "fr:coteaux-du-lyonnais", + "name": "Coteaux du Lyonnais", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-lyonnais" + }, + { + "name": "Valençay (fromage)", + "id": "en:valencay-cheese", + "products": 7, + "sameAs": [ + "https://www.wikidata.org/wiki/Q659277" + ], + "url": "https://fr.openfoodfacts.org/categorie/valencay-fromage" + }, + { + "id": "en:shelled-chestnuts", + "name": "Châtaignes décortiquées", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/chataignes-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-clairs", + "name": "Miels clairs", + "id": "fr:miels-clairs", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-cassis", + "products": 7, + "name": "Gelées de cassis", + "id": "fr:gelees-de-cassis" + }, + { + "products": 7, + "name": "Miels-de-manuka", + "id": "fr:miels-de-manuka", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-manuka" + }, + { + "id": "en:carrot-soups", + "name": "Soupes de carottes", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-carottes" + }, + { + "id": "fr:fromages-aop", + "name": "Fromages-aop", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/fromages-aop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-mechouia", + "name": "Salades-mechouia", + "id": "fr:salades-mechouia", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines-a-l-huile-vegetale", + "products": 7, + "id": "fr:filets-d-anchois-marines-a-l-huile-vegetale", + "name": "Filets d'anchois marinés à l'huile végétale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:cereales-et-derives", + "name": "it:Cereales-et-derives", + "id": "it:cereales-et-derives", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/falafel-surgele", + "products": 7, + "id": "en:frozen-falafel", + "name": "Falafel surgelé" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes", + "name": "en:Thes", + "id": "en:thes", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cappuccinos", + "products": 7, + "name": "Cappuccinos", + "id": "fr:cappuccinos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-boeuf", + "name": "Brochettes de boeuf", + "id": "fr:brochettes-de-boeuf", + "products": 7 + }, + { + "name": "Chocolats-blancs-aux-noisettes", + "id": "fr:chocolats-blancs-aux-noisettes", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aux-noisettes" + }, + { + "products": 7, + "id": "fr:quartiers-de-pommes-de-terre-surgeles", + "name": "Quartiers de pommes de terre surgelés", + "url": "https://fr.openfoodfacts.org/categorie/quartiers-de-pommes-de-terre-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-brocolis", + "id": "en:mashed-broccoli", + "name": "Purées de brocolis", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fleurs", + "name": "Fleurs", + "id": "fr:fleurs", + "products": 7 + }, + { + "products": 7, + "id": "en:cashew-butters", + "name": "Purées de noix de cajou", + "sameAs": [ + "https://www.wikidata.org/wiki/Q17113213" + ], + "url": "https://fr.openfoodfacts.org/categorie/purees-de-noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-a-cuire", + "name": "Saucissons-a-cuire", + "id": "fr:saucissons-a-cuire", + "products": 7 + }, + { + "products": 7, + "name": "Reise", + "id": "fr:reise", + "url": "https://fr.openfoodfacts.org/categorie/reise" + }, + { + "name": "Minervois", + "id": "fr:minervois", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/minervois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fast-food", + "name": "Fast-food", + "id": "fr:fast-food", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/groseilles", + "products": 7, + "name": "Groseilles", + "id": "en:redcurrants" + }, + { + "products": 7, + "name": "Jambonneaux", + "id": "fr:jambonneaux", + "url": "https://fr.openfoodfacts.org/categorie/jambonneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-de-bourgogne", + "products": 7, + "id": "fr:moutardes-de-bourgogne", + "name": "Moutardes-de-bourgogne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-noisettes", + "name": "Glaces aux noisettes", + "id": "fr:glaces-aux-noisettes", + "products": 7 + }, + { + "name": "Mousses-au-chocolat-au-lait", + "id": "fr:mousses-au-chocolat-au-lait", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-chocolat-au-lait" + }, + { + "name": "en:Plats-prepares-en-conserve", + "id": "en:plats-prepares-en-conserve", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/udon", + "products": 7, + "name": "Udon", + "id": "fr:udon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-a-la-cerise", + "id": "en:cherry-beers", + "name": "Bières à la cerise", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sauces-tomate", + "name": "es:Sauces-tomate", + "id": "es:sauces-tomate", + "products": 7 + }, + { + "products": 7, + "name": "Saumons-prepares", + "id": "fr:saumons-prepares", + "url": "https://fr.openfoodfacts.org/categorie/saumons-prepares" + }, + { + "products": 7, + "id": "fr:genepi", + "name": "Genepi", + "url": "https://fr.openfoodfacts.org/categorie/genepi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sanglier", + "id": "fr:sanglier", + "name": "Sanglier", + "products": 7 + }, + { + "id": "fr:muscadet-sevre-et-maine", + "name": "Muscadet-Sèvre et Maine", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/muscadet-sevre-et-maine" + }, + { + "id": "fr:kangourou", + "name": "Kangourou", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/kangourou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-ble", + "products": 7, + "id": "en:wheat-flakes", + "name": "Flocons de blé" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/box-de-nouilles", + "products": 7, + "name": "Box de nouilles", + "id": "en:pot-noodles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-alimentaires", + "name": "en:Pates-alimentaires", + "id": "en:pates-alimentaires", + "products": 7 + }, + { + "id": "fr:coquillettes-au-ble-dur-complet", + "name": "Coquillettes-au-ble-dur-complet", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-au-ble-dur-complet" + }, + { + "name": "Thons à la Catalane", + "id": "fr:thons-a-la-catalane", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/thons-a-la-catalane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-boisson-isotonique", + "name": "Preparation-pour-boisson-isotonique", + "id": "fr:preparation-pour-boisson-isotonique", + "products": 7 + }, + { + "products": 7, + "id": "en:iced-teas-with-mango-flavor", + "name": "Thés glacés saveur mangue", + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-mangue" + }, + { + "name": "Pains au chocolat surgelés", + "id": "fr:pains-au-chocolat-surgeles", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/pains-au-chocolat-surgeles" + }, + { + "id": "fr:chabichous-du-poitou", + "name": "Chabichous du Poitou", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/chabichous-du-poitou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cailles", + "name": "Cailles", + "id": "fr:cailles", + "products": 7 + }, + { + "products": 7, + "name": "Fromages-blancs-natures", + "id": "fr:fromages-blancs-natures", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-natures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-golden", + "name": "Pommes-golden", + "id": "fr:pommes-golden", + "products": 7 + }, + { + "products": 7, + "id": "fr:chutney", + "name": "Chutney", + "url": "https://fr.openfoodfacts.org/categorie/chutney" + }, + { + "products": 7, + "id": "en:dried-nori-seaweeds", + "name": "Algues nori sèches", + "url": "https://fr.openfoodfacts.org/categorie/algues-nori-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sylvaner", + "products": 7, + "id": "fr:sylvaner", + "name": "Sylvaner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:glaces-et-sorbets", + "name": "en:Glaces-et-sorbets", + "id": "en:glaces-et-sorbets", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-d-alsace", + "products": 7, + "id": "fr:torsades-d-alsace", + "name": "Torsades-d-alsace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-aux-oeufs", + "products": 7, + "name": "Torsades-aux-oeufs", + "id": "fr:torsades-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-surgeles", + "id": "en:frozen-mixed-fruits", + "name": "Mélanges de fruits surgelés", + "products": 7 + }, + { + "name": "Soupe-de-poissons-a-la-setoise", + "id": "fr:soupe-de-poissons-a-la-setoise", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/soupe-de-poissons-a-la-setoise" + }, + { + "products": 7, + "name": "Fleisch", + "id": "fr:fleisch", + "url": "https://fr.openfoodfacts.org/categorie/fleisch" + }, + { + "products": 7, + "id": "fr:tourteaux-fromages", + "name": "Tourteaux-fromages", + "url": "https://fr.openfoodfacts.org/categorie/tourteaux-fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaetzle", + "products": 7, + "name": "Spaetzle", + "id": "fr:spaetzle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cahors", + "id": "fr:cahors", + "name": "Cahors", + "products": 7 + }, + { + "name": "Purees-de-fruits", + "id": "fr:purees-de-fruits", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-dinde", + "products": 7, + "id": "fr:lardons-de-dinde", + "name": "Lardons de dinde" + }, + { + "name": "en:Melanges-de-flocons-de-cereales", + "id": "en:melanges-de-flocons-de-cereales", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/en:melanges-de-flocons-de-cereales" + }, + { + "products": 7, + "id": "fr:gaches-de-vendee", + "name": "Gâches de Vendée", + "url": "https://fr.openfoodfacts.org/categorie/gaches-de-vendee", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1317802" + ] + }, + { + "products": 7, + "name": "Munsters au lait cru", + "id": "en:munsters-with-raw-milk", + "url": "https://fr.openfoodfacts.org/categorie/munsters-au-lait-cru" + }, + { + "products": 7, + "id": "fr:pastilles-de-vichy", + "name": "Pastilles-de-vichy", + "url": "https://fr.openfoodfacts.org/categorie/pastilles-de-vichy" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fleurs-comestibles", + "name": "Fleurs-comestibles", + "id": "fr:fleurs-comestibles", + "products": 7 + }, + { + "products": 7, + "name": "Decorations", + "id": "fr:decorations", + "url": "https://fr.openfoodfacts.org/categorie/decorations" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-strasbourgeoises", + "products": 7, + "name": "Salades-strasbourgeoises", + "id": "fr:salades-strasbourgeoises" + }, + { + "products": 7, + "name": "en:Plats-a-base-de-viande-bovine", + "id": "en:plats-a-base-de-viande-bovine", + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-viande-bovine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gateaux", + "id": "en:gateaux", + "name": "en:Gateaux", + "products": 7 + }, + { + "products": 7, + "name": "Myrtilles surgelées", + "id": "en:frozen-blueberries", + "url": "https://fr.openfoodfacts.org/categorie/myrtilles-surgelees" + }, + { + "products": 7, + "id": "en:mackerels-fillets-with-olives-and-lemon", + "name": "Filets de maquereaux citron-olive", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-citron-olive" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q45418" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-argan", + "name": "Huiles d'argan", + "id": "en:argan-oils", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-liquides", + "products": 7, + "name": "Bouillons liquides", + "id": "en:liquid-broths" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-fermiers", + "products": 7, + "name": "Poulets-fermiers", + "id": "fr:poulets-fermiers" + }, + { + "products": 7, + "id": "en:cheeses-from-corsica", + "name": "Fromages de Corse", + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-corse" + }, + { + "id": "es:cereales-pour-petit-dejeuner", + "name": "es:Cereales-pour-petit-dejeuner", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-pour-petit-dejeuner" + }, + { + "products": 7, + "name": "Chapelure de blé", + "id": "en:wheat-crumbs", + "url": "https://fr.openfoodfacts.org/categorie/chapelure-de-ble" + }, + { + "products": 7, + "id": "en:macadamia-nuts", + "name": "Noix de Macadamia", + "sameAs": [ + "https://www.wikidata.org/wiki/Q310041" + ], + "url": "https://fr.openfoodfacts.org/categorie/noix-de-macadamia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/armagnacs", + "name": "Armagnacs", + "id": "fr:armagnacs", + "products": 7 + }, + { + "products": 7, + "name": "Camomille", + "id": "en:chamomile", + "url": "https://fr.openfoodfacts.org/categorie/camomille", + "sameAs": [ + "https://www.wikidata.org/wiki/Q14169150" + ] + }, + { + "name": "Fruits à coques en conserve", + "id": "en:canned-nuts", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/fruits-a-coques-en-conserve" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1383154" + ], + "url": "https://fr.openfoodfacts.org/categorie/lussac-saint-emilion", + "id": "fr:lussac-saint-emilion", + "name": "Lussac-saint-émilion", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-la-noix-de-coco", + "products": 7, + "name": "Chocolats-au-lait-a-la-noix-de-coco", + "id": "fr:chocolats-au-lait-a-la-noix-de-coco" + }, + { + "name": "Torsettes", + "id": "fr:torsettes", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/torsettes" + }, + { + "id": "fr:coteaux-varois-en-provence", + "name": "Coteaux Varois en Provence", + "products": 7, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1136596" + ], + "url": "https://fr.openfoodfacts.org/categorie/coteaux-varois-en-provence" + }, + { + "products": 7, + "id": "de:bieres", + "name": "de:Bieres", + "url": "https://fr.openfoodfacts.org/categorie/de:bieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cocktails", + "name": "Cocktails", + "id": "fr:cocktails", + "products": 7 + }, + { + "id": "fr:oeufs-de-saumon", + "name": "Oeufs-de-saumon", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-saumon" + }, + { + "id": "fr:colins-d-alaska-a-la-parisienne", + "name": "Colins-d-alaska-a-la-parisienne", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-la-parisienne" + }, + { + "name": "Sauces caesar", + "id": "fr:sauces-caesar", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/sauces-caesar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-irlandaises", + "name": "Bières irlandaises", + "id": "en:beers-from-ireland", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confiseries", + "products": 7, + "name": "es:Confiseries", + "id": "es:confiseries" + }, + { + "products": 7, + "id": "en:wheat-germ", + "name": "Germe de blé", + "url": "https://fr.openfoodfacts.org/categorie/germe-de-ble" + }, + { + "id": "de:soupes-deshydratees", + "name": "de:Soupes-deshydratees", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/de:soupes-deshydratees" + }, + { + "id": "fr:haricots-secs", + "name": "Haricots-secs", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/haricots-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:charcuteries", + "products": 7, + "name": "en:Charcuteries", + "id": "en:charcuteries" + }, + { + "name": "Barre-de-cereales-a-la-figue", + "id": "fr:barre-de-cereales-a-la-figue", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/barre-de-cereales-a-la-figue" + }, + { + "id": "fr:poudres-a-lever", + "name": "Poudres-a-lever", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/poudres-a-lever" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/religieuses", + "sameAs": [ + "https://www.wikidata.org/wiki/Q55152" + ], + "products": 7, + "name": "Religieuses", + "id": "fr:religieuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-riz-naturel", + "products": 7, + "id": "fr:laits-de-riz-naturel", + "name": "Laits-de-riz-naturel" + }, + { + "products": 7, + "id": "en:chocolates-stuffed-with-almond-paste", + "name": "Chocolats fourrés à la pâte d'amande", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-a-la-pate-d-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumes-et-derives", + "products": 7, + "id": "en:legumes-et-derives", + "name": "en:Legumes-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/papillons", + "products": 7, + "name": "Papillons", + "id": "fr:papillons" + }, + { + "products": 7, + "id": "en:spiny-lobsters", + "name": "Langoustes", + "url": "https://fr.openfoodfacts.org/categorie/langoustes" + }, + { + "products": 7, + "name": "Museau-de-porc", + "id": "fr:museau-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/museau-de-porc" + }, + { + "products": 7, + "id": "fr:chinon", + "name": "Chinon", + "url": "https://fr.openfoodfacts.org/categorie/chinon", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2963789" + ] + }, + { + "products": 7, + "id": "fr:moulines-de-legumes", + "name": "Moulines-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/moulines-de-legumes" + }, + { + "id": "fr:kase", + "name": "Kase", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/kase" + }, + { + "products": 7, + "name": "Saucisses-lentilles", + "id": "fr:saucisses-lentilles", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-basquaises", + "id": "fr:sauces-basquaises", + "name": "Sauces basquaises", + "products": 7 + }, + { + "products": 7, + "name": "Carpaccios", + "id": "fr:carpaccios", + "url": "https://fr.openfoodfacts.org/categorie/carpaccios" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-au-sel-de-guerande", + "products": 7, + "name": "Produits-au-sel-de-guerande", + "id": "fr:produits-au-sel-de-guerande" + }, + { + "products": 7, + "name": "Yaourts-brasses-vanille", + "id": "fr:yaourts-brasses-vanille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-nappes", + "products": 7, + "name": "Biscuits-nappes", + "id": "fr:biscuits-nappes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frucht-und-gemusebasierte-lebensmittel", + "products": 7, + "id": "fr:frucht-und-gemusebasierte-lebensmittel", + "name": "Frucht-und-gemusebasierte-lebensmittel" + }, + { + "products": 7, + "name": "Pates-fraiches-aux-oeufs", + "id": "fr:pates-fraiches-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-aux-oeufs" + }, + { + "products": 7, + "id": "fr:produits-gastronomiques", + "name": "Produits-gastronomiques", + "url": "https://fr.openfoodfacts.org/categorie/produits-gastronomiques" + }, + { + "products": 7, + "name": "Piperades-basquaises", + "id": "fr:piperades-basquaises", + "url": "https://fr.openfoodfacts.org/categorie/piperades-basquaises" + }, + { + "id": "en:fish-fingers", + "name": "Batonnets de poisson", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/batonnets-de-poisson", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1420441" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-fruits", + "id": "en:jus-de-fruits", + "name": "en:Jus-de-fruits", + "products": 7 + }, + { + "products": 7, + "id": "en:young-mimolettes", + "name": "Mimolettes jeunes", + "url": "https://fr.openfoodfacts.org/categorie/mimolettes-jeunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-a-tartiner", + "name": "Salades-a-tartiner", + "id": "fr:salades-a-tartiner", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-worcestershire", + "products": 7, + "id": "en:worcestershire-sauces", + "name": "Sauces Worcestershire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-teriyaki", + "products": 7, + "name": "Sauces Teriyaki", + "id": "en:teriyaki-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fougasses", + "products": 7, + "name": "Fougasses", + "id": "fr:fougasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-surgeles", + "products": 7, + "name": "Saumons-surgeles", + "id": "fr:saumons-surgeles" + }, + { + "id": "en:pumpkin-seed-oils", + "name": "Huiles de pépins de courge", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-pepins-de-courge", + "sameAs": [ + "https://www.wikidata.org/wiki/Q770335" + ] + }, + { + "name": "de:Conserves", + "id": "de:conserves", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/de:conserves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marmites-de-bouillon", + "name": "Marmites de bouillon", + "id": "en:bouillon-pots", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-nature", + "name": "Yaourts-a-la-grecque-nature", + "id": "fr:yaourts-a-la-grecque-nature", + "products": 7 + }, + { + "products": 7, + "name": "Farines de seigle", + "id": "en:rye-flours", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-seigle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-farcies-surgelees", + "name": "Pates-farcies-surgelees", + "id": "fr:pates-farcies-surgelees", + "products": 7 + }, + { + "name": "Poêlées campagnarde", + "id": "fr:poelees-campagnarde", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/poelees-campagnarde" + }, + { + "products": 7, + "name": "Pousses frais", + "id": "en:fresh-sprouts", + "url": "https://fr.openfoodfacts.org/categorie/pousses-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/speiseeis", + "products": 7, + "name": "Speiseeis", + "id": "fr:speiseeis" + }, + { + "products": 7, + "id": "fr:sorbets-a-la-myrtille", + "name": "Sorbets-a-la-myrtille", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-myrtille" + }, + { + "products": 7, + "id": "fr:tournedos-de-boeuf", + "name": "Tournedos-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/tournedos-de-boeuf" + }, + { + "name": "Vanille en poudre", + "id": "en:vanilla-powder", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/vanille-en-poudre" + }, + { + "products": 7, + "name": "Calendriers de l'avent en chocolat", + "id": "en:chocolate-advent-calendars", + "url": "https://fr.openfoodfacts.org/categorie/calendriers-de-l-avent-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-a-la-bolognaise", + "products": 7, + "name": "Spaghettis-a-la-bolognaise", + "id": "fr:spaghettis-a-la-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-speculoos", + "products": 7, + "id": "fr:chocolats-blancs-au-speculoos", + "name": "Chocolats-blancs-au-speculoos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/piments-verts", + "products": 7, + "name": "Piments verts", + "id": "fr:piments-verts" + }, + { + "id": "en:refrigerated-squeezed-orange-juices", + "name": "Jus d'orange frais", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-frais" + }, + { + "products": 7, + "name": "Crumpets", + "id": "fr:crumpets", + "url": "https://fr.openfoodfacts.org/categorie/crumpets" + }, + { + "name": "Pastilles-a-la-menthe", + "id": "fr:pastilles-a-la-menthe", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/pastilles-a-la-menthe" + }, + { + "products": 7, + "name": "Fecules", + "id": "fr:fecules", + "url": "https://fr.openfoodfacts.org/categorie/fecules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-diluer", + "id": "fr:boissons-a-diluer", + "name": "Boissons-a-diluer", + "products": 7 + }, + { + "id": "fr:biscuits-du-petit-dejeuner", + "name": "Biscuits-du-petit-dejeuner", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-du-petit-dejeuner" + }, + { + "id": "en:chicken-tajine", + "name": "Tajine de poulet", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/tajine-de-poulet" + }, + { + "id": "en:steviol-glycosides", + "name": "Steviol glycosides", + "products": 7, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2805600" + ], + "url": "https://fr.openfoodfacts.org/categorie/steviol-glycosides" + }, + { + "products": 7, + "id": "fr:monbazillac", + "name": "Monbazillac", + "url": "https://fr.openfoodfacts.org/categorie/monbazillac" + }, + { + "products": 7, + "id": "fr:gewurztraminer", + "name": "Gewurztraminer", + "url": "https://fr.openfoodfacts.org/categorie/gewurztraminer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastilles-sans-sucres", + "id": "fr:pastilles-sans-sucres", + "name": "Pastilles-sans-sucres", + "products": 7 + }, + { + "products": 7, + "id": "de:boissons-gazeuses", + "name": "de:Boissons-gazeuses", + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-gazeuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tiramisu-au-cafe", + "id": "fr:tiramisu-au-cafe", + "name": "Tiramisu au café", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-rouges", + "id": "en:red-bell-peppers", + "name": "Poivrons rouges", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-fermentes-sucres", + "products": 7, + "id": "fr:laits-fermentes-sucres", + "name": "Laits-fermentes-sucres" + }, + { + "name": "Jus-de-coco", + "id": "fr:jus-de-coco", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-coco" + }, + { + "id": "en:plats-a-base-de-viande", + "name": "en:Plats-a-base-de-viande", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-viande" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q18360378" + ], + "url": "https://fr.openfoodfacts.org/categorie/cardamome", + "id": "en:cardamom", + "name": "Cardamome", + "products": 7 + }, + { + "name": "Capsicum frutescens", + "id": "fr:capsicum-frutescens", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/capsicum-frutescens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-myrtille", + "products": 7, + "id": "fr:coulis-de-myrtille", + "name": "Coulis-de-myrtille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-de-boeuf-fraiches", + "id": "en:fresh-beef-preparations", + "name": "Préparations de viande de bœuf fraîches", + "products": 7 + }, + { + "products": 7, + "name": "Pepites-de-chocolat", + "id": "fr:pepites-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/pepites-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-fromage-blanc", + "name": "Gateaux-au-fromage-blanc", + "id": "fr:gateaux-au-fromage-blanc", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chardonnay", + "id": "fr:chardonnay", + "name": "Chardonnay", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-aux-noisettes", + "id": "fr:saucissons-secs-aux-noisettes", + "name": "Saucissons-secs-aux-noisettes", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-pour-pates", + "products": 7, + "id": "en:sauces-pour-pates", + "name": "en:Sauces-pour-pates" + }, + { + "products": 7, + "id": "fr:sels-iodes", + "name": "Sels-iodes", + "url": "https://fr.openfoodfacts.org/categorie/sels-iodes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chicken-burgers", + "products": 7, + "name": "en:Chicken-burgers", + "id": "en:chicken-burgers" + }, + { + "name": "Graines de lin dorées", + "id": "en:gold-flax-seeds", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-dorees" + }, + { + "name": "Parmentiers", + "id": "fr:parmentiers", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/parmentiers" + }, + { + "name": "Desserts-au-lait-de-coco", + "id": "fr:desserts-au-lait-de-coco", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-lait-de-coco" + }, + { + "products": 7, + "id": "de:produits-a-tartiner-sucres", + "name": "de:Produits-a-tartiner-sucres", + "url": "https://fr.openfoodfacts.org/categorie/de:produits-a-tartiner-sucres" + }, + { + "products": 7, + "name": "Saucissons artisanaux", + "id": "fr:saucissons-artisanaux", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-artisanaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-surgelees", + "products": 7, + "name": "de:Pizzas-surgelees", + "id": "de:pizzas-surgelees" + }, + { + "products": 7, + "id": "fr:sauces-au-beurre", + "name": "Sauces-au-beurre", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/skyr", + "sameAs": [ + "https://www.wikidata.org/wiki/Q742127" + ], + "products": 7, + "id": "en:skyr", + "name": "Skyr" + }, + { + "products": 7, + "id": "fr:paupiettes-de-veau", + "name": "Paupiettes-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/paupiettes-de-veau" + }, + { + "name": "en:Eaux-minerales", + "id": "en:eaux-minerales", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-minerales" + }, + { + "products": 7, + "id": "fr:filets-mignons", + "name": "Filets-mignons", + "url": "https://fr.openfoodfacts.org/categorie/filets-mignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:charcuteries", + "id": "de:charcuteries", + "name": "de:Charcuteries", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-aux-crudites", + "id": "fr:sandwichs-aux-crudites", + "name": "Sandwichs-aux-crudites", + "products": 7 + }, + { + "id": "fr:margarines-a-faible-teneur-en-matieres-grasses", + "name": "Margarines-a-faible-teneur-en-matieres-grasses", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/margarines-a-faible-teneur-en-matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-amandes", + "products": 7, + "name": "Gateaux-aux-amandes", + "id": "fr:gateaux-aux-amandes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q259642" + ], + "url": "https://fr.openfoodfacts.org/categorie/quark", + "name": "Quark", + "id": "en:quark", + "products": 7 + }, + { + "products": 7, + "name": "es:Produits-a-tartiner-sucres", + "id": "es:produits-a-tartiner-sucres", + "url": "https://fr.openfoodfacts.org/categorie/es:produits-a-tartiner-sucres" + }, + { + "id": "fr:beurres-crus", + "name": "Beurres-crus", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/beurres-crus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-pamplemousse", + "products": 7, + "id": "en:grapefruit-nectars", + "name": "Nectars de pamplemousse" + }, + { + "id": "fr:feuilles-de-vigne-farcies-au-riz", + "name": "Feuilles-de-vigne-farcies-au-riz", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-vigne-farcies-au-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/broyes-du-poitou", + "name": "Broyes-du-poitou", + "id": "fr:broyes-du-poitou", + "products": 7 + }, + { + "id": "fr:bieres-anglaises", + "name": "Bieres-anglaises", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/bieres-anglaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-crues", + "id": "en:raw-pumpkin-seeds", + "name": "Graines de courge crues", + "products": 7 + }, + { + "name": "Poireaux en conserve", + "id": "en:canned-leeks", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/poireaux-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutos-de-cascara-y-derivados", + "id": "fr:frutos-de-cascara-y-derivados", + "name": "Frutos-de-cascara-y-derivados", + "products": 7 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:edulcorants", + "id": "en:edulcorants", + "name": "en:Edulcorants", + "products": 7 + }, + { + "products": 7, + "id": "en:blueberry-pies", + "name": "Tartes aux myrtilles", + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-myrtilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts", + "products": 7, + "id": "de:yaourts", + "name": "de:Yaourts" + }, + { + "products": 7, + "name": "Reglisses", + "id": "fr:reglisses", + "url": "https://fr.openfoodfacts.org/categorie/reglisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gingembrettes", + "products": 7, + "id": "fr:gingembrettes", + "name": "Gingembrettes" + }, + { + "id": "fr:sucres-gelifiant", + "name": "Sucres gélifiant", + "products": 7, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1499717" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucres-gelifiant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis", + "products": 7, + "name": "Coulis", + "id": "fr:coulis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-aux-noisettes", + "products": 7, + "name": "Yaourt aux noisettes", + "id": "fr:yaourt-aux-noisettes" + }, + { + "id": "fr:sucres-de-coco", + "name": "Sucres-de-coco", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/sucres-de-coco" + }, + { + "name": "en:Jus-et-nectars", + "id": "en:jus-et-nectars", + "products": 7, + "url": "https://fr.openfoodfacts.org/categorie/en:jus-et-nectars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-et-nectars-de-fruits", + "products": 7, + "name": "en:Jus-et-nectars-de-fruits", + "id": "en:jus-et-nectars-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raclettes-de-savoie", + "name": "Raclettes-de-savoie", + "id": "fr:raclettes-de-savoie", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/citronnettes", + "name": "Citronnettes", + "id": "fr:citronnettes", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-garrigue", + "id": "fr:miels-de-garrigue", + "name": "Miels de garrigue", + "products": 6 + }, + { + "name": "Beignets-fourres-au-chocolat", + "id": "fr:beignets-fourres-au-chocolat", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/beignets-fourres-au-chocolat" + }, + { + "id": "en:raw-hazelnuts", + "name": "Noisettes crues", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/noisettes-crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-fines-herbes", + "products": 6, + "id": "en:fines-herbes-mustards", + "name": "Moutardes aux fines herbes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-abricots", + "name": "Tartes aux abricots", + "id": "en:apricot-pies", + "products": 6 + }, + { + "products": 6, + "id": "fr:biscuits-roses-de-reims", + "name": "Biscuits-roses-de-reims", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-roses-de-reims" + }, + { + "id": "fr:fudges", + "name": "Fudges", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/fudges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gateaux", + "products": 6, + "id": "de:gateaux", + "name": "de:Gateaux" + }, + { + "products": 6, + "name": "Pains surgelés", + "id": "fr:pains-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/pains-surgeles" + }, + { + "name": "Sorbets à la mirabelle", + "id": "en:plum-sorbets", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-mirabelle" + }, + { + "products": 6, + "id": "fr:gros-sel-de-guerande", + "name": "Gros sel de Guérande", + "url": "https://fr.openfoodfacts.org/categorie/gros-sel-de-guerande" + }, + { + "products": 6, + "id": "fr:saumons-fumes-de-degustation", + "name": "Saumons fumés de dégustation", + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes-de-degustation" + }, + { + "name": "Gelées de fruits de la passion", + "id": "en:passion-fruit-jellies", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-fruits-de-la-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-chocolat-blanc", + "id": "fr:glaces-au-chocolat-blanc", + "name": "Glaces au chocolat blanc", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-a-l-huile-de-tournesol", + "products": 6, + "id": "en:sunflower-oil-mayonnaises", + "name": "Mayonnaises à l'huile de tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-noix-de-coco", + "id": "fr:sorbets-a-la-noix-de-coco", + "name": "Sorbets à la noix de coco", + "products": 6 + }, + { + "products": 6, + "id": "en:frozen-parsley", + "name": "Persil surgelé", + "url": "https://fr.openfoodfacts.org/categorie/persil-surgele" + }, + { + "id": "fr:sorbets-a-la-cerise", + "name": "Sorbets à la cerise", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pandoro", + "name": "Pandoro", + "id": "fr:pandoro", + "products": 6 + }, + { + "products": 6, + "name": "es:Substitut-du-lait", + "id": "es:substitut-du-lait", + "url": "https://fr.openfoodfacts.org/categorie/es:substitut-du-lait" + }, + { + "products": 6, + "id": "en:peanuts-turron", + "name": "Peanuts turrón", + "url": "https://fr.openfoodfacts.org/categorie/peanuts-turron" + }, + { + "products": 6, + "id": "fr:oncorhynchus-nerka", + "name": "Oncorhynchus-nerka", + "url": "https://fr.openfoodfacts.org/categorie/oncorhynchus-nerka" + }, + { + "id": "fr:salami-de-dinde", + "name": "Salami de dinde", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/salami-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/safran-en-poudre", + "id": "en:powdered-saffron", + "name": "Safran en poudre", + "products": 6 + }, + { + "products": 6, + "name": "Cremes-renversees", + "id": "fr:cremes-renversees", + "url": "https://fr.openfoodfacts.org/categorie/cremes-renversees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-fruits", + "products": 6, + "name": "Preparations-de-fruits", + "id": "fr:preparations-de-fruits" + }, + { + "products": 6, + "id": "fr:galettes-de-pommes-de-terre", + "name": "Galettes-de-pommes-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-au-lait-de-chevre", + "id": "fr:fromages-blancs-au-lait-de-chevre", + "name": "Fromages-blancs-au-lait-de-chevre", + "products": 6 + }, + { + "name": "Thés de ceylan", + "id": "en:ceylan-teas", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/thes-de-ceylan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-aromatises-a-la-fraise", + "name": "Laits aromatisés à la fraise", + "id": "en:strawberry-milks", + "products": 6 + }, + { + "products": 6, + "name": "Yaourts-a-boire-gout-framboise", + "id": "fr:yaourts-a-boire-gout-framboise", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-gout-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-a-la-framboise", + "products": 6, + "name": "Cheesecakes à la framboise", + "id": "fr:cheesecakes-a-la-framboise" + }, + { + "products": 6, + "id": "fr:mistelle", + "name": "Mistelle", + "url": "https://fr.openfoodfacts.org/categorie/mistelle" + }, + { + "products": 6, + "id": "fr:zuivelproducten", + "name": "Zuivelproducten", + "url": "https://fr.openfoodfacts.org/categorie/zuivelproducten" + }, + { + "name": "Rosti", + "id": "fr:rosti", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/rosti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-fromage-de-chevre", + "products": 6, + "id": "fr:pizzas-au-fromage-de-chevre", + "name": "Pizzas-au-fromage-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-cheval", + "products": 6, + "id": "fr:saucissons-de-cheval", + "name": "Saucissons-de-cheval" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-primeurs", + "products": 6, + "name": "Pommes de terre primeurs", + "id": "fr:pommes-de-terre-primeurs" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3395977" + ], + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-de-l-ile-de-re", + "products": 6, + "name": "Pommes de terre de l'île de Ré", + "id": "fr:pommes-de-terre-de-l-ile-de-re" + }, + { + "products": 6, + "id": "en:laits-vegetaux", + "name": "en:Laits-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/en:laits-vegetaux" + }, + { + "products": 6, + "name": "Nuggets-de-dinde", + "id": "fr:nuggets-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-dinde" + }, + { + "id": "nl:aliments-d-origine-vegetale", + "name": "nl:Aliments-d-origine-vegetale", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/nl:aliments-d-origine-vegetale" + }, + { + "products": 6, + "name": "Vins moelleux", + "id": "fr:vins-moelleux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16682691" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-moelleux" + }, + { + "products": 6, + "name": "Milchersatz", + "id": "fr:milchersatz", + "url": "https://fr.openfoodfacts.org/categorie/milchersatz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/babeurres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q106612" + ], + "id": "en:buttermilks", + "name": "Babeurres", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-trappistes", + "products": 6, + "id": "fr:bieres-trappistes", + "name": "Bieres-trappistes" + }, + { + "products": 6, + "name": "Pflanzenmilch", + "id": "fr:pflanzenmilch", + "url": "https://fr.openfoodfacts.org/categorie/pflanzenmilch" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3474235" + ], + "url": "https://fr.openfoodfacts.org/categorie/saumur-champigny", + "name": "Saumur-Champigny", + "id": "fr:saumur-champigny", + "products": 6 + }, + { + "products": 6, + "name": "Potage-deshydrate", + "id": "fr:potage-deshydrate", + "url": "https://fr.openfoodfacts.org/categorie/potage-deshydrate" + }, + { + "name": "it:Pates-seches", + "id": "it:pates-seches", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/it:pates-seches" + }, + { + "name": "Noisettes grillées", + "id": "en:roasted-hazelnuts", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/noisettes-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chairs-a-saucisses", + "products": 6, + "id": "fr:chairs-a-saucisses", + "name": "Chairs-a-saucisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-canard", + "id": "fr:filets-de-canard", + "name": "Filets-de-canard", + "products": 6 + }, + { + "name": "Vins américains", + "id": "en:wines-from-america", + "products": 6, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1968496" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-americains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-au-miel", + "products": 6, + "id": "fr:gaufres-au-miel", + "name": "Gaufres-au-miel" + }, + { + "name": "Coeurs-de-laitues", + "id": "fr:coeurs-de-laitues", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/coeurs-de-laitues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-korma", + "id": "fr:sauces-korma", + "name": "Sauces-korma", + "products": 6 + }, + { + "products": 6, + "id": "fr:parmentiers-de-poissons", + "name": "Parmentiers-de-poissons", + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-a-poeler", + "products": 6, + "name": "Gnocchis-a-poeler", + "id": "fr:gnocchis-a-poeler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sainte-maure", + "name": "Sainte-maure", + "id": "fr:sainte-maure", + "products": 6 + }, + { + "products": 6, + "id": "en:freeze-dried-foods", + "name": "Aliments lyophilisées", + "url": "https://fr.openfoodfacts.org/categorie/aliments-lyophilisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-ketchup", + "name": "Chips au ketchup", + "id": "en:ketchup-crisps", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux", + "name": "en:Eaux", + "id": "en:eaux", + "products": 6 + }, + { + "id": "fr:milchschokoladen", + "name": "Milchschokoladen", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/milchschokoladen" + }, + { + "name": "Flamiches", + "id": "fr:flamiches", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/flamiches", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3073285" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/langres", + "name": "Langres", + "id": "fr:langres", + "products": 6 + }, + { + "products": 6, + "name": "Choux rouges", + "id": "en:red-cabbage", + "url": "https://fr.openfoodfacts.org/categorie/choux-rouges" + }, + { + "id": "fr:crevettes-en-conserve", + "name": "Crevettes-en-conserve", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-en-conserve" + }, + { + "id": "fr:desserts-aux-fruits", + "name": "Desserts-aux-fruits", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/desserts-aux-fruits" + }, + { + "name": "Cookies-au-chocolat-blanc", + "id": "fr:cookies-au-chocolat-blanc", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-biologiques", + "name": "Vins-biologiques", + "id": "fr:vins-biologiques", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fins", + "products": 6, + "id": "fr:biscuits-fins", + "name": "Biscuits-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crabe-en-conserve", + "products": 6, + "name": "Crabe-en-conserve", + "id": "fr:crabe-en-conserve" + }, + { + "products": 6, + "id": "fr:huiles-de-cameline", + "name": "Huiles-de-cameline", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-cameline" + }, + { + "products": 6, + "id": "en:lupin-bean-flours", + "name": "Farines de lupin", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-lupin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/montagne-saint-emilion", + "sameAs": [ + "https://www.wikidata.org/wiki/Q282021" + ], + "id": "fr:montagne-saint-emilion", + "name": "Montagne-saint-émilion", + "products": 6 + }, + { + "name": "Plats-a-base-de-fruits-de-mer", + "id": "fr:plats-a-base-de-fruits-de-mer", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-fruits-de-mer" + }, + { + "name": "Île de Beauté", + "id": "fr:ile-de-beaute", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/ile-de-beaute", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18332002" + ] + }, + { + "products": 6, + "name": "Haddocks fumés", + "id": "fr:haddocks-fumes", + "url": "https://fr.openfoodfacts.org/categorie/haddocks-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feves", + "name": "Feves", + "id": "fr:feves", + "products": 6 + }, + { + "id": "fr:jambons-persilles", + "name": "Jambons-persilles", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/jambons-persilles" + }, + { + "products": 6, + "name": "Rations-alimentaires", + "id": "fr:rations-alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/rations-alimentaires" + }, + { + "name": "Boissons-aromatisees", + "id": "fr:boissons-aromatisees", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/boissons-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-roses", + "id": "en:pink-ciders", + "name": "Cidres rosés", + "products": 6 + }, + { + "products": 6, + "id": "fr:terrines-de-chevreuil", + "name": "Terrines de chevreuil", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-chevreuil" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-the", + "products": 6, + "name": "Boissons au thé", + "id": "en:tea-based-beverages" + }, + { + "name": "Blanc de poulet aux herbes", + "id": "fr:blanc-de-poulet-aux-herbes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-poulet-aux-herbes" + }, + { + "name": "en:Asian-foods", + "id": "en:asian-foods", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:asian-foods" + }, + { + "products": 6, + "name": "Saucissons-brioches", + "id": "fr:saucissons-brioches", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-brioches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-a-la-vergeoise", + "id": "fr:gaufres-fourrees-a-la-vergeoise", + "name": "Gaufres-fourrees-a-la-vergeoise", + "products": 6 + }, + { + "products": 6, + "name": "en:Yaourts-aux-fruits", + "id": "en:yaourts-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-garnies", + "name": "Crepes-garnies", + "id": "fr:crepes-garnies", + "products": 6 + }, + { + "products": 6, + "id": "en:blackcurrant-mustards", + "name": "Moutardes au cassis", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-poulet", + "id": "fr:allumettes-de-poulet", + "name": "Allumettes de poulet", + "products": 6 + }, + { + "products": 6, + "name": "Ciabatta", + "id": "fr:ciabatta", + "url": "https://fr.openfoodfacts.org/categorie/ciabatta" + }, + { + "id": "fr:huiles-de-friture", + "name": "Huiles-de-friture", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-friture" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-salades", + "id": "en:sauces-salades", + "name": "en:Sauces-salades", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-aux-legumes-frais", + "id": "en:tabbouleh-with-fresh-vegetables", + "name": "Taboulés aux légumes frais", + "products": 6 + }, + { + "name": "Sorbets-a-la-mandarine", + "id": "fr:sorbets-a-la-mandarine", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-mandarine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-agata", + "sameAs": [ + "https://www.wikidata.org/wiki/Q373973" + ], + "products": 6, + "name": "Pommes de terre Agata", + "id": "en:agata-potatoes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-crepes", + "products": 6, + "name": "Preparations-pour-crepes", + "id": "fr:preparations-pour-crepes" + }, + { + "products": 6, + "name": "Terrines-de-porc", + "id": "fr:terrines-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-precuits-natures", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6038850" + ], + "name": "Riz précuits natures", + "id": "en:precooked-rices", + "products": 6 + }, + { + "name": "Cocktails-sans-alcool", + "id": "fr:cocktails-sans-alcool", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/cocktails-sans-alcool" + }, + { + "id": "fr:paniers-feuilletes-aux-noix-de-saint-jacques", + "name": "Paniers-feuilletes-aux-noix-de-saint-jacques", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes-aux-noix-de-saint-jacques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bredeles", + "id": "fr:bredeles", + "name": "Bredeles", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-mexicaines", + "products": 6, + "id": "fr:sauces-mexicaines", + "name": "Sauces-mexicaines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-de-boeuf", + "id": "fr:viandes-fraiches-de-boeuf", + "name": "Viandes-fraiches-de-boeuf", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:viandes", + "id": "de:viandes", + "name": "de:Viandes", + "products": 6 + }, + { + "name": "en:Produits-laitiers-fermentes", + "id": "en:produits-laitiers-fermentes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-laitiers-fermentes" + }, + { + "products": 6, + "id": "fr:boissons-au-cafe", + "name": "Boissons-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-cafe" + }, + { + "id": "en:ground-dried-oregano", + "name": "Origan séché moulu", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/origan-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-comte", + "name": "Sandwichs au Comté", + "id": "en:comte-cheese-sandwiches", + "products": 6 + }, + { + "id": "en:frozen-mixed-mushrooms", + "name": "Mélanges de champignons surgelés", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-champignons-surgeles" + }, + { + "products": 6, + "id": "en:whole-nutmeg", + "name": "Noix de muscade entières", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-muscade-entieres" + }, + { + "id": "fr:pessac-leognan", + "name": "Pessac-Léognan", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/pessac-leognan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1760220" + ] + }, + { + "products": 6, + "id": "fr:parmentiers-de-poisson", + "name": "Parmentiers-de-poisson", + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-poisson" + }, + { + "products": 6, + "id": "es:laits-vegetaux", + "name": "es:Laits-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/es:laits-vegetaux" + }, + { + "products": 6, + "name": "Chocolate-coins", + "id": "fr:chocolate-coins", + "url": "https://fr.openfoodfacts.org/categorie/chocolate-coins" + }, + { + "name": "Panna-cottas-natures", + "id": "fr:panna-cottas-natures", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-natures" + }, + { + "name": "Graines de tournesol crues", + "id": "en:raw-sunflower-seeds", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-crues" + }, + { + "id": "en:aliments-a-base-de-plantes-en-conserve", + "name": "en:Aliments-a-base-de-plantes-en-conserve", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-a-base-de-plantes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-de-l-olivier", + "name": "es:Produits-de-l-olivier", + "id": "es:produits-de-l-olivier", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-coriandre", + "products": 6, + "id": "en:coriander-leaves", + "name": "Feuilles de coriandre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ardeche", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16303829" + ], + "products": 6, + "id": "fr:ardeche", + "name": "Ardèche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-vanille", + "products": 6, + "id": "fr:biscuits-a-la-vanille", + "name": "Biscuits-a-la-vanille" + }, + { + "name": "Brick", + "id": "fr:brick", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/brick" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/donuts-au-chocolat", + "id": "fr:donuts-au-chocolat", + "name": "Donuts-au-chocolat", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-et-gateaux", + "id": "it:biscuits-et-gateaux", + "name": "it:Biscuits-et-gateaux", + "products": 6 + }, + { + "products": 6, + "name": "Fromage de tête", + "id": "fr:fromage-de-tete", + "url": "https://fr.openfoodfacts.org/categorie/fromage-de-tete", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4675762" + ] + }, + { + "products": 6, + "id": "en:cheesecake-with-red-berries", + "name": "Cheesecake aux fruits rouges", + "url": "https://fr.openfoodfacts.org/categorie/cheesecake-aux-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-au-caramel", + "products": 6, + "name": "Cheesecakes au caramel", + "id": "en:caramel-cheesecakes" + }, + { + "id": "fr:papillottes", + "name": "Papillottes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/papillottes" + }, + { + "products": 6, + "id": "en:squeezed-blueberry-juices", + "name": "Jus de myrtilles pur jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-myrtilles-pur-jus" + }, + { + "products": 6, + "name": "Melange-de-cereales", + "id": "fr:melange-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/melange-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucen", + "id": "fr:saucen", + "name": "Saucen", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morilles", + "name": "Morilles", + "id": "fr:morilles", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-gelifies", + "products": 6, + "name": "Desserts-gelifies", + "id": "fr:desserts-gelifies" + }, + { + "products": 6, + "name": "Chips-aromatisees", + "id": "fr:chips-aromatisees", + "url": "https://fr.openfoodfacts.org/categorie/chips-aromatisees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q643697" + ], + "url": "https://fr.openfoodfacts.org/categorie/mimolettes-vieilles", + "id": "en:old-mimolettes", + "name": "Mimolettes vieilles", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaillac", + "id": "fr:gaillac", + "name": "Gaillac", + "products": 6 + }, + { + "id": "en:poultry-merguez", + "name": "Merguez de volaille", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/merguez-de-volaille" + }, + { + "products": 6, + "id": "fr:biscuits-aperitifs-au-sesame", + "name": "Biscuits apéritifs au sésame", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chutneys", + "products": 6, + "name": "Chutneys", + "id": "fr:chutneys" + }, + { + "products": 6, + "name": "en:Mueslis-aux-fruits", + "id": "en:mueslis-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:mueslis-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-pour-tartiflette", + "products": 6, + "name": "Fromages-pour-tartiflette", + "id": "fr:fromages-pour-tartiflette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-en-conserve", + "id": "en:canned-cheeses", + "name": "Fromages en conserve", + "products": 6 + }, + { + "products": 6, + "name": "Chocolats-aux-cereales", + "id": "fr:chocolats-aux-cereales", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-cereales" + }, + { + "id": "en:jus-d-orange-100-pur-jus", + "name": "en:Jus-d-orange-100-pur-jus", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:jus-d-orange-100-pur-jus" + }, + { + "name": "Boissons végétales de riz nature", + "id": "en:natural-rice-milks", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-riz-nature" + }, + { + "name": "Crackers-alleges-en-matieres-grasses", + "id": "fr:crackers-alleges-en-matieres-grasses", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/crackers-alleges-en-matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cannelloni-a-garnir", + "products": 6, + "id": "fr:cannelloni-a-garnir", + "name": "Cannelloni-a-garnir" + }, + { + "id": "fr:preparations-pour-dessert", + "name": "Preparations-pour-dessert", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-dessert" + }, + { + "products": 6, + "name": "Serpentini", + "id": "fr:serpentini", + "url": "https://fr.openfoodfacts.org/categorie/serpentini" + }, + { + "products": 6, + "name": "Filets-de-limande", + "id": "fr:filets-de-limande", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-limande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilli-a-la-carbonara", + "id": "fr:fusilli-a-la-carbonara", + "name": "Fusilli-a-la-carbonara", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-fumes", + "name": "Thons fumés", + "id": "en:smoked-tunas", + "products": 6 + }, + { + "products": 6, + "id": "fr:tisane-d-allaitement", + "name": "Tisane-d-allaitement", + "url": "https://fr.openfoodfacts.org/categorie/tisane-d-allaitement" + }, + { + "id": "en:plant-based-mixed-pickles", + "name": "Plant-based mixed pickles", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/plant-based-mixed-pickles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-aux-oeufs-saveur-vanille", + "name": "Cremes-aux-oeufs-saveur-vanille", + "id": "fr:cremes-aux-oeufs-saveur-vanille", + "products": 6 + }, + { + "id": "en:leek-pies", + "name": "en:Leek-pies", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:leek-pies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-aux-fruits", + "products": 6, + "id": "fr:yaourts-a-boire-aux-fruits", + "name": "Yaourts-a-boire-aux-fruits" + }, + { + "products": 6, + "name": "Ktipiti", + "id": "fr:ktipiti", + "url": "https://fr.openfoodfacts.org/categorie/ktipiti" + }, + { + "products": 6, + "name": "Spirales", + "id": "fr:spirales", + "url": "https://fr.openfoodfacts.org/categorie/spirales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-seches", + "products": 6, + "name": "en:Pates-seches", + "id": "en:pates-seches" + }, + { + "products": 6, + "name": "Courgettes-a-la-provencale", + "id": "fr:courgettes-a-la-provencale", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-a-la-provencale" + }, + { + "products": 6, + "name": "Samoussas à la volaille", + "id": "en:samoussas-with-poultry", + "url": "https://fr.openfoodfacts.org/categorie/samoussas-a-la-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:barres-chocolatees", + "name": "de:Barres-chocolatees", + "id": "de:barres-chocolatees", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-a-la-menthe", + "products": 6, + "name": "Chocolats-fourres-a-la-menthe", + "id": "fr:chocolats-fourres-a-la-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-liegeois", + "id": "fr:desserts-liegeois", + "name": "Desserts-liegeois", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-miel", + "id": "fr:bieres-au-miel", + "name": "Bieres-au-miel", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-citron-vert", + "products": 6, + "name": "Jus-de-citron-vert", + "id": "fr:jus-de-citron-vert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras", + "name": "Foies-gras", + "id": "fr:foies-gras", + "products": 6 + }, + { + "id": "fr:biscuits-a-la-framboise", + "name": "Biscuits-a-la-framboise", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/seiches", + "name": "Seiches", + "id": "fr:seiches", + "products": 6 + }, + { + "products": 6, + "name": "Safte-und-nektare", + "id": "fr:safte-und-nektare", + "url": "https://fr.openfoodfacts.org/categorie/safte-und-nektare" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-et-nectars", + "name": "es:Jus-et-nectars", + "id": "es:jus-et-nectars", + "products": 6 + }, + { + "products": 6, + "id": "es:jus-et-nectars-de-fruits", + "name": "es:Jus-et-nectars-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/es:jus-et-nectars-de-fruits" + }, + { + "products": 6, + "id": "fr:boissons-isotoniques", + "name": "Boissons-isotoniques", + "url": "https://fr.openfoodfacts.org/categorie/boissons-isotoniques" + }, + { + "products": 6, + "name": "Petits-dejeuners-instantanes", + "id": "fr:petits-dejeuners-instantanes", + "url": "https://fr.openfoodfacts.org/categorie/petits-dejeuners-instantanes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:graines", + "products": 6, + "id": "en:graines", + "name": "en:Graines" + }, + { + "name": "Rostis", + "id": "fr:rostis", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/rostis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-lyophilises-a-reconstituer", + "id": "de:produits-lyophilises-a-reconstituer", + "name": "de:Produits-lyophilises-a-reconstituer", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baies", + "products": 6, + "name": "Baies", + "id": "fr:baies" + }, + { + "id": "nl:boissons-non-sucrees", + "name": "nl:Boissons-non-sucrees", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/nl:boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pipe-rigate", + "name": "Pipe-rigate", + "id": "fr:pipe-rigate", + "products": 6 + }, + { + "id": "fr:cidres-bretons", + "name": "Cidres-bretons", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/cidres-bretons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-bordeaux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3010713" + ], + "name": "Côtes-de-bordeaux", + "id": "fr:cotes-de-bordeaux", + "products": 6 + }, + { + "id": "en:kebab-pizzas", + "name": "Pizzas au kebab", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-kebab" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-aux-oeufs", + "products": 6, + "name": "Coquillettes-aux-oeufs", + "id": "fr:coquillettes-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gouter", + "id": "fr:gouter", + "name": "Gouter", + "products": 6 + }, + { + "products": 6, + "id": "de:fromages-a-pate-fraiche", + "name": "de:Fromages-a-pate-fraiche", + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-a-pate-fraiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-eminces", + "id": "en:sliced-champignon-mushrooms", + "name": "Champignons de Paris émincés", + "products": 6 + }, + { + "products": 6, + "id": "de:biscuits-au-chocolat", + "name": "de:Biscuits-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-au-chocolat" + }, + { + "name": "Brochettes de porc", + "id": "fr:brochettes-de-porc", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheval", + "id": "fr:cheval", + "name": "Cheval", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mures", + "name": "Mûres", + "id": "en:blackberries", + "products": 6 + }, + { + "id": "en:frozen-tropical-fruits", + "name": "Fruits tropicaux surgelés", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/fruits-tropicaux-surgeles" + }, + { + "id": "fr:gressins-au-sesame", + "name": "Gressins-au-sesame", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/gressins-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs", + "name": "en:Sandwichs", + "id": "en:sandwichs", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thym-sec-moulu", + "id": "en:ground-dried-thyme", + "name": "Thym sec moulu", + "products": 6 + }, + { + "products": 6, + "name": "Chili sin carne", + "id": "en:chili-sin-carne", + "url": "https://fr.openfoodfacts.org/categorie/chili-sin-carne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-deshydrates", + "name": "Fruits-deshydrates", + "id": "fr:fruits-deshydrates", + "products": 6 + }, + { + "id": "en:rice-desserts", + "name": "Desserts de riz", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-riz" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q895221" + ], + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-aligote", + "products": 6, + "name": "Bourgogne aligoté", + "id": "fr:bourgogne-aligote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/luberon", + "products": 6, + "id": "fr:luberon", + "name": "Luberon" + }, + { + "name": "Ventoux", + "id": "fr:ventoux", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/ventoux" + }, + { + "products": 6, + "name": "Steaks-vegetaux", + "id": "fr:steaks-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/steaks-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-a-l-estragon", + "products": 6, + "id": "fr:moutardes-a-l-estragon", + "name": "Moutardes-a-l-estragon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-au-cafe", + "products": 6, + "name": "Cremes-glacees-au-cafe", + "id": "fr:cremes-glacees-au-cafe" + }, + { + "products": 6, + "name": "Coriandre en pot", + "id": "en:potted-coriander", + "url": "https://fr.openfoodfacts.org/categorie/coriandre-en-pot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/prunes", + "id": "en:plums", + "name": "Prunes", + "products": 6 + }, + { + "products": 6, + "name": "Glaces à la menthe", + "id": "fr:glaces-a-la-menthe", + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-menthe" + }, + { + "name": "Piments de Cayenne", + "id": "fr:piments-de-cayenne", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/piments-de-cayenne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-dietetiques", + "products": 6, + "name": "Confitures diététiques", + "id": "en:dietary-jams" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-de-biere", + "name": "Levures-de-biere", + "id": "fr:levures-de-biere", + "products": 6 + }, + { + "products": 6, + "id": "fr:fajitas", + "name": "Fajitas", + "url": "https://fr.openfoodfacts.org/categorie/fajitas" + }, + { + "name": "Tuiles-aux-amandes", + "id": "fr:tuiles-aux-amandes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/tuiles-aux-amandes" + }, + { + "name": "Gateaux-aux-pommes", + "id": "fr:gateaux-aux-pommes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-porc", + "name": "Filets-de-porc", + "id": "fr:filets-de-porc", + "products": 6 + }, + { + "products": 6, + "name": "Biscuits-fourres-chocolat", + "id": "fr:biscuits-fourres-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pommes", + "products": 6, + "id": "fr:purees-de-pommes", + "name": "Purees-de-pommes" + }, + { + "products": 6, + "name": "Céleri", + "id": "en:celery", + "url": "https://fr.openfoodfacts.org/categorie/celeri" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-fraise", + "name": "Compotes de fraise", + "id": "en:strawberry-compotes", + "products": 6 + }, + { + "id": "en:black-forest-gateau", + "name": "Forêt-noires", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/foret-noires", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19028" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/granen-en-graanproducten", + "id": "fr:granen-en-graanproducten", + "name": "Granen-en-graanproducten", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mouline-de-legumes", + "products": 6, + "id": "fr:mouline-de-legumes", + "name": "Mouline-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mouline", + "products": 6, + "name": "Mouline", + "id": "fr:mouline" + }, + { + "name": "en:Huiles-d-olive-vierges-extra", + "id": "en:huiles-d-olive-vierges-extra", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-d-olive-vierges-extra" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees-au-caramel", + "products": 6, + "id": "en:caramel-stuffed-wafers", + "name": "Gaufrettes fourrées au caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-au-beurre", + "products": 6, + "id": "fr:sardines-au-beurre", + "name": "Sardines-au-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nouilles", + "products": 6, + "id": "de:nouilles", + "name": "de:Nouilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-et-tartes-surgelees", + "id": "de:pizzas-et-tartes-surgelees", + "name": "de:Pizzas-et-tartes-surgelees", + "products": 6 + }, + { + "name": "Fromages-a-pate-dure", + "id": "fr:fromages-a-pate-dure", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-dure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-volaille", + "products": 6, + "name": "Lardons de volaille", + "id": "en:poultry-lardons" + }, + { + "id": "en:matieres-grasses-vegetales", + "name": "en:Matieres-grasses-vegetales", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/en:matieres-grasses-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-cuites", + "id": "fr:crevettes-cuites", + "name": "Crevettes-cuites", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chianti", + "products": 6, + "name": "Chianti", + "id": "en:chianti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits-pour-repas", + "products": 6, + "name": "Kits-pour-repas", + "id": "fr:kits-pour-repas" + }, + { + "products": 6, + "id": "de:pates-farcies", + "name": "de:Pates-farcies", + "url": "https://fr.openfoodfacts.org/categorie/de:pates-farcies" + }, + { + "products": 6, + "id": "fr:fond-de-veau", + "name": "Fond-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/fond-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carpaccio", + "products": 6, + "id": "fr:carpaccio", + "name": "Carpaccio" + }, + { + "id": "fr:dranken", + "name": "Dranken", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/dranken" + }, + { + "name": "Confiture de roses", + "id": "en:rose-petal-jams", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/confiture-de-roses" + }, + { + "name": "Pâtes de coings", + "id": "en:quince-cheeses", + "products": 6, + "sameAs": [ + "https://www.wikidata.org/wiki/Q555084" + ], + "url": "https://fr.openfoodfacts.org/categorie/pates-de-coings" + }, + { + "products": 6, + "id": "en:chicken-terrine", + "name": "Terrines de poulet", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-poulet" + }, + { + "products": 6, + "id": "fr:souris-d-agneau", + "name": "Souris-d-agneau", + "url": "https://fr.openfoodfacts.org/categorie/souris-d-agneau" + }, + { + "id": "en:fresh-aromatic-plants", + "name": "Plantes aromatiques fraîches", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-fraiches" + }, + { + "products": 6, + "name": "Boisson-isotonique", + "id": "fr:boisson-isotonique", + "url": "https://fr.openfoodfacts.org/categorie/boisson-isotonique" + }, + { + "products": 6, + "name": "Graines de courge décortiquées crues", + "id": "en:raw-shelled-pumpkin-seeds", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-decortiquees-crues" + }, + { + "products": 6, + "name": "Coeurs-d-artichauts-en-conserve", + "id": "fr:coeurs-d-artichauts-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/coeurs-d-artichauts-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-xeres", + "products": 6, + "id": "en:xeres-vinegars", + "name": "Vinaigres de Xérès" + }, + { + "name": "it:Chocolats", + "id": "it:chocolats", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats" + }, + { + "name": "Miels de Bourgogne", + "id": "fr:miels-de-bourgogne", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-bourgogne" + }, + { + "id": "en:indian-sauces", + "name": "Sauces indiennes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/sauces-indiennes" + }, + { + "products": 6, + "name": "Bieres-neerlandaises", + "id": "fr:bieres-neerlandaises", + "url": "https://fr.openfoodfacts.org/categorie/bieres-neerlandaises" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q26686" + ], + "url": "https://fr.openfoodfacts.org/categorie/aneth", + "id": "en:dill", + "name": "Aneth", + "products": 6 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-litchis", + "products": 6, + "id": "en:lychee-jams", + "name": "Confitures de litchis" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1448819" + ], + "url": "https://fr.openfoodfacts.org/categorie/biere-de-gingembre", + "id": "en:ginger-beer", + "name": "Bière de gingembre", + "products": 6 + }, + { + "name": "Sauces-chaudes", + "id": "fr:sauces-chaudes", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/sauces-chaudes" + }, + { + "products": 6, + "name": "Saint-Chinian", + "id": "fr:saint-chinian", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1658461" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-chinian" + }, + { + "id": "fr:compotes-de-rhubarbe", + "name": "Compotes de rhubarbe", + "products": 6, + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-rhubarbe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulages-en-chocolat-au-lait", + "products": 5, + "id": "fr:moulages-en-chocolat-au-lait", + "name": "Moulages-en-chocolat-au-lait" + }, + { + "products": 5, + "name": "Poissons-en-chocolat", + "id": "fr:poissons-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/poissons-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roti-de-porc-facon-orloff", + "name": "Roti-de-porc-facon-orloff", + "id": "fr:roti-de-porc-facon-orloff", + "products": 5 + }, + { + "products": 5, + "id": "fr:yaourts-a-la-prune", + "name": "Yaourts-a-la-prune", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-prune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-de-saint-nicolas", + "products": 5, + "name": "Aliments-et-boissons-de-saint-nicolas", + "id": "fr:aliments-et-boissons-de-saint-nicolas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pieces-en-chocolat", + "products": 5, + "name": "Pieces-en-chocolat", + "id": "fr:pieces-en-chocolat" + }, + { + "id": "fr:salicornes", + "name": "Salicornes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/salicornes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-noix-de-coco", + "name": "Purees-de-noix-de-coco", + "id": "fr:purees-de-noix-de-coco", + "products": 5 + }, + { + "name": "en:Biere", + "id": "en:biere", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:biere" + }, + { + "name": "Energy-ball", + "id": "fr:energy-ball", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/energy-ball" + }, + { + "name": "Bieres-suisses", + "id": "fr:bieres-suisses", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/bieres-suisses" + }, + { + "id": "fr:nudeln", + "name": "Nudeln", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/nudeln" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-erable-du-quebec", + "products": 5, + "id": "en:maple-syrups-from-quebec", + "name": "Sirops d'érable du Québec" + }, + { + "id": "en:olive-oil-from-aix-en-provence", + "name": "Huile d'olive d'Aix-en-Provence", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-d-aix-en-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-printemps", + "products": 5, + "id": "fr:miels-de-printemps", + "name": "Miels-de-printemps" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment-t65", + "id": "en:wheat-flour-t65", + "name": "Farines de froment T65", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-riz", + "products": 5, + "id": "en:rice-salads", + "name": "Salades de riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-au-caramel", + "id": "fr:gaufres-fourrees-au-caramel", + "name": "Gaufres-fourrees-au-caramel", + "products": 5 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q543127" + ], + "url": "https://fr.openfoodfacts.org/categorie/bourbons", + "id": "en:bourbon-whiskeys", + "name": "Bourbons", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-riz", + "products": 5, + "name": "Flocons de riz", + "id": "en:rice-flakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-de-saint-genix", + "id": "fr:brioches-de-saint-genix", + "name": "Brioches-de-saint-genix", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-cola", + "products": 5, + "id": "en:cola-syrups", + "name": "Sirops cola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-ambrees", + "products": 5, + "id": "en:bieres-ambrees", + "name": "en:Bieres-ambrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-sesame", + "id": "fr:barres-de-sesame", + "name": "Barres-de-sesame", + "products": 5 + }, + { + "products": 5, + "name": "de:Bonbons-gelifies", + "id": "de:bonbons-gelifies", + "url": "https://fr.openfoodfacts.org/categorie/de:bonbons-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dulces", + "products": 5, + "name": "Dulces", + "id": "fr:dulces" + }, + { + "products": 5, + "id": "fr:chocolats-au-lait-fourres-au-praline", + "name": "Chocolats-au-lait-fourres-au-praline", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-au-praline" + }, + { + "products": 5, + "id": "en:assorted-jams", + "name": "Confitures assorties", + "url": "https://fr.openfoodfacts.org/categorie/confitures-assorties" + }, + { + "products": 5, + "name": "Biscuits-petit-dejeuner", + "id": "fr:biscuits-petit-dejeuner", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/andouilles-de-vire", + "products": 5, + "name": "Andouilles de Vire", + "id": "fr:andouilles-de-vire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-potiron", + "name": "Soupes de potiron", + "id": "en:pumpkin-soups", + "products": 5 + }, + { + "products": 5, + "id": "fr:paris-brest", + "name": "Paris-Brest", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1137495" + ], + "url": "https://fr.openfoodfacts.org/categorie/paris-brest" + }, + { + "products": 5, + "name": "Gésiers de poulet", + "id": "en:chicken-gizzards", + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gels-energetiques", + "products": 5, + "name": "Gels-energetiques", + "id": "fr:gels-energetiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tuiles-sucrees", + "id": "fr:tuiles-sucrees", + "name": "Tuiles-sucrees", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-en-poudre", + "products": 5, + "id": "fr:boissons-en-poudre", + "name": "Boissons-en-poudre" + }, + { + "products": 5, + "name": "Mozzarella-de-bufflonne", + "id": "fr:mozzarella-de-bufflonne", + "url": "https://fr.openfoodfacts.org/categorie/mozzarella-de-bufflonne" + }, + { + "name": "Pains-tranches", + "id": "fr:pains-tranches", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/pains-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-d-elevage", + "id": "fr:crevettes-d-elevage", + "name": "Crevettes-d-elevage", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-secs-de-corinthe", + "products": 5, + "name": "Raisins secs de Corinthe", + "id": "en:raisins-of-corinth" + }, + { + "id": "en:susswaren", + "name": "en:Susswaren", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:susswaren" + }, + { + "products": 5, + "id": "de:pates-alimentaires", + "name": "de:Pates-alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/de:pates-alimentaires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/canistrelli", + "name": "Canistrelli", + "id": "fr:canistrelli", + "products": 5 + }, + { + "id": "fr:berlingots", + "name": "Berlingots", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/berlingots" + }, + { + "products": 5, + "name": "ru:Boissons-alcoolisees", + "id": "ru:boissons-alcoolisees", + "url": "https://fr.openfoodfacts.org/categorie/ru:boissons-alcoolisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:bieres", + "products": 5, + "name": "it:Bieres", + "id": "it:bieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-au-lait", + "name": "Barres chocolatées au lait", + "id": "fr:barres-chocolatees-au-lait", + "products": 5 + }, + { + "products": 5, + "id": "fr:lomos", + "name": "Lomos", + "url": "https://fr.openfoodfacts.org/categorie/lomos" + }, + { + "products": 5, + "name": "Tomates séchées naturelles", + "id": "en:natural-dried-tomatoes", + "url": "https://fr.openfoodfacts.org/categorie/tomates-sechees-naturelles" + }, + { + "products": 5, + "id": "fr:biscuits-au-cacao", + "name": "Biscuits-au-cacao", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truites-d-elevage", + "products": 5, + "id": "fr:truites-d-elevage", + "name": "Truites-d-elevage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-amandine", + "id": "fr:pommes-de-terre-amandine", + "name": "Pommes-de-terre-amandine", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-d-epices-pour-guacamole", + "products": 5, + "name": "Melange-d-epices-pour-guacamole", + "id": "fr:melange-d-epices-pour-guacamole" + }, + { + "id": "fr:entrecotes", + "name": "Entrecotes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/entrecotes" + }, + { + "products": 5, + "id": "fr:miels-de-mandarinier", + "name": "Miels de mandarinier", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-mandarinier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caviar-baeri", + "products": 5, + "name": "Caviar Baeri", + "id": "en:baeri-caviars" + }, + { + "name": "Gelees-de-myrtes", + "id": "fr:gelees-de-myrtes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-myrtes" + }, + { + "products": 5, + "name": "Saucisses de canard", + "id": "en:duck-sausages", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-citron", + "products": 5, + "name": "Glaces au citron", + "id": "fr:glaces-au-citron" + }, + { + "name": "Gigondas", + "id": "fr:gigondas", + "products": 5, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1332577" + ], + "url": "https://fr.openfoodfacts.org/categorie/gigondas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pineau-des-charentes", + "name": "Pineau des Charentes", + "id": "fr:pineau-des-charentes", + "products": 5 + }, + { + "name": "Soumaintrain", + "id": "fr:soumaintrain", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/soumaintrain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-hache-surgele", + "id": "en:frozen-chopped-garlic", + "name": "Ail haché surgelé", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saumons", + "products": 5, + "id": "en:saumons", + "name": "en:Saumons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:glaces", + "name": "de:Glaces", + "id": "de:glaces", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oranges-a-jus", + "name": "Oranges-a-jus", + "id": "fr:oranges-a-jus", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes-bio", + "id": "fr:saumons-fumes-bio", + "name": "Saumons-fumes-bio", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coudes-rayes", + "name": "Coudes-rayes", + "id": "fr:coudes-rayes", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumes-frais", + "products": 5, + "id": "es:legumes-frais", + "name": "es:Legumes-frais" + }, + { + "id": "es:frais", + "name": "es:Frais", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/es:frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates-de-ble-dur", + "products": 5, + "name": "it:Pates-de-ble-dur", + "id": "it:pates-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:boissons", + "name": "ru:Boissons", + "id": "ru:boissons", + "products": 5 + }, + { + "products": 5, + "name": "Sauces tikka masala", + "id": "en:tikka-masala-sauce", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tikka-masala" + }, + { + "id": "fr:huiles-d-olive-aromatisees", + "name": "Huiles-d-olive-aromatisees", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-aromatisees" + }, + { + "id": "fr:faugeres", + "name": "Faugères", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/faugeres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1398382" + ] + }, + { + "products": 5, + "id": "fr:fromages-blancs-alleges-en-matiere-grasse", + "name": "Fromages-blancs-alleges-en-matiere-grasse", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-alleges-en-matiere-grasse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-plantes-frais", + "products": 5, + "name": "es:Aliments-a-base-de-plantes-frais", + "id": "es:aliments-a-base-de-plantes-frais" + }, + { + "products": 5, + "id": "fr:xiu-mai", + "name": "Xiu-mai", + "url": "https://fr.openfoodfacts.org/categorie/xiu-mai" + }, + { + "name": "Crèmes fraîches allégées en matière grasse", + "id": "fr:cremes-fraiches-allegees-en-matiere-grasse", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-allegees-en-matiere-grasse" + }, + { + "id": "en:chestnut-syrups", + "name": "Sirops de chataignes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-chataignes" + }, + { + "id": "en:substitut-du-lait", + "name": "en:Substitut-du-lait", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:substitut-du-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/susse-brotaufstriche", + "products": 5, + "id": "fr:susse-brotaufstriche", + "name": "Susse-brotaufstriche" + }, + { + "id": "en:fresh-legume-sprouts", + "name": "Pousses de légumineuses frais", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-legumineuses-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-fumes", + "products": 5, + "name": "Saucissons-fumes", + "id": "fr:saucissons-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-agrumes", + "id": "fr:jus-d-agrumes", + "name": "Jus-d-agrumes", + "products": 5 + }, + { + "products": 5, + "id": "fr:pilons-de-poulet", + "name": "Pilons-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/pilons-de-poulet" + }, + { + "name": "Thes-noirs-darjeeling", + "id": "fr:thes-noirs-darjeeling", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-darjeeling" + }, + { + "id": "fr:brote", + "name": "Brote", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/brote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-a-l-orange", + "name": "en:Sodas-a-l-orange", + "id": "en:sodas-a-l-orange", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poudre-a-lever", + "products": 5, + "name": "Poudre-a-lever", + "id": "fr:poudre-a-lever" + }, + { + "products": 5, + "name": "Gélifiants végétaux", + "id": "nl:plantbased-gelatin", + "url": "https://fr.openfoodfacts.org/categorie/gelifiants-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-speciaux", + "products": 5, + "name": "en:Pains-speciaux", + "id": "en:pains-speciaux" + }, + { + "name": "Crèmes végétales à base d'avoine pour cuisiner", + "id": "en:oat-based-creams-for-cooking", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-d-avoine-pour-cuisiner" + }, + { + "products": 5, + "name": "en:Chips-et-frites", + "id": "en:chips-et-frites", + "url": "https://fr.openfoodfacts.org/categorie/en:chips-et-frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aligot", + "name": "Aligot", + "id": "fr:aligot", + "products": 5 + }, + { + "products": 5, + "id": "fr:bieres-de-specialite", + "name": "Bieres-de-specialite", + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-specialite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cookies-au-chocolat", + "name": "en:Cookies-au-chocolat", + "id": "en:cookies-au-chocolat", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/val-de-loire", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18745529" + ], + "id": "fr:val-de-loire", + "name": "Val de Loire", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mogettes-cuisinees", + "name": "Mogettes-cuisinees", + "id": "fr:mogettes-cuisinees", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rivesaltes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q455197" + ], + "products": 5, + "id": "fr:rivesaltes", + "name": "Rivesaltes" + }, + { + "products": 5, + "id": "fr:croquets-de-provence", + "name": "Croquets-de-provence", + "url": "https://fr.openfoodfacts.org/categorie/croquets-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pita", + "products": 5, + "name": "Sauces-pita", + "id": "fr:sauces-pita" + }, + { + "products": 5, + "id": "fr:cuisses-de-lapin", + "name": "Cuisses-de-lapin", + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-lapin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/konfekt", + "products": 5, + "id": "fr:konfekt", + "name": "Konfekt" + }, + { + "id": "fr:sauces-froides", + "name": "Sauces-froides", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/sauces-froides" + }, + { + "products": 5, + "id": "fr:friands-a-la-viande", + "name": "Friands-a-la-viande", + "url": "https://fr.openfoodfacts.org/categorie/friands-a-la-viande" + }, + { + "id": "fr:sauce-cuisinee", + "name": "Sauce-cuisinee", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/sauce-cuisinee" + }, + { + "products": 5, + "name": "Confits-de-fruits", + "id": "fr:confits-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fenouils", + "sameAs": [ + "https://www.wikidata.org/wiki/Q43511" + ], + "id": "en:fennel", + "name": "Fenouils", + "products": 5 + }, + { + "name": "Cabecous", + "id": "fr:cabecous", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/cabecous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus", + "name": "Jus", + "id": "fr:jus", + "products": 5 + }, + { + "name": "Poulpe", + "id": "fr:poulpe", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/poulpe" + }, + { + "name": "Paninis", + "id": "fr:paninis", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/paninis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialite-fromagere", + "products": 5, + "id": "fr:specialite-fromagere", + "name": "Specialite-fromagere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-citron", + "id": "fr:biscuits-au-citron", + "name": "Biscuits-au-citron", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-a-la-noix-de-coco", + "products": 5, + "name": "Barres chocolatées à la noix de coco", + "id": "fr:barres-chocolatees-a-la-noix-de-coco" + }, + { + "products": 5, + "id": "fr:fermentierte-lebensmittel", + "name": "Fermentierte-lebensmittel", + "url": "https://fr.openfoodfacts.org/categorie/fermentierte-lebensmittel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/basilic-seche-moulu", + "products": 5, + "id": "en:ground-dried-basil", + "name": "Basilic séché moulu" + }, + { + "id": "fr:jambon-persille-de-bourgogne", + "name": "Jambon-persille-de-bourgogne", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/jambon-persille-de-bourgogne" + }, + { + "id": "fr:poudre-de-cacao", + "name": "Poudre-de-cacao", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/poudre-de-cacao" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q477179" + ], + "url": "https://fr.openfoodfacts.org/categorie/melons-cantaloup", + "products": 5, + "id": "en:cantaloupe-melons", + "name": "Melons Cantaloup" + }, + { + "id": "fr:cabernet-sauvignon", + "name": "Cabernet-sauvignon", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/cabernet-sauvignon" + }, + { + "products": 5, + "name": "Compotes-pommes-fruits-rouges", + "id": "fr:compotes-pommes-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-fruits-rouges" + }, + { + "products": 5, + "name": "Poissons-bio", + "id": "fr:poissons-bio", + "url": "https://fr.openfoodfacts.org/categorie/poissons-bio" + }, + { + "products": 5, + "id": "fr:sauces-beurre-blanc", + "name": "Sauces beurre blanc", + "url": "https://fr.openfoodfacts.org/categorie/sauces-beurre-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-de-degustation", + "name": "Chocolats-de-degustation", + "id": "fr:chocolats-de-degustation", + "products": 5 + }, + { + "name": "Chocolats-noirs-aux-noix-de-pecan", + "id": "fr:chocolats-noirs-aux-noix-de-pecan", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-noix-de-pecan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-bio", + "products": 5, + "id": "fr:riz-bio", + "name": "Riz-bio" + }, + { + "id": "fr:filets-d-anchois-marines-a-l-ail-et-au-persil", + "name": "Filets d'anchois marinés à l'ail et au persil", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines-a-l-ail-et-au-persil" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-des-sables", + "products": 5, + "id": "fr:carottes-des-sables", + "name": "Carottes-des-sables" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-languedoc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1136603" + ], + "name": "Coteaux du Languedoc", + "id": "fr:coteaux-du-languedoc", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-canard-confites", + "products": 5, + "name": "Cuisses de canard confites", + "id": "fr:cuisses-de-canard-confites" + }, + { + "products": 5, + "id": "fr:couscous", + "name": "Couscous", + "url": "https://fr.openfoodfacts.org/categorie/couscous" + }, + { + "id": "en:toasted-egg-yolk-turron", + "name": "Toasted egg yolk turrón", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/toasted-egg-yolk-turron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-d-amande-en-poudre", + "id": "en:powdered-almond-milks", + "name": "Boissons végétales d'amande en poudre", + "products": 5 + }, + { + "id": "fr:mini-gaches", + "name": "Mini-gaches", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/mini-gaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epaules-cuites", + "products": 5, + "id": "fr:epaules-cuites", + "name": "Epaules-cuites" + }, + { + "products": 5, + "id": "fr:mousses-aux-marrons", + "name": "Mousses-aux-marrons", + "url": "https://fr.openfoodfacts.org/categorie/mousses-aux-marrons" + }, + { + "products": 5, + "id": "es:boissons-alcoolisees", + "name": "es:Boissons-alcoolisees", + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-alcoolisees" + }, + { + "products": 5, + "id": "en:raw-shelled-sunflower-seeds", + "name": "Graines de tournesol décortiquées crues", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-decortiquees-crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cantal-entre-deux", + "products": 5, + "id": "fr:cantal-entre-deux", + "name": "Cantal-entre-deux" + }, + { + "name": "de:Confitures", + "id": "de:confitures", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/de:confitures" + }, + { + "id": "en:chewing-gum-sans-sucres", + "name": "en:Chewing-gum-sans-sucres", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:chewing-gum-sans-sucres" + }, + { + "products": 5, + "name": "Cacahuetes-caramelisees", + "id": "fr:cacahuetes-caramelisees", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-caramelisees" + }, + { + "id": "fr:oignons-jaunes", + "name": "Oignons-jaunes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/oignons-jaunes" + }, + { + "name": "Alicaments", + "id": "fr:alicaments", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/alicaments" + }, + { + "products": 5, + "name": "Mixed plant milks", + "id": "en:mixed-plant-milks", + "url": "https://fr.openfoodfacts.org/categorie/mixed-plant-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fagottini", + "id": "fr:fagottini", + "name": "Fagottini", + "products": 5 + }, + { + "name": "es:Aliments-a-base-de-plantes-en-conserve", + "id": "es:aliments-a-base-de-plantes-en-conserve", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-plantes-en-conserve" + }, + { + "products": 5, + "id": "en:biscuits-aperitifs", + "name": "en:Biscuits-aperitifs", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-aperitifs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-surgeles", + "id": "en:frozen-peppers", + "name": "Poivrons surgelés", + "products": 5 + }, + { + "name": "Nuggets-de-volaille", + "id": "fr:nuggets-de-volaille", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-volaille" + }, + { + "products": 5, + "id": "en:medium-grain-rices", + "name": "Riz à grain médium", + "url": "https://fr.openfoodfacts.org/categorie/riz-a-grain-medium" + }, + { + "id": "en:cream-of-zucchini-soups", + "name": "Veloutés de courgettes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-courgettes" + }, + { + "products": 5, + "name": "Verveine menthe", + "id": "en:verbena-peppermint", + "url": "https://fr.openfoodfacts.org/categorie/verveine-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paves-de-boeuf", + "products": 5, + "id": "fr:paves-de-boeuf", + "name": "Paves-de-boeuf" + }, + { + "id": "fr:crumbles", + "name": "Crumbles", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/crumbles" + }, + { + "id": "fr:confitures-au-fructose", + "name": "Confitures-au-fructose", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/confitures-au-fructose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pays-d-herault", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3373278" + ], + "name": "Pays d'Hérault", + "id": "fr:pays-d-herault", + "products": 5 + }, + { + "products": 5, + "name": "Frutas-y-sus-productos", + "id": "fr:frutas-y-sus-productos", + "url": "https://fr.openfoodfacts.org/categorie/frutas-y-sus-productos" + }, + { + "products": 5, + "id": "fr:rillettes-de-saumon-rose", + "name": "Rillettes de saumon rose", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-saumon-rose" + }, + { + "products": 5, + "id": "fr:madeleines-coquilles", + "name": "Madeleines-coquilles", + "url": "https://fr.openfoodfacts.org/categorie/madeleines-coquilles" + }, + { + "products": 5, + "name": "Sauces blanches", + "id": "fr:sauces-blanches", + "url": "https://fr.openfoodfacts.org/categorie/sauces-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spatzles-d-alsace", + "id": "fr:spatzles-d-alsace", + "name": "Spatzles-d-alsace", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girolles-en-conserve", + "products": 5, + "id": "en:canned-chanterelles", + "name": "Girolles en conserve" + }, + { + "products": 5, + "name": "Postres", + "id": "fr:postres", + "url": "https://fr.openfoodfacts.org/categorie/postres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-royal", + "products": 5, + "id": "fr:couscous-royal", + "name": "Couscous-royal" + }, + { + "products": 5, + "name": "Papillons-aux-oeufs", + "id": "fr:papillons-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/papillons-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-au-ble-dur", + "id": "fr:tagliatelles-au-ble-dur", + "name": "Tagliatelles-au-ble-dur", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-24-mois", + "products": 5, + "id": "en:from-24-months", + "name": "Dès 24 mois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-a-coques", + "name": "de:Fruits-a-coques", + "id": "de:fruits-a-coques", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-jura", + "name": "Miels du Jura", + "id": "en:honeys-from-jura", + "products": 5 + }, + { + "products": 5, + "name": "en:Chips-de-pommes-de-terre", + "id": "en:chips-de-pommes-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/en:chips-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croquets-aux-olives", + "name": "Croquets-aux-olives", + "id": "fr:croquets-aux-olives", + "products": 5 + }, + { + "products": 5, + "name": "de:Matieres-grasses-vegetales", + "id": "de:matieres-grasses-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/de:matieres-grasses-vegetales" + }, + { + "products": 5, + "name": "Galettes d'épeautre", + "id": "en:puffed-spelt-cakes", + "url": "https://fr.openfoodfacts.org/categorie/galettes-d-epeautre" + }, + { + "products": 5, + "id": "en:blueberry-soy-yogurts", + "name": "Yaourts de soja à la myrtille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-a-la-myrtille" + }, + { + "name": "Chutneys de fruit", + "id": "en:fruit-chutneys", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/chutneys-de-fruit" + }, + { + "products": 5, + "name": "Naans", + "id": "en:naans", + "url": "https://fr.openfoodfacts.org/categorie/naans", + "sameAs": [ + "https://www.wikidata.org/wiki/Q689950" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gansettes", + "products": 5, + "id": "fr:gansettes", + "name": "Gansettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-plantes-sechees", + "products": 5, + "id": "es:aliments-a-base-de-plantes-sechees", + "name": "es:Aliments-a-base-de-plantes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-a-tartiner-sales", + "id": "en:produits-a-tartiner-sales", + "name": "en:Produits-a-tartiner-sales", + "products": 5 + }, + { + "products": 5, + "id": "fr:olives-noires-a-la-grecque", + "name": "Olives-noires-a-la-grecque", + "url": "https://fr.openfoodfacts.org/categorie/olives-noires-a-la-grecque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tuiles-salees", + "products": 5, + "id": "en:tuiles-salees", + "name": "en:Tuiles-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-fruits", + "name": "Cremes-de-fruits", + "id": "fr:cremes-de-fruits", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-piments", + "products": 5, + "id": "fr:purees-de-piments", + "name": "Purees-de-piments" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-surgeles", + "products": 5, + "id": "de:plats-prepares-surgeles", + "name": "de:Plats-prepares-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-menthe", + "products": 5, + "id": "en:iced-teas-with-mint-flavor", + "name": "Thés glacés saveur menthe" + }, + { + "products": 5, + "name": "Brioches-fourrees", + "id": "fr:brioches-fourrees", + "url": "https://fr.openfoodfacts.org/categorie/brioches-fourrees" + }, + { + "id": "fr:papillons-d-alsace", + "name": "Papillons-d-alsace", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/papillons-d-alsace" + }, + { + "products": 5, + "id": "fr:mochi", + "name": "Mochi", + "url": "https://fr.openfoodfacts.org/categorie/mochi" + }, + { + "name": "en:Pates-a-tartiner", + "id": "en:pates-a-tartiner", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-noisettes", + "name": "Biscuits-aux-noisettes", + "id": "fr:biscuits-aux-noisettes", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-en-poudre", + "id": "en:chocolats-en-poudre", + "name": "en:Chocolats-en-poudre", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-l-echalote-et-ciboulette", + "id": "fr:fromages-a-l-echalote-et-ciboulette", + "name": "Fromages-a-l-echalote-et-ciboulette", + "products": 5 + }, + { + "products": 5, + "name": "Quenelles-au-fromage", + "id": "fr:quenelles-au-fromage", + "url": "https://fr.openfoodfacts.org/categorie/quenelles-au-fromage" + }, + { + "products": 5, + "name": "Jambons-a-griller", + "id": "fr:jambons-a-griller", + "url": "https://fr.openfoodfacts.org/categorie/jambons-a-griller" + }, + { + "products": 5, + "id": "fr:desserts-frais", + "name": "Desserts-frais", + "url": "https://fr.openfoodfacts.org/categorie/desserts-frais" + }, + { + "name": "Chicken-and-mushrooms-risottos", + "id": "fr:chicken-and-mushrooms-risottos", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/chicken-and-mushrooms-risottos" + }, + { + "name": "Whisky japonais", + "id": "en:japanese-whiskey", + "products": 5, + "sameAs": [ + "https://www.wikidata.org/wiki/Q901367" + ], + "url": "https://fr.openfoodfacts.org/categorie/whisky-japonais" + }, + { + "products": 5, + "name": "en:Toaster-pastries", + "id": "en:toaster-pastries", + "url": "https://fr.openfoodfacts.org/categorie/en:toaster-pastries" + }, + { + "id": "en:frozen-yogurts", + "name": "Yaourts glacés", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-glaces", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13319" + ] + }, + { + "id": "fr:bordeaux-clairet", + "name": "Bordeaux Clairet", + "products": 5, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1427324" + ], + "url": "https://fr.openfoodfacts.org/categorie/bordeaux-clairet" + }, + { + "products": 5, + "name": "Confitures-de-cerises-noires", + "id": "fr:confitures-de-cerises-noires", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-cerises-noires" + }, + { + "id": "fr:legumes-sechees-moulus", + "name": "Legumes-sechees-moulus", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/legumes-sechees-moulus" + }, + { + "products": 5, + "name": "Aiguillettes-de-canard", + "id": "fr:aiguillettes-de-canard", + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-canard" + }, + { + "products": 5, + "name": "Cidres-aromatises", + "id": "fr:cidres-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/cidres-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marinades", + "products": 5, + "name": "Marinades", + "id": "fr:marinades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-fondues-de-poireaux", + "products": 5, + "name": "Saumons-fondues-de-poireaux", + "id": "fr:saumons-fondues-de-poireaux" + }, + { + "name": "Emmentals de Savoie", + "id": "en:emmentals-of-savoy", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/emmentals-de-savoie" + }, + { + "name": "Confitures de raisins", + "id": "en:grape-jams", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-raisins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-et-boissons-de-noel", + "id": "en:aliments-et-boissons-de-noel", + "name": "en:Aliments-et-boissons-de-noel", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-patissiers", + "products": 5, + "id": "fr:yaourts-patissiers", + "name": "Yaourts-patissiers" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q120096" + ], + "url": "https://fr.openfoodfacts.org/categorie/tempeh", + "id": "en:tempeh", + "name": "Tempeh", + "products": 5 + }, + { + "products": 5, + "id": "fr:cotes-de-gascogne", + "name": "Côtes de Gascogne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q839207" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-gascogne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:alimentos-y-bebidas-de-origen-vegetal", + "products": 5, + "id": "en:alimentos-y-bebidas-de-origen-vegetal", + "name": "en:Alimentos-y-bebidas-de-origen-vegetal" + }, + { + "name": "en:Barres-proteinees", + "id": "en:barres-proteinees", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:barres-proteinees" + }, + { + "products": 5, + "name": "Colins-d-alaska-a-la-bordelaise", + "id": "fr:colins-d-alaska-a-la-bordelaise", + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-la-bordelaise" + }, + { + "products": 5, + "name": "Croutons-a-l-ail", + "id": "fr:croutons-a-l-ail", + "url": "https://fr.openfoodfacts.org/categorie/croutons-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-crabe", + "name": "Miettes-de-crabe", + "id": "fr:miettes-de-crabe", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-minerales-naturelles", + "name": "en:Eaux-minerales-naturelles", + "id": "en:eaux-minerales-naturelles", + "products": 5 + }, + { + "products": 5, + "name": "Paupiettes-de-porc", + "id": "fr:paupiettes-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/paupiettes-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moussaka", + "products": 5, + "name": "Moussaka", + "id": "fr:moussaka" + }, + { + "products": 5, + "id": "fr:pates-asiatiques", + "name": "Pates-asiatiques", + "url": "https://fr.openfoodfacts.org/categorie/pates-asiatiques" + }, + { + "id": "en:japanese-green-teas", + "name": "Thés verts japonais", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-japonais" + }, + { + "name": "Chocolats blancs aromatisés", + "id": "fr:chocolats-blancs-aromatises", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-caille", + "id": "fr:terrines-de-caille", + "name": "Terrines-de-caille", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/craquelins", + "products": 5, + "id": "fr:craquelins", + "name": "Craquelins" + }, + { + "products": 5, + "name": "Vermicelles de blé dur", + "id": "es:fideos-de-trigo-duro", + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-a-coques-et-derives", + "name": "es:Fruits-a-coques-et-derives", + "id": "es:fruits-a-coques-et-derives", + "products": 5 + }, + { + "name": "Arabica", + "id": "fr:arabica", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/arabica" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epaule-cuite", + "id": "fr:epaule-cuite", + "name": "Epaule-cuite", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-au-ble-dur-semi-complet", + "name": "Spaghetti-au-ble-dur-semi-complet", + "id": "fr:spaghetti-au-ble-dur-semi-complet", + "products": 5 + }, + { + "name": "Amidons", + "id": "en:starches", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/amidons", + "sameAs": [ + "https://www.wikidata.org/wiki/Q41534" + ] + }, + { + "products": 5, + "name": "Manouri", + "id": "fr:manouri", + "url": "https://fr.openfoodfacts.org/categorie/manouri" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dattes-medjoul", + "products": 5, + "id": "fr:dattes-medjoul", + "name": "Dattes-medjoul" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumineuses-et-derives", + "products": 5, + "name": "es:Legumineuses-et-derives", + "id": "es:legumineuses-et-derives" + }, + { + "products": 5, + "id": "fr:saucisses-a-cuire", + "name": "Saucisses-a-cuire", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-a-cuire" + }, + { + "name": "Fromages-au-poivre", + "id": "fr:fromages-au-poivre", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-poivre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bleus-de-bresse", + "name": "Bleus-de-bresse", + "id": "fr:bleus-de-bresse", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-coco", + "id": "fr:farines-de-coco", + "name": "Farines-de-coco", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-dorade", + "name": "Rillettes-de-dorade", + "id": "fr:rillettes-de-dorade", + "products": 5 + }, + { + "id": "fr:fromages-a-raclette", + "name": "Fromages-a-raclette", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-raclette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-de-fruits", + "products": 5, + "id": "es:jus-de-fruits", + "name": "es:Jus-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aperitif", + "products": 5, + "name": "es:Aperitif", + "id": "es:aperitif" + }, + { + "products": 5, + "id": "es:chips-et-frites", + "name": "es:Chips-et-frites", + "url": "https://fr.openfoodfacts.org/categorie/es:chips-et-frites" + }, + { + "products": 5, + "name": "Alphabets-au-ble-dur", + "id": "fr:alphabets-au-ble-dur", + "url": "https://fr.openfoodfacts.org/categorie/alphabets-au-ble-dur" + }, + { + "name": "Fromage-a-pate-molle", + "id": "fr:fromage-a-pate-molle", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/fromage-a-pate-molle" + }, + { + "products": 5, + "name": "en:Produits-deshydrates", + "id": "en:produits-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/en:produits-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-layon-val-de-loire", + "name": "Coteaux du Layon Val de Loire", + "id": "fr:coteaux-du-layon-val-de-loire", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zoete-snacks", + "products": 5, + "id": "fr:zoete-snacks", + "name": "Zoete-snacks" + }, + { + "id": "en:bay-laurel", + "name": "Laurier", + "products": 5, + "sameAs": [ + "https://www.wikidata.org/wiki/Q26006" + ], + "url": "https://fr.openfoodfacts.org/categorie/laurier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fumets-de-poisson", + "products": 5, + "name": "Fumets-de-poisson", + "id": "fr:fumets-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-d-arachide", + "products": 5, + "name": "Sardines-a-l-huile-d-arachide", + "id": "fr:sardines-a-l-huile-d-arachide" + }, + { + "name": "Cidres-de-normandie", + "id": "fr:cidres-de-normandie", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/cidres-de-normandie" + }, + { + "products": 5, + "id": "fr:knacks-industrielles-a-teneur-reduite-en-sel", + "name": "Knacks industrielles à teneur réduite en sel", + "url": "https://fr.openfoodfacts.org/categorie/knacks-industrielles-a-teneur-reduite-en-sel" + }, + { + "products": 5, + "name": "Bieres-de-fermentation-haute", + "id": "fr:bieres-de-fermentation-haute", + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-fermentation-haute" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-igp", + "products": 5, + "id": "fr:produits-igp", + "name": "Produits-igp" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-au-caramel", + "products": 5, + "id": "fr:bonbons-de-chocolat-au-caramel", + "name": "Bonbons-de-chocolat-au-caramel" + }, + { + "id": "fr:levures-boulangeres", + "name": "Levures-boulangeres", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/levures-boulangeres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-riz-au-cacao", + "name": "Boissons végétales de riz au cacao", + "id": "en:cocoa-rice-milks", + "products": 5 + }, + { + "name": "Filets-de-sardines-citron-basilic", + "id": "fr:filets-de-sardines-citron-basilic", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-citron-basilic" + }, + { + "products": 5, + "name": "Soupes-a-l-oignon", + "id": "fr:soupes-a-l-oignon", + "url": "https://fr.openfoodfacts.org/categorie/soupes-a-l-oignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-surgelees", + "products": 5, + "id": "en:pizzas-surgelees", + "name": "en:Pizzas-surgelees" + }, + { + "products": 5, + "id": "fr:gentiane", + "name": "Gentiane", + "url": "https://fr.openfoodfacts.org/categorie/gentiane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-au-naturel", + "id": "fr:saumons-au-naturel", + "name": "Saumons-au-naturel", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/craquants", + "name": "Craquants", + "id": "fr:craquants", + "products": 5 + }, + { + "name": "Sauces aux olives", + "id": "en:olive-sauces", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-tranchees-au-chocolat", + "products": 5, + "name": "Brioches-tranchees-au-chocolat", + "id": "fr:brioches-tranchees-au-chocolat" + }, + { + "products": 5, + "name": "en:Boissons-lactees", + "id": "en:boissons-lactees", + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-lactees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-lactees-au-cafe", + "id": "en:boissons-lactees-au-cafe", + "name": "en:Boissons-lactees-au-cafe", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits", + "id": "en:laits", + "name": "en:Laits", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-kebab", + "name": "Pains Kebab", + "id": "fr:pains-kebab", + "products": 5 + }, + { + "products": 5, + "id": "en:soups-for-babies", + "name": "Potages pour bébé", + "url": "https://fr.openfoodfacts.org/categorie/potages-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panini-rolls", + "products": 5, + "name": "Panini-rolls", + "id": "fr:panini-rolls" + }, + { + "id": "fr:semoules-au-lait-vanille", + "name": "Semoules-au-lait-vanille", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/semoules-au-lait-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-chevaline", + "name": "Plats à base de viande chevaline", + "id": "en:meals-with-horse-meat", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-surinam", + "products": 5, + "id": "en:surinam-rices", + "name": "Riz Surinam" + }, + { + "products": 5, + "name": "Pâtes de sarrasin", + "id": "en:buckwheat-pasta", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-sarrasin" + }, + { + "products": 5, + "id": "fr:huiles-pour-pizza", + "name": "Huiles-pour-pizza", + "url": "https://fr.openfoodfacts.org/categorie/huiles-pour-pizza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-piment", + "id": "fr:chocolats-au-piment", + "name": "Chocolats-au-piment", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits", + "products": 5, + "id": "fr:melanges-de-fruits", + "name": "Melanges-de-fruits" + }, + { + "id": "fr:moutardes-fortes", + "name": "Moutardes-fortes", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-fortes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/camemberts-d-isigny", + "products": 5, + "name": "Camemberts-d-isigny", + "id": "fr:camemberts-d-isigny" + }, + { + "name": "Pizzas margherita", + "id": "en:margherita-pizza", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-margherita" + }, + { + "id": "fr:pissaladieres", + "name": "Pissaladieres", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/pissaladieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-carbonara", + "products": 5, + "name": "Sauces carbonara", + "id": "fr:sauces-carbonara" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-madere", + "products": 5, + "id": "en:madere-sauces", + "name": "Sauces Madère" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rose-bio", + "name": "Vin-rose-bio", + "id": "fr:vin-rose-bio", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-entiers-concentres", + "products": 5, + "id": "fr:laits-entiers-concentres", + "name": "Laits entiers concentrés" + }, + { + "products": 5, + "id": "en:red-ports", + "name": "Porto rouges", + "url": "https://fr.openfoodfacts.org/categorie/porto-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-bavaroises", + "name": "Bières bavaroises", + "id": "en:bavarian-beers", + "products": 5 + }, + { + "products": 5, + "id": "fr:macedoines-de-legumes", + "name": "Macedoines-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/macedoines-de-legumes" + }, + { + "name": "Entre-deux-mers", + "id": "fr:entre-deux-mers", + "products": 5, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1345117" + ], + "url": "https://fr.openfoodfacts.org/categorie/entre-deux-mers" + }, + { + "name": "en:Vins", + "id": "en:vins", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/en:vins" + }, + { + "id": "en:spanish-cheeses", + "name": "Fromages espagnols", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/fromages-espagnols" + }, + { + "name": "de:Confitures-et-marmelades", + "id": "de:confitures-et-marmelades", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-et-marmelades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-secs", + "name": "es:Fruits-secs", + "id": "es:fruits-secs", + "products": 5 + }, + { + "products": 5, + "id": "en:purple-asparagus", + "name": "Asperges violettes", + "url": "https://fr.openfoodfacts.org/categorie/asperges-violettes" + }, + { + "id": "en:berries-soy-yogurts", + "name": "Yaourts soja aux fruits rouges", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-aux-fruits-rouges" + }, + { + "id": "en:powdered-nut-milks", + "name": "Boissons végétales de fruits à coque en poudre", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-fruits-a-coque-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/burrata-au-lait-de-vache", + "products": 5, + "name": "Burrata-au-lait-de-vache", + "id": "fr:burrata-au-lait-de-vache" + }, + { + "products": 5, + "name": "de:Produits-de-la-mer", + "id": "de:produits-de-la-mer", + "url": "https://fr.openfoodfacts.org/categorie/de:produits-de-la-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-confiture", + "name": "Yaourts-a-la-confiture", + "id": "fr:yaourts-a-la-confiture", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carpaccio-de-boeuf", + "id": "en:beef-carpaccio", + "name": "Carpaccio de boeuf", + "products": 5 + }, + { + "products": 5, + "id": "nl:goose-fats", + "name": "Graisse d'oie", + "url": "https://fr.openfoodfacts.org/categorie/graisse-d-oie" + }, + { + "products": 5, + "id": "fr:filets-de-maquereaux-grilles", + "name": "Filets-de-maquereaux-grilles", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-grilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morgon", + "products": 5, + "name": "Morgon", + "id": "fr:morgon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-d-ananas", + "name": "Nectars d'ananas", + "id": "en:pineapple-nectars", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquilles-de-noel", + "products": 5, + "name": "Coquilles-de-noel", + "id": "fr:coquilles-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-au-caramel", + "id": "fr:desserts-de-soja-au-caramel", + "name": "Desserts-de-soja-au-caramel", + "products": 5 + }, + { + "products": 5, + "name": "Bleu des Causses", + "id": "fr:bleu-des-causses", + "url": "https://fr.openfoodfacts.org/categorie/bleu-des-causses" + }, + { + "id": "en:powdered-plant-milks", + "name": "Boissons végétales en poudre", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-en-poudre" + }, + { + "id": "fr:boeuf-seche", + "name": "Boeuf-seche", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/boeuf-seche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:porridges", + "id": "en:porridges", + "name": "en:Porridges", + "products": 5 + }, + { + "products": 5, + "id": "en:huiles", + "name": "en:Huiles", + "url": "https://fr.openfoodfacts.org/categorie/en:huiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-aromatises-a-la-vanille", + "products": 5, + "name": "Laits aromatisés à la vanille", + "id": "en:vanilla-milks" + }, + { + "products": 5, + "name": "nl:Produits-a-tartiner", + "id": "nl:produits-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-cerise", + "name": "Compotes pommes cerise", + "id": "fr:compotes-pommes-cerise", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-surgeles", + "products": 5, + "name": "Gratins-surgeles", + "id": "fr:gratins-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-coing", + "products": 5, + "id": "fr:compotes-pommes-coing", + "name": "Compotes pommes coing" + }, + { + "id": "de:poissons", + "name": "de:Poissons", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/de:poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mimolettes-demi-vieilles", + "id": "en:half-aged-mimolettes", + "name": "Mimolettes demi-vieilles", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cardons", + "products": 5, + "id": "en:cardoons", + "name": "Cardons" + }, + { + "name": "Choux de Bruxelles", + "id": "en:brussels-sprouts", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/choux-de-bruxelles" + }, + { + "products": 5, + "name": "Cereales-y-derivados", + "id": "fr:cereales-y-derivados", + "url": "https://fr.openfoodfacts.org/categorie/cereales-y-derivados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coques", + "name": "Coques", + "id": "fr:coques", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-bananes", + "products": 5, + "name": "Chips-de-bananes", + "id": "fr:chips-de-bananes" + }, + { + "products": 5, + "name": "Saint-agur", + "id": "fr:saint-agur", + "url": "https://fr.openfoodfacts.org/categorie/saint-agur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-rouilles", + "name": "Sauces-rouilles", + "id": "fr:sauces-rouilles", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-aromatises", + "products": 5, + "id": "fr:fromages-frais-aromatises", + "name": "Fromages-frais-aromatises" + }, + { + "products": 5, + "id": "fr:nonnettes-a-la-myrtille", + "name": "Nonnettes-a-la-myrtille", + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-la-myrtille" + }, + { + "products": 5, + "name": "Têtes de Moine", + "id": "fr:tetes-de-moine", + "url": "https://fr.openfoodfacts.org/categorie/tetes-de-moine", + "sameAs": [ + "https://www.wikidata.org/wiki/Q687579" + ] + }, + { + "name": "Nems-a-la-crevette", + "id": "fr:nems-a-la-crevette", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/nems-a-la-crevette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-avec-du-fromage", + "id": "fr:pates-de-ble-dur-avec-du-fromage", + "name": "Pates-de-ble-dur-avec-du-fromage", + "products": 5 + }, + { + "name": "Miels de tournesol", + "id": "en:sunflower-honeys", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/non-homogenized-milks", + "name": "Non-homogenized milks", + "id": "en:non-homogenized-milks", + "products": 5 + }, + { + "name": "Huiles-pimentees", + "id": "fr:huiles-pimentees", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/huiles-pimentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-a-l-alcool", + "products": 5, + "name": "Chocolats-fourres-a-l-alcool", + "id": "fr:chocolats-fourres-a-l-alcool" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-au-chocolat-au-lait", + "id": "en:biscuits-au-chocolat-au-lait", + "name": "en:Biscuits-au-chocolat-au-lait", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-prepares", + "id": "fr:quinoa-prepares", + "name": "Quinoa-prepares", + "products": 5 + }, + { + "id": "de:fruits-secs", + "name": "de:Fruits-secs", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-secs" + }, + { + "products": 5, + "id": "fr:frutos-de-cascara", + "name": "Frutos-de-cascara", + "url": "https://fr.openfoodfacts.org/categorie/frutos-de-cascara" + }, + { + "name": "Fraises gélifiées", + "id": "en:gummy-strawberries", + "products": 5, + "url": "https://fr.openfoodfacts.org/categorie/fraises-gelifiees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-avec-edulcorants", + "name": "Yaourts-avec-edulcorants", + "id": "fr:yaourts-avec-edulcorants", + "products": 5 + }, + { + "products": 5, + "name": "Mélanges de fruits rouges surgelés", + "id": "en:frozen-mixed-berries", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-rouges-surgeles" + }, + { + "products": 5, + "name": "en:Pates-farcies", + "id": "en:pates-farcies", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-farcies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-de-sources", + "products": 5, + "id": "en:eaux-de-sources", + "name": "en:Eaux-de-sources" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-merlu", + "name": "Filets-de-merlu", + "id": "fr:filets-de-merlu", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pains", + "products": 5, + "name": "es:Pains", + "id": "es:pains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-fours", + "name": "Petits-fours", + "id": "fr:petits-fours", + "products": 5 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/risottos-aux-crevettes", + "products": 5, + "name": "Risottos aux crevettes", + "id": "en:shrimp-risottos" + }, + { + "products": 5, + "name": "Chocolats-au-lait-a-la-nougatine", + "id": "fr:chocolats-au-lait-a-la-nougatine", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-la-nougatine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-papayes", + "products": 5, + "name": "Confitures de papayes", + "id": "en:papaya-jams" + }, + { + "products": 5, + "name": "Pains viennois", + "id": "en:vienna-bread", + "url": "https://fr.openfoodfacts.org/categorie/pains-viennois", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3031313" + ] + }, + { + "products": 5, + "name": "Aliments d'origine végétale lyophilisées", + "id": "en:freeze-dried-plant-based-foods", + "url": "https://fr.openfoodfacts.org/categorie/aliments-d-origine-vegetale-lyophilisees" + }, + { + "products": 4, + "name": "Coulis-de-cassis", + "id": "fr:coulis-de-cassis", + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-cassis" + }, + { + "id": "en:lentil-flours", + "name": "Farines de lentilles", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:icecream", + "products": 4, + "id": "en:icecream", + "name": "en:Icecream" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-au-saucisson", + "products": 4, + "id": "fr:brioches-au-saucisson", + "name": "Brioches-au-saucisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charlottes", + "products": 4, + "id": "fr:charlottes", + "name": "Charlottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigre-a-la-pulpe-de-fruit", + "id": "fr:vinaigre-a-la-pulpe-de-fruit", + "name": "Vinaigre-a-la-pulpe-de-fruit", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ribs-de-porc", + "products": 4, + "name": "Ribs-de-porc", + "id": "fr:ribs-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/julienas", + "id": "fr:julienas", + "name": "Juliénas", + "products": 4 + }, + { + "name": "Blondies", + "id": "fr:blondies", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/blondies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-en-tranches", + "name": "de:Fromages-en-tranches", + "id": "de:fromages-en-tranches", + "products": 4 + }, + { + "id": "en:double-beer", + "name": "Bière double", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/biere-double" + }, + { + "products": 4, + "id": "en:rabbit-fresh-meat", + "name": "Viandes fraîches de lapin", + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-de-lapin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-hongrois", + "name": "Miels-hongrois", + "id": "fr:miels-hongrois", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-feves-de-cacao", + "products": 4, + "id": "fr:chocolats-aux-feves-de-cacao", + "name": "Chocolats-aux-feves-de-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cepes-de-bordeaux-secs", + "name": "Cèpes de Bordeaux secs", + "id": "en:dried-porcini-mushrooms", + "products": 4 + }, + { + "products": 4, + "id": "fr:steaks-de-thon", + "name": "Steaks-de-thon", + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-thon" + }, + { + "id": "en:konjac", + "name": "en:Konjac", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:konjac" + }, + { + "id": "fr:croquets-aux-amandes", + "name": "Croquets-aux-amandes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/croquets-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-anisees", + "name": "Boissons-anisees", + "id": "fr:boissons-anisees", + "products": 4 + }, + { + "products": 4, + "id": "fr:fromages-en-des", + "name": "Fromages-en-des", + "url": "https://fr.openfoodfacts.org/categorie/fromages-en-des" + }, + { + "products": 4, + "id": "en:plats-a-base-de-poulet", + "name": "en:Plats-a-base-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-poulet" + }, + { + "products": 4, + "id": "fr:cuisses-de-poulets", + "name": "Cuisses-de-poulets", + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-poulets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:getreide-und-kartoffeln", + "id": "en:getreide-und-kartoffeln", + "name": "en:Getreide-und-kartoffeln", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-au-chocolat", + "products": 4, + "name": "Biscuits-fourres-au-chocolat", + "id": "fr:biscuits-fourres-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-et-tartes-surgelees", + "products": 4, + "id": "en:pizzas-et-tartes-surgelees", + "name": "en:Pizzas-et-tartes-surgelees" + }, + { + "products": 4, + "id": "fr:nouilles-soba", + "name": "Nouilles-soba", + "url": "https://fr.openfoodfacts.org/categorie/nouilles-soba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-curry-rouges", + "products": 4, + "name": "Pâtes de curry rouges", + "id": "en:red-curry-pastes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhums-arranges", + "name": "Rhums-arranges", + "id": "fr:rhums-arranges", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartiflettes-surgelees", + "products": 4, + "name": "Tartiflettes-surgelees", + "id": "fr:tartiflettes-surgelees" + }, + { + "products": 4, + "id": "en:mung-beans", + "name": "Haricots mungo", + "url": "https://fr.openfoodfacts.org/categorie/haricots-mungo", + "sameAs": [ + "https://www.wikidata.org/wiki/Q484447" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-poire", + "name": "Sirops-de-poire", + "id": "fr:sirops-de-poire", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-agrumes", + "products": 4, + "id": "fr:sirops-d-agrumes", + "name": "Sirops-d-agrumes" + }, + { + "name": "Roses des sables", + "id": "fr:roses-des-sables", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/roses-des-sables", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3442427" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalotes-et-derives", + "id": "fr:echalotes-et-derives", + "name": "Echalotes-et-derives", + "products": 4 + }, + { + "products": 4, + "id": "es:plats-prepares-deshydrates", + "name": "es:Plats-prepares-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares-deshydrates" + }, + { + "id": "fr:pelardon", + "name": "Pélardon", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pelardon" + }, + { + "products": 4, + "name": "Poelee-de-legumes", + "id": "fr:poelee-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/poelee-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartares-de-saumon", + "products": 4, + "name": "Tartares-de-saumon", + "id": "fr:tartares-de-saumon" + }, + { + "products": 4, + "id": "en:chocolate-vanilla-ice-cream-cones", + "name": "Cônes chocolat vanille", + "url": "https://fr.openfoodfacts.org/categorie/cones-chocolat-vanille" + }, + { + "products": 4, + "name": "Chocolats-noirs-au-sesame", + "id": "fr:chocolats-noirs-au-sesame", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-grillees", + "id": "en:roasted-pumpkin-seeds", + "name": "Graines de courge grillées", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/empresure", + "products": 4, + "id": "fr:empresure", + "name": "Empresure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-l-ananas", + "products": 4, + "name": "Sorbets-a-l-ananas", + "id": "fr:sorbets-a-l-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calissons", + "name": "Calissons", + "id": "fr:calissons", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comidas-preparadas", + "products": 4, + "name": "Comidas-preparadas", + "id": "fr:comidas-preparadas" + }, + { + "id": "fr:champignons-cuisines", + "name": "Champignons-cuisines", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/champignons-cuisines" + }, + { + "products": 4, + "id": "de:aliments-a-base-de-plantes-seches", + "name": "de:Aliments-a-base-de-plantes-seches", + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-plantes-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vins", + "id": "it:vins", + "name": "it:Vins", + "products": 4 + }, + { + "id": "es:confitures-et-marmelades", + "name": "es:Confitures-et-marmelades", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-et-marmelades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-de-fruits", + "products": 4, + "id": "es:confitures-de-fruits", + "name": "es:Confitures-de-fruits" + }, + { + "id": "es:boissons-gazeuses", + "name": "es:Boissons-gazeuses", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-gazeuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:risottos-con-vegetales-deshidratados", + "name": "es:Risottos-con-vegetales-deshidratados", + "id": "es:risottos-con-vegetales-deshidratados", + "products": 4 + }, + { + "name": "es:Matieres-grasses", + "id": "es:matieres-grasses", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/es:matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-laitiers", + "id": "es:produits-laitiers", + "name": "es:Produits-laitiers", + "products": 4 + }, + { + "id": "fr:bruschettas", + "name": "Bruschettas", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/bruschettas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis", + "name": "Rotis", + "id": "fr:rotis", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:risottos-con-vegetales", + "name": "es:Risottos-con-vegetales", + "id": "es:risottos-con-vegetales", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1501889" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-blancs", + "id": "en:white-breads", + "name": "Pains blancs", + "products": 4 + }, + { + "name": "Charcuteries-de-dinde", + "id": "fr:charcuteries-de-dinde", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-de-dinde" + }, + { + "id": "en:terrines-from-brittany", + "name": "Terrines bretonnes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/terrines-bretonnes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-amour", + "products": 4, + "name": "Saint-Amour", + "id": "fr:saint-amour" + }, + { + "products": 4, + "name": "Condrieu", + "id": "fr:condrieu", + "url": "https://fr.openfoodfacts.org/categorie/condrieu", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2992326" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-preparees", + "id": "fr:moules-preparees", + "name": "Moules-preparees", + "products": 4 + }, + { + "products": 4, + "name": "Côtes d'Auvergne", + "id": "en:cotes-d-auvergne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1151017" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-d-auvergne" + }, + { + "name": "Plantes aromatiques lyophilisées", + "id": "en:lyophilized-aromatic-plants", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-lyophilisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits-pour-pizzas", + "id": "fr:kits-pour-pizzas", + "name": "Kits-pour-pizzas", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-a-la-noix-de-coco", + "products": 4, + "name": "Desserts-lactes-a-la-noix-de-coco", + "id": "fr:desserts-lactes-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourteaux", + "products": 4, + "id": "fr:tourteaux", + "name": "Tourteaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/burger-au-poisson", + "id": "fr:burger-au-poisson", + "name": "Burger-au-poisson", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulin-a-vent", + "products": 4, + "id": "fr:moulin-a-vent", + "name": "Moulin-à-Vent" + }, + { + "products": 4, + "id": "fr:conchiglie", + "name": "Conchiglie", + "url": "https://fr.openfoodfacts.org/categorie/conchiglie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grillons", + "id": "fr:grillons", + "name": "Grillons", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-sriracha", + "products": 4, + "name": "Sauces-sriracha", + "id": "fr:sauces-sriracha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambonneau", + "id": "fr:jambonneau", + "name": "Jambonneau", + "products": 4 + }, + { + "products": 4, + "name": "Gevrey-Chambertin", + "id": "fr:gevrey-chambertin", + "url": "https://fr.openfoodfacts.org/categorie/gevrey-chambertin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1316029" + ] + }, + { + "products": 4, + "name": "Crevettes-panees", + "id": "fr:crevettes-panees", + "url": "https://fr.openfoodfacts.org/categorie/crevettes-panees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-poisson", + "name": "Nuggets-de-poisson", + "id": "fr:nuggets-de-poisson", + "products": 4 + }, + { + "name": "en:Nouilles-instantanees", + "id": "en:nouilles-instantanees", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles-instantanees" + }, + { + "products": 4, + "name": "es:Barres-de-cereales", + "id": "es:barres-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/es:barres-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-au-fromage", + "products": 4, + "name": "Saucisses-au-fromage", + "id": "fr:saucisses-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-pour-fajitas", + "products": 4, + "name": "Sauce-pour-fajitas", + "id": "fr:sauce-pour-fajitas" + }, + { + "products": 4, + "id": "en:thes-glaces-saveur-peche", + "name": "en:Thes-glaces-saveur-peche", + "url": "https://fr.openfoodfacts.org/categorie/en:thes-glaces-saveur-peche" + }, + { + "products": 4, + "id": "fr:sandwich-au-poulet-tandoori", + "name": "Sandwich-au-poulet-tandoori", + "url": "https://fr.openfoodfacts.org/categorie/sandwich-au-poulet-tandoori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-dauphines", + "products": 4, + "id": "fr:pommes-dauphines", + "name": "Pommes dauphines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-d-erable", + "id": "en:sirops-d-erable", + "name": "en:Sirops-d-erable", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-et-derives", + "id": "de:legumes-et-derives", + "name": "de:Legumes-et-derives", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-coco", + "products": 4, + "name": "Cremes-de-coco", + "id": "fr:cremes-de-coco" + }, + { + "name": "Biscuits-aperitifs-souffles-au-fromage", + "id": "fr:biscuits-aperitifs-souffles-au-fromage", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-souffles-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles", + "products": 4, + "id": "en:nouilles", + "name": "en:Nouilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ongesuikerde-dranken", + "name": "Ongesuikerde-dranken", + "id": "fr:ongesuikerde-dranken", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares", + "products": 4, + "name": "es:Plats-prepares", + "id": "es:plats-prepares" + }, + { + "products": 4, + "id": "en:carbonated-natural-mineral-waters", + "name": "Carbonated natural mineral waters", + "url": "https://fr.openfoodfacts.org/categorie/carbonated-natural-mineral-waters" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-chocolat-noir", + "products": 4, + "name": "Pates-a-tartiner-au-chocolat-noir", + "id": "fr:pates-a-tartiner-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saumons-fumes-d-elevage", + "products": 4, + "id": "en:saumons-fumes-d-elevage", + "name": "en:Saumons-fumes-d-elevage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thons", + "products": 4, + "name": "en:Thons", + "id": "en:thons" + }, + { + "name": "Cereales-au-son", + "id": "fr:cereales-au-son", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-son" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pointes-d-asperges-blanches", + "products": 4, + "id": "fr:pointes-d-asperges-blanches", + "name": "Pointes-d-asperges-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-royales", + "id": "fr:nouilles-royales", + "name": "Nouilles-royales", + "products": 4 + }, + { + "id": "en:eaux-de-coco", + "name": "en:Eaux-de-coco", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-carnaroli", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1043890" + ], + "products": 4, + "name": "Riz Carnaroli", + "id": "en:carnaroli-rices" + }, + { + "products": 4, + "name": "en:Fromages-pasteurises", + "id": "en:fromages-pasteurises", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-pasteurises" + }, + { + "name": "de:Fromages-pasteurises", + "id": "de:fromages-pasteurises", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-pasteurises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ungezuckerte-getranke", + "name": "en:Ungezuckerte-getranke", + "id": "en:ungezuckerte-getranke", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-fruits", + "name": "Gateaux-aux-fruits", + "id": "fr:gateaux-aux-fruits", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:bieres-italiennes", + "name": "it:Bieres-italiennes", + "id": "it:bieres-italiennes", + "products": 4 + }, + { + "id": "en:charcuteries-diverses", + "name": "en:Charcuteries-diverses", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:charcuteries-diverses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-d-elevages", + "name": "en:Produits-d-elevages", + "id": "en:produits-d-elevages", + "products": 4 + }, + { + "id": "fr:fleurie", + "name": "Fleurie", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fleurie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corse", + "id": "fr:corse", + "name": "Corse", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hydromels", + "id": "fr:hydromels", + "name": "Hydromels", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mure", + "name": "Sirops-de-mure", + "id": "fr:sirops-de-mure", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bergamotes-de-nancy", + "name": "Bergamotes-de-nancy", + "id": "fr:bergamotes-de-nancy", + "products": 4 + }, + { + "products": 4, + "id": "fr:pates-aux-oeufs-frais", + "name": "Pates-aux-oeufs-frais", + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchi-a-poeler", + "products": 4, + "name": "Gnocchi-a-poeler", + "id": "fr:gnocchi-a-poeler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-a-tartiner-sucres", + "products": 4, + "name": "nl:Produits-a-tartiner-sucres", + "id": "nl:produits-a-tartiner-sucres" + }, + { + "name": "Saucisses de foie", + "id": "en:liver-sausages", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-foie", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1570466" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-poivrons-aubergines", + "products": 4, + "name": "Sauces-poivrons-aubergines", + "id": "fr:sauces-poivrons-aubergines" + }, + { + "products": 4, + "name": "Brochettes-de-dinde", + "id": "fr:brochettes-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-dinde" + }, + { + "products": 4, + "id": "fr:salades-de-pates-aux-legumes-avec-viande", + "name": "Salades-de-pates-aux-legumes-avec-viande", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates-aux-legumes-avec-viande" + }, + { + "id": "fr:plats-prepares-a-rechauffer-a-la-poele", + "name": "Plats-prepares-a-rechauffer-a-la-poele", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-a-la-poele" + }, + { + "products": 4, + "name": "Colins-d-alaska-a-la-provencale", + "id": "fr:colins-d-alaska-a-la-provencale", + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-la-provencale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corn-tortillas", + "products": 4, + "id": "fr:corn-tortillas", + "name": "Corn-tortillas" + }, + { + "name": "Jambons-de-savoie", + "id": "fr:jambons-de-savoie", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-savoie" + }, + { + "products": 4, + "name": "en:Proteinriegel", + "id": "en:proteinriegel", + "url": "https://fr.openfoodfacts.org/categorie/en:proteinriegel" + }, + { + "products": 4, + "id": "fr:saucisses-de-nuremberg", + "name": "Saucisses de Nuremberg", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-nuremberg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tournedos", + "name": "Tournedos", + "id": "fr:tournedos", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vacqueyras", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7888536" + ], + "products": 4, + "id": "fr:vacqueyras", + "name": "Vacqueyras" + }, + { + "id": "en:kiwi-syrups", + "name": "Sirops de kiwi", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-kiwi" + }, + { + "products": 4, + "id": "fr:chocolats-a-la-menthe", + "name": "Chocolats-a-la-menthe", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-confiture-de-lait", + "products": 4, + "id": "fr:yaourts-a-la-confiture-de-lait", + "name": "Yaourts-a-la-confiture-de-lait" + }, + { + "name": "Pates", + "id": "fr:pates", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pates" + }, + { + "products": 4, + "name": "Clementines-de-corse", + "id": "fr:clementines-de-corse", + "url": "https://fr.openfoodfacts.org/categorie/clementines-de-corse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/halal", + "products": 4, + "id": "fr:halal", + "name": "Halal" + }, + { + "name": "Fond-de-volaille", + "id": "fr:fond-de-volaille", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fond-de-volaille" + }, + { + "id": "en:azuki-beans", + "name": "Haricots azukis", + "products": 4, + "sameAs": [ + "https://www.wikidata.org/wiki/Q380279" + ], + "url": "https://fr.openfoodfacts.org/categorie/haricots-azukis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-noix-de-cajou", + "products": 4, + "name": "Chocolats-au-lait-aux-noix-de-cajou", + "id": "fr:chocolats-au-lait-aux-noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-lyon", + "name": "Saucisses de Lyon", + "id": "en:lyon-sausage", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-poisson", + "products": 4, + "id": "fr:beignets-de-poisson", + "name": "Beignets-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bles-tendres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q161098" + ], + "products": 4, + "name": "Blés tendres", + "id": "en:common-wheats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisson-de-l-ardeche", + "name": "Saucisson-de-l-ardeche", + "id": "fr:saucisson-de-l-ardeche", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-sales", + "id": "fr:gateaux-sales", + "name": "Gateaux-sales", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-crevette", + "products": 4, + "name": "Beignets-de-crevette", + "id": "fr:beignets-de-crevette" + }, + { + "id": "fr:lentilles-vertes-bio", + "name": "Lentilles-vertes-bio", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-vertes-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-sous-license", + "products": 4, + "name": "en:Produits-sous-license", + "id": "en:produits-sous-license" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-bonbons-de-chocolat-au-lait", + "products": 4, + "name": "Assortiments-de-bonbons-de-chocolat-au-lait", + "id": "fr:assortiments-de-bonbons-de-chocolat-au-lait" + }, + { + "name": "de:Jus-multifruits", + "id": "de:jus-multifruits", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:jus-multifruits" + }, + { + "products": 4, + "id": "fr:sables-aux-pommes", + "name": "Sables-aux-pommes", + "url": "https://fr.openfoodfacts.org/categorie/sables-aux-pommes" + }, + { + "id": "en:cereales-au-chocolat", + "name": "en:Cereales-au-chocolat", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-dinde-fumes", + "products": 4, + "id": "fr:lardons-de-dinde-fumes", + "name": "Lardons-de-dinde-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouquets-de-mache", + "products": 4, + "name": "Bouquets-de-mache", + "id": "fr:bouquets-de-mache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-rapees-non-assaisonnees", + "id": "fr:carottes-rapees-non-assaisonnees", + "name": "Carottes-rapees-non-assaisonnees", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquilles-saint-jacques-a-la-bretonne", + "products": 4, + "name": "Coquilles-saint-jacques-a-la-bretonne", + "id": "fr:coquilles-saint-jacques-a-la-bretonne" + }, + { + "name": "Charcuterie-a-tartiner", + "id": "fr:charcuterie-a-tartiner", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/charcuterie-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner-au-chocolat", + "products": 4, + "id": "de:pates-a-tartiner-au-chocolat", + "name": "de:Pates-a-tartiner-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-a-la-paysanne", + "products": 4, + "name": "Poêlées à la paysanne", + "id": "fr:poelees-a-la-paysanne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafe-en-dosettes-compatible-nespresso", + "products": 4, + "name": "en:Cafe-en-dosettes-compatible-nespresso", + "id": "en:cafe-en-dosettes-compatible-nespresso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulettes-de-boeuf", + "products": 4, + "name": "Boulettes-de-boeuf", + "id": "fr:boulettes-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-fruits", + "name": "Puree-de-fruits", + "id": "fr:puree-de-fruits", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-caramel", + "products": 4, + "id": "fr:desserts-au-caramel", + "name": "Desserts-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-complet", + "products": 4, + "name": "Pates-de-ble-complet", + "id": "fr:pates-de-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merlu-blanc", + "id": "fr:merlu-blanc", + "name": "Merlu-blanc", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellinis-au-jambon", + "id": "fr:tortellinis-au-jambon", + "name": "Tortellinis-au-jambon", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-longues-marbrees", + "name": "Madeleines-longues-marbrees", + "id": "fr:madeleines-longues-marbrees", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-fraiches", + "name": "en:Pates-fraiches", + "id": "en:pates-fraiches", + "products": 4 + }, + { + "id": "en:green-grapes", + "name": "Green grapes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/green-grapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-earl-grey", + "id": "fr:thes-earl-grey", + "name": "Thes-earl-grey", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-plats-surgeles", + "products": 4, + "name": "Haricots verts plats surgelés", + "id": "en:frozen-flat-green-beans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-tressees-au-levain", + "products": 4, + "name": "Brioches-tressees-au-levain", + "id": "fr:brioches-tressees-au-levain" + }, + { + "name": "Porc-a-la-dijonnaise", + "id": "fr:porc-a-la-dijonnaise", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/porc-a-la-dijonnaise" + }, + { + "id": "en:caramelized-peanuts", + "name": "Arachides caramélisées", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/arachides-caramelisees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5875513" + ] + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q181055" + ], + "url": "https://fr.openfoodfacts.org/categorie/saucisses-vegetales-pour-hot-dog", + "id": "en:vegetarian-hot-dog-sausages", + "name": "Saucisses végétales pour hot-dog", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aoc-products", + "products": 4, + "id": "fr:aoc-products", + "name": "Aoc-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-fraiches", + "id": "de:pates-fraiches", + "name": "de:Pates-fraiches", + "products": 4 + }, + { + "products": 4, + "id": "en:alimentos-de-origen-vegetal", + "name": "en:Alimentos-de-origen-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/en:alimentos-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-en-poudre", + "id": "en:cafes-en-poudre", + "name": "en:Cafes-en-poudre", + "products": 4 + }, + { + "products": 4, + "name": "Sauces-au-citron", + "id": "fr:sauces-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-citron" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1063115" + ], + "url": "https://fr.openfoodfacts.org/categorie/melons-charentais", + "products": 4, + "name": "Melons Charentais", + "id": "en:charentais-melons" + }, + { + "products": 4, + "name": "Melanges-de-cereales-et-legumineuses-en-grains", + "id": "fr:melanges-de-cereales-et-legumineuses-en-grains", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-cereales-et-legumineuses-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-natures", + "products": 4, + "name": "Sardines-natures", + "id": "fr:sardines-natures" + }, + { + "name": "Langue de bœuf sauce madère", + "id": "en:beef-tongue-with-madeira-sauce", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/langue-de-boeuf-sauce-madere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-aromatisees", + "products": 4, + "id": "en:eaux-aromatisees", + "name": "en:Eaux-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-rigate-completes", + "products": 4, + "name": "Penne-rigate-completes", + "id": "fr:penne-rigate-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-pour-le-sport", + "id": "fr:boissons-pour-le-sport", + "name": "Boissons-pour-le-sport", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/radiatori", + "products": 4, + "name": "Radiatori", + "id": "fr:radiatori" + }, + { + "products": 4, + "id": "fr:steak-vegetal", + "name": "Steak-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/steak-vegetal" + }, + { + "products": 4, + "id": "en:concentrated-tomato-juices", + "name": "Jus de tomates à base de concentré", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-tomates-a-base-de-concentre" + }, + { + "id": "de:confitures-de-fruits", + "name": "de:Confitures-de-fruits", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus-au-cheddar", + "name": "Fromages-fondus-au-cheddar", + "id": "fr:fromages-fondus-au-cheddar", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermouths", + "products": 4, + "name": "Vermouths", + "id": "fr:vermouths" + }, + { + "products": 4, + "id": "fr:pains-au-levain", + "name": "Pains-au-levain", + "url": "https://fr.openfoodfacts.org/categorie/pains-au-levain" + }, + { + "name": "Gesiers-de-volaille", + "id": "fr:gesiers-de-volaille", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confitures", + "id": "es:confitures", + "name": "es:Confitures", + "products": 4 + }, + { + "name": "Sirops mojito", + "id": "en:mojito-syrups", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/sirops-mojito" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-pour-couscous", + "id": "fr:legumes-pour-couscous", + "name": "Legumes-pour-couscous", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-de-riz-pour-cuisiner", + "name": "Crèmes végétales à base de riz pour cuisiner", + "id": "en:rice-based-creams-for-cooking", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pale-ale", + "id": "en:pale-ale", + "name": "en:Pale-ale", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-maternise", + "id": "fr:lait-maternise", + "name": "Lait-maternise", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains-speciaux", + "id": "de:pains-speciaux", + "name": "de:Pains-speciaux", + "products": 4 + }, + { + "products": 4, + "id": "fr:charcuteries-allegees-en-matieres-grasses", + "name": "Charcuteries-allegees-en-matieres-grasses", + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-allegees-en-matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-sucrees", + "products": 4, + "id": "es:boissons-sucrees", + "name": "es:Boissons-sucrees" + }, + { + "id": "fr:coquillettes-au-beurre", + "name": "Coquillettes-au-beurre", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-au-beurre" + }, + { + "name": "Jus d'abricot", + "id": "en:apricot-juices", + "products": 4, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3337673" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-d-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girolles", + "products": 4, + "id": "en:chanterelles", + "name": "Girolles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-seches-moulus", + "products": 4, + "id": "fr:plantes-aromatiques-seches-moulus", + "name": "Plantes-aromatiques-seches-moulus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulgour-bio", + "name": "Boulgour-bio", + "id": "fr:boulgour-bio", + "products": 4 + }, + { + "name": "Yaourts-avec-des-cereales", + "id": "fr:yaourts-avec-des-cereales", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-avec-des-cereales" + }, + { + "products": 4, + "name": "Tisane-vegetale", + "id": "fr:tisane-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/tisane-vegetale" + }, + { + "products": 4, + "id": "fr:glaces-aux-fruits-rouges", + "name": "Glaces aux fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/civets", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2974872" + ], + "id": "en:jugging", + "name": "Civets", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-noirs", + "products": 4, + "name": "Riz-noirs", + "id": "fr:riz-noirs" + }, + { + "products": 4, + "id": "fr:saucisses-en-conserve", + "name": "Saucisses-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit-pour-burritos", + "products": 4, + "id": "fr:kit-pour-burritos", + "name": "Kit-pour-burritos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-surimi", + "name": "Sandwichs au surimi", + "id": "en:surimi-sandwiches", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cigarettes-russes", + "name": "Cigarettes-russes", + "id": "fr:cigarettes-russes", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biftecks", + "products": 4, + "id": "fr:biftecks", + "name": "Biftecks" + }, + { + "products": 4, + "id": "fr:viandes-de-poulet", + "name": "Viandes-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-poulet" + }, + { + "products": 4, + "id": "de:glaces-et-sorbets", + "name": "de:Glaces-et-sorbets", + "url": "https://fr.openfoodfacts.org/categorie/de:glaces-et-sorbets" + }, + { + "id": "fr:fruchtbasierte-lebensmittel", + "name": "Fruchtbasierte-lebensmittel", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fruchtbasierte-lebensmittel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/accras", + "name": "Accras", + "id": "fr:accras", + "products": 4 + }, + { + "name": "Bouillons de légumes liquides", + "id": "en:liquid-vegetable-bouillons", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-legumes-liquides" + }, + { + "products": 4, + "name": "Vins californiens", + "id": "en:wines-from-california", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1134713" + ], + "url": "https://fr.openfoodfacts.org/categorie/vins-californiens" + }, + { + "products": 4, + "name": "Huile d'olive de Provence", + "id": "fr:huile-d-olive-de-provence", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-et-de-legumes", + "products": 4, + "id": "fr:jus-de-fruits-et-de-legumes", + "name": "Jus-de-fruits-et-de-legumes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q513631" + ], + "url": "https://fr.openfoodfacts.org/categorie/laits-cru", + "id": "en:raw-milks", + "name": "Laits cru", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-mi-fortes", + "id": "fr:moutardes-mi-fortes", + "name": "Moutardes-mi-fortes", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistaches-decortiquees", + "products": 4, + "name": "Pistaches décortiquées", + "id": "en:shelled-pistachios" + }, + { + "products": 4, + "id": "fr:vins-blancs-secs", + "name": "Vins-blancs-secs", + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-charcuterie", + "products": 4, + "id": "fr:assortiments-de-charcuterie", + "name": "Assortiments-de-charcuterie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-au-confit-d-oie", + "id": "fr:cassoulets-au-confit-d-oie", + "name": "Cassoulets-au-confit-d-oie", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amidons-de-cereales", + "id": "en:cereal-starches", + "name": "Amidons de céréales", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2918735" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-avocat", + "products": 4, + "id": "en:avocado-oils", + "name": "Huiles d'avocat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-cassis", + "id": "fr:jus-de-cassis", + "name": "Jus-de-cassis", + "products": 4 + }, + { + "products": 4, + "id": "en:brotaufstriche", + "name": "en:Brotaufstriche", + "url": "https://fr.openfoodfacts.org/categorie/en:brotaufstriche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-d-asperges", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18145066" + ], + "products": 4, + "id": "en:cream-of-asparagus-soups", + "name": "Veloutés d'asperges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epinards-en-branches", + "products": 4, + "id": "fr:epinards-en-branches", + "name": "Epinards-en-branches" + }, + { + "id": "en:chocolats-blancs", + "name": "en:Chocolats-blancs", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-sans-alcool", + "name": "en:Bieres-sans-alcool", + "id": "en:bieres-sans-alcool", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quiches-au-saumon", + "name": "Quiches au saumon", + "id": "en:quiches-with-fish", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tamaris", + "products": 4, + "name": "Tamaris", + "id": "en:tamaris" + }, + { + "products": 4, + "id": "fr:confitures-de-fruits-des-bois", + "name": "Confitures-de-fruits-des-bois", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-des-bois" + }, + { + "name": "Ratatouilles-nicoises", + "id": "fr:ratatouilles-nicoises", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/ratatouilles-nicoises" + }, + { + "products": 4, + "name": "Ciboulette surgelé", + "id": "en:frozen-chives", + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-surgele" + }, + { + "id": "fr:tortillas-de-ble", + "name": "Tortillas-de-ble", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/tortillas-de-ble" + }, + { + "products": 4, + "id": "en:corn-starch", + "name": "Amidon de maïs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3393961" + ], + "url": "https://fr.openfoodfacts.org/categorie/amidon-de-mais" + }, + { + "products": 4, + "name": "Vacherins", + "id": "fr:vacherins", + "url": "https://fr.openfoodfacts.org/categorie/vacherins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-halal", + "id": "fr:charcuteries-halal", + "name": "Charcuteries-halal", + "products": 4 + }, + { + "products": 4, + "id": "fr:cremes-patissieres", + "name": "Cremes-patissieres", + "url": "https://fr.openfoodfacts.org/categorie/cremes-patissieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-blondes", + "name": "en:Bieres-blondes", + "id": "en:bieres-blondes", + "products": 4 + }, + { + "products": 4, + "name": "Muffins-aux-fruits", + "id": "fr:muffins-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/muffins-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-maconnais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7890352" + ], + "name": "Vins du Mâconnais", + "id": "fr:vins-du-maconnais", + "products": 4 + }, + { + "products": 4, + "name": "it:Boissons-non-sucrees", + "id": "it:boissons-non-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-non-sucrees" + }, + { + "name": "Cookies au raisin", + "id": "en:raisin-cookies", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-raisin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-aromatises", + "products": 4, + "id": "en:sirops-aromatises", + "name": "en:Sirops-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sels", + "id": "en:sels", + "name": "en:Sels", + "products": 4 + }, + { + "products": 4, + "name": "Chocolats-aux-noix-de-cajou", + "id": "fr:chocolats-aux-noix-de-cajou", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-pot-au-feu", + "name": "Bouillons-de-pot-au-feu", + "id": "fr:bouillons-de-pot-au-feu", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chips-et-frites", + "products": 4, + "id": "de:chips-et-frites", + "name": "de:Chips-et-frites" + }, + { + "name": "Salades catalanes", + "id": "fr:salades-catalanes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/salades-catalanes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crabes-en-conserve", + "products": 4, + "id": "fr:crabes-en-conserve", + "name": "Crabes-en-conserve" + }, + { + "id": "fr:gelees-de-fraises", + "name": "Gelees-de-fraises", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-fraises" + }, + { + "products": 4, + "id": "nl:petit-dejeuners", + "name": "nl:Petit-dejeuners", + "url": "https://fr.openfoodfacts.org/categorie/nl:petit-dejeuners" + }, + { + "id": "fr:rillettes-de-tours", + "name": "Rillettes de Tours", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-tours" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zoute-snacks", + "name": "Zoute-snacks", + "id": "fr:zoute-snacks", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-patate-douce", + "id": "en:sweet-potato-crisps", + "name": "Chips de patate douce", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-arabica", + "id": "fr:cafes-arabica", + "name": "Cafes-arabica", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-semi-completes", + "products": 4, + "id": "fr:torsades-semi-completes", + "name": "Torsades-semi-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paupiettes", + "id": "fr:paupiettes", + "name": "Paupiettes", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-pruneaux", + "products": 4, + "name": "Cremes-de-pruneaux", + "id": "fr:cremes-de-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-cereales", + "id": "en:cereal-syrups", + "name": "Sirops de céréales", + "products": 4 + }, + { + "products": 4, + "name": "Puree-de-pommes", + "id": "fr:puree-de-pommes", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/snacks-salados", + "name": "Snacks-salados", + "id": "fr:snacks-salados", + "products": 4 + }, + { + "id": "de:substituts-de-viande", + "name": "de:Substituts-de-viande", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:substituts-de-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ketchups-epices", + "name": "Ketchups-epices", + "id": "fr:ketchups-epices", + "products": 4 + }, + { + "products": 4, + "name": "en:Pizzas-tartes-salees-et-quiches", + "id": "en:pizzas-tartes-salees-et-quiches", + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-tartes-salees-et-quiches" + }, + { + "id": "fr:chocolats-noirs-a-la-menthe", + "name": "Chocolats-noirs-a-la-menthe", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-menthe" + }, + { + "name": "Kohlensaurehaltige-getranke", + "id": "fr:kohlensaurehaltige-getranke", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/kohlensaurehaltige-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pates-a-tartiner-vegetales", + "products": 4, + "name": "es:Pates-a-tartiner-vegetales", + "id": "es:pates-a-tartiner-vegetales" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q594676" + ], + "url": "https://fr.openfoodfacts.org/categorie/chapons", + "id": "en:capon", + "name": "Chapons", + "products": 4 + }, + { + "id": "fr:aliments-et-boissons-de-la-saint-nicolas", + "name": "Aliments-et-boissons-de-la-saint-nicolas", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/aliments-et-boissons-de-la-saint-nicolas" + }, + { + "name": "Côtes Catalanes", + "id": "fr:cotes-catalanes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cotes-catalanes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q19952230" + ] + }, + { + "id": "fr:desserts-lactes-sur-lit-de-fruits", + "name": "Desserts-lactes-sur-lit-de-fruits", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-sur-lit-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-vie-francaises", + "id": "en:french-eaux-de-vie", + "name": "Eaux-de-vie françaises", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/prosecco", + "products": 4, + "id": "fr:prosecco", + "name": "Prosecco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-foie-de-porc", + "name": "Saucisses de foie de porc", + "id": "en:pork-liver-sausages", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-cereales-en-grains", + "products": 4, + "id": "fr:melanges-de-cereales-en-grains", + "name": "Melanges-de-cereales-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trempettes", + "name": "Trempettes", + "id": "en:dips", + "products": 4 + }, + { + "name": "en:Sirops-traditionnels", + "id": "en:sirops-traditionnels", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-traditionnels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/betises-de-cambrai", + "products": 4, + "name": "Betises-de-cambrai", + "id": "fr:betises-de-cambrai" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-gazeuses", + "name": "en:Eaux-gazeuses", + "id": "en:eaux-gazeuses", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-secs", + "id": "es:biscuits-secs", + "name": "es:Biscuits-secs", + "products": 4 + }, + { + "name": "en:Refrigeres", + "id": "en:refrigeres", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:refrigeres" + }, + { + "products": 4, + "id": "fr:bonbons-aux-plantes", + "name": "Bonbons-aux-plantes", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-aux-plantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chevreuil", + "id": "fr:chevreuil", + "name": "Chevreuil", + "products": 4 + }, + { + "products": 4, + "name": "Beignets-de-legumes", + "id": "fr:beignets-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-noel", + "products": 4, + "name": "Confitures-de-noel", + "id": "fr:confitures-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures", + "id": "en:confitures", + "name": "en:Confitures", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3463623" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-emilion-grand-cru", + "id": "fr:saint-emilion-grand-cru", + "name": "Saint-émilion grand cru", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pickles-d-origine-vegetale", + "name": "es:Pickles-d-origine-vegetale", + "id": "es:pickles-d-origine-vegetale", + "products": 4 + }, + { + "products": 4, + "name": "Voorgerechten", + "id": "fr:voorgerechten", + "url": "https://fr.openfoodfacts.org/categorie/voorgerechten" + }, + { + "products": 4, + "name": "de:Bonbons-de-chocolat", + "id": "de:bonbons-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:bonbons-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-ipa", + "products": 4, + "id": "fr:bieres-ipa", + "name": "Bieres-ipa" + }, + { + "name": "Cereales-au-lait", + "id": "fr:cereales-au-lait", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/papaye-sechee", + "name": "Papaye séchée", + "id": "en:dried-papayas", + "products": 4 + }, + { + "products": 4, + "name": "Pates-cuisinees", + "id": "fr:pates-cuisinees", + "url": "https://fr.openfoodfacts.org/categorie/pates-cuisinees" + }, + { + "products": 4, + "id": "fr:pates-de-volaille", + "name": "Pates-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-volaille" + }, + { + "products": 4, + "id": "en:igp-asparagus", + "name": "Asperges IGP", + "url": "https://fr.openfoodfacts.org/categorie/asperges-igp" + }, + { + "id": "en:chocolate-nougats", + "name": "Nougats au chocolat", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/nougats-au-chocolat" + }, + { + "id": "fr:boulangerie", + "name": "Boulangerie", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/boulangerie" + }, + { + "id": "fr:aliments-dietetiques", + "name": "Aliments-dietetiques", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/aliments-dietetiques" + }, + { + "name": "Broden", + "id": "fr:broden", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/broden" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillies", + "id": "fr:bouillies", + "name": "Bouillies", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q895177" + ], + "url": "https://fr.openfoodfacts.org/categorie/bouquets-garnis", + "name": "Bouquets garnis", + "id": "en:bouquet-garni", + "products": 4 + }, + { + "products": 4, + "id": "fr:riesling", + "name": "Riesling", + "url": "https://fr.openfoodfacts.org/categorie/riesling" + }, + { + "products": 4, + "id": "fr:saint-estephe", + "name": "Saint-Estèphe", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1640145" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-estephe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-quinoa", + "products": 4, + "id": "en:quinoa-flours", + "name": "Farines de quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/double-concentre-de-tomates", + "products": 4, + "id": "fr:double-concentre-de-tomates", + "name": "Double-concentre-de-tomates" + }, + { + "products": 4, + "id": "fr:coteaux-bourguignons", + "name": "Coteaux-bourguignons", + "url": "https://fr.openfoodfacts.org/categorie/coteaux-bourguignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-concassees", + "id": "fr:tomates-concassees", + "name": "Tomates-concassees", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:moutardes", + "products": 4, + "name": "en:Moutardes", + "id": "en:moutardes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-milanaises-aux-spaghettis", + "name": "Escalopes-milanaises-aux-spaghettis", + "id": "fr:escalopes-milanaises-aux-spaghettis", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-vegetaux-a-base-d-olives", + "products": 4, + "id": "en:vegetarian-olive-pates", + "name": "Pâtés à tartiner végétaux à base d'olives" + }, + { + "products": 4, + "name": "Paupiettes-de-dinde", + "id": "fr:paupiettes-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/paupiettes-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-erable-ambre", + "products": 4, + "name": "Sirops d'érable ambré", + "id": "en:amber-maple-syrups" + }, + { + "name": "Flans-aux-oeufs", + "id": "fr:flans-aux-oeufs", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/flans-aux-oeufs" + }, + { + "id": "en:pineapple-syrups", + "name": "Sirops d'ananas", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-ananas" + }, + { + "name": "Fricadelles", + "id": "fr:fricadelles", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fricadelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-belges", + "name": "Chocolats-belges", + "id": "fr:chocolats-belges", + "products": 4 + }, + { + "products": 4, + "name": "Feuilletes-jambon-fromage", + "id": "fr:feuilletes-jambon-fromage", + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-jambon-fromage" + }, + { + "products": 4, + "id": "fr:salades-de-pates-aux-legumes-avec-poulet", + "name": "Salades-de-pates-aux-legumes-avec-poulet", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates-aux-legumes-avec-poulet" + }, + { + "name": "Epis-de-mais-au-vinaigre", + "id": "fr:epis-de-mais-au-vinaigre", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/epis-de-mais-au-vinaigre" + }, + { + "name": "Olives-cassees", + "id": "fr:olives-cassees", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/olives-cassees" + }, + { + "id": "fr:levains", + "name": "Levains", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/levains" + }, + { + "id": "en:palm-oils", + "name": "Huiles de palme", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-palme", + "sameAs": [ + "https://www.wikidata.org/wiki/Q231458" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-aromatisee", + "id": "fr:boisson-aromatisee", + "name": "Boisson-aromatisee", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-au-naturel", + "products": 4, + "name": "Sardines-au-naturel", + "id": "fr:sardines-au-naturel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-entiers", + "products": 4, + "name": "Foies-gras-de-canard-entiers", + "id": "fr:foies-gras-de-canard-entiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-surgeles", + "name": "en:Plats-prepares-surgeles", + "id": "en:plats-prepares-surgeles", + "products": 4 + }, + { + "products": 4, + "name": "de:Plats-prepares-d-origine-vegetale", + "id": "de:plats-prepares-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foie-de-veau", + "id": "fr:foie-de-veau", + "name": "Foie-de-veau", + "products": 4 + }, + { + "products": 4, + "name": "Lentilles-corail-bio", + "id": "fr:lentilles-corail-bio", + "url": "https://fr.openfoodfacts.org/categorie/lentilles-corail-bio" + }, + { + "products": 4, + "name": "de:Huiles", + "id": "de:huiles", + "url": "https://fr.openfoodfacts.org/categorie/de:huiles" + }, + { + "name": "es:Chips", + "id": "es:chips", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/es:chips" + }, + { + "name": "de:Produits-panes", + "id": "de:produits-panes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:produits-panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/red-kidney-beans", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18175531" + ], + "products": 4, + "id": "en:red-kidney-beans", + "name": "Red kidney beans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/agave", + "products": 4, + "id": "fr:agave", + "name": "Agave" + }, + { + "products": 4, + "name": "Bonbons-sans-sucres", + "id": "fr:bonbons-sans-sucres", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-sans-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/museau-de-porc-a-la-lyonnaise", + "id": "fr:museau-de-porc-a-la-lyonnaise", + "name": "Museau-de-porc-a-la-lyonnaise", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-quebecoises", + "name": "Bieres-quebecoises", + "id": "fr:bieres-quebecoises", + "products": 4 + }, + { + "products": 4, + "name": "Haches-de-poulet", + "id": "fr:haches-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/haches-de-poulet" + }, + { + "id": "fr:filets-de-sardines-natures", + "name": "Filets-de-sardines-natures", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-natures" + }, + { + "products": 4, + "id": "en:instant-chicory", + "name": "Chicorée soluble", + "url": "https://fr.openfoodfacts.org/categorie/chicoree-soluble" + }, + { + "products": 4, + "name": "Cornets", + "id": "fr:cornets", + "url": "https://fr.openfoodfacts.org/categorie/cornets" + }, + { + "products": 4, + "name": "Ananas séchés", + "id": "en:dried-pineapple", + "url": "https://fr.openfoodfacts.org/categorie/ananas-seches" + }, + { + "products": 4, + "name": "en:Porc", + "id": "en:porc", + "url": "https://fr.openfoodfacts.org/categorie/en:porc" + }, + { + "name": "Cremes-dessert-a-la-pistache", + "id": "fr:cremes-dessert-a-la-pistache", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-a-la-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:snacks-sucres", + "products": 4, + "name": "ro:Snacks-sucres", + "id": "ro:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-complet", + "products": 4, + "id": "fr:riz-long-complet", + "name": "Riz-long-complet" + }, + { + "name": "Crèmes végétales à base d'amande pour cuisiner", + "id": "en:almond-based-creams-for-cooking", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-d-amande-pour-cuisiner" + }, + { + "name": "Pains-a-l-ail", + "id": "fr:pains-a-l-ail", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pains-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-a-la-noix-de-coco", + "products": 4, + "name": "Chocolats-fourres-a-la-noix-de-coco", + "id": "fr:chocolats-fourres-a-la-noix-de-coco" + }, + { + "name": "Fritures végétales", + "id": "en:fried-plant-based-foods", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fritures-vegetales" + }, + { + "name": "Huiles-d-olives-aromatisees", + "id": "fr:huiles-d-olives-aromatisees", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olives-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/regime", + "products": 4, + "name": "Regime", + "id": "fr:regime" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-chauds", + "products": 4, + "name": "Chocolats-chauds", + "id": "fr:chocolats-chauds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-dinde", + "products": 4, + "name": "Cuisses de dinde", + "id": "fr:cuisses-de-dinde" + }, + { + "name": "Compotes pommes figue", + "id": "fr:compotes-pommes-figue", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-figue" + }, + { + "name": "Endives en conserve", + "id": "fr:endives-en-conserve", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/endives-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickled-peppers", + "name": "Pickled peppers", + "id": "en:pickled-peppers", + "products": 4 + }, + { + "products": 4, + "name": "nl:Bieres-belges", + "id": "nl:bieres-belges", + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-belges" + }, + { + "name": "Terrines de faisan", + "id": "en:pheasant-terrines", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-faisan" + }, + { + "id": "fr:pates-de-jambon", + "name": "Pates-de-jambon", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-jambon" + }, + { + "id": "fr:court-bouillon", + "name": "Court-bouillon", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/court-bouillon" + }, + { + "id": "it:bieres-blondes", + "name": "it:Bieres-blondes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/it:bieres-blondes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-geantes-tigrees", + "products": 4, + "id": "fr:crevettes-geantes-tigrees", + "name": "Crevettes géantes tigrées" + }, + { + "products": 4, + "name": "Yaourts au caramel", + "id": "en:caramel-yogurts", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/endives-au-jambon", + "products": 4, + "name": "Endives-au-jambon", + "id": "fr:endives-au-jambon" + }, + { + "products": 4, + "name": "Pommes-de-terre-ditta", + "id": "fr:pommes-de-terre-ditta", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-ditta" + }, + { + "products": 4, + "id": "fr:vermicelles-de-soja", + "name": "Vermicelles-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-au-lait", + "id": "it:chocolats-au-lait", + "name": "it:Chocolats-au-lait", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-saint-jacques-avec-corail", + "products": 4, + "id": "fr:noix-de-saint-jacques-avec-corail", + "name": "Noix-de-saint-jacques-avec-corail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farces-a-legumes", + "products": 4, + "id": "fr:farces-a-legumes", + "name": "Farces-a-legumes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2922357" + ], + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-hautes-cotes-de-beaune", + "products": 4, + "id": "fr:bourgogne-hautes-cotes-de-beaune", + "name": "Bourgogne-hautes-côtes-de-beaune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-poeler", + "products": 4, + "id": "fr:pates-a-poeler", + "name": "Pates-a-poeler" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2934743" + ], + "url": "https://fr.openfoodfacts.org/categorie/camembert-au-calvados", + "products": 4, + "name": "Camembert au calvados", + "id": "en:camembert-with-calvados" + }, + { + "products": 4, + "id": "fr:gougeres", + "name": "Gougeres", + "url": "https://fr.openfoodfacts.org/categorie/gougeres" + }, + { + "products": 4, + "name": "Graines-de-soja", + "id": "fr:graines-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-soja" + }, + { + "products": 4, + "id": "fr:sauces-piquantes", + "name": "Sauces-piquantes", + "url": "https://fr.openfoodfacts.org/categorie/sauces-piquantes" + }, + { + "products": 4, + "name": "en:Thes-verts", + "id": "en:thes-verts", + "url": "https://fr.openfoodfacts.org/categorie/en:thes-verts" + }, + { + "products": 4, + "id": "fr:truffades", + "name": "Truffades", + "url": "https://fr.openfoodfacts.org/categorie/truffades" + }, + { + "id": "en:sage", + "name": "Sauge", + "products": 4, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1111359" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauge" + }, + { + "name": "Terrines-de-poissons", + "id": "fr:terrines-de-poissons", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-yaourt", + "id": "fr:glaces-au-yaourt", + "name": "Glaces au yaourt", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-bambou-en-conserve", + "id": "fr:pousses-de-bambou-en-conserve", + "name": "Pousses-de-bambou-en-conserve", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1142487" + ], + "url": "https://fr.openfoodfacts.org/categorie/cremant-de-loire", + "name": "Crémant de Loire", + "id": "fr:cremant-de-loire", + "products": 4 + }, + { + "products": 4, + "id": "fr:champagnes-premiers-crus", + "name": "Champagnes premiers crus", + "url": "https://fr.openfoodfacts.org/categorie/champagnes-premiers-crus" + }, + { + "id": "fr:raviolis-a-la-viande-de-porc", + "name": "Raviolis-a-la-viande-de-porc", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-a-la-viande-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-chocolat", + "products": 4, + "name": "Galettes-au-chocolat", + "id": "fr:galettes-au-chocolat" + }, + { + "id": "fr:cidres-bretons-doux", + "name": "Cidres-bretons-doux", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cidres-bretons-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-saumon", + "name": "Lardons-de-saumon", + "id": "fr:lardons-de-saumon", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-haricot-mungo-frais", + "products": 4, + "id": "en:fresh-mung-bean-sprouts", + "name": "Pousses de haricot mungo frais" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q5732132" + ], + "url": "https://fr.openfoodfacts.org/categorie/bordeaux-rose", + "name": "Bordeaux Rosé", + "id": "fr:bordeaux-rose", + "products": 4 + }, + { + "id": "fr:cocktails-d-olives", + "name": "Cocktails-d-olives", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/cocktails-d-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puisseguin-saint-emilion", + "sameAs": [ + "https://www.wikidata.org/wiki/Q283918" + ], + "products": 4, + "name": "Puisseguin-saint-émilion", + "id": "fr:puisseguin-saint-emilion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-surgeles", + "name": "Poissons-panes-surgeles", + "id": "fr:poissons-panes-surgeles", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/artichauts-surgeles", + "id": "en:frozen-artichokes", + "name": "Artichauts surgelés", + "products": 4 + }, + { + "id": "fr:fonds-d-artichauts", + "name": "Fonds-d-artichauts", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fonds-d-artichauts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-morue", + "products": 4, + "id": "fr:parmentiers-de-morue", + "name": "Parmentiers-de-morue" + }, + { + "products": 4, + "name": "Brioches-aux-pralines", + "id": "fr:brioches-aux-pralines", + "url": "https://fr.openfoodfacts.org/categorie/brioches-aux-pralines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-laitieres", + "products": 4, + "name": "Specialites-laitieres", + "id": "fr:specialites-laitieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:getranke", + "products": 4, + "id": "en:getranke", + "name": "en:Getranke" + }, + { + "products": 4, + "id": "fr:blocs-de-foies-gras-de-canard", + "name": "Blocs-de-foies-gras-de-canard", + "url": "https://fr.openfoodfacts.org/categorie/blocs-de-foies-gras-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/popcorn-au-caramel", + "id": "fr:popcorn-au-caramel", + "name": "Popcorn-au-caramel", + "products": 4 + }, + { + "id": "en:maki", + "name": "Maki", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/maki" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-de-fruits-a-coques", + "id": "en:barres-de-fruits-a-coques", + "name": "en:Barres-de-fruits-a-coques", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carottes-rapees-assaisonees", + "id": "fr:carottes-rapees-assaisonees", + "name": "Carottes-rapees-assaisonees", + "products": 4 + }, + { + "products": 4, + "id": "es:graines", + "name": "es:Graines", + "url": "https://fr.openfoodfacts.org/categorie/es:graines" + }, + { + "products": 4, + "name": "Flocons d'épeautre", + "id": "en:spelt-flakes", + "url": "https://fr.openfoodfacts.org/categorie/flocons-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/goudas-vieux", + "products": 4, + "name": "Goudas vieux", + "id": "en:old-goudas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ble-precuit", + "name": "Ble-precuit", + "id": "fr:ble-precuit", + "products": 4 + }, + { + "products": 4, + "id": "fr:pains-panini", + "name": "Pains-panini", + "url": "https://fr.openfoodfacts.org/categorie/pains-panini" + }, + { + "id": "fr:yaourts-a-la-pomme", + "name": "Yaourts-a-la-pomme", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-pomme" + }, + { + "products": 4, + "id": "fr:boulghours-bio", + "name": "Boulghours-bio", + "url": "https://fr.openfoodfacts.org/categorie/boulghours-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:boissons", + "name": "pt:Boissons", + "id": "pt:boissons", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:vins-portugais", + "name": "pt:Vins-portugais", + "id": "pt:vins-portugais", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-fruits", + "id": "fr:chips-de-fruits", + "name": "Chips-de-fruits", + "products": 4 + }, + { + "products": 4, + "id": "fr:toasts-brioches", + "name": "Toasts-brioches", + "url": "https://fr.openfoodfacts.org/categorie/toasts-brioches" + }, + { + "products": 4, + "name": "en:Cereales-en-grains", + "id": "en:cereales-en-grains", + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:glaces-au-chocolat", + "id": "en:glaces-au-chocolat", + "name": "en:Glaces-au-chocolat", + "products": 4 + }, + { + "name": "de:Desserts-glaces", + "id": "de:desserts-glaces", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/de:desserts-glaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-minerales-gazeuses", + "name": "en:Eaux-minerales-gazeuses", + "id": "en:eaux-minerales-gazeuses", + "products": 4 + }, + { + "id": "en:croissant-filled-with-chocolate", + "name": "Croissants fourrés au chocolat", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/croissants-fourres-au-chocolat" + }, + { + "name": "en:Patisseries", + "id": "en:patisseries", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:patisseries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kuhmilchkase", + "products": 4, + "name": "Kuhmilchkase", + "id": "fr:kuhmilchkase" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-au-cola", + "id": "en:sodas-au-cola", + "name": "en:Sodas-au-cola", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard", + "products": 4, + "name": "Foies-gras-de-canard", + "id": "fr:foies-gras-de-canard" + }, + { + "products": 4, + "id": "en:apple-syrups", + "name": "Sirops de pomme", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-pomme" + }, + { + "products": 4, + "id": "en:barres-aux-fruits", + "name": "en:Barres-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:barres-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-de-coco", + "id": "en:huiles-de-coco", + "name": "en:Huiles-de-coco", + "products": 4 + }, + { + "products": 4, + "id": "en:huiles-de-fruits-et-graines-de-fruits", + "name": "en:Huiles-de-fruits-et-graines-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-de-fruits-et-graines-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-cereales", + "name": "Yaourts-aux-cereales", + "id": "fr:yaourts-aux-cereales", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ipa", + "id": "en:ipa", + "name": "en:Ipa", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-panais", + "id": "en:parsnip-crisps", + "name": "Chips de panais", + "products": 4 + }, + { + "id": "fr:sels-des-marais-salants", + "name": "Sels des marais salants", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/sels-des-marais-salants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-artisanales", + "products": 4, + "name": "Rillettes artisanales", + "id": "fr:rillettes-artisanales" + }, + { + "products": 4, + "name": "Compotes-de-framboise", + "id": "fr:compotes-de-framboise", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-framboise" + }, + { + "id": "fr:petits-pains", + "name": "Petits-pains", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/petits-pains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-fraise", + "products": 4, + "id": "fr:desserts-lactes-fraise", + "name": "Desserts-lactes-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-citron", + "id": "fr:desserts-lactes-au-citron", + "name": "Desserts-lactes-au-citron", + "products": 4 + }, + { + "products": 4, + "id": "en:peach-soy-yogurts", + "name": "Yaourts de soja à la pêche", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-a-la-peche" + }, + { + "name": "en:Yaourts-a-la-grecque", + "id": "en:yaourts-a-la-grecque", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-grecque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivres-verts", + "name": "Poivres verts", + "id": "en:green-peppers", + "products": 4 + }, + { + "name": "Rhums vieux", + "id": "en:old-rums", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/rhums-vieux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-hachee", + "name": "Viande-hachee", + "id": "fr:viande-hachee", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-d-oie", + "id": "fr:plats-a-base-d-oie", + "name": "Plats à base d'oie", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/erfrischungsgetranke", + "id": "fr:erfrischungsgetranke", + "name": "Erfrischungsgetranke", + "products": 4 + }, + { + "id": "nl:bieres", + "name": "nl:Bieres", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:boissons-alcoolisees", + "name": "nl:Boissons-alcoolisees", + "id": "nl:boissons-alcoolisees", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saindoux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q72827" + ], + "products": 4, + "name": "Saindoux", + "id": "en:lards" + }, + { + "name": "Sodas-aux-agrumes", + "id": "fr:sodas-aux-agrumes", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-agrumes" + }, + { + "id": "fr:pommes-duchesses-surgelees", + "name": "Pommes duchesses surgelées", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pommes-duchesses-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plastique", + "id": "fr:plastique", + "name": "Plastique", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:assaisonnements", + "id": "en:assaisonnements", + "name": "en:Assaisonnements", + "products": 4 + }, + { + "products": 4, + "id": "fr:jambons-d-auvergne", + "name": "Jambons-d-auvergne", + "url": "https://fr.openfoodfacts.org/categorie/jambons-d-auvergne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-francaises-igp", + "name": "Asperges françaises IGP", + "id": "en:french-igp-asparagus", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-fourres-au-praline", + "products": 4, + "id": "de:chocolats-fourres-au-praline", + "name": "de:Chocolats-fourres-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-l-echalote", + "products": 4, + "id": "fr:sauces-a-l-echalote", + "name": "Sauces-a-l-echalote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-grille", + "products": 4, + "name": "Mais-grille", + "id": "fr:mais-grille" + }, + { + "id": "en:jambons", + "name": "en:Jambons", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/en:jambons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/repas-pour-bebe", + "products": 4, + "id": "fr:repas-pour-bebe", + "name": "Repas-pour-bebe" + }, + { + "name": "Produits-a-faible-teneur-en-matieres-grasses", + "id": "fr:produits-a-faible-teneur-en-matieres-grasses", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/produits-a-faible-teneur-en-matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscadet", + "products": 4, + "name": "Muscadet", + "id": "fr:muscadet" + }, + { + "products": 4, + "id": "fr:tartelettes-a-la-pomme", + "name": "Tartelettes-a-la-pomme", + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-a-la-pomme" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q20651335" + ], + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-canards", + "id": "en:duck-eggs", + "name": "Oeufs de canards", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wasabi", + "name": "Wasabi", + "id": "fr:wasabi", + "products": 4 + }, + { + "id": "en:molasses", + "name": "Mélasses", + "products": 4, + "sameAs": [ + "https://www.wikidata.org/wiki/Q154389" + ], + "url": "https://fr.openfoodfacts.org/categorie/melasses" + }, + { + "products": 4, + "id": "fr:cannellonis-a-la-sauce-italienne", + "name": "Cannellonis-a-la-sauce-italienne", + "url": "https://fr.openfoodfacts.org/categorie/cannellonis-a-la-sauce-italienne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-au-soja", + "products": 4, + "name": "en:Sauces-au-soja", + "id": "en:sauces-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epicerie-sucree", + "name": "Epicerie-sucree", + "id": "fr:epicerie-sucree", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-blond", + "products": 4, + "name": "Quinoa-blond", + "id": "fr:quinoa-blond" + }, + { + "id": "fr:marmelades-de-citrons-verts", + "name": "Marmelades-de-citrons-verts", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-citrons-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-framboise", + "products": 4, + "name": "Chocolats-noirs-a-la-framboise", + "id": "fr:chocolats-noirs-a-la-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-joseph", + "id": "fr:saint-joseph", + "name": "Saint-Joseph", + "products": 4 + }, + { + "products": 4, + "name": "Produits-au-piment-d-espelette", + "id": "fr:produits-au-piment-d-espelette", + "url": "https://fr.openfoodfacts.org/categorie/produits-au-piment-d-espelette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feculent", + "name": "Feculent", + "id": "fr:feculent", + "products": 4 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3377058" + ], + "url": "https://fr.openfoodfacts.org/categorie/petit-chablis", + "products": 4, + "id": "fr:petit-chablis", + "name": "Petit Chablis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epaule-de-porc", + "id": "fr:epaule-de-porc", + "name": "Epaule-de-porc", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-truite", + "products": 4, + "id": "fr:filets-de-truite", + "name": "Filets-de-truite" + }, + { + "name": "Pouligny-Saint-Pierre", + "id": "fr:pouligny-saint-pierre", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/pouligny-saint-pierre" + }, + { + "name": "Fromages-blancs-aromatises", + "id": "fr:fromages-blancs-aromatises", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-aromatises" + }, + { + "products": 4, + "name": "es:Legumes-en-conserve", + "id": "es:legumes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:legumes-en-conserve" + }, + { + "products": 4, + "id": "en:macaroni-cheese", + "name": "en:Macaroni-cheese", + "url": "https://fr.openfoodfacts.org/categorie/en:macaroni-cheese" + }, + { + "products": 4, + "name": "Lait-fermente", + "id": "fr:lait-fermente", + "url": "https://fr.openfoodfacts.org/categorie/lait-fermente" + }, + { + "products": 4, + "id": "fr:verduras-y-hortalizas-y-sus-productos", + "name": "Verduras-y-hortalizas-y-sus-productos", + "url": "https://fr.openfoodfacts.org/categorie/verduras-y-hortalizas-y-sus-productos" + }, + { + "products": 4, + "name": "es:Plats-prepares-d-origine-vegetale", + "id": "es:plats-prepares-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-vegetales-de-vienne", + "products": 4, + "name": "Saucisses végétales de Vienne", + "id": "en:vegetarian-vienna-sausages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brouilly", + "sameAs": [ + "https://www.wikidata.org/wiki/Q461400" + ], + "id": "fr:brouilly", + "name": "Brouilly", + "products": 4 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:alcools-forts", + "products": 4, + "name": "en:Alcools-forts", + "id": "en:alcools-forts" + }, + { + "name": "Champignons-a-la-grecque", + "id": "fr:champignons-a-la-grecque", + "products": 4, + "url": "https://fr.openfoodfacts.org/categorie/champignons-a-la-grecque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-myrtille", + "products": 4, + "name": "Sirops de myrtille", + "id": "en:blueberry-syrups" + }, + { + "products": 4, + "name": "Oeufs-en-chocolat-au-lait", + "id": "fr:oeufs-en-chocolat-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-en-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-glucose", + "id": "fr:sirops-de-glucose", + "name": "Sirops-de-glucose", + "products": 4 + }, + { + "products": 4, + "name": "Chicorees", + "id": "fr:chicorees", + "url": "https://fr.openfoodfacts.org/categorie/chicorees" + }, + { + "products": 4, + "id": "fr:arbois", + "name": "Arbois", + "url": "https://fr.openfoodfacts.org/categorie/arbois" + }, + { + "products": 4, + "name": "de:Laits", + "id": "de:laits", + "url": "https://fr.openfoodfacts.org/categorie/de:laits" + }, + { + "products": 4, + "id": "en:yellow-curry-pastes", + "name": "Pâtes de curry jaunes", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-curry-jaunes" + }, + { + "products": 4, + "name": "Fromages-frais-natures", + "id": "fr:fromages-frais-natures", + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-natures" + }, + { + "products": 4, + "id": "en:fromages-italiens", + "name": "en:Fromages-italiens", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-italiens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-aromatises", + "products": 4, + "name": "Sels-aromatises", + "id": "fr:sels-aromatises" + }, + { + "products": 4, + "name": "Yaourts-a-la-rhubarbe", + "id": "fr:yaourts-a-la-rhubarbe", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-rhubarbe" + }, + { + "products": 4, + "id": "fr:melanges-d-olives", + "name": "Melanges-d-olives", + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-olives" + }, + { + "name": "Vins-de-paille", + "id": "fr:vins-de-paille", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-paille" + }, + { + "products": 3, + "name": "Dessert-patissier-vegetal", + "id": "fr:dessert-patissier-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/dessert-patissier-vegetal" + }, + { + "products": 3, + "name": "Liqueur herbale", + "id": "en:herbal-liqueur", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1883967" + ], + "url": "https://fr.openfoodfacts.org/categorie/liqueur-herbale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-banane", + "products": 3, + "id": "fr:sorbets-a-la-banane", + "name": "Sorbets-a-la-banane" + }, + { + "products": 3, + "name": "Amandes-enrobees-de-chocolat", + "id": "fr:amandes-enrobees-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/amandes-enrobees-de-chocolat" + }, + { + "products": 3, + "id": "fr:poulets-surgeles", + "name": "Poulets-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/poulets-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-figue", + "products": 3, + "id": "fr:chocolats-noirs-a-la-figue", + "name": "Chocolats-noirs-a-la-figue" + }, + { + "name": "Brochettes de volailles", + "id": "fr:brochettes-de-volailles", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-volailles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-entiers-du-sud-ouest", + "products": 3, + "id": "fr:foies-gras-de-canard-entiers-du-sud-ouest", + "name": "Foies-gras-de-canard-entiers-du-sud-ouest" + }, + { + "products": 3, + "id": "fr:beurres-de-coco", + "name": "Beurres-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-coco" + }, + { + "products": 3, + "id": "fr:mousse-charcutiere", + "name": "Mousse-charcutiere", + "url": "https://fr.openfoodfacts.org/categorie/mousse-charcutiere" + }, + { + "id": "fr:confitures-de-kiwis", + "name": "Confitures-de-kiwis", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-kiwis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-carotte", + "products": 3, + "id": "fr:gateaux-a-la-carotte", + "name": "Gateaux-a-la-carotte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-du-sud-ouest", + "products": 3, + "id": "fr:bloc-de-foie-gras-de-canard-du-sud-ouest", + "name": "Bloc-de-foie-gras-de-canard-du-sud-ouest" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:konjac", + "id": "it:konjac", + "name": "it:Konjac", + "products": 3 + }, + { + "products": 3, + "id": "fr:carrot-cakes", + "name": "Carrot-cakes", + "url": "https://fr.openfoodfacts.org/categorie/carrot-cakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alcools-blancs", + "products": 3, + "id": "fr:alcools-blancs", + "name": "Alcools-blancs" + }, + { + "products": 3, + "name": "de:Fruchtschnitte", + "id": "de:fruchtschnitte", + "url": "https://fr.openfoodfacts.org/categorie/de:fruchtschnitte" + }, + { + "products": 3, + "name": "Imperial-stout", + "id": "fr:imperial-stout", + "url": "https://fr.openfoodfacts.org/categorie/imperial-stout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-d-italie", + "name": "Huiles d'olive d'Italie", + "id": "en:olive-oils-from-italy", + "products": 3 + }, + { + "products": 3, + "name": "Напитки", + "id": "fr:напитки", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BA%D0%B8" + }, + { + "products": 3, + "name": "Sorbets édulcorés", + "id": "fr:sorbets-edulcores", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-rouges", + "id": "fr:riz-rouges", + "name": "Riz-rouges", + "products": 3 + }, + { + "id": "fr:congelados", + "name": "Congelados", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/congelados" + }, + { + "products": 3, + "id": "fr:pralines-roses", + "name": "Pralines-roses", + "url": "https://fr.openfoodfacts.org/categorie/pralines-roses" + }, + { + "id": "fr:sauces-armoricaines", + "name": "Sauces armoricaines", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sauces-armoricaines" + }, + { + "products": 3, + "id": "fr:gateaux-au-miel", + "name": "Gateaux-au-miel", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-miel" + }, + { + "id": "fr:soupes-de-crustaces", + "name": "Soupes-de-crustaces", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-crustaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-hamburgers", + "products": 3, + "name": "Sauces-pour-hamburgers", + "id": "fr:sauces-pour-hamburgers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mettons", + "id": "fr:mettons", + "name": "Mettons", + "products": 3 + }, + { + "name": "Bonbons-edulcores", + "id": "fr:bonbons-edulcores", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-edulcores" + }, + { + "products": 3, + "id": "en:wine-based-drinks", + "name": "Boissons à base de vin", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cubic-appetizer-cheese", + "id": "fr:cubic-appetizer-cheese", + "name": "Cubic appetizer cheese", + "products": 3 + }, + { + "products": 3, + "id": "es:tortillas", + "name": "es:Tortillas", + "url": "https://fr.openfoodfacts.org/categorie/es:tortillas" + }, + { + "id": "en:moulages-en-chocolat", + "name": "en:Moulages-en-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:moulages-en-chocolat" + }, + { + "products": 3, + "name": "Petits-sales", + "id": "fr:petits-sales", + "url": "https://fr.openfoodfacts.org/categorie/petits-sales" + }, + { + "id": "fr:gastronomia-navidena", + "name": "Gastronomia-navidena", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/gastronomia-navidena" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dulces-de-navidad", + "id": "fr:dulces-de-navidad", + "name": "Dulces-de-navidad", + "products": 3 + }, + { + "products": 3, + "id": "fr:ravioli-aux-crevettes", + "name": "Ravioli-aux-crevettes", + "url": "https://fr.openfoodfacts.org/categorie/ravioli-aux-crevettes" + }, + { + "id": "sr:snacks-sucres", + "name": "sr:Snacks-sucres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sr:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glace-aux-fruits", + "id": "fr:glace-aux-fruits", + "name": "Glace-aux-fruits", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-calzones", + "products": 3, + "id": "fr:pizzas-calzones", + "name": "Pizzas-calzones" + }, + { + "products": 3, + "id": "fr:pains-aux-graines", + "name": "Pains-aux-graines", + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-graines" + }, + { + "name": "de:Barres-aux-fruits", + "id": "de:barres-aux-fruits", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:barres-aux-fruits" + }, + { + "id": "fr:jambons-fumes", + "name": "Jambons-fumes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/jambons-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:viande", + "name": "en:Viande", + "id": "en:viande", + "products": 3 + }, + { + "products": 3, + "name": "Gateaux-a-la-framboise", + "id": "fr:gateaux-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-framboise" + }, + { + "name": "Eau-de-vie de cidre de Bretagne", + "id": "fr:eau-de-vie-de-cidre-de-bretagne", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/eau-de-vie-de-cidre-de-bretagne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-cuire", + "name": "Fromages-a-cuire", + "id": "fr:fromages-a-cuire", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:frucht-und-gemusebasierte-lebensmittel", + "products": 3, + "name": "en:Frucht-und-gemusebasierte-lebensmittel", + "id": "en:frucht-und-gemusebasierte-lebensmittel" + }, + { + "products": 3, + "name": "Huile d'olive de la Vallée des Baux-de-Provence", + "id": "en:olive-oil-from-vallee-des-baux-de-provence", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-la-vallee-des-baux-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-cheval", + "products": 3, + "id": "fr:viandes-de-cheval", + "name": "Viandes-de-cheval" + }, + { + "products": 3, + "id": "fr:farfalle", + "name": "Farfalle", + "url": "https://fr.openfoodfacts.org/categorie/farfalle" + }, + { + "products": 3, + "name": "Pop-tarts", + "id": "fr:pop-tarts", + "url": "https://fr.openfoodfacts.org/categorie/pop-tarts" + }, + { + "products": 3, + "name": "it:Huiles-d-olive-vierges-extra", + "id": "it:huiles-d-olive-vierges-extra", + "url": "https://fr.openfoodfacts.org/categorie/it:huiles-d-olive-vierges-extra" + }, + { + "products": 3, + "id": "ru:aliments-et-boissons-a-base-de-vegetaux", + "name": "ru:Aliments-et-boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/ru:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "products": 3, + "id": "ru:aliments-d-origine-vegetale", + "name": "ru:Aliments-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/ru:aliments-d-origine-vegetale" + }, + { + "id": "en:rye-flours-type-130", + "name": "Farines de seigle T130", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-seigle-t130" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-dorees", + "id": "fr:bieres-dorees", + "name": "Bieres-dorees", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gaufrettes-fourrees", + "products": 3, + "id": "en:gaufrettes-fourrees", + "name": "en:Gaufrettes-fourrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ale", + "products": 3, + "id": "en:ale", + "name": "en:Ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-miel", + "name": "Biscuits-au-miel", + "id": "fr:biscuits-au-miel", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-blanc", + "products": 3, + "id": "fr:quinoa-blanc", + "name": "Quinoa-blanc" + }, + { + "products": 3, + "id": "fr:anchois-marines", + "name": "Anchois-marines", + "url": "https://fr.openfoodfacts.org/categorie/anchois-marines" + }, + { + "id": "en:mashed-celeriac", + "name": "Purées de céleri-rave", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-celeri-rave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mates", + "products": 3, + "name": "Mates", + "id": "fr:mates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pour-petit-dejeuner", + "id": "fr:biscuits-pour-petit-dejeuner", + "name": "Biscuits-pour-petit-dejeuner", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-lavande-de-provence", + "products": 3, + "id": "fr:miels-de-lavande-de-provence", + "name": "Miels-de-lavande-de-provence" + }, + { + "id": "fr:bouchees-a-garnir", + "name": "Bouchees-a-garnir", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/bouchees-a-garnir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-a-rechauffer-au-micro-ondes", + "name": "de:Plats-prepares-a-rechauffer-au-micro-ondes", + "id": "de:plats-prepares-a-rechauffer-au-micro-ondes", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/samoussas-au-boeuf", + "products": 3, + "id": "en:beef-samosas", + "name": "Samoussas au bœuf" + }, + { + "products": 3, + "id": "fr:sauces-a-la-creme", + "name": "Sauces à la crème", + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-la-creme" + }, + { + "name": "Sirops-de-mandarine", + "id": "fr:sirops-de-mandarine", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mandarine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-sterilises", + "name": "Laits-sterilises", + "id": "fr:laits-sterilises", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-seigle-et-de-ble", + "id": "en:rye-and-wheat-breads", + "name": "Pains de seigle et de blé", + "products": 3 + }, + { + "name": "Petits épeautres", + "id": "en:einkorn-wheats", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/petits-epeautres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q161397" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-gascogne", + "name": "Miels de Gascogne", + "id": "en:honey-of-biscay", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mulberries", + "id": "fr:mulberries", + "name": "Mulberries", + "products": 3 + }, + { + "id": "en:soybean-flours", + "name": "Farines de soja", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-soja" + }, + { + "id": "fr:meal-replacement", + "name": "Meal-replacement", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/meal-replacement" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains-de-seigle", + "products": 3, + "name": "de:Pains-de-seigle", + "id": "de:pains-de-seigle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait-fourres", + "name": "en:Chocolats-au-lait-fourres", + "id": "en:chocolats-au-lait-fourres", + "products": 3 + }, + { + "id": "fr:pates-de-dattes", + "name": "Pates-de-dattes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-dattes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truffes", + "id": "en:truffles", + "name": "Truffes", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pils", + "products": 3, + "id": "fr:pils", + "name": "Pils" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-de-volaille", + "id": "fr:charcuteries-de-volaille", + "name": "Charcuteries-de-volaille", + "products": 3 + }, + { + "products": 3, + "name": "Gateaux-nantais", + "id": "fr:gateaux-nantais", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-nantais" + }, + { + "id": "fr:desserts-au-lait-de-brebis", + "name": "Desserts-au-lait-de-brebis", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-lait-de-brebis" + }, + { + "products": 3, + "name": "Cremes-renversees-au-chocolat", + "id": "fr:cremes-renversees-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cremes-renversees-au-chocolat" + }, + { + "products": 3, + "id": "de:laits-vegetaux", + "name": "de:Laits-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/de:laits-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-de-ble", + "products": 3, + "id": "fr:pains-azymes-a-la-farine-de-ble", + "name": "Pains azymes à la farine de blé" + }, + { + "id": "fr:pieds-de-porc", + "name": "Pieds-de-porc", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pieds-de-porc" + }, + { + "name": "Ciboulette fraîche", + "id": "en:fresh-chives", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-fraiche" + }, + { + "name": "Roussette de Savoie", + "id": "fr:roussette-de-savoie", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/roussette-de-savoie", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2169345" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:salades-composees", + "id": "de:salades-composees", + "name": "de:Salades-composees", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-feuilletes", + "id": "fr:biscuits-aperitifs-feuilletes", + "name": "Biscuits-aperitifs-feuilletes", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-sucre-de-canne", + "name": "Sirops-de-sucre-de-canne", + "id": "fr:sirops-de-sucre-de-canne", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-fruits", + "products": 3, + "id": "fr:mousses-de-fruits", + "name": "Mousses-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-cerises", + "name": "Tartes-aux-cerises", + "id": "fr:tartes-aux-cerises", + "products": 3 + }, + { + "products": 3, + "id": "en:cuban-rums", + "name": "Rhums cubains", + "url": "https://fr.openfoodfacts.org/categorie/rhums-cubains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-fromage", + "products": 3, + "id": "fr:plats-a-base-de-fromage", + "name": "Plats-a-base-de-fromage" + }, + { + "id": "fr:barquettes-au-chocolat", + "name": "Barquettes-au-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/barquettes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/extended-shelf-life-milks", + "products": 3, + "id": "en:extended-shelf-life-milks", + "name": "Extended shelf life milks" + }, + { + "name": "de:Plats-prepares-frais", + "id": "de:plats-prepares-frais", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D0%B0%D0%B9%D1%80%D0%B0%D0%BD", + "id": "fr:айран", + "name": "Айран", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-riz-souffle", + "id": "fr:chocolats-au-riz-souffle", + "name": "Chocolats-au-riz-souffle", + "products": 3 + }, + { + "products": 3, + "id": "de:jus-d-orange-100-pur-jus", + "name": "de:Jus-d-orange-100-pur-jus", + "url": "https://fr.openfoodfacts.org/categorie/de:jus-d-orange-100-pur-jus" + }, + { + "products": 3, + "id": "fr:leguminosas-y-derivados", + "name": "Leguminosas-y-derivados", + "url": "https://fr.openfoodfacts.org/categorie/leguminosas-y-derivados" + }, + { + "products": 3, + "name": "es:Galletas-saladas", + "id": "es:galletas-saladas", + "url": "https://fr.openfoodfacts.org/categorie/es:galletas-saladas" + }, + { + "id": "nl:chocolade", + "name": "nl:Chocolade", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/nl:chocolade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-pour-bebe", + "id": "fr:puree-pour-bebe", + "name": "Puree-pour-bebe", + "products": 3 + }, + { + "products": 3, + "id": "fr:sauce-pour-risotto-aux-champignons", + "name": "Sauce-pour-risotto-aux-champignons", + "url": "https://fr.openfoodfacts.org/categorie/sauce-pour-risotto-aux-champignons" + }, + { + "products": 3, + "name": "Cornichons malossol", + "id": "fr:cornichons-malossol", + "url": "https://fr.openfoodfacts.org/categorie/cornichons-malossol" + }, + { + "id": "fr:confits-de-foie-de-volaille", + "name": "Confits-de-foie-de-volaille", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-foie-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-nature-sucres-au-sucre-de-canne", + "name": "Yaourts-nature-sucres-au-sucre-de-canne", + "id": "fr:yaourts-nature-sucres-au-sucre-de-canne", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kazen", + "name": "Kazen", + "id": "fr:kazen", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-surgeles", + "products": 3, + "name": "Céréales surgelés", + "id": "en:frozen-cereals" + }, + { + "products": 3, + "name": "Cremes-fraiches-entieres", + "id": "fr:cremes-fraiches-entieres", + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-entieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-a-la-vanille", + "products": 3, + "name": "Thés à la vanille", + "id": "en:vanilla-teas" + }, + { + "id": "fr:flapjacks", + "name": "Flapjacks", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/flapjacks" + }, + { + "products": 3, + "name": "Pastilles-pour-la-gorge", + "id": "fr:pastilles-pour-la-gorge", + "url": "https://fr.openfoodfacts.org/categorie/pastilles-pour-la-gorge" + }, + { + "products": 3, + "name": "Kiwis-hayward", + "id": "fr:kiwis-hayward", + "url": "https://fr.openfoodfacts.org/categorie/kiwis-hayward" + }, + { + "id": "fr:pomelos-de-corse", + "name": "Pomelos-de-corse", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pomelos-de-corse" + }, + { + "products": 3, + "id": "fr:pommes-pink-lady", + "name": "Pommes-pink-lady", + "url": "https://fr.openfoodfacts.org/categorie/pommes-pink-lady" + }, + { + "id": "en:plats-prepares-deshydrates", + "name": "en:Plats-prepares-deshydrates", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-chanvre", + "id": "fr:graines-de-chanvre", + "name": "Graines-de-chanvre", + "products": 3 + }, + { + "id": "en:buckwheat-groats", + "name": "Gruau de sarrasin", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/gruau-de-sarrasin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roulades-de-volaille", + "products": 3, + "name": "Roulades-de-volaille", + "id": "fr:roulades-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-aux-cerises", + "id": "en:cherry-soy-yogurts", + "name": "Yaourts de soja aux cerises", + "products": 3 + }, + { + "products": 3, + "id": "en:charcuterie-cuite", + "name": "en:Charcuterie-cuite", + "url": "https://fr.openfoodfacts.org/categorie/en:charcuterie-cuite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oranges-confites", + "id": "fr:oranges-confites", + "name": "Oranges-confites", + "products": 3 + }, + { + "products": 3, + "name": "Gousses de vanille", + "id": "en:vanilla-pods", + "url": "https://fr.openfoodfacts.org/categorie/gousses-de-vanille" + }, + { + "products": 3, + "id": "es:sodas-au-cola", + "name": "es:Sodas-au-cola", + "url": "https://fr.openfoodfacts.org/categorie/es:sodas-au-cola" + }, + { + "products": 3, + "name": "Bebidas-carbonatadas", + "id": "fr:bebidas-carbonatadas", + "url": "https://fr.openfoodfacts.org/categorie/bebidas-carbonatadas" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q202501" + ], + "url": "https://fr.openfoodfacts.org/categorie/gelees-royales", + "id": "en:royal-jelly", + "name": "Gelées royales", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-surgelees", + "name": "Asperges surgelées", + "id": "en:frozen-asparagus", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-piemontaises-au-poulet", + "name": "Salades piémontaises au poulet", + "id": "en:piemontese-salads-with-chicken", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-a-tartiner-sales", + "name": "de:Produits-a-tartiner-sales", + "id": "de:produits-a-tartiner-sales", + "products": 3 + }, + { + "id": "ru:bieres", + "name": "ru:Bieres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/ru:bieres" + }, + { + "id": "ru:snacks-sucres", + "name": "ru:Snacks-sucres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/ru:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chocolats", + "id": "ru:chocolats", + "name": "ru:Chocolats", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-au-chocolat", + "products": 3, + "name": "it:Biscuits-au-chocolat", + "id": "it:biscuits-au-chocolat" + }, + { + "products": 3, + "name": "Noisettes décortiquées crues", + "id": "en:shelled-raw-hazelnuts", + "url": "https://fr.openfoodfacts.org/categorie/noisettes-decortiquees-crues" + }, + { + "products": 3, + "name": "it:Pates-de-ble", + "id": "it:pates-de-ble", + "url": "https://fr.openfoodfacts.org/categorie/it:pates-de-ble" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-jura", + "name": "Cotes-du-jura", + "id": "fr:cotes-du-jura", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremant-de-bourgogne", + "name": "Crémant de Bourgogne", + "id": "fr:cremant-de-bourgogne", + "products": 3 + }, + { + "products": 3, + "name": "en:Pates", + "id": "en:pates", + "url": "https://fr.openfoodfacts.org/categorie/en:pates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/agnolotti", + "sameAs": [ + "https://www.wikidata.org/wiki/Q20051" + ], + "products": 3, + "id": "en:agnolotti", + "name": "Agnolotti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-laitiers", + "products": 3, + "name": "it:Produits-laitiers", + "id": "it:produits-laitiers" + }, + { + "products": 3, + "name": "es:Flocons", + "id": "es:flocons", + "url": "https://fr.openfoodfacts.org/categorie/es:flocons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-foie-de-porc", + "products": 3, + "id": "fr:pates-de-foie-de-porc", + "name": "Pates-de-foie-de-porc" + }, + { + "id": "fr:blanquettes-de-canard", + "name": "Blanquettes-de-canard", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/blanquettes-de-canard" + }, + { + "name": "es:Eaux", + "id": "es:eaux", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:eaux" + }, + { + "products": 3, + "name": "Scaroles", + "id": "fr:scaroles", + "url": "https://fr.openfoodfacts.org/categorie/scaroles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sangria", + "products": 3, + "name": "Sangria", + "id": "fr:sangria" + }, + { + "id": "es:matieres-grasses-vegetales", + "name": "es:Matieres-grasses-vegetales", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:matieres-grasses-vegetales" + }, + { + "name": "es:Huiles-d-olive-vierges-extra", + "id": "es:huiles-d-olive-vierges-extra", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:huiles-d-olive-vierges-extra" + }, + { + "id": "en:egg-free-mayonnaises", + "name": "Egg-free mayonnaises", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/egg-free-mayonnaises" + }, + { + "products": 3, + "id": "en:rice-in-a-box", + "name": "Box de riz", + "url": "https://fr.openfoodfacts.org/categorie/box-de-riz" + }, + { + "products": 3, + "id": "fr:friandise", + "name": "Friandise", + "url": "https://fr.openfoodfacts.org/categorie/friandise" + }, + { + "name": "Salami de bœuf", + "id": "fr:salami-de-boeuf", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/salami-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moelleux", + "products": 3, + "name": "Moelleux", + "id": "fr:moelleux" + }, + { + "name": "Museaux-de-porc", + "id": "fr:museaux-de-porc", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/museaux-de-porc" + }, + { + "id": "fr:aromes-naturels", + "name": "Aromes-naturels", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/aromes-naturels" + }, + { + "products": 3, + "id": "de:rosmarin", + "name": "Romarin", + "url": "https://fr.openfoodfacts.org/categorie/romarin", + "sameAs": [ + "https://www.wikidata.org/wiki/Q122679" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baies-de-genevrier", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3251025" + ], + "name": "Baies de genévrier", + "id": "en:juniper-berries", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/souris-d-agneau-confite", + "products": 3, + "id": "fr:souris-d-agneau-confite", + "name": "Souris-d-agneau-confite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chips-de-pommes-de-terre-a-l-huile-de-tournesol", + "id": "en:chips-de-pommes-de-terre-a-l-huile-de-tournesol", + "name": "en:Chips-de-pommes-de-terre-a-l-huile-de-tournesol", + "products": 3 + }, + { + "products": 3, + "name": "Thes-verts-etuves", + "id": "fr:thes-verts-etuves", + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-etuves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines-a-la-provencale", + "name": "Filets d'anchois marinés à la Provençale", + "id": "fr:filets-d-anchois-marines-a-la-provencale", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/litchis", + "name": "Litchis", + "id": "en:lychees", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aperitif-sans-alcool", + "name": "Aperitif-sans-alcool", + "id": "fr:aperitif-sans-alcool", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graine-de-couscous", + "products": 3, + "id": "fr:graine-de-couscous", + "name": "Graine-de-couscous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-prepares", + "products": 3, + "id": "it:plats-prepares", + "name": "it:Plats-prepares" + }, + { + "name": "Beignets-a-la-framboise", + "id": "fr:beignets-a-la-framboise", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/beignets-a-la-framboise" + }, + { + "products": 3, + "name": "Biscuits-vegetal", + "id": "fr:biscuits-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sprats", + "products": 3, + "name": "Sprats", + "id": "fr:sprats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pralins", + "products": 3, + "id": "fr:pralins", + "name": "Pralins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-sesame-blanc", + "products": 3, + "name": "Purées de sésame blanc", + "id": "en:white-tahini" + }, + { + "name": "Yaourts-a-boire-framboise", + "id": "fr:yaourts-a-boire-framboise", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-framboise" + }, + { + "products": 3, + "name": "Fromages-frais-nature", + "id": "fr:fromages-frais-nature", + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-nature" + }, + { + "name": "Snacks", + "id": "fr:snacks", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/snacks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-sarrasin", + "id": "en:buckwheat-flakes", + "name": "Flocons de sarrasin", + "products": 3 + }, + { + "id": "en:amaranth", + "name": "Amarante", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q156344" + ], + "url": "https://fr.openfoodfacts.org/categorie/amarante" + }, + { + "id": "fr:cremes-fraiches-legeres-semi-epaisses", + "name": "Cremes-fraiches-legeres-semi-epaisses", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-legeres-semi-epaisses" + }, + { + "id": "fr:raviolis-au-jambon", + "name": "Raviolis-au-jambon", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-au-jambon" + }, + { + "products": 3, + "id": "fr:fruhstuckscerealien", + "name": "Fruhstuckscerealien", + "url": "https://fr.openfoodfacts.org/categorie/fruhstuckscerealien" + }, + { + "name": "de:Fromages-italiens", + "id": "de:fromages-italiens", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-italiens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner-vegetaux", + "name": "de:Pates-a-tartiner-vegetaux", + "id": "de:pates-a-tartiner-vegetaux", + "products": 3 + }, + { + "id": "en:jus-de-pomme", + "name": "en:Jus-de-pomme", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:epices", + "id": "de:epices", + "name": "de:Epices", + "products": 3 + }, + { + "id": "en:quark-with-20-fat-in-dry-mass", + "name": "Quark with 20% fat in dry mass", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/quark-with-20-fat-in-dry-mass" + }, + { + "products": 3, + "name": "Champignons-noirs", + "id": "fr:champignons-noirs", + "url": "https://fr.openfoodfacts.org/categorie/champignons-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-d-alsace", + "name": "Tagliatelles-d-alsace", + "id": "fr:tagliatelles-d-alsace", + "products": 3 + }, + { + "id": "fr:epis-de-mais", + "name": "Epis-de-mais", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/epis-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-a-la-chataigne", + "products": 3, + "id": "en:beers-with-chestnut", + "name": "Bières à la chataigne" + }, + { + "products": 3, + "id": "en:falafel-mixes", + "name": "Préparation pour falafel", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-falafel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:charcuteries-a-cuire", + "id": "en:charcuteries-a-cuire", + "name": "en:Charcuteries-a-cuire", + "products": 3 + }, + { + "products": 3, + "id": "de:getrank", + "name": "de:Getrank", + "url": "https://fr.openfoodfacts.org/categorie/de:getrank" + }, + { + "products": 3, + "id": "fr:etoiles", + "name": "Etoiles", + "url": "https://fr.openfoodfacts.org/categorie/etoiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:noix-de-cajou", + "products": 3, + "name": "de:Noix-de-cajou", + "id": "de:noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumineuses", + "products": 3, + "id": "de:legumineuses", + "name": "de:Legumineuses" + }, + { + "id": "fr:fisch-und-meeresfruchte", + "name": "Fisch-und-meeresfruchte", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/fisch-und-meeresfruchte" + }, + { + "products": 3, + "id": "fr:collioure", + "name": "Collioure", + "url": "https://fr.openfoodfacts.org/categorie/collioure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruchtgetranke", + "products": 3, + "name": "Fruchtgetranke", + "id": "fr:fruchtgetranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-lapin", + "products": 3, + "id": "fr:saucisses-de-lapin", + "name": "Saucisses-de-lapin" + }, + { + "id": "fr:buzet", + "name": "Buzet", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q462636" + ], + "url": "https://fr.openfoodfacts.org/categorie/buzet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aperitifs-surgeles", + "id": "fr:aperitifs-surgeles", + "name": "Aperitifs-surgeles", + "products": 3 + }, + { + "id": "fr:bieres-de-saison", + "name": "Bieres-de-saison", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-saison" + }, + { + "products": 3, + "id": "fr:boisson-au-cafe", + "name": "Boisson-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/boisson-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/extrait-de-vanille", + "sameAs": [ + "https://www.wikidata.org/wiki/Q10749869" + ], + "products": 3, + "name": "Extrait de vanille", + "id": "en:vanilla-extract" + }, + { + "products": 3, + "name": "it:Vinaigres-balsamiques", + "id": "it:vinaigres-balsamiques", + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigres-balsamiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:edulcorants", + "products": 3, + "id": "de:edulcorants", + "name": "de:Edulcorants" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q532734" + ], + "url": "https://fr.openfoodfacts.org/categorie/margaux", + "name": "Margaux", + "id": "fr:margaux", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saumons-fumes", + "products": 3, + "id": "en:saumons-fumes", + "name": "en:Saumons-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumes-en-conserve", + "name": "en:Legumes-en-conserve", + "id": "en:legumes-en-conserve", + "products": 3 + }, + { + "products": 3, + "name": "Toastbrote", + "id": "fr:toastbrote", + "url": "https://fr.openfoodfacts.org/categorie/toastbrote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-de-pays-d-oc", + "products": 3, + "id": "fr:vins-de-pays-d-oc", + "name": "Vins-de-pays-d-oc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-iberiques-de-cebo", + "id": "fr:jambons-iberiques-de-cebo", + "name": "Jambons ibériques de cebo", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faux-filets", + "name": "Faux-filets", + "id": "fr:faux-filets", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pates-a-tartiner-vegetaux", + "products": 3, + "id": "es:pates-a-tartiner-vegetaux", + "name": "es:Pates-a-tartiner-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pastilles-a-la-menthe", + "name": "en:Pastilles-a-la-menthe", + "id": "en:pastilles-a-la-menthe", + "products": 3 + }, + { + "name": "Vins-de-la-communaute-europeenne", + "id": "fr:vins-de-la-communaute-europeenne", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-la-communaute-europeenne" + }, + { + "products": 3, + "name": "Sprats-a-l-huile", + "id": "fr:sprats-a-l-huile", + "url": "https://fr.openfoodfacts.org/categorie/sprats-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-aux-fruits", + "id": "fr:desserts-lactes-aux-fruits", + "name": "Desserts-lactes-aux-fruits", + "products": 3 + }, + { + "name": "Melanges-de-legumes-en-conserve", + "id": "fr:melanges-de-legumes-en-conserve", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes-en-conserve" + }, + { + "products": 3, + "id": "es:bieres", + "name": "es:Bieres", + "url": "https://fr.openfoodfacts.org/categorie/es:bieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-chaudes", + "products": 3, + "name": "de:Boissons-chaudes", + "id": "de:boissons-chaudes" + }, + { + "products": 3, + "id": "it:terre-siciliane", + "name": "it:Terre-siciliane", + "url": "https://fr.openfoodfacts.org/categorie/it:terre-siciliane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-a-la-vanille", + "name": "Muffins à la vanille", + "id": "en:vanilla-muffins", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cannelloni-a-la-ricotta-et-aux-epinards", + "id": "fr:cannelloni-a-la-ricotta-et-aux-epinards", + "name": "Cannelloni-a-la-ricotta-et-aux-epinards", + "products": 3 + }, + { + "products": 3, + "name": "Viande-de-kangourou", + "id": "fr:viande-de-kangourou", + "url": "https://fr.openfoodfacts.org/categorie/viande-de-kangourou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bavettes", + "products": 3, + "name": "Bavettes", + "id": "fr:bavettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-quinoa", + "products": 3, + "name": "Flocons de quinoa", + "id": "en:quinoa-flakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galletas-de-tipo-digestive", + "name": "es:Galletas-de-tipo-digestive", + "id": "es:galletas-de-tipo-digestive", + "products": 3 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q883938" + ], + "url": "https://fr.openfoodfacts.org/categorie/bleus-des-causses", + "products": 3, + "name": "Bleus des Causses", + "id": "fr:bleus-des-causses" + }, + { + "products": 3, + "name": "Daubes", + "id": "fr:daubes", + "url": "https://fr.openfoodfacts.org/categorie/daubes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-sauce-beurre-citron", + "products": 3, + "name": "Saumons-sauce-beurre-citron", + "id": "fr:saumons-sauce-beurre-citron" + }, + { + "name": "Cassoulets-au-canard", + "id": "fr:cassoulets-au-canard", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-au-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-suedois", + "id": "fr:pains-suedois", + "name": "Pains-suedois", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confiseries-chocolatees", + "products": 3, + "name": "en:Confiseries-chocolatees", + "id": "en:confiseries-chocolatees" + }, + { + "id": "en:vinaigres", + "name": "en:Vinaigres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:vinaigres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nems-au-crabe", + "products": 3, + "name": "Nems-au-crabe", + "id": "fr:nems-au-crabe" + }, + { + "products": 3, + "name": "Préparations à base de crabes", + "id": "en:preparations-made-from-crabs", + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-crabes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-frais", + "id": "en:plats-prepares-frais", + "name": "en:Plats-prepares-frais", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-de-riz", + "name": "Nouilles-de-riz", + "id": "fr:nouilles-de-riz", + "products": 3 + }, + { + "products": 3, + "name": "Tablettes-de-chocolat", + "id": "fr:tablettes-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/tablettes-de-chocolat" + }, + { + "name": "en:Biere-de-gingembre", + "id": "en:biere-de-gingembre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:biere-de-gingembre" + }, + { + "name": "en:Laits-d-avoine", + "id": "en:laits-d-avoine", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:laits-d-avoine" + }, + { + "name": "Compotes-multifruits", + "id": "fr:compotes-multifruits", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/compotes-multifruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vegetarische-kazen", + "products": 3, + "id": "en:vegetarische-kazen", + "name": "en:Vegetarische-kazen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-gaches-pur-beurre", + "products": 3, + "name": "Mini-gaches-pur-beurre", + "id": "fr:mini-gaches-pur-beurre" + }, + { + "products": 3, + "id": "en:cheese-fondue-from-savoy", + "name": "Fondues savoyardes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q972682" + ], + "url": "https://fr.openfoodfacts.org/categorie/fondues-savoyardes" + }, + { + "products": 3, + "name": "Sorbets-aux-fruits-rouges", + "id": "fr:sorbets-aux-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-aux-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-de-pomme", + "products": 3, + "name": "es:Jus-de-pomme", + "id": "es:jus-de-pomme" + }, + { + "id": "de:dattes", + "name": "de:Dattes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:dattes" + }, + { + "products": 3, + "id": "en:whisky-ecossais", + "name": "en:Whisky-ecossais", + "url": "https://fr.openfoodfacts.org/categorie/en:whisky-ecossais" + }, + { + "id": "fr:boucherie", + "name": "Boucherie", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/boucherie" + }, + { + "id": "fr:chocolates-negros", + "name": "Chocolates-negros", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/chocolates-negros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-merlan", + "id": "en:whiting-fillets", + "name": "Filets de merlan", + "products": 3 + }, + { + "name": "Salade-d-algues", + "id": "fr:salade-d-algues", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/salade-d-algues" + }, + { + "name": "de:Chips-de-pommes-de-terre", + "id": "de:chips-de-pommes-de-terre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:chips-de-pommes-de-terre" + }, + { + "name": "Laits-u-h-t", + "id": "fr:laits-u-h-t", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/laits-u-h-t" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-noirs-extra-fin", + "id": "de:chocolats-noirs-extra-fin", + "name": "de:Chocolats-noirs-extra-fin", + "products": 3 + }, + { + "id": "fr:confitures-de-canneberges", + "name": "Confitures-de-canneberges", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-canneberges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pot-au-feu", + "products": 3, + "name": "Pot-au-feu", + "id": "fr:pot-au-feu" + }, + { + "products": 3, + "id": "fr:cremes-semi-epaisses", + "name": "Cremes-semi-epaisses", + "url": "https://fr.openfoodfacts.org/categorie/cremes-semi-epaisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-poireaux", + "name": "Soupes-de-poireaux", + "id": "fr:soupes-de-poireaux", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ketchup-edulcores", + "products": 3, + "id": "fr:ketchup-edulcores", + "name": "Ketchup-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fecules-de-manioc", + "name": "Fecules-de-manioc", + "id": "fr:fecules-de-manioc", + "products": 3 + }, + { + "products": 3, + "id": "fr:cotes-de-bergerac", + "name": "Côtes de Bergerac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q17354353" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-bergerac" + }, + { + "products": 3, + "name": "Boissons-au-soja", + "id": "fr:boissons-au-soja", + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-soja" + }, + { + "products": 3, + "name": "Piemontaise-au-thon", + "id": "fr:piemontaise-au-thon", + "url": "https://fr.openfoodfacts.org/categorie/piemontaise-au-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-volaille-bio", + "id": "fr:bouillons-de-volaille-bio", + "name": "Bouillons-de-volaille-bio", + "products": 3 + }, + { + "name": "Sauternes", + "id": "fr:sauternes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sauternes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q771636" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-blancs-en-conserve", + "id": "en:haricots-blancs-en-conserve", + "name": "en:Haricots-blancs-en-conserve", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-fermentees", + "id": "fr:boissons-fermentees", + "name": "Boissons-fermentees", + "products": 3 + }, + { + "name": "Produit-de-boulangerie", + "id": "fr:produit-de-boulangerie", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/produit-de-boulangerie" + }, + { + "name": "Filets-de-maquereaux-a-l-huile-d-olive", + "id": "fr:filets-de-maquereaux-a-l-huile-d-olive", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-l-huile-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cannellonis-a-la-napolitaine", + "id": "fr:cannellonis-a-la-napolitaine", + "name": "Cannellonis-a-la-napolitaine", + "products": 3 + }, + { + "name": "Pates-de-piments", + "id": "fr:pates-de-piments", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-piments" + }, + { + "products": 3, + "id": "en:lupin-beans", + "name": "Lupins", + "url": "https://fr.openfoodfacts.org/categorie/lupins", + "sameAs": [ + "https://www.wikidata.org/wiki/Q156811" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-saint-jacques-sans-corail", + "id": "fr:noix-de-saint-jacques-sans-corail", + "name": "Noix-de-saint-jacques-sans-corail", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-a-la-landaise", + "name": "Poêlées à la landaise", + "id": "fr:poelees-a-la-landaise", + "products": 3 + }, + { + "id": "fr:spirales-completes", + "name": "Spirales-completes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/spirales-completes" + }, + { + "name": "Yaourts-sur-lit-de-peche", + "id": "fr:yaourts-sur-lit-de-peche", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-peche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-grecs", + "products": 3, + "name": "Yaourts-grecs", + "id": "fr:yaourts-grecs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-preparees", + "name": "Crevettes-preparees", + "id": "fr:crevettes-preparees", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-savoyardes", + "products": 3, + "name": "Poêlées savoyardes", + "id": "fr:poelees-savoyardes" + }, + { + "products": 3, + "id": "fr:choucroutes-royales", + "name": "Choucroutes-royales", + "url": "https://fr.openfoodfacts.org/categorie/choucroutes-royales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entrecote", + "products": 3, + "name": "Entrecote", + "id": "fr:entrecote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-la-champagne", + "products": 3, + "id": "en:honeys-from-champagne", + "name": "Miels de la Champagne" + }, + { + "products": 3, + "id": "fr:poulets-tikka-masala", + "name": "Poulets-tikka-masala", + "url": "https://fr.openfoodfacts.org/categorie/poulets-tikka-masala" + }, + { + "id": "fr:liegeois-chocolat", + "name": "Liegeois-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/liegeois-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-veau", + "products": 3, + "id": "fr:rotis-de-veau", + "name": "Rotis-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soupe-miso", + "id": "en:soupe-miso", + "name": "en:Soupe-miso", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fluides", + "id": "fr:cremes-fluides", + "name": "Cremes-fluides", + "products": 3 + }, + { + "id": "fr:confitures-de-noix-de-coco", + "name": "Confitures-de-noix-de-coco", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:frais", + "name": "de:Frais", + "id": "de:frais", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-en-poudre", + "products": 3, + "name": "de:Chocolats-en-poudre", + "id": "de:chocolats-en-poudre" + }, + { + "id": "fr:yaourts-nature-sucres", + "name": "Yaourts-nature-sucres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-nature-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-lardons", + "id": "fr:pizzas-aux-lardons", + "name": "Pizzas-aux-lardons", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruchtsaft", + "id": "fr:fruchtsaft", + "name": "Fruchtsaft", + "products": 3 + }, + { + "name": "Aubergines-cuisinees", + "id": "fr:aubergines-cuisinees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/aubergines-cuisinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-d-endives-au-jambon", + "name": "Gratins-d-endives-au-jambon", + "id": "fr:gratins-d-endives-au-jambon", + "products": 3 + }, + { + "products": 3, + "id": "en:laits-de-soja", + "name": "en:Laits-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-soja" + }, + { + "id": "fr:alimentos-de-origen-vegetal-en-conserva", + "name": "Alimentos-de-origen-vegetal-en-conserva", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/alimentos-de-origen-vegetal-en-conserva" + }, + { + "id": "fr:foie-gras-de-canard-entier-du-sud-ouest", + "name": "Foie-gras-de-canard-entier-du-sud-ouest", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/foie-gras-de-canard-entier-du-sud-ouest" + }, + { + "id": "fr:plombieres", + "name": "Plombieres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/plombieres" + }, + { + "products": 3, + "id": "fr:parmentier-de-saumon", + "name": "Parmentier-de-saumon", + "url": "https://fr.openfoodfacts.org/categorie/parmentier-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-bruyere-blanche", + "name": "Miels de bruyère blanche", + "id": "fr:miels-de-bruyere-blanche", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-rose", + "name": "Sirops de rose", + "id": "en:rose-syrups", + "products": 3 + }, + { + "products": 3, + "name": "Franzosischer-kase", + "id": "fr:franzosischer-kase", + "url": "https://fr.openfoodfacts.org/categorie/franzosischer-kase" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-noix", + "name": "Tartes-aux-noix", + "id": "fr:tartes-aux-noix", + "products": 3 + }, + { + "products": 3, + "name": "Algues kombu", + "id": "en:kombu-seaweeds", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11261547" + ], + "url": "https://fr.openfoodfacts.org/categorie/algues-kombu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chicoree-liquide", + "products": 3, + "name": "Chicoree-liquide", + "id": "fr:chicoree-liquide" + }, + { + "products": 3, + "id": "de:huiles-d-olive", + "name": "de:Huiles-d-olive", + "url": "https://fr.openfoodfacts.org/categorie/de:huiles-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:boissons-non-sucrees", + "products": 3, + "id": "pt:boissons-non-sucrees", + "name": "pt:Boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gruyeres", + "products": 3, + "id": "fr:gruyeres", + "name": "Gruyeres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-legumes", + "products": 3, + "name": "Melange-de-legumes", + "id": "fr:melange-de-legumes" + }, + { + "name": "Farines-sans-gluten", + "id": "fr:farines-sans-gluten", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/farines-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/turrones", + "products": 3, + "id": "fr:turrones", + "name": "Turrones" + }, + { + "products": 3, + "name": "Jambon-cru-fume-de-la-foret-noire", + "id": "fr:jambon-cru-fume-de-la-foret-noire", + "url": "https://fr.openfoodfacts.org/categorie/jambon-cru-fume-de-la-foret-noire" + }, + { + "name": "Huiles de pistache", + "id": "en:pistachio-oils", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3820506" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-entiers", + "id": "en:laits-entiers", + "name": "en:Laits-entiers", + "products": 3 + }, + { + "name": "en:Bieres-britanniques", + "id": "en:bieres-britanniques", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-britanniques" + }, + { + "products": 3, + "name": "de:Huiles-d-olive-vierges-extra", + "id": "de:huiles-d-olive-vierges-extra", + "url": "https://fr.openfoodfacts.org/categorie/de:huiles-d-olive-vierges-extra" + }, + { + "id": "en:mousses-lactees", + "name": "en:Mousses-lactees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:mousses-lactees" + }, + { + "products": 3, + "id": "fr:biscuits-fourres-chocolat-au-chocolat", + "name": "Biscuits-fourres-chocolat-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-chocolat-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-aux-herbes", + "products": 3, + "name": "Jambons-aux-herbes", + "id": "fr:jambons-aux-herbes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-seigle", + "name": "Flocons de seigle", + "id": "en:rye-flakes", + "products": 3 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1074779" + ], + "url": "https://fr.openfoodfacts.org/categorie/chiroubles", + "products": 3, + "id": "fr:chiroubles", + "name": "Chiroubles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-darjeeling", + "name": "Thes-darjeeling", + "id": "fr:thes-darjeeling", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-caesar", + "name": "Salades caesar", + "id": "en:caesar-salads", + "products": 3 + }, + { + "name": "Oeufs-au-lait", + "id": "fr:oeufs-au-lait", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-au-lait" + }, + { + "id": "fr:sorbets-au-pamplemousse", + "name": "Sorbets-au-pamplemousse", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-pamplemousse" + }, + { + "products": 3, + "name": "Cremes-dessert-pistache", + "id": "fr:cremes-dessert-pistache", + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pour-gateaux", + "products": 3, + "id": "fr:pour-gateaux", + "name": "Pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-asiatiques", + "id": "fr:sauces-asiatiques", + "name": "Sauces-asiatiques", + "products": 3 + }, + { + "products": 3, + "id": "en:limonades", + "name": "en:Limonades", + "url": "https://fr.openfoodfacts.org/categorie/en:limonades" + }, + { + "products": 3, + "name": "Champagnes-bio", + "id": "fr:champagnes-bio", + "url": "https://fr.openfoodfacts.org/categorie/champagnes-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mandarines-au-sirop", + "name": "Mandarines-au-sirop", + "id": "fr:mandarines-au-sirop", + "products": 3 + }, + { + "products": 3, + "name": "Brioches-tressees-au-chocolat", + "id": "fr:brioches-tressees-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/brioches-tressees-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mothais-sur-feuille", + "products": 3, + "id": "fr:mothais-sur-feuille", + "name": "Mothais-sur-feuille" + }, + { + "id": "fr:conservas", + "name": "Conservas", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/conservas" + }, + { + "products": 3, + "name": "Infusions aux agrumes", + "id": "en:citrus-fruit-teas", + "url": "https://fr.openfoodfacts.org/categorie/infusions-aux-agrumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments", + "id": "fr:assortiments", + "name": "Assortiments", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/konfituren-und-marmeladen", + "name": "Konfituren-und-marmeladen", + "id": "fr:konfituren-und-marmeladen", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:bouillons-deshydrates", + "name": "de:Bouillons-deshydrates", + "id": "de:bouillons-deshydrates", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-aux-framboises", + "products": 3, + "name": "Gaufrettes-aux-framboises", + "id": "fr:gaufrettes-aux-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-tendres", + "products": 3, + "id": "fr:bonbons-tendres", + "name": "Bonbons-tendres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/limonades-edulcorees", + "products": 3, + "name": "Limonades-edulcorees", + "id": "fr:limonades-edulcorees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q909747" + ], + "url": "https://fr.openfoodfacts.org/categorie/whisky-irlandais", + "name": "Whisky irlandais", + "id": "en:irish-whiskey", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-pralines", + "products": 3, + "name": "Chocolats-pralines", + "id": "fr:chocolats-pralines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:purees-d-oleagineux", + "id": "de:purees-d-oleagineux", + "name": "de:Purees-d-oleagineux", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-secs", + "name": "it:Biscuits-secs", + "id": "it:biscuits-secs", + "products": 3 + }, + { + "products": 3, + "id": "en:frozen-mixed-peppers", + "name": "Mélanges de poivrons multicolores surgelés", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-poivrons-multicolores-surgeles" + }, + { + "products": 3, + "name": "Nappage", + "id": "fr:nappage", + "url": "https://fr.openfoodfacts.org/categorie/nappage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-roses", + "name": "Sels-roses", + "id": "fr:sels-roses", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ecrevisses", + "name": "Ecrevisses", + "id": "fr:ecrevisses", + "products": 3 + }, + { + "products": 3, + "id": "en:red-radishes", + "name": "Radis rouges", + "url": "https://fr.openfoodfacts.org/categorie/radis-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-petit-epeautre-t70", + "products": 3, + "name": "Farines de petit épeautre T70", + "id": "en:small-spelt-flour-t70" + }, + { + "name": "Beschuiten", + "id": "fr:beschuiten", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/beschuiten" + }, + { + "id": "fr:boissons-chocolatees", + "name": "Boissons-chocolatees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/boissons-chocolatees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-fourres", + "id": "fr:sables-fourres", + "name": "Sables-fourres", + "products": 3 + }, + { + "name": "Pains-de-mie-blancs", + "id": "fr:pains-de-mie-blancs", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dindes-cuisinees", + "id": "fr:dindes-cuisinees", + "name": "Dindes-cuisinees", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-au-chocolat", + "products": 3, + "id": "de:cereales-au-chocolat", + "name": "de:Cereales-au-chocolat" + }, + { + "name": "de:Biscuits-au-chocolat-au-lait", + "id": "de:biscuits-au-chocolat-au-lait", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-au-chocolat-au-lait" + }, + { + "id": "fr:bebidas-azucaradas", + "name": "Bebidas-azucaradas", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/bebidas-azucaradas" + }, + { + "name": "Carottes-cuites-a-la-vapeur", + "id": "fr:carottes-cuites-a-la-vapeur", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/carottes-cuites-a-la-vapeur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/drinking-water", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7892" + ], + "products": 3, + "name": "Drinking water", + "id": "en:drinking-water" + }, + { + "id": "fr:cidres-de-normandie-doux", + "name": "Cidres-de-normandie-doux", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cidres-de-normandie-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epices-au-chocolat", + "products": 3, + "id": "fr:pains-d-epices-au-chocolat", + "name": "Pains-d-epices-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-cafe", + "products": 3, + "name": "Yaourts-au-cafe", + "id": "fr:yaourts-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-grand-ordinaire", + "name": "Bourgogne-grand-ordinaire", + "id": "fr:bourgogne-grand-ordinaire", + "products": 3 + }, + { + "id": "fr:salsifis", + "name": "Salsifis", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/salsifis" + }, + { + "id": "fr:riz-long-grain-complet", + "name": "Riz-long-grain-complet", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/riz-long-grain-complet" + }, + { + "id": "fr:clafoutis-aux-abricots", + "name": "Clafoutis-aux-abricots", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/clafoutis-aux-abricots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/squeezed-multifruit-juices", + "products": 3, + "name": "Squeezed multifruit juices", + "id": "en:squeezed-multifruit-juices" + }, + { + "id": "en:flocons-d-avoine", + "name": "en:Flocons-d-avoine", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:flocons-d-avoine" + }, + { + "name": "Penne-rigate-sans-gluten", + "id": "fr:penne-rigate-sans-gluten", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/penne-rigate-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-sauces", + "products": 3, + "id": "fr:fonds-de-sauces", + "name": "Fonds-de-sauces" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3555843" + ], + "url": "https://fr.openfoodfacts.org/categorie/vergeoises", + "products": 3, + "id": "fr:vergeoises", + "name": "Vergeoises" + }, + { + "id": "en:canned-broad-beans", + "name": "Fèves en conserve", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/feves-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-speculoos", + "products": 3, + "name": "Pates-a-tartiner-au-speculoos", + "id": "fr:pates-a-tartiner-au-speculoos" + }, + { + "products": 3, + "name": "Buches", + "id": "fr:buches", + "url": "https://fr.openfoodfacts.org/categorie/buches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fastfood", + "id": "fr:fastfood", + "name": "Fastfood", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-prune", + "id": "fr:compotes-pommes-prune", + "name": "Compotes pommes prune", + "products": 3 + }, + { + "products": 3, + "id": "fr:vinaigres-d-alcools-colores", + "name": "Vinaigres-d-alcools-colores", + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-d-alcools-colores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pflanzliche-brotaufstriche", + "id": "fr:pflanzliche-brotaufstriche", + "name": "Pflanzliche-brotaufstriche", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/postres-vegetales", + "products": 3, + "id": "fr:postres-vegetales", + "name": "Postres-vegetales" + }, + { + "products": 3, + "id": "en:lactose-free-milk", + "name": "Laits sans lactose", + "url": "https://fr.openfoodfacts.org/categorie/laits-sans-lactose", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18404541" + ] + }, + { + "products": 3, + "name": "en:Poissons-fumes", + "id": "en:poissons-fumes", + "url": "https://fr.openfoodfacts.org/categorie/en:poissons-fumes" + }, + { + "products": 3, + "id": "fr:produit-frais", + "name": "Produit-frais", + "url": "https://fr.openfoodfacts.org/categorie/produit-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-pangas", + "products": 3, + "id": "en:iridescent-shark-fillets", + "name": "Filets de pangas" + }, + { + "products": 3, + "id": "fr:fromage-frais-aux-fruits", + "name": "Fromage-frais-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-aux-fruits" + }, + { + "products": 3, + "name": "Cerneaux-de-noix-du-dauphine", + "id": "fr:cerneaux-de-noix-du-dauphine", + "url": "https://fr.openfoodfacts.org/categorie/cerneaux-de-noix-du-dauphine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-pepperoni", + "id": "en:pepperoni-pizzas", + "name": "Pizzas au pepperoni", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-igp", + "products": 3, + "name": "Legumes-igp", + "id": "fr:legumes-igp" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-au-cafe", + "id": "fr:desserts-de-soja-au-cafe", + "name": "Desserts-de-soja-au-cafe", + "products": 3 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q33913" + ], + "url": "https://fr.openfoodfacts.org/categorie/citronnelle", + "products": 3, + "id": "en:lemon-grass", + "name": "Citronnelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-pistache", + "name": "Desserts-lactes-pistache", + "id": "fr:desserts-lactes-pistache", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/algues-spaghetti-de-mer", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1636443" + ], + "id": "en:sea-spaghetti-seaweeds", + "name": "Algues spaghetti de mer", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kartoffelchips", + "products": 3, + "name": "Kartoffelchips", + "id": "fr:kartoffelchips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-coriandre", + "products": 3, + "name": "Graines de coriandre", + "id": "en:coriander-seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/navets", + "name": "Navets", + "id": "en:turnips", + "products": 3 + }, + { + "products": 3, + "id": "en:vins-effervescents", + "name": "en:Vins-effervescents", + "url": "https://fr.openfoodfacts.org/categorie/en:vins-effervescents" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-et-lentilles", + "products": 3, + "name": "Saucisses-et-lentilles", + "id": "fr:saucisses-et-lentilles" + }, + { + "id": "fr:encornet", + "name": "Encornet", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/encornet" + }, + { + "products": 3, + "id": "de:laits-uht", + "name": "de:Laits-uht", + "url": "https://fr.openfoodfacts.org/categorie/de:laits-uht" + }, + { + "products": 3, + "name": "Barres-de-cereales-a-la-fraise", + "id": "fr:barres-de-cereales-a-la-fraise", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-la-fraise" + }, + { + "products": 3, + "name": "Beurres-de-cacahuetes-au-chocolat", + "id": "fr:beurres-de-cacahuetes-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacahuetes-au-chocolat" + }, + { + "id": "fr:plats-a-base-de-cabillaud", + "name": "Plats-a-base-de-cabillaud", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-cabillaud" + }, + { + "products": 3, + "id": "fr:farines-pour-pains", + "name": "Farines-pour-pains", + "url": "https://fr.openfoodfacts.org/categorie/farines-pour-pains" + }, + { + "id": "fr:gros-oeufs", + "name": "Gros-oeufs", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/gros-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maury", + "products": 3, + "id": "fr:maury", + "name": "Maury" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-semi-epaisses", + "name": "Cremes-fraiches-semi-epaisses", + "id": "fr:cremes-fraiches-semi-epaisses", + "products": 3 + }, + { + "id": "fr:aloxe-corton", + "name": "Aloxe-Corton", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/aloxe-corton", + "sameAs": [ + "https://www.wikidata.org/wiki/Q453673" + ] + }, + { + "id": "fr:sardines-a-poeler", + "name": "Sardines-a-poeler", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-poeler" + }, + { + "products": 3, + "id": "fr:sauces-au-poisson", + "name": "Sauces-au-poisson", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-poisson" + }, + { + "products": 3, + "id": "fr:chocolats-au-lait-aux-cereales", + "name": "Chocolats-au-lait-aux-cereales", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-cereales" + }, + { + "id": "fr:sachet", + "name": "Sachet", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sachet" + }, + { + "products": 3, + "id": "fr:pates-a-tartiner-aux-fruits", + "name": "Pates-a-tartiner-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-espagnoles", + "products": 3, + "id": "fr:bieres-espagnoles", + "name": "Bieres-espagnoles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caviars-d-aubergine", + "name": "Caviars-d-aubergine", + "id": "fr:caviars-d-aubergine", + "products": 3 + }, + { + "name": "Panais", + "id": "fr:panais", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/panais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-au-chocolat-noir", + "products": 3, + "name": "en:Biscuits-au-chocolat-noir", + "id": "en:biscuits-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-au-poulet-sauce-champignons", + "products": 3, + "name": "Penne-au-poulet-sauce-champignons", + "id": "fr:penne-au-poulet-sauce-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sel-rose-de-l-himalaya", + "name": "Sel-rose-de-l-himalaya", + "id": "fr:sel-rose-de-l-himalaya", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bresaolas", + "products": 3, + "id": "fr:bresaolas", + "name": "Bresaolas" + }, + { + "id": "fr:tripes-a-la-provencale", + "name": "Tripes-a-la-provencale", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/tripes-a-la-provencale" + }, + { + "products": 3, + "name": "Choux de Bruxelles surgelés", + "id": "en:frozen-brussels-sprouts", + "url": "https://fr.openfoodfacts.org/categorie/choux-de-bruxelles-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vins-rouges", + "name": "it:Vins-rouges", + "id": "it:vins-rouges", + "products": 3 + }, + { + "name": "Biscuit-fourre", + "id": "fr:biscuit-fourre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/biscuit-fourre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-fraises", + "id": "fr:yaourts-sur-lit-de-fraises", + "name": "Yaourts-sur-lit-de-fraises", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bugey", + "id": "fr:bugey", + "name": "Bugey", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potees", + "products": 3, + "name": "Potees", + "id": "fr:potees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-demi-secs", + "products": 3, + "name": "Champagnes-demi-secs", + "id": "fr:champagnes-demi-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-grilles-au-froment", + "name": "Pains-grilles-au-froment", + "id": "fr:pains-grilles-au-froment", + "products": 3 + }, + { + "products": 3, + "name": "en:Confitures-de-fruits", + "id": "en:confitures-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-fruits" + }, + { + "products": 3, + "id": "fr:alkoholische-getranke", + "name": "Alkoholische-getranke", + "url": "https://fr.openfoodfacts.org/categorie/alkoholische-getranke" + }, + { + "products": 3, + "id": "fr:farines-de-ble-type-t70", + "name": "Farines de blé type T70", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-type-t70" + }, + { + "products": 3, + "name": "Jurancon", + "id": "fr:jurancon", + "url": "https://fr.openfoodfacts.org/categorie/jurancon" + }, + { + "name": "Japon", + "id": "fr:japon", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/japon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alimentos-frescos", + "products": 3, + "id": "fr:alimentos-frescos", + "name": "Alimentos-frescos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-poulet", + "id": "fr:lardons-de-poulet", + "name": "Lardons de poulet", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-abricots-pays", + "id": "fr:confitures-d-abricots-pays", + "name": "Confitures-d-abricots-pays", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-farfalles", + "products": 3, + "id": "fr:mini-farfalles", + "name": "Mini-farfalles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macaron-aux-framboises", + "products": 3, + "name": "Macaron-aux-framboises", + "id": "fr:macaron-aux-framboises" + }, + { + "products": 3, + "name": "Pinots-noirs", + "id": "fr:pinots-noirs", + "url": "https://fr.openfoodfacts.org/categorie/pinots-noirs" + }, + { + "name": "Matière grasse de beurre", + "id": "en:butter-fat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/matiere-grasse-de-beurre" + }, + { + "products": 3, + "id": "fr:travers-de-porc", + "name": "Travers-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/travers-de-porc" + }, + { + "products": 3, + "name": "Foies-gras-de-canard-cuits", + "id": "fr:foies-gras-de-canard-cuits", + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-nougatine", + "name": "Chocolats-noirs-a-la-nougatine", + "id": "fr:chocolats-noirs-a-la-nougatine", + "products": 3 + }, + { + "products": 3, + "id": "fr:infantile", + "name": "Infantile", + "url": "https://fr.openfoodfacts.org/categorie/infantile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buns", + "id": "fr:buns", + "name": "Buns", + "products": 3 + }, + { + "products": 3, + "name": "pl:Boissons", + "id": "pl:boissons", + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:boissons-chaudes", + "name": "nl:Boissons-chaudes", + "id": "nl:boissons-chaudes", + "products": 3 + }, + { + "id": "fr:sauces-a-l-oseille", + "name": "Sauces à l'oseille", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-l-oseille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-citron", + "id": "fr:cremes-de-citron", + "name": "Cremes-de-citron", + "products": 3 + }, + { + "id": "en:lithuanian-cheeses", + "name": "Fromages lithuaniens", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/fromages-lithuaniens" + }, + { + "name": "de:Mueslis-au-chocolat", + "id": "de:mueslis-au-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:mueslis-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/banyuls", + "name": "Banyuls", + "id": "fr:banyuls", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit", + "name": "Kit", + "id": "fr:kit", + "products": 3 + }, + { + "name": "en:Produits-lyophilises-a-reconstituer", + "id": "en:produits-lyophilises-a-reconstituer", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-lyophilises-a-reconstituer" + }, + { + "name": "Moutardes violettes", + "id": "en:violet-mustards", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-violettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-champignons", + "products": 3, + "name": "Pizzas-aux-champignons", + "id": "fr:pizzas-aux-champignons" + }, + { + "products": 3, + "id": "fr:roulades-de-jambon", + "name": "Roulades-de-jambon", + "url": "https://fr.openfoodfacts.org/categorie/roulades-de-jambon" + }, + { + "products": 3, + "name": "Green seedless grapes", + "id": "en:green-seedless-grapes", + "url": "https://fr.openfoodfacts.org/categorie/green-seedless-grapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-raisin", + "id": "en:grape-nectars", + "name": "Nectars de raisin", + "products": 3 + }, + { + "name": "Jus de mandarine pur jus", + "id": "en:squeezed-tangerine-juices", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-mandarine-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-poissons", + "products": 3, + "id": "en:fish-oils", + "name": "Huiles de poissons" + }, + { + "products": 3, + "name": "Chips-de-crevettes", + "id": "fr:chips-de-crevettes", + "url": "https://fr.openfoodfacts.org/categorie/chips-de-crevettes" + }, + { + "products": 3, + "id": "fr:pommes-de-terre-cuites", + "name": "Pommes-de-terre-cuites", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-cuites" + }, + { + "name": "Yaourts-aux-fruits-de-la-passion", + "id": "fr:yaourts-aux-fruits-de-la-passion", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-de-la-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-d-elevages", + "id": "de:produits-d-elevages", + "name": "de:Produits-d-elevages", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-arabica", + "id": "fr:cafe-arabica", + "name": "Cafe-arabica", + "products": 3 + }, + { + "products": 3, + "name": "Productos-deshidratados", + "id": "fr:productos-deshidratados", + "url": "https://fr.openfoodfacts.org/categorie/productos-deshidratados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nusse", + "products": 3, + "name": "Nusse", + "id": "fr:nusse" + }, + { + "name": "Galettes-de-tofu", + "id": "fr:galettes-de-tofu", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-tofu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-sucre-de-canne", + "products": 3, + "id": "fr:yaourts-au-sucre-de-canne", + "name": "Yaourts-au-sucre-de-canne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:charcuterie", + "id": "en:charcuterie", + "name": "en:Charcuterie", + "products": 3 + }, + { + "name": "Boudins-blancs-aux-cepes", + "id": "fr:boudins-blancs-aux-cepes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-aux-cepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/snacking", + "products": 3, + "name": "Snacking", + "id": "fr:snacking" + }, + { + "id": "es:olives-vertes", + "name": "es:Olives-vertes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:olives-vertes" + }, + { + "products": 3, + "id": "fr:sorbets-au-chocolat", + "name": "Sorbets-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/basilic-en-pot", + "products": 3, + "id": "en:potted-basil", + "name": "Basilic en pot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-poires", + "products": 3, + "id": "en:pear-pies", + "name": "Tartes aux poires" + }, + { + "id": "nl:eaux", + "name": "nl:Eaux", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/nl:eaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gemusebasierte-lebensmittel", + "products": 3, + "id": "fr:gemusebasierte-lebensmittel", + "name": "Gemusebasierte-lebensmittel" + }, + { + "products": 3, + "name": "Huile-pimentee", + "id": "fr:huile-pimentee", + "url": "https://fr.openfoodfacts.org/categorie/huile-pimentee" + }, + { + "id": "en:kiwi-yogurts", + "name": "Yaourts au kiwi", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-kiwi" + }, + { + "products": 3, + "id": "fr:viandes-de-bison", + "name": "Viandes-de-bison", + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-bison" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/estragon-sec-moulu", + "products": 3, + "id": "en:ground-dried-tarragon", + "name": "Estragon sec moulu" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q40866122" + ], + "url": "https://fr.openfoodfacts.org/categorie/jus-de-mandarine", + "products": 3, + "name": "Jus de mandarine", + "id": "en:tangerine-juices" + }, + { + "name": "Moulines", + "id": "fr:moulines", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/moulines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastilles-au-miel", + "products": 3, + "id": "fr:pastilles-au-miel", + "name": "Pastilles-au-miel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:complements-pour-le-bodybuilding", + "id": "de:complements-pour-le-bodybuilding", + "name": "de:Complements-pour-le-bodybuilding", + "products": 3 + }, + { + "products": 3, + "id": "en:bouchees-vapeur", + "name": "en:Bouchees-vapeur", + "url": "https://fr.openfoodfacts.org/categorie/en:bouchees-vapeur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-konjac", + "products": 3, + "name": "Pates-de-konjac", + "id": "fr:pates-de-konjac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-milanaises", + "id": "fr:escalopes-milanaises", + "name": "Escalopes-milanaises", + "products": 3 + }, + { + "products": 3, + "name": "en:Chips-au-paprika", + "id": "en:chips-au-paprika", + "url": "https://fr.openfoodfacts.org/categorie/en:chips-au-paprika" + }, + { + "name": "Frites-fraiches", + "id": "fr:frites-fraiches", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/frites-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filet-mignon-de-porc", + "products": 3, + "id": "fr:filet-mignon-de-porc", + "name": "Filet-mignon-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galette-de-tofu", + "products": 3, + "id": "fr:galette-de-tofu", + "name": "Galette-de-tofu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-haute-provence", + "id": "en:olive-oil-from-haute-provence", + "name": "Huile d'olive de Haute-Provence", + "products": 3 + }, + { + "products": 3, + "id": "fr:pommes-de-terre-melody", + "name": "Pommes-de-terre-melody", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-melody" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saucissons", + "id": "en:saucissons", + "name": "en:Saucissons", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-boeuf", + "id": "fr:rotis-de-boeuf", + "name": "Rotis-de-boeuf", + "products": 3 + }, + { + "products": 3, + "name": "en:Biscuits-aperitifs-souffles", + "id": "en:biscuits-aperitifs-souffles", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-aperitifs-souffles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-ble-dur", + "id": "en:durum-wheat-flours", + "name": "Farines de blé dur", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-a-l-ail", + "products": 3, + "id": "fr:olives-a-l-ail", + "name": "Olives-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kirsch", + "sameAs": [ + "https://www.wikidata.org/wiki/Q279034" + ], + "name": "Kirsch", + "id": "fr:kirsch", + "products": 3 + }, + { + "products": 3, + "id": "fr:pates-de-foie-gras", + "name": "Pâtés de foie gras", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-foie-gras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-de-seigle-complet", + "products": 3, + "name": "Pain-de-seigle-complet", + "id": "fr:pain-de-seigle-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pains-grilles-au-ble-complet", + "products": 3, + "id": "fr:petits-pains-grilles-au-ble-complet", + "name": "Petits-pains-grilles-au-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/courges-butternut", + "sameAs": [ + "https://www.wikidata.org/wiki/Q4169287" + ], + "products": 3, + "id": "en:butternut-squashes", + "name": "Courges Butternut" + }, + { + "products": 3, + "name": "Fromages-blancs-sucres", + "id": "fr:fromages-blancs-sucres", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouteilles-de-cola-gelifiees", + "id": "en:gummy-cola-bottles", + "name": "Bouteilles de cola gélifiées", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-dehydratees", + "products": 3, + "id": "fr:sauces-dehydratees", + "name": "Sauces-dehydratees" + }, + { + "products": 3, + "name": "Purees-de-pois-casses", + "id": "fr:purees-de-pois-casses", + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pois-casses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:melanges-de-fruits-secs", + "id": "en:melanges-de-fruits-secs", + "name": "en:Melanges-de-fruits-secs", + "products": 3 + }, + { + "id": "en:millet-flours", + "name": "Farines de millet", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-millet" + }, + { + "id": "fr:confitures-de-gingembre", + "name": "Confitures-de-gingembre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-gingembre" + }, + { + "products": 3, + "id": "fr:saucisses-de-veau", + "name": "Saucisses-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-condimentaires", + "name": "Sauces-condimentaires", + "id": "fr:sauces-condimentaires", + "products": 3 + }, + { + "products": 3, + "name": "Mousses de foie gras", + "id": "fr:mousses-de-foie-gras", + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-foie-gras" + }, + { + "products": 3, + "id": "fr:sauces-au-vin-rouge", + "name": "Sauces au vin rouge", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-vin-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-clementine", + "products": 3, + "id": "fr:sorbets-a-la-clementine", + "name": "Sorbets-a-la-clementine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-provencales", + "products": 3, + "name": "Moutardes provençales", + "id": "en:provencale-mustards" + }, + { + "products": 3, + "name": "Choux-a-la-creme", + "id": "fr:choux-a-la-creme", + "url": "https://fr.openfoodfacts.org/categorie/choux-a-la-creme" + }, + { + "id": "en:spaghettis-de-ble-dur", + "name": "en:Spaghettis-de-ble-dur", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:spaghettis-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:semoules-de-ble-dur-pour-couscous", + "name": "en:Semoules-de-ble-dur-pour-couscous", + "id": "en:semoules-de-ble-dur-pour-couscous", + "products": 3 + }, + { + "products": 3, + "name": "de:Produits-de-l-olivier", + "id": "de:produits-de-l-olivier", + "url": "https://fr.openfoodfacts.org/categorie/de:produits-de-l-olivier" + }, + { + "id": "fr:spaghetti-au-petit-epeautre", + "name": "Spaghetti au petit épeautre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-au-petit-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fisch", + "id": "fr:fisch", + "name": "Fisch", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-cassis", + "name": "Nectars-de-cassis", + "id": "fr:nectars-de-cassis", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tropeziennes", + "name": "Tropeziennes", + "id": "fr:tropeziennes", + "products": 3 + }, + { + "id": "es:produits-lyophilises-a-reconstituer", + "name": "es:Produits-lyophilises-a-reconstituer", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:produits-lyophilises-a-reconstituer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:snacks-sucres", + "name": "nl:Snacks-sucres", + "id": "nl:snacks-sucres", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-blanc", + "id": "fr:bonbons-de-chocolat-blanc", + "name": "Bonbons-de-chocolat-blanc", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-framboise", + "id": "fr:chocolats-a-la-framboise", + "name": "Chocolats-a-la-framboise", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-secs", + "products": 3, + "id": "en:fruits-secs", + "name": "en:Fruits-secs" + }, + { + "id": "fr:tees", + "name": "Tees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/tees" + }, + { + "products": 3, + "id": "fr:glaces-au-praline", + "name": "Glaces au praliné", + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sticks-de-chocolat", + "products": 3, + "name": "Sticks-de-chocolat", + "id": "fr:sticks-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-boissons", + "products": 3, + "name": "Preparations-pour-boissons", + "id": "fr:preparations-pour-boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/volailles-de-loue", + "products": 3, + "name": "Volailles de Loué", + "id": "fr:volailles-de-loue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:raviolis-aux-legumes", + "products": 3, + "id": "de:raviolis-aux-legumes", + "name": "de:Raviolis-aux-legumes" + }, + { + "id": "en:fudges", + "name": "en:Fudges", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:fudges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-figue", + "products": 3, + "name": "Biscuits-a-la-figue", + "id": "fr:biscuits-a-la-figue" + }, + { + "id": "fr:chocolats-fourres-au-nougat", + "name": "Chocolats-fourres-au-nougat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-nougat" + }, + { + "name": "Méditerranée", + "id": "fr:mediterranee", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/mediterranee", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3332682" + ] + }, + { + "id": "de:jus-d-orange", + "name": "de:Jus-d-orange", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:jus-d-orange" + }, + { + "name": "Cappucinos", + "id": "fr:cappucinos", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cappucinos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:vins-espagnols", + "products": 3, + "name": "es:Vins-espagnols", + "id": "es:vins-espagnols" + }, + { + "id": "fr:apero", + "name": "Apero", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/apero" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q943935" + ], + "url": "https://fr.openfoodfacts.org/categorie/seitan", + "name": "Seitan", + "id": "en:seitan", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-pour-salade", + "name": "Fromage-pour-salade", + "id": "fr:fromage-pour-salade", + "products": 3 + }, + { + "products": 3, + "name": "en:Mueslis-au-chocolat", + "id": "en:mueslis-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/en:mueslis-au-chocolat" + }, + { + "products": 3, + "name": "ro:Biscuiți", + "id": "ro:biscuiți", + "url": "https://fr.openfoodfacts.org/categorie/ro:biscui%C8%9Bi" + }, + { + "name": "Sels-fluores", + "id": "fr:sels-fluores", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sels-fluores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-sesame", + "products": 3, + "id": "fr:biscuits-au-sesame", + "name": "Biscuits-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-fruits-rouges", + "products": 3, + "name": "Biscuits-aux-fruits-rouges", + "id": "fr:biscuits-aux-fruits-rouges" + }, + { + "id": "fr:barres-de-cereales-aux-amandes", + "name": "Barres de céréales aux amandes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-amandes" + }, + { + "id": "en:cidres", + "name": "en:Cidres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:cidres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-myrtille", + "name": "Biscuits-a-la-myrtille", + "id": "fr:biscuits-a-la-myrtille", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vinaigres-balsamiques-de-modene", + "products": 3, + "name": "en:Vinaigres-balsamiques-de-modene", + "id": "en:vinaigres-balsamiques-de-modene" + }, + { + "name": "Truites-en-conserve", + "id": "fr:truites-en-conserve", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/truites-en-conserve" + }, + { + "id": "it:petit-dejeuners", + "name": "it:Petit-dejeuners", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/it:petit-dejeuners" + }, + { + "id": "fr:raviolis-ricotta-epinards", + "name": "Raviolis-ricotta-epinards", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-ricotta-epinards" + }, + { + "products": 3, + "id": "fr:grand-vin-de-bordeaux", + "name": "Grand-vin-de-bordeaux", + "url": "https://fr.openfoodfacts.org/categorie/grand-vin-de-bordeaux" + }, + { + "products": 3, + "name": "Carottes-en-rondelles", + "id": "fr:carottes-en-rondelles", + "url": "https://fr.openfoodfacts.org/categorie/carottes-en-rondelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-au-chocolat", + "products": 3, + "id": "fr:sirops-au-chocolat", + "name": "Sirops-au-chocolat" + }, + { + "id": "fr:cotes-de-thongue", + "name": "Côtes de Thongue", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3010721" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-thongue" + }, + { + "name": "Thes-verts-au-jasmin", + "id": "fr:thes-verts-au-jasmin", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-au-jasmin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-bonbons-de-chocolat-noir", + "products": 3, + "id": "fr:assortiments-de-bonbons-de-chocolat-noir", + "name": "Assortiments-de-bonbons-de-chocolat-noir" + }, + { + "products": 3, + "name": "Salade-de-concombres-a-la-creme", + "id": "fr:salade-de-concombres-a-la-creme", + "url": "https://fr.openfoodfacts.org/categorie/salade-de-concombres-a-la-creme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/konjac", + "id": "fr:konjac", + "name": "Konjac", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-espagne", + "name": "Miels-d-espagne", + "id": "fr:miels-d-espagne", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-legerement-aigres", + "products": 3, + "name": "Beurres légèrement aigres", + "id": "en:mildly-soured-butters" + }, + { + "name": "en:Aliments-a-base-de-plantes-frais", + "id": "en:aliments-a-base-de-plantes-frais", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-a-base-de-plantes-frais" + }, + { + "name": "Poelees-surgelees", + "id": "fr:poelees-surgelees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/poelees-surgelees" + }, + { + "name": "Fronsac", + "id": "fr:fronsac", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q489244" + ], + "url": "https://fr.openfoodfacts.org/categorie/fronsac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-poivre-vert", + "products": 3, + "name": "Moutardes-au-poivre-vert", + "id": "fr:moutardes-au-poivre-vert" + }, + { + "products": 3, + "name": "nl:Aliments-a-base-de-fruits-et-de-legumes", + "id": "nl:aliments-a-base-de-fruits-et-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/nl:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "products": 3, + "name": "Saucissons-secs-aux-noix", + "id": "fr:saucissons-secs-aux-noix", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-aux-noix" + }, + { + "id": "fr:sauces-chasseur", + "name": "Sauces chasseur", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sauces-chasseur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steak-hache-pur-boeuf", + "products": 3, + "name": "Steak-hache-pur-boeuf", + "id": "fr:steak-hache-pur-boeuf" + }, + { + "name": "Cremes-glacees-au-chocolat", + "id": "fr:cremes-glacees-au-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/minestrone", + "products": 3, + "name": "Minestrone", + "id": "fr:minestrone" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-allians", + "id": "fr:pommes-de-terre-allians", + "name": "Pommes-de-terre-allians", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farfalles-completes", + "products": 3, + "id": "fr:farfalles-completes", + "name": "Farfalles-completes" + }, + { + "name": "Foies", + "id": "fr:foies", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/foies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/acras", + "products": 3, + "name": "Acras", + "id": "fr:acras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barquettes-a-l-abricot", + "products": 3, + "name": "Barquettes-a-l-abricot", + "id": "fr:barquettes-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-tres-fins", + "id": "fr:cornichons-tres-fins", + "name": "Cornichons-tres-fins", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-aux-legumes", + "products": 3, + "name": "Taboules-aux-legumes", + "id": "fr:taboules-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-chocolat-blanc", + "products": 3, + "name": "Pates-a-tartiner-au-chocolat-blanc", + "id": "fr:pates-a-tartiner-au-chocolat-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vegan", + "products": 3, + "id": "fr:vegan", + "name": "Vegan" + }, + { + "id": "en:smoked-swordfish", + "name": "Espadons fumés", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/espadons-fumes" + }, + { + "products": 3, + "name": "Lentilles-vertes-du-berry", + "id": "fr:lentilles-vertes-du-berry", + "url": "https://fr.openfoodfacts.org/categorie/lentilles-vertes-du-berry" + }, + { + "products": 3, + "id": "fr:huile-d-olive-aromatisee", + "name": "Huile-d-olive-aromatisee", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-aromatisee" + }, + { + "id": "fr:riz-sauvage", + "name": "Riz-sauvage", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/riz-sauvage" + }, + { + "name": "Aloe-vera-drinks", + "id": "fr:aloe-vera-drinks", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/aloe-vera-drinks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taramas-a-la-truite", + "products": 3, + "name": "Taramas-a-la-truite", + "id": "fr:taramas-a-la-truite" + }, + { + "id": "fr:viandes-de-dinde", + "name": "Viandes-de-dinde", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-dinde" + }, + { + "id": "fr:specialites-vegetales-a-base-de-tofu", + "name": "Specialites-vegetales-a-base-de-tofu", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/specialites-vegetales-a-base-de-tofu" + }, + { + "name": "Haricots-verts-tres-fins", + "id": "fr:haricots-verts-tres-fins", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-tres-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filet-de-limande", + "products": 3, + "name": "Filet-de-limande", + "id": "fr:filet-de-limande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:polenta", + "name": "en:Polenta", + "id": "en:polenta", + "products": 3 + }, + { + "products": 3, + "name": "Gratins-d-endives", + "id": "fr:gratins-d-endives", + "url": "https://fr.openfoodfacts.org/categorie/gratins-d-endives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-tofu", + "products": 3, + "id": "fr:saucisse-tofu", + "name": "Saucisse-tofu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porc-au-caramel", + "name": "Porc au caramel", + "id": "en:caramel-pork", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-vegetales", + "name": "Galettes-vegetales", + "id": "fr:galettes-vegetales", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-roses", + "id": "fr:champagnes-roses", + "name": "Champagnes rosés", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-volaille", + "name": "en:Plats-a-base-de-volaille", + "id": "en:plats-a-base-de-volaille", + "products": 3 + }, + { + "id": "fr:brioches-fourrees-au-chocolat", + "name": "Brioches-fourrees-au-chocolat", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/brioches-fourrees-au-chocolat" + }, + { + "products": 3, + "name": "Produits introuvables en Métropole (pour la France)", + "id": "en:products-that-cannot-be-found-in-metropolitan-france", + "url": "https://fr.openfoodfacts.org/categorie/produits-introuvables-en-metropole-pour-la-france" + }, + { + "id": "fr:terrines-forestieres", + "name": "Terrines-forestieres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/terrines-forestieres" + }, + { + "products": 3, + "id": "fr:lasagnes-a-garnir-aux-oeufs", + "name": "Lasagnes-a-garnir-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-a-garnir-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-d-alsace", + "name": "Coquillettes-d-alsace", + "id": "fr:coquillettes-d-alsace", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/portos-oxydatifs", + "name": "Portos oxydatifs", + "id": "fr:portos-oxydatifs", + "products": 3 + }, + { + "id": "fr:sirop-sans-sucre", + "name": "Sirop-sans-sucre", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sirop-sans-sucre" + }, + { + "id": "fr:macaroni-aux-oeufs", + "name": "Macaroni-aux-oeufs", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/macaroni-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-jaunes", + "id": "fr:poulets-jaunes", + "name": "Poulets-jaunes", + "products": 3 + }, + { + "id": "fr:miels-de-poitou-charentes", + "name": "Miels de Poitou-Charentes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-poitou-charentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cocktails-de-crevettes", + "name": "Cocktails-de-crevettes", + "id": "fr:cocktails-de-crevettes", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-a-raclette", + "products": 3, + "name": "Fromage-a-raclette", + "id": "fr:fromage-a-raclette" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q10214" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-pourcain", + "products": 3, + "id": "fr:saint-pourcain", + "name": "Saint-Pourçain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-au-lait-au-levain", + "products": 3, + "name": "Pains-au-lait-au-levain", + "id": "fr:pains-au-lait-au-levain" + }, + { + "id": "en:champagnes-bruts", + "name": "en:Champagnes-bruts", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:champagnes-bruts" + }, + { + "name": "Gateaux-au-caramel", + "id": "fr:gateaux-au-caramel", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-des-sables-des-landes", + "products": 3, + "id": "fr:asperges-des-sables-des-landes", + "name": "Asperges des sables des Landes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baguettes-precuites", + "id": "fr:baguettes-precuites", + "name": "Baguettes-precuites", + "products": 3 + }, + { + "products": 3, + "id": "fr:mirabelles-au-sirop", + "name": "Mirabelles-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/mirabelles-au-sirop" + }, + { + "products": 3, + "name": "Tagliatelles-au-saumon", + "id": "fr:tagliatelles-au-saumon", + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-au-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grands-vins-de-bordeaux", + "products": 3, + "id": "fr:grands-vins-de-bordeaux", + "name": "Grands-vins-de-bordeaux" + }, + { + "id": "en:tortillas", + "name": "en:Tortillas", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:tortillas" + }, + { + "id": "es:flocons-de-cereales", + "name": "es:Flocons-de-cereales", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:flocons-de-cereales" + }, + { + "id": "fr:caramels-mous", + "name": "Caramels-mous", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/caramels-mous" + }, + { + "products": 3, + "id": "fr:soupes-de-petits-pois", + "name": "Soupes-de-petits-pois", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-petits-pois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porto-tawny", + "products": 3, + "id": "fr:porto-tawny", + "name": "Porto Tawny" + }, + { + "products": 3, + "id": "fr:terrines-de-poisson", + "name": "Terrines-de-poisson", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-poisson" + }, + { + "id": "fr:pains-azymes-a-la-farine-complete", + "name": "Pains azymes à la farine complète", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-complete" + }, + { + "name": "Boissons-a-la-chicoree", + "id": "fr:boissons-a-la-chicoree", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-chicoree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:comte", + "id": "en:comte", + "name": "en:Comte", + "products": 3 + }, + { + "products": 3, + "name": "en:Fromages-aoc", + "id": "en:fromages-aoc", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-aoc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fondues-au-chocolat", + "name": "Fondues-au-chocolat", + "id": "fr:fondues-au-chocolat", + "products": 3 + }, + { + "name": "en:Fruit-bar", + "id": "en:fruit-bar", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:fruit-bar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-fumees", + "products": 3, + "name": "Bieres-fumees", + "id": "fr:bieres-fumees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/seedless-grapes", + "id": "en:seedless-grapes", + "name": "Seedless grapes", + "products": 3 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2376488" + ], + "url": "https://fr.openfoodfacts.org/categorie/gruyeres-suisses", + "id": "en:swiss-gruyeres", + "name": "Gruyères suisses", + "products": 3 + }, + { + "name": "Mais-grilles", + "id": "fr:mais-grilles", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/mais-grilles" + }, + { + "id": "es:produits-d-elevages", + "name": "es:Produits-d-elevages", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:produits-d-elevages" + }, + { + "products": 3, + "id": "en:unshelled-peanuts", + "name": "Cacahuètes décortiquées", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-sauce-pesto-et-noix-de-saint-jacques", + "id": "fr:tagliatelles-sauce-pesto-et-noix-de-saint-jacques", + "name": "Tagliatelles-sauce-pesto-et-noix-de-saint-jacques", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:calendriers-de-l-avent", + "products": 3, + "id": "en:calendriers-de-l-avent", + "name": "en:Calendriers-de-l-avent" + }, + { + "products": 3, + "name": "Gaufrettes fourrées à la vanille", + "id": "en:vanilla-stuffed-wafers", + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees-a-la-vanille" + }, + { + "id": "fr:blanc-de-blancs", + "name": "Blanc-de-blancs", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-blancs" + }, + { + "products": 3, + "id": "fr:tripes-a-la-tomate", + "name": "Tripes-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/tripes-a-la-tomate" + }, + { + "products": 3, + "id": "fr:cremes-dessert-au-cafe", + "name": "Cremes-dessert-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zucker", + "id": "fr:zucker", + "name": "Zucker", + "products": 3 + }, + { + "products": 3, + "name": "Konfituren", + "id": "fr:konfituren", + "url": "https://fr.openfoodfacts.org/categorie/konfituren" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-coco", + "products": 3, + "name": "en:Laits-de-coco", + "id": "en:laits-de-coco" + }, + { + "id": "fr:crevettes-decortiquees", + "name": "Crevettes-decortiquees", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-blanc-sec", + "products": 3, + "name": "Vin-blanc-sec", + "id": "fr:vin-blanc-sec" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-caramel", + "products": 3, + "id": "fr:chocolats-fourres-au-caramel", + "name": "Chocolats-fourres-au-caramel" + }, + { + "name": "Jus-de-pomme-petillant", + "id": "fr:jus-de-pomme-petillant", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-petillant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baguettes-viennoises", + "name": "Baguettes-viennoises", + "id": "fr:baguettes-viennoises", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merlots", + "products": 3, + "id": "fr:merlots", + "name": "Merlots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-citron", + "products": 3, + "name": "Chocolats-au-citron", + "id": "fr:chocolats-au-citron" + }, + { + "products": 3, + "id": "de:glaces-a-la-vanille", + "name": "de:Glaces-a-la-vanille", + "url": "https://fr.openfoodfacts.org/categorie/de:glaces-a-la-vanille" + }, + { + "id": "en:potted-oregano", + "name": "Origan en pot", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/origan-en-pot" + }, + { + "products": 3, + "id": "fr:gaufrettes-fourrees-et-enrobees", + "name": "Gaufrettes-fourrees-et-enrobees", + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees-et-enrobees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pamplemousse-blanc", + "products": 3, + "id": "fr:jus-de-pamplemousse-blanc", + "name": "Jus-de-pamplemousse-blanc" + }, + { + "products": 3, + "id": "fr:purees-de-sesame-demi-complet", + "name": "Purées de sésame demi-complet", + "url": "https://fr.openfoodfacts.org/categorie/purees-de-sesame-demi-complet" + }, + { + "id": "fr:apero-sans-alcool", + "name": "Apero-sans-alcool", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/apero-sans-alcool" + }, + { + "name": "it:Vinaigres", + "id": "it:vinaigres", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bavettes-d-aloyau", + "products": 3, + "id": "fr:bavettes-d-aloyau", + "name": "Bavettes-d-aloyau" + }, + { + "name": "Beaujolais Villages", + "id": "fr:beaujolais-villages", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/beaujolais-villages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-pour-bebe", + "products": 3, + "name": "en:Aliments-pour-bebe", + "id": "en:aliments-pour-bebe" + }, + { + "name": "Jelly beans", + "id": "en:jelly-beans", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/jelly-beans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:biscuits-et-gateaux", + "id": "nl:biscuits-et-gateaux", + "name": "nl:Biscuits-et-gateaux", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-extra-fin", + "id": "en:chocolats-noirs-extra-fin", + "name": "en:Chocolats-noirs-extra-fin", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-pomme-de-terre", + "id": "fr:plats-a-base-de-pomme-de-terre", + "name": "Plats-a-base-de-pomme-de-terre", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-pomme-a-base-de-concentre", + "products": 3, + "id": "en:jus-de-pomme-a-base-de-concentre", + "name": "en:Jus-de-pomme-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-mangue", + "products": 3, + "id": "en:mango-juices", + "name": "Jus de mangue" + }, + { + "name": "Mousses-lactees-au-caramel", + "id": "fr:mousses-lactees-au-caramel", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plant-based-ice-cream-bars", + "products": 3, + "id": "en:plant-based-ice-cream-bars", + "name": "Plant-based ice cream bars" + }, + { + "products": 3, + "name": "Chips fromage et onion", + "id": "en:cheese-and-onion-crisps", + "url": "https://fr.openfoodfacts.org/categorie/chips-fromage-et-onion" + }, + { + "id": "en:frozen-basil", + "name": "Basilic surgelé", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/basilic-surgele" + }, + { + "products": 3, + "name": "es:Substituts-de-viande", + "id": "es:substituts-de-viande", + "url": "https://fr.openfoodfacts.org/categorie/es:substituts-de-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cremes-brulees", + "products": 3, + "name": "Preparations-pour-cremes-brulees", + "id": "fr:preparations-pour-cremes-brulees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mure", + "id": "fr:compotes-pommes-mure", + "name": "Compotes pommes mûre", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flageolets-verts-en-conserve", + "id": "fr:flageolets-verts-en-conserve", + "name": "Flageolets-verts-en-conserve", + "products": 3 + }, + { + "products": 3, + "id": "fr:yaourts-brasses-citron", + "name": "Yaourts-brasses-citron", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-rhum-raisins", + "name": "Riz-au-lait-rhum-raisins", + "id": "fr:riz-au-lait-rhum-raisins", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anchois-en-conserve", + "products": 3, + "name": "Anchois-en-conserve", + "id": "fr:anchois-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:tartines-craquantes", + "products": 3, + "id": "de:tartines-craquantes", + "name": "de:Tartines-craquantes" + }, + { + "products": 3, + "name": "de:Poissons-en-conserve", + "id": "de:poissons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/de:poissons-en-conserve" + }, + { + "name": "Potimarron", + "id": "fr:potimarron", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/potimarron" + }, + { + "products": 3, + "id": "fr:traiteur-de-la-mer", + "name": "Traiteur-de-la-mer", + "url": "https://fr.openfoodfacts.org/categorie/traiteur-de-la-mer" + }, + { + "name": "Salades de fruits au sirop", + "id": "en:fruit-salads-in-syrup", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-fruits-au-sirop" + }, + { + "id": "fr:sauces-au-basilic", + "name": "Sauces-au-basilic", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-coniferes", + "name": "Miels de conifères", + "id": "en:honey-from-coniferous-trees", + "products": 3 + }, + { + "products": 3, + "name": "Batonnets-au-chocolat-blanc", + "id": "fr:batonnets-au-chocolat-blanc", + "url": "https://fr.openfoodfacts.org/categorie/batonnets-au-chocolat-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saucisses", + "products": 3, + "id": "de:saucisses", + "name": "de:Saucisses" + }, + { + "products": 3, + "name": "Infusion rooibos sachets", + "id": "en:rooibos-in-tea-bags", + "url": "https://fr.openfoodfacts.org/categorie/infusion-rooibos-sachets" + }, + { + "products": 3, + "id": "nl:fruits-et-produits-derives", + "name": "nl:Fruits-et-produits-derives", + "url": "https://fr.openfoodfacts.org/categorie/nl:fruits-et-produits-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brousse", + "products": 3, + "id": "fr:brousse", + "name": "Brousse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmentals-en-tranches", + "products": 3, + "name": "Emmentals-en-tranches", + "id": "fr:emmentals-en-tranches" + }, + { + "name": "Glaces aux amandes", + "id": "fr:glaces-aux-amandes", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-amandes" + }, + { + "id": "fr:torti-a-la-carbonara", + "name": "Torti-a-la-carbonara", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/torti-a-la-carbonara" + }, + { + "name": "de:Beurres-de-fruits-a-coques", + "id": "de:beurres-de-fruits-a-coques", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:beurres-de-fruits-a-coques" + }, + { + "id": "fr:chocolats-a-l-orange", + "name": "Chocolats-a-l-orange", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-energisantes", + "products": 3, + "name": "en:Boissons-energisantes", + "id": "en:boissons-energisantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:champagne-francais", + "id": "en:champagne-francais", + "name": "en:Champagne-francais", + "products": 3 + }, + { + "products": 3, + "id": "fr:crustaces-en-conserve", + "name": "Crustaces-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/crustaces-en-conserve" + }, + { + "products": 3, + "id": "en:chia-seeds", + "name": "en:Chia-seeds", + "url": "https://fr.openfoodfacts.org/categorie/en:chia-seeds" + }, + { + "products": 3, + "name": "Galettes-pur-beurre", + "id": "fr:galettes-pur-beurre", + "url": "https://fr.openfoodfacts.org/categorie/galettes-pur-beurre" + }, + { + "products": 3, + "id": "fr:chips-de-pommes", + "name": "Chips-de-pommes", + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-veau", + "id": "fr:escalopes-de-veau", + "name": "Escalopes-de-veau", + "products": 3 + }, + { + "id": "fr:pains-brioches", + "name": "Pains-brioches", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pains-brioches" + }, + { + "products": 3, + "id": "fr:boeuf-hache", + "name": "Boeuf-hache", + "url": "https://fr.openfoodfacts.org/categorie/boeuf-hache" + }, + { + "id": "en:vin-de-californie", + "name": "en:Vin-de-californie", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:vin-de-californie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-natures-au-lait-de-chevre", + "products": 3, + "id": "fr:yaourts-natures-au-lait-de-chevre", + "name": "Yaourts-natures-au-lait-de-chevre" + }, + { + "id": "fr:cappelletti", + "name": "Cappelletti", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/cappelletti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-a-poeler", + "name": "Jambons-a-poeler", + "id": "fr:jambons-a-poeler", + "products": 3 + }, + { + "products": 3, + "name": "en:Huiles-d-olive", + "id": "en:huiles-d-olive", + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saucissons", + "products": 3, + "id": "de:saucissons", + "name": "de:Saucissons" + }, + { + "id": "en:pomelos", + "name": "Pamplemousses", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pamplemousses" + }, + { + "id": "en:sencha-teas", + "name": "Thés Sencha", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1334390" + ], + "url": "https://fr.openfoodfacts.org/categorie/thes-sencha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-minceur", + "name": "Infusions minceur", + "id": "en:weight-loss-tea-blends", + "products": 3 + }, + { + "products": 3, + "name": "Sauces-rougail", + "id": "fr:sauces-rougail", + "url": "https://fr.openfoodfacts.org/categorie/sauces-rougail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-dinde", + "id": "en:turkey-sandwiches", + "name": "Sandwichs à la dinde", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-marinees", + "products": 3, + "id": "fr:moules-marinees", + "name": "Moules-marinees" + }, + { + "products": 3, + "name": "Anchois-au-sel", + "id": "fr:anchois-au-sel", + "url": "https://fr.openfoodfacts.org/categorie/anchois-au-sel" + }, + { + "products": 3, + "name": "Spaghetti-au-quinoa", + "id": "fr:spaghetti-au-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-au-quinoa" + }, + { + "products": 3, + "id": "de:oeufs", + "name": "de:Oeufs", + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs" + }, + { + "id": "en:plain-montbeliard-sausages", + "name": "Saucisses de Montbéliard natures", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-montbeliard-natures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-sans-alcool", + "id": "en:boissons-sans-alcool", + "name": "en:Boissons-sans-alcool", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourteaux-fromagers", + "products": 3, + "name": "Tourteaux-fromagers", + "id": "fr:tourteaux-fromagers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cepes-seches", + "id": "fr:cepes-seches", + "name": "Cepes-seches", + "products": 3 + }, + { + "products": 3, + "id": "fr:terrines-de-bison", + "name": "Terrines de bison", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-bison" + }, + { + "name": "Preparations-a-base-de-fruits", + "id": "fr:preparations-a-base-de-fruits", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-salees", + "products": 3, + "id": "fr:pates-a-tartiner-salees", + "name": "Pates-a-tartiner-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-grecs", + "id": "fr:miels-grecs", + "name": "Miels-grecs", + "products": 3 + }, + { + "name": "Boissons-lactees-aux-fruits", + "id": "fr:boissons-lactees-aux-fruits", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/boissons-lactees-aux-fruits" + }, + { + "products": 3, + "name": "Sel-de-cuisine", + "id": "fr:sel-de-cuisine", + "url": "https://fr.openfoodfacts.org/categorie/sel-de-cuisine" + }, + { + "products": 3, + "name": "Rouille", + "id": "fr:rouille", + "url": "https://fr.openfoodfacts.org/categorie/rouille" + }, + { + "id": "es:chocolates-negros-para-cobertura", + "name": "es:Chocolates-negros-para-cobertura", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/es:chocolates-negros-para-cobertura" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gateau", + "products": 3, + "id": "en:gateau", + "name": "en:Gateau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wasabi-coated-green-peas", + "products": 3, + "name": "Wasabi-coated-green-peas", + "id": "fr:wasabi-coated-green-peas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-etuve", + "name": "Riz-long-etuve", + "id": "fr:riz-long-etuve", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:surgeles", + "name": "it:Surgeles", + "id": "it:surgeles", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chili-con-carne-au-riz", + "products": 3, + "name": "Chili-con-carne-au-riz", + "id": "fr:chili-con-carne-au-riz" + }, + { + "id": "fr:fromages-fondus-a-l-emmental", + "name": "Fromages-fondus-a-l-emmental", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus-a-l-emmental" + }, + { + "products": 3, + "id": "en:portuguese-cheeses", + "name": "Fromages portugais", + "url": "https://fr.openfoodfacts.org/categorie/fromages-portugais" + }, + { + "name": "de:Plats-prepares-deshydrates", + "id": "de:plats-prepares-deshydrates", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-deshydrates" + }, + { + "id": "en:maroilles-tarts", + "name": "Tartes au maroilles", + "products": 3, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3515850" + ], + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-maroilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/snacks-salees", + "products": 3, + "name": "Snacks-salees", + "id": "fr:snacks-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/guimauves-enrobees-de-chocolat", + "id": "fr:guimauves-enrobees-de-chocolat", + "name": "Guimauves-enrobees-de-chocolat", + "products": 3 + }, + { + "products": 3, + "id": "en:sables", + "name": "en:Sables", + "url": "https://fr.openfoodfacts.org/categorie/en:sables" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-de-nouilles-instantanees", + "id": "en:soupes-de-nouilles-instantanees", + "name": "en:Soupes-de-nouilles-instantanees", + "products": 3 + }, + { + "products": 3, + "name": "H-milch", + "id": "fr:h-milch", + "url": "https://fr.openfoodfacts.org/categorie/h-milch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-de-la-ruche", + "products": 3, + "id": "en:produits-de-la-ruche", + "name": "en:Produits-de-la-ruche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bebidas-endulzadas-artificialmente", + "products": 3, + "id": "fr:bebidas-endulzadas-artificialmente", + "name": "Bebidas-endulzadas-artificialmente" + }, + { + "id": "en:miels", + "name": "en:Miels", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/en:miels" + }, + { + "name": "Miels labélisés", + "id": "fr:miels-labelises", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/miels-labelises" + }, + { + "products": 3, + "name": "en:Miels-liquides", + "id": "en:miels-liquides", + "url": "https://fr.openfoodfacts.org/categorie/en:miels-liquides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sucres-au-sucre-de-canne", + "id": "fr:yaourts-sucres-au-sucre-de-canne", + "name": "Yaourts-sucres-au-sucre-de-canne", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/american-pale-ale", + "name": "American-pale-ale", + "id": "fr:american-pale-ale", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-a-la-mirabelle", + "name": "Sirops à la mirabelle", + "id": "en:mirabelle-syrups", + "products": 3 + }, + { + "products": 3, + "name": "Bieres-autrichiennes", + "id": "fr:bieres-autrichiennes", + "url": "https://fr.openfoodfacts.org/categorie/bieres-autrichiennes" + }, + { + "id": "fr:pommes-braeburn", + "name": "Pommes-braeburn", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/pommes-braeburn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tortillas", + "products": 3, + "id": "fr:sauces-tortillas", + "name": "Sauces-tortillas" + }, + { + "products": 3, + "id": "fr:lemon-curds", + "name": "Lemon-curds", + "url": "https://fr.openfoodfacts.org/categorie/lemon-curds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastilles-avec-edulcorant", + "products": 3, + "name": "Pastilles-avec-edulcorant", + "id": "fr:pastilles-avec-edulcorant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-corses", + "name": "Bières corses", + "id": "en:corsican-beers", + "products": 3 + }, + { + "products": 3, + "name": "Compotes de mangues", + "id": "en:mango-compotes", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-mangues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:12-years-old", + "name": "en:12-years-old", + "id": "en:12-years-old", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:10-years-old", + "id": "en:10-years-old", + "name": "en:10-years-old", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trompettes-des-morts", + "products": 3, + "name": "Trompettes des morts", + "id": "en:horn-of-plenty-mushrooms" + }, + { + "name": "Mélanges de champignons secs", + "id": "en:dried-mixed-mushrooms", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-champignons-secs" + }, + { + "products": 3, + "name": "de:Mueslis-croustillants", + "id": "de:mueslis-croustillants", + "url": "https://fr.openfoodfacts.org/categorie/de:mueslis-croustillants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gruyeres-francais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3118260" + ], + "name": "Gruyères français", + "id": "en:french-gruyeres", + "products": 3 + }, + { + "id": "fr:yakitori-de-saumon", + "name": "Yakitori-de-saumon", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/yakitori-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-a-la-catalane", + "name": "Moules-a-la-catalane", + "id": "fr:moules-a-la-catalane", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-pink-lady", + "name": "Jus-de-pommes-pink-lady", + "id": "fr:jus-de-pommes-pink-lady", + "products": 3 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/algues-fraiches", + "name": "Algues fraîches", + "id": "en:fresh-seaweeds", + "products": 3 + }, + { + "products": 3, + "name": "Desserts-lactes-aromatises", + "id": "fr:desserts-lactes-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-aromatises" + }, + { + "products": 3, + "id": "fr:black-india-pale-ale", + "name": "Black-india-pale-ale", + "url": "https://fr.openfoodfacts.org/categorie/black-india-pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-basilic", + "name": "Moutardes-au-basilic", + "id": "fr:moutardes-au-basilic", + "products": 3 + }, + { + "products": 3, + "id": "fr:moutardes-au-poivre", + "name": "Moutardes-au-poivre", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-poivre" + }, + { + "products": 3, + "id": "fr:pommes-de-terre-annabelle", + "name": "Pommes-de-terre-annabelle", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-annabelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-sales", + "id": "fr:sables-sales", + "name": "Sables-sales", + "products": 3 + }, + { + "products": 3, + "id": "en:tequilas", + "name": "Tequilas", + "url": "https://fr.openfoodfacts.org/categorie/tequilas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q122195" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kombuchas", + "name": "Kombuchas", + "id": "fr:kombuchas", + "products": 3 + }, + { + "name": "Baklavas", + "id": "fr:baklavas", + "products": 3, + "url": "https://fr.openfoodfacts.org/categorie/baklavas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-blanches", + "products": 3, + "id": "en:bieres-blanches", + "name": "en:Bieres-blanches" + }, + { + "products": 2, + "id": "fr:vol-au-vent-a-garnir", + "name": "Vol-au-vent-a-garnir", + "url": "https://fr.openfoodfacts.org/categorie/vol-au-vent-a-garnir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poisson-d-elevage", + "id": "fr:poisson-d-elevage", + "name": "Poisson-d-elevage", + "products": 2 + }, + { + "name": "Thes-bio", + "id": "fr:thes-bio", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/thes-bio" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q18214462" + ], + "url": "https://fr.openfoodfacts.org/categorie/correze", + "id": "fr:correze", + "name": "Corrèze", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chassagne-montrachet", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2364692" + ], + "products": 2, + "id": "fr:chassagne-montrachet", + "name": "Chassagne-Montrachet" + }, + { + "products": 2, + "name": "Côte de Brouilly", + "id": "fr:cote-de-brouilly", + "url": "https://fr.openfoodfacts.org/categorie/cote-de-brouilly", + "sameAs": [ + "https://www.wikidata.org/wiki/Q461328" + ] + }, + { + "name": "Jambons-d-espagne", + "id": "fr:jambons-d-espagne", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jambons-d-espagne" + }, + { + "products": 2, + "name": "Côtes du Marmandais", + "id": "fr:cotes-du-marmandais", + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-marmandais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q462248" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brookies", + "id": "fr:brookies", + "name": "Brookies", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-thes", + "products": 2, + "id": "fr:melanges-de-thes", + "name": "Melanges-de-thes" + }, + { + "name": "Colomba", + "id": "fr:colomba", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/colomba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-aux-fruits", + "id": "fr:vinaigres-aux-fruits", + "name": "Vinaigres-aux-fruits", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-au-citron", + "products": 2, + "id": "fr:pates-au-citron", + "name": "Pates-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-raisin", + "id": "fr:chocolats-noirs-au-raisin", + "name": "Chocolats-noirs-au-raisin", + "products": 2 + }, + { + "name": "Glaces-au-speculoos", + "id": "fr:glaces-au-speculoos", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-speculoos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-noires-en-saumure", + "products": 2, + "name": "Olives-noires-en-saumure", + "id": "fr:olives-noires-en-saumure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-en-conserve-dans-l-eau", + "products": 2, + "name": "Fruits en conserve dans l'eau", + "id": "en:canned-fruits-in-water" + }, + { + "name": "Melange-de-noix-et-fruits-seches", + "id": "fr:melange-de-noix-et-fruits-seches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/melange-de-noix-et-fruits-seches" + }, + { + "products": 2, + "id": "fr:cochons-en-chocolat", + "name": "Cochons-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cochons-en-chocolat" + }, + { + "id": "fr:poussins-en-chocolat", + "name": "Poussins-en-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/poussins-en-chocolat" + }, + { + "products": 2, + "name": "Chocolats-marbres", + "id": "fr:chocolats-marbres", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-marbres" + }, + { + "name": "Sarrasins-decortiques", + "id": "fr:sarrasins-decortiques", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sarrasins-decortiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-au-fromage", + "id": "fr:feuilletes-au-fromage", + "name": "Feuilletes-au-fromage", + "products": 2 + }, + { + "products": 2, + "id": "fr:soupes-a-l-ortie", + "name": "Soupes-a-l-ortie", + "url": "https://fr.openfoodfacts.org/categorie/soupes-a-l-ortie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tuiles", + "products": 2, + "name": "Tuiles", + "id": "fr:tuiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-a-la-fraise", + "products": 2, + "name": "Panna-cottas-a-la-fraise", + "id": "fr:panna-cottas-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cairanne", + "products": 2, + "name": "Cairanne", + "id": "fr:cairanne" + }, + { + "id": "en:acid-gummy-candies", + "name": "Bonbons acidulés gélifiés", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-acidules-gelifies" + }, + { + "name": "en:Glaces-a-l-eau", + "id": "en:glaces-a-l-eau", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:glaces-a-l-eau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plant-based-ice-cream-tubs", + "products": 2, + "name": "Plant-based ice cream tubs", + "id": "en:plant-based-ice-cream-tubs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/civets-de-canard", + "products": 2, + "id": "fr:civets-de-canard", + "name": "Civets-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kuchen", + "products": 2, + "name": "Kuchen", + "id": "fr:kuchen" + }, + { + "name": "Foies-gras-de-canard-entier-du-sud-ouest", + "id": "fr:foies-gras-de-canard-entier-du-sud-ouest", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-entier-du-sud-ouest" + }, + { + "products": 2, + "name": "Ciboulette en pot", + "id": "en:potted-chives", + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-en-pot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/burrata-au-lait-de-bufflonne", + "id": "fr:burrata-au-lait-de-bufflonne", + "name": "Burrata-au-lait-de-bufflonne", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fusilli", + "products": 2, + "id": "de:fusilli", + "name": "de:Fusilli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-de-toscane", + "products": 2, + "name": "Huiles-d-olive-de-toscane", + "id": "fr:huiles-d-olive-de-toscane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-epicees", + "products": 2, + "name": "Bieres-epicees", + "id": "fr:bieres-epicees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-gibier", + "name": "Plats-a-base-de-gibier", + "id": "fr:plats-a-base-de-gibier", + "products": 2 + }, + { + "products": 2, + "id": "fr:plats-a-base-de-cerf", + "name": "Plats-a-base-de-cerf", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-cerf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-a-la-truffe", + "id": "fr:boudins-blancs-a-la-truffe", + "name": "Boudins-blancs-a-la-truffe", + "products": 2 + }, + { + "id": "fr:foies-gras-cuits-au-torchon", + "name": "Foies-gras-cuits-au-torchon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-cuits-au-torchon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/samoussas-au-poulet", + "id": "fr:samoussas-au-poulet", + "name": "Samoussas-au-poulet", + "products": 2 + }, + { + "id": "en:almond-oils", + "name": "Huiles d'amande", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1164590" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-fourres-a-l-abricot", + "id": "fr:beignets-fourres-a-l-abricot", + "name": "Beignets-fourres-a-l-abricot", + "products": 2 + }, + { + "products": 2, + "id": "fr:jus-d-argousier", + "name": "Jus-d-argousier", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-argousier" + }, + { + "products": 2, + "id": "fr:getreidemilch", + "name": "Getreidemilch", + "url": "https://fr.openfoodfacts.org/categorie/getreidemilch" + }, + { + "products": 2, + "name": "Пиво", + "id": "fr:пиво", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BF%D0%B8%D0%B2%D0%BE" + }, + { + "id": "es:soupes-de-nouilles-instantanees", + "name": "es:Soupes-de-nouilles-instantanees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:soupes-de-nouilles-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-aux-algues", + "name": "Bieres-aux-algues", + "id": "fr:bieres-aux-algues", + "products": 2 + }, + { + "products": 2, + "name": "Ristes-d-aubergine", + "id": "fr:ristes-d-aubergine", + "url": "https://fr.openfoodfacts.org/categorie/ristes-d-aubergine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:chocolades", + "products": 2, + "name": "nl:Chocolades", + "id": "nl:chocolades" + }, + { + "id": "fr:thes-de-noel", + "name": "Thes-de-noel", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/thes-de-noel" + }, + { + "name": "Poissons-meunieres", + "id": "fr:poissons-meunieres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/poissons-meunieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-bourdaine", + "name": "Miels-de-bourdaine", + "id": "fr:miels-de-bourdaine", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gaufrettes-fourrees", + "name": "de:Gaufrettes-fourrees", + "id": "de:gaufrettes-fourrees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-villages-seguret", + "products": 2, + "id": "fr:cotes-du-rhone-villages-seguret", + "name": "Cotes-du-rhone-villages-seguret" + }, + { + "products": 2, + "name": "en:Bieres-ecossaises", + "id": "en:bieres-ecossaises", + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-ecossaises" + }, + { + "id": "fr:tartelettes-aux-pommes", + "name": "Tartelettes-aux-pommes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-aux-pommes" + }, + { + "name": "Saucisse-a-tartiner", + "id": "fr:saucisse-a-tartiner", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucisse-a-tartiner" + }, + { + "products": 2, + "id": "fr:bloc-de-foie-gras-de-canard-au-porto", + "name": "Bloc-de-foie-gras-de-canard-au-porto", + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-au-porto" + }, + { + "products": 2, + "id": "fr:palets-pur-beurre", + "name": "Palets-pur-beurre", + "url": "https://fr.openfoodfacts.org/categorie/palets-pur-beurre" + }, + { + "id": "fr:fraisiers", + "name": "Fraisiers", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fraisiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-entiers-cuits", + "name": "Poulets-entiers-cuits", + "id": "fr:poulets-entiers-cuits", + "products": 2 + }, + { + "id": "fr:fromages-de-chevre-au-lait-cru", + "name": "Fromages-de-chevre-au-lait-cru", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-chevre-au-lait-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raies", + "id": "fr:raies", + "name": "Raies", + "products": 2 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q175933" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-riz", + "products": 2, + "id": "en:rice-bran-oils", + "name": "Huiles de riz" + }, + { + "name": "Coriandre-surgelee", + "id": "fr:coriandre-surgelee", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/coriandre-surgelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-jazzy", + "products": 2, + "id": "fr:pommes-de-terre-jazzy", + "name": "Pommes-de-terre-jazzy" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dragees-aux-amandes", + "name": "Dragees-aux-amandes", + "id": "fr:dragees-aux-amandes", + "products": 2 + }, + { + "name": "Fèves frais", + "id": "en:fresh-broad-beans", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/feves-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-abricot", + "name": "Sirops-d-abricot", + "id": "fr:sirops-d-abricot", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-chocolat-blanc", + "products": 2, + "id": "fr:gateaux-au-chocolat-blanc", + "name": "Gateaux-au-chocolat-blanc" + }, + { + "id": "fr:cidres-biologiques", + "name": "Cidres-biologiques", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cidres-biologiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-a-la-creme-patissiere", + "products": 2, + "name": "Brioches-a-la-creme-patissiere", + "id": "fr:brioches-a-la-creme-patissiere" + }, + { + "id": "en:porter", + "name": "en:Porter", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:porter" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-frais", + "products": 2, + "id": "en:green-peas", + "name": "Petits pois frais" + }, + { + "id": "fr:chocolats-blancs-au-matcha", + "name": "Chocolats-blancs-au-matcha", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-matcha" + }, + { + "products": 2, + "id": "fr:cookies-aux-fruits", + "name": "Cookies-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/cookies-aux-fruits" + }, + { + "id": "es:biscuits-sables", + "name": "es:Biscuits-sables", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-sables" + }, + { + "products": 2, + "name": "Glaces-au-chocolat-noir", + "id": "fr:glaces-au-chocolat-noir", + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-bio", + "products": 2, + "id": "fr:vins-bio", + "name": "Vins-bio" + }, + { + "products": 2, + "name": "Peches-jaunes", + "id": "fr:peches-jaunes", + "url": "https://fr.openfoodfacts.org/categorie/peches-jaunes" + }, + { + "id": "fr:comidas-preparadas-de-origen-vegetal", + "name": "Comidas-preparadas-de-origen-vegetal", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/comidas-preparadas-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:salatmischung", + "id": "de:salatmischung", + "name": "de:Salatmischung", + "products": 2 + }, + { + "name": "Sauces-vegan", + "id": "fr:sauces-vegan", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sauces-vegan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-speculoos", + "name": "Chocolats-noirs-au-speculoos", + "id": "fr:chocolats-noirs-au-speculoos", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:laits", + "name": "pt:Laits", + "id": "pt:laits", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salami-de-porc", + "products": 2, + "name": "Salami-de-porc", + "id": "fr:salami-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-legumes", + "products": 2, + "name": "Tartes-aux-legumes", + "id": "fr:tartes-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-courges", + "products": 2, + "id": "fr:veloutes-de-courges", + "name": "Veloutes-de-courges" + }, + { + "name": "Energy-balls", + "id": "fr:energy-balls", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/energy-balls" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:epices", + "products": 2, + "name": "nl:Epices", + "id": "nl:epices" + }, + { + "id": "es:laits-de-coco", + "name": "es:Laits-de-coco", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/knacks-de-volaille", + "id": "fr:knacks-de-volaille", + "name": "Knacks-de-volaille", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:chorizos", + "id": "es:chorizos", + "name": "es:Chorizos", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D0%B0%D0%BB%D0%BA%D0%BE%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5-%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BA%D0%B8", + "products": 2, + "name": "Алкогольные-напитки", + "id": "fr:алкогольные-напитки" + }, + { + "name": "Chips-d-algues", + "id": "fr:chips-d-algues", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chips-d-algues" + }, + { + "id": "fr:lunettes-de-romans", + "name": "Lunettes-de-romans", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/lunettes-de-romans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-noix-de-coco", + "id": "fr:beurres-de-noix-de-coco", + "name": "Beurres-de-noix-de-coco", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maca", + "products": 2, + "id": "fr:maca", + "name": "Maca" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-renversees-au-cafe", + "products": 2, + "id": "fr:cremes-renversees-au-cafe", + "name": "Cremes-renversees-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-framboise", + "products": 2, + "id": "fr:jus-de-pomme-framboise", + "name": "Jus-de-pomme-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-chinois", + "name": "Ravioli-chinois", + "id": "fr:ravioli-chinois", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-caroube", + "name": "Pâtes à tartiner au caroube", + "id": "en:carob-spreads", + "products": 2 + }, + { + "id": "fr:oeufs-de-mouettes", + "name": "Oeufs-de-mouettes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-mouettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-decongeles", + "products": 2, + "name": "en:Produits-decongeles", + "id": "en:produits-decongeles" + }, + { + "products": 2, + "name": "Boisson-cacaotee", + "id": "fr:boisson-cacaotee", + "url": "https://fr.openfoodfacts.org/categorie/boisson-cacaotee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-portugaises", + "name": "Bieres-portugaises", + "id": "fr:bieres-portugaises", + "products": 2 + }, + { + "id": "fr:verduras-y-hortalizas-en-conserva", + "name": "Verduras-y-hortalizas-en-conserva", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/verduras-y-hortalizas-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-poches", + "id": "fr:oeufs-poches", + "name": "Oeufs-poches", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:melanges-de-flocons-de-cereales", + "name": "es:Melanges-de-flocons-de-cereales", + "id": "es:melanges-de-flocons-de-cereales", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-paques-en-chocolate", + "products": 2, + "name": "Oeufs-de-paques-en-chocolate", + "id": "fr:oeufs-de-paques-en-chocolate" + }, + { + "name": "Banh-bao", + "id": "fr:banh-bao", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/banh-bao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:brote", + "products": 2, + "id": "en:brote", + "name": "en:Brote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares-a-rechauffer-au-micro-ondes", + "products": 2, + "id": "es:plats-prepares-a-rechauffer-au-micro-ondes", + "name": "es:Plats-prepares-a-rechauffer-au-micro-ondes" + }, + { + "products": 2, + "id": "fr:kits-pour-burritos", + "name": "Kits-pour-burritos", + "url": "https://fr.openfoodfacts.org/categorie/kits-pour-burritos" + }, + { + "products": 2, + "name": "en:Roules-a-la-fraise", + "id": "en:roules-a-la-fraise", + "url": "https://fr.openfoodfacts.org/categorie/en:roules-a-la-fraise" + }, + { + "products": 2, + "name": "es:Chewing-gum-sans-sucres", + "id": "es:chewing-gum-sans-sucres", + "url": "https://fr.openfoodfacts.org/categorie/es:chewing-gum-sans-sucres" + }, + { + "id": "fr:sandwichs-au-pastrami", + "name": "Sandwichs-au-pastrami", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-pastrami" + }, + { + "name": "Pommes-du-limousin", + "id": "fr:pommes-du-limousin", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pommes-du-limousin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-surgelees", + "name": "Pates-surgelees", + "id": "fr:pates-surgelees", + "products": 2 + }, + { + "name": "Pates-de-ble-dur-avec-de-la-viande", + "id": "fr:pates-de-ble-dur-avec-de-la-viande", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-avec-de-la-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:snacks-sales", + "products": 2, + "name": "ru:Snacks-sales", + "id": "ru:snacks-sales" + }, + { + "products": 2, + "name": "Poisson-frais", + "id": "fr:poisson-frais", + "url": "https://fr.openfoodfacts.org/categorie/poisson-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veau-marengo", + "id": "fr:veau-marengo", + "name": "Veau marengo", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corse-calvi", + "products": 2, + "name": "Corse Calvi", + "id": "fr:corse-calvi" + }, + { + "name": "Jus-presse", + "id": "fr:jus-presse", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jus-presse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ananas-en-conserve", + "products": 2, + "name": "en:Ananas-en-conserve", + "id": "en:ananas-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gourdes-de-compote", + "id": "fr:gourdes-de-compote", + "name": "Gourdes-de-compote", + "products": 2 + }, + { + "id": "fr:rognons", + "name": "Rognons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/rognons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pruneaux", + "products": 2, + "id": "fr:purees-de-pruneaux", + "name": "Purees-de-pruneaux" + }, + { + "products": 2, + "name": "Biscuits-feuilletes-sales", + "id": "fr:biscuits-feuilletes-sales", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-feuilletes-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dried-coconut-chips", + "products": 2, + "name": "Dried coconut chips", + "id": "en:dried-coconut-chips" + }, + { + "products": 2, + "name": "Pates-au-ble-complet", + "id": "fr:pates-au-ble-complet", + "url": "https://fr.openfoodfacts.org/categorie/pates-au-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-l-avoine", + "products": 2, + "name": "Biscuits à l'avoine", + "id": "en:oatmeal-cookies" + }, + { + "id": "fr:yaourts-sans-lactose", + "name": "Yaourts-sans-lactose", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sans-lactose" + }, + { + "name": "Marmelades-de-coings", + "id": "fr:marmelades-de-coings", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-coings" + }, + { + "id": "fr:muslis", + "name": "Muslis", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/muslis" + }, + { + "products": 2, + "name": "Decorations-en-sucre", + "id": "fr:decorations-en-sucre", + "url": "https://fr.openfoodfacts.org/categorie/decorations-en-sucre" + }, + { + "products": 2, + "id": "en:salmon-carpaccio", + "name": "Carpaccio de saumon", + "url": "https://fr.openfoodfacts.org/categorie/carpaccio-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-grenade", + "products": 2, + "id": "en:jus-de-grenade", + "name": "en:Jus-de-grenade" + }, + { + "products": 2, + "id": "fr:compotes-de-figues", + "name": "Compotes-de-figues", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-figues" + }, + { + "id": "en:galettes-de-riz", + "name": "en:Galettes-de-riz", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:galettes-de-riz" + }, + { + "products": 2, + "id": "de:harengs-en-conserve", + "name": "de:Harengs-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/de:harengs-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-milkshakes", + "products": 2, + "id": "fr:preparations-pour-milkshakes", + "name": "Preparations-pour-milkshakes" + }, + { + "name": "Beef-jerky", + "id": "fr:beef-jerky", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/beef-jerky" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-cafe", + "name": "Mousses-au-cafe", + "id": "fr:mousses-au-cafe", + "products": 2 + }, + { + "name": "Vins-de-table", + "id": "fr:vins-de-table", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-table" + }, + { + "name": "Roules-a-la-framboise", + "id": "fr:roules-a-la-framboise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/roules-a-la-framboise" + }, + { + "products": 2, + "id": "de:mueslis-aux-fruits", + "name": "de:Mueslis-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/de:mueslis-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulettes-vegetariennes", + "name": "Boulettes-vegetariennes", + "id": "fr:boulettes-vegetariennes", + "products": 2 + }, + { + "products": 2, + "id": "de:vinaigres", + "name": "de:Vinaigres", + "url": "https://fr.openfoodfacts.org/categorie/de:vinaigres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taramas-au-homard", + "products": 2, + "name": "Taramas-au-homard", + "id": "fr:taramas-au-homard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-sucres-ajoutes", + "products": 2, + "name": "Sans-sucres-ajoutes", + "id": "fr:sans-sucres-ajoutes" + }, + { + "products": 2, + "id": "fr:marrons-entiers", + "name": "Marrons-entiers", + "url": "https://fr.openfoodfacts.org/categorie/marrons-entiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sour-ale", + "products": 2, + "name": "Sour-ale", + "id": "fr:sour-ale" + }, + { + "products": 2, + "id": "fr:huiles-essentielles", + "name": "Huiles-essentielles", + "url": "https://fr.openfoodfacts.org/categorie/huiles-essentielles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-edulcorees", + "name": "es:Boissons-edulcorees", + "id": "es:boissons-edulcorees", + "products": 2 + }, + { + "id": "es:boissons-lactees", + "name": "es:Boissons-lactees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-lactees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-raisins", + "name": "Cakes-aux-raisins", + "id": "fr:cakes-aux-raisins", + "products": 2 + }, + { + "name": "en:Thes-verts-a-la-menthe", + "id": "en:thes-verts-a-la-menthe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:thes-verts-a-la-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sculptures-en-chocolat", + "products": 2, + "name": "de:Sculptures-en-chocolat", + "id": "de:sculptures-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:confiseries-de-noel", + "products": 2, + "id": "de:confiseries-de-noel", + "name": "de:Confiseries-de-noel" + }, + { + "id": "de:aliments-et-boissons-de-noel", + "name": "de:Aliments-et-boissons-de-noel", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-et-boissons-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies-au-citron", + "products": 2, + "name": "Olives vertes farcies au citron", + "id": "en:green-olives-stuffed-of-lemon" + }, + { + "products": 2, + "name": "Mothais", + "id": "fr:mothais", + "url": "https://fr.openfoodfacts.org/categorie/mothais" + }, + { + "name": "de:Boissons-edulcorees", + "id": "de:boissons-edulcorees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-edulcorees" + }, + { + "id": "fr:fromages-de-savoie", + "name": "Fromages-de-savoie", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-savoie" + }, + { + "products": 2, + "name": "Sucres perlés", + "id": "fr:sucres-perles", + "url": "https://fr.openfoodfacts.org/categorie/sucres-perles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q914538" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-caramel", + "name": "Compotes pommes caramel", + "id": "fr:compotes-pommes-caramel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trompettes-des-morts-secs", + "id": "en:dried-horn-of-plenty-mushrooms", + "name": "Trompettes des morts secs", + "products": 2 + }, + { + "products": 2, + "name": "Mirins", + "id": "fr:mirins", + "url": "https://fr.openfoodfacts.org/categorie/mirins" + }, + { + "products": 2, + "id": "fr:fritons", + "name": "Fritons", + "url": "https://fr.openfoodfacts.org/categorie/fritons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ailes-de-raies", + "name": "Ailes-de-raies", + "id": "fr:ailes-de-raies", + "products": 2 + }, + { + "name": "Laurier sec", + "id": "en:dried-bay-laurel", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/laurier-sec" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pflanzliche-getranke", + "products": 2, + "id": "en:pflanzliche-getranke", + "name": "en:Pflanzliche-getranke" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q618739" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mais", + "products": 2, + "name": "Sirops de maïs", + "id": "en:corn-syrups" + }, + { + "name": "de:Graines", + "id": "de:graines", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:flocons-d-avoine", + "products": 2, + "name": "de:Flocons-d-avoine", + "id": "de:flocons-d-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:snacks-sucres", + "id": "sv:snacks-sucres", + "name": "sv:Snacks-sucres", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-tartes-salees-et-quiches", + "name": "de:Pizzas-tartes-salees-et-quiches", + "id": "de:pizzas-tartes-salees-et-quiches", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:produits-a-tartiner", + "id": "ro:produits-a-tartiner", + "name": "ro:Produits-a-tartiner", + "products": 2 + }, + { + "id": "ro:charcuteries", + "name": "ro:Charcuteries", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ro:charcuteries" + }, + { + "products": 2, + "name": "Lingots-blancs", + "id": "fr:lingots-blancs", + "url": "https://fr.openfoodfacts.org/categorie/lingots-blancs" + }, + { + "id": "en:ulva-lactuca-seaweeds", + "name": "Laitue de mer", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/laitue-de-mer", + "sameAs": [ + "https://www.wikidata.org/wiki/Q852879" + ] + }, + { + "products": 2, + "id": "fr:porridge", + "name": "Porridge", + "url": "https://fr.openfoodfacts.org/categorie/porridge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tripoux", + "id": "fr:tripoux", + "name": "Tripoux", + "products": 2 + }, + { + "name": "Couteaux", + "id": "fr:couteaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/couteaux" + }, + { + "products": 2, + "id": "fr:laits-fermentes-a-boire", + "name": "Laits-fermentes-a-boire", + "url": "https://fr.openfoodfacts.org/categorie/laits-fermentes-a-boire" + }, + { + "products": 2, + "name": "Bloc-de-foie-gras-de-canard-mi-cuit", + "id": "fr:bloc-de-foie-gras-de-canard-mi-cuit", + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-mi-cuit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/milkshakes", + "name": "Milkshakes", + "id": "fr:milkshakes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croissants-aux-amandes", + "products": 2, + "id": "fr:croissants-aux-amandes", + "name": "Croissants-aux-amandes" + }, + { + "products": 2, + "name": "Nectars-de-kiwi", + "id": "fr:nectars-de-kiwi", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-kiwi" + }, + { + "name": "Fromages-de-bourgogne", + "id": "fr:fromages-de-bourgogne", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-bourgogne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-semoule-de-ble-dur", + "products": 2, + "id": "fr:pates-de-semoule-de-ble-dur", + "name": "Pates-de-semoule-de-ble-dur" + }, + { + "name": "Pognes-de-romans", + "id": "fr:pognes-de-romans", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pognes-de-romans" + }, + { + "name": "Pains-bruschetta", + "id": "fr:pains-bruschetta", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pains-bruschetta" + }, + { + "id": "fr:filets-de-rougets", + "name": "Filets-de-rougets", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-rougets" + }, + { + "products": 2, + "name": "it:Sirops", + "id": "it:sirops", + "url": "https://fr.openfoodfacts.org/categorie/it:sirops" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/joues-de-porc", + "products": 2, + "name": "Joues-de-porc", + "id": "fr:joues-de-porc" + }, + { + "name": "Marrons-cuits", + "id": "fr:marrons-cuits", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/marrons-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulettes-au-boeuf", + "id": "fr:boulettes-au-boeuf", + "name": "Boulettes-au-boeuf", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-de-tilleul", + "id": "fr:infusions-de-tilleul", + "name": "Infusions-de-tilleul", + "products": 2 + }, + { + "products": 2, + "id": "fr:couques", + "name": "Couques", + "url": "https://fr.openfoodfacts.org/categorie/couques" + }, + { + "products": 2, + "name": "Feta-preparees", + "id": "fr:feta-preparees", + "url": "https://fr.openfoodfacts.org/categorie/feta-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/allumettes-fumees", + "products": 2, + "name": "Allumettes-fumees", + "id": "fr:allumettes-fumees" + }, + { + "products": 2, + "name": "Viandes-fraiches-hachees", + "id": "fr:viandes-fraiches-hachees", + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-hachees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-seche-moulu", + "products": 2, + "name": "Ciboulette-seche-moulu", + "id": "fr:ciboulette-seche-moulu" + }, + { + "products": 2, + "id": "fr:viande-sechee", + "name": "Viande-sechee", + "url": "https://fr.openfoodfacts.org/categorie/viande-sechee" + }, + { + "id": "fr:barre-energetique", + "name": "Barre-energetique", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/barre-energetique" + }, + { + "products": 2, + "id": "de:plats-a-base-de-poulet", + "name": "de:Plats-a-base-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/de:plats-a-base-de-poulet" + }, + { + "products": 2, + "name": "Eminces-de-volaille", + "id": "fr:eminces-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-et-fromage", + "products": 2, + "id": "fr:olives-et-fromage", + "name": "Olives-et-fromage" + }, + { + "products": 2, + "name": "en:Kombuchas", + "id": "en:kombuchas", + "url": "https://fr.openfoodfacts.org/categorie/en:kombuchas" + }, + { + "name": "Fusili", + "id": "fr:fusili", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fusili" + }, + { + "products": 2, + "name": "Koekjes-en-cakes", + "id": "fr:koekjes-en-cakes", + "url": "https://fr.openfoodfacts.org/categorie/koekjes-en-cakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-pour-bebe", + "id": "de:aliments-pour-bebe", + "name": "de:Aliments-pour-bebe", + "products": 2 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q864682" + ], + "url": "https://fr.openfoodfacts.org/categorie/algues-wakame", + "products": 2, + "name": "Algues wakame", + "id": "en:wakame-seaweeds" + }, + { + "name": "Chocolats-a-boire", + "id": "fr:chocolats-a-boire", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-boire" + }, + { + "products": 2, + "name": "Gratins-de-brocolis", + "id": "fr:gratins-de-brocolis", + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-brocolis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-erable-fonce", + "name": "Sirops d'érable foncé", + "id": "en:dark-maple-syrups", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-au-mais", + "id": "fr:pains-au-mais", + "name": "Pains-au-mais", + "products": 2 + }, + { + "products": 2, + "name": "Jus-de-pommes-granny", + "id": "fr:jus-de-pommes-granny", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-granny" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-peche-abricot", + "name": "Compotes-pommes-peche-abricot", + "id": "fr:compotes-pommes-peche-abricot", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-roses", + "name": "Biscuits-roses", + "id": "fr:biscuits-roses", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/myrtilles-sechees", + "name": "Myrtilles séchées", + "id": "en:dried-bilberries", + "products": 2 + }, + { + "id": "fr:chips-de-betterave", + "name": "Chips-de-betterave", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-betterave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/recettes-vegetales", + "products": 2, + "name": "Recettes-vegetales", + "id": "fr:recettes-vegetales" + }, + { + "id": "fr:multifruits", + "name": "Multifruits", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/multifruits" + }, + { + "name": "Sponge-cakes", + "id": "fr:sponge-cakes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sponge-cakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:lemon-curds", + "id": "en:lemon-curds", + "name": "en:Lemon-curds", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-agrumes", + "products": 2, + "id": "fr:yaourts-aux-agrumes", + "name": "Yaourts-aux-agrumes" + }, + { + "name": "Jambons-a-cuire", + "id": "fr:jambons-a-cuire", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jambons-a-cuire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-irlandaises", + "products": 2, + "name": "en:Bieres-irlandaises", + "id": "en:bieres-irlandaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-de-chevre", + "name": "en:Fromages-de-chevre", + "id": "en:fromages-de-chevre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-a-la-liqueur", + "products": 2, + "name": "Bonbons-de-chocolat-a-la-liqueur", + "id": "fr:bonbons-de-chocolat-a-la-liqueur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tapiocas", + "name": "Tapiocas", + "id": "fr:tapiocas", + "products": 2 + }, + { + "products": 2, + "name": "Glacage", + "id": "fr:glacage", + "url": "https://fr.openfoodfacts.org/categorie/glacage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caramels-au-beurre-des-alpes", + "name": "Caramels-au-beurre-des-alpes", + "id": "fr:caramels-au-beurre-des-alpes", + "products": 2 + }, + { + "products": 2, + "name": "Lecithines", + "id": "fr:lecithines", + "url": "https://fr.openfoodfacts.org/categorie/lecithines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-au-fromage", + "name": "Pates-au-fromage", + "id": "fr:pates-au-fromage", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chutneys-de-figues", + "name": "Chutneys de figues", + "id": "en:fig-chutneys", + "products": 2 + }, + { + "products": 2, + "id": "fr:nectars-de-cerises", + "name": "Nectars-de-cerises", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-cerises" + }, + { + "name": "de:Pizzas-au-thon", + "id": "de:pizzas-au-thon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-au-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mixed-vegetable-pickles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q777487" + ], + "products": 2, + "name": "Mixed vegetable pickles", + "id": "en:mixed-vegetable-pickles" + }, + { + "products": 2, + "id": "fr:bonbons-durs", + "name": "Bonbons-durs", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-durs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillages", + "id": "fr:coquillages", + "name": "Coquillages", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-fuji", + "sameAs": [ + "https://www.wikidata.org/wiki/Q504893" + ], + "id": "en:fuji-apples", + "name": "Pommes Fuji", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:soupes-refrigerees", + "id": "es:soupes-refrigerees", + "name": "es:Soupes-refrigerees", + "products": 2 + }, + { + "id": "fr:yaourts-au-pruneau", + "name": "Yaourts-au-pruneau", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-pruneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beans", + "id": "en:beans", + "name": "en:Beans", + "products": 2 + }, + { + "id": "en:fenugreek-products", + "name": "Produits de le fenugrec", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/produits-de-le-fenugrec", + "sameAs": [ + "https://www.wikidata.org/wiki/Q133205" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-myrtille", + "products": 2, + "id": "en:iced-teas-with-blueberry-flavor", + "name": "Thés glacés saveur myrtille" + }, + { + "products": 2, + "id": "fr:courts-bouillons", + "name": "Courts-bouillons", + "url": "https://fr.openfoodfacts.org/categorie/courts-bouillons" + }, + { + "products": 2, + "name": "en:Thai-foods", + "id": "en:thai-foods", + "url": "https://fr.openfoodfacts.org/categorie/en:thai-foods" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-preparees", + "name": "es:Cereales-preparees", + "id": "es:cereales-preparees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettini", + "products": 2, + "name": "Spaghettini", + "id": "fr:spaghettini" + }, + { + "products": 2, + "name": "Spaghettoni", + "id": "fr:spaghettoni", + "url": "https://fr.openfoodfacts.org/categorie/spaghettoni" + }, + { + "name": "en:Glaces-a-la-vanille", + "id": "en:glaces-a-la-vanille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:glaces-a-la-vanille" + }, + { + "products": 2, + "name": "Basilic fraîche", + "id": "en:fresh-basil", + "url": "https://fr.openfoodfacts.org/categorie/basilic-fraiche" + }, + { + "name": "Yaourt-au-lait-pasteurise", + "id": "fr:yaourt-au-lait-pasteurise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourt-au-lait-pasteurise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-a-coques", + "products": 2, + "id": "en:fruits-a-coques", + "name": "en:Fruits-a-coques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:amandes", + "products": 2, + "id": "en:amandes", + "name": "en:Amandes" + }, + { + "products": 2, + "id": "fr:confitures-d-agrumes-melanges", + "name": "Confitures-d-agrumes-melanges", + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-agrumes-melanges" + }, + { + "id": "fr:dessert-vegetal", + "name": "Dessert-vegetal", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/dessert-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-the", + "id": "fr:chocolats-noirs-au-the", + "name": "Chocolats-noirs-au-the", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-au-poulet-et-au-bacon", + "products": 2, + "name": "Salade-au-poulet-et-au-bacon", + "id": "fr:salade-au-poulet-et-au-bacon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roses", + "id": "fr:roses", + "name": "Roses", + "products": 2 + }, + { + "products": 2, + "id": "de:pates-aux-oeufs", + "name": "de:Pates-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/de:pates-aux-oeufs" + }, + { + "id": "en:baba-ghanoush", + "name": "Baba ganousch", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/baba-ganousch", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1072192" + ] + }, + { + "products": 2, + "name": "Bieres-de-printemps", + "id": "fr:bieres-de-printemps", + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-printemps" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-bifidus-nature", + "products": 2, + "id": "fr:yaourts-au-bifidus-nature", + "name": "Yaourts au bifidus nature" + }, + { + "products": 2, + "name": "es:Melanges-de-fruits-secs", + "id": "es:melanges-de-fruits-secs", + "url": "https://fr.openfoodfacts.org/categorie/es:melanges-de-fruits-secs" + }, + { + "products": 2, + "name": "Riz aux légumes congelés", + "id": "en:frozen-rice-with-vegetables", + "url": "https://fr.openfoodfacts.org/categorie/riz-aux-legumes-congeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-de-la-mer", + "id": "es:produits-de-la-mer", + "name": "es:Produits-de-la-mer", + "products": 2 + }, + { + "products": 2, + "id": "es:poissons", + "name": "es:Poissons", + "url": "https://fr.openfoodfacts.org/categorie/es:poissons" + }, + { + "name": "es:Barres", + "id": "es:barres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:barres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pasteques", + "products": 2, + "id": "fr:confitures-de-pasteques", + "name": "Confitures-de-pasteques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-precuits", + "products": 2, + "id": "en:pains-precuits", + "name": "en:Pains-precuits" + }, + { + "products": 2, + "name": "Plat", + "id": "fr:plat", + "url": "https://fr.openfoodfacts.org/categorie/plat" + }, + { + "id": "en:ground-dried-parsley", + "name": "Persil séché moulu", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/persil-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-de-meaux", + "products": 2, + "id": "fr:moutardes-de-meaux", + "name": "Moutardes-de-meaux" + }, + { + "id": "en:olive-oil-from-corsica", + "name": "Huile d'olive de Corse", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-corse" + }, + { + "products": 2, + "name": "Choucroutes-cuisinees", + "id": "fr:choucroutes-cuisinees", + "url": "https://fr.openfoodfacts.org/categorie/choucroutes-cuisinees" + }, + { + "products": 2, + "name": "Produits-introuvables-en-metropole", + "id": "fr:produits-introuvables-en-metropole", + "url": "https://fr.openfoodfacts.org/categorie/produits-introuvables-en-metropole" + }, + { + "name": "Fischkonserve", + "id": "fr:fischkonserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fischkonserve" + }, + { + "products": 2, + "id": "es:quinoa-precocinada", + "name": "es:Quinoa-precocinada", + "url": "https://fr.openfoodfacts.org/categorie/es:quinoa-precocinada" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pates-de-fruits", + "products": 2, + "name": "es:Pates-de-fruits", + "id": "es:pates-de-fruits" + }, + { + "id": "de:raviolis-frais", + "name": "de:Raviolis-frais", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:raviolis-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-de-fruits-rouges", + "products": 2, + "name": "de:Confitures-de-fruits-rouges", + "id": "de:confitures-de-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:traditionell-hergestellte-frischmilch", + "products": 2, + "id": "de:traditionell-hergestellte-frischmilch", + "name": "de:Traditionell hergestellte Frischmilch" + }, + { + "name": "Kekse-und-kuchen", + "id": "fr:kekse-und-kuchen", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/kekse-und-kuchen" + }, + { + "products": 2, + "name": "Fecule-de-mais", + "id": "fr:fecule-de-mais", + "url": "https://fr.openfoodfacts.org/categorie/fecule-de-mais" + }, + { + "products": 2, + "id": "fr:des-de-lardons", + "name": "Des-de-lardons", + "url": "https://fr.openfoodfacts.org/categorie/des-de-lardons" + }, + { + "name": "Passata", + "id": "fr:passata", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/passata" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:warme-dranken", + "name": "en:Warme-dranken", + "id": "en:warme-dranken", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mince-pies", + "id": "fr:mince-pies", + "name": "Mince-pies", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chair-a-saucisse", + "products": 2, + "id": "fr:chair-a-saucisse", + "name": "Chair-a-saucisse" + }, + { + "products": 2, + "id": "fr:farce", + "name": "Farce", + "url": "https://fr.openfoodfacts.org/categorie/farce" + }, + { + "products": 2, + "id": "fr:sauces-dessert", + "name": "Sauces-dessert", + "url": "https://fr.openfoodfacts.org/categorie/sauces-dessert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:broodbeleg", + "name": "nl:Broodbeleg", + "id": "nl:broodbeleg", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-a-poeler", + "id": "fr:riz-a-poeler", + "name": "Riz-a-poeler", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-pour-paella", + "id": "en:rices-for-paella", + "name": "Riz pour paella", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-saveur-coco", + "products": 2, + "name": "Yaourts-saveur-coco", + "id": "fr:yaourts-saveur-coco" + }, + { + "id": "en:protein-shakes", + "name": "Protein shakes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/protein-shakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:epicerie", + "name": "it:Epicerie", + "id": "it:epicerie", + "products": 2 + }, + { + "name": "Sopas-de-verduras-y-hortalizas", + "id": "fr:sopas-de-verduras-y-hortalizas", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sopas-de-verduras-y-hortalizas" + }, + { + "products": 2, + "name": "Sopas", + "id": "fr:sopas", + "url": "https://fr.openfoodfacts.org/categorie/sopas" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q170219" + ], + "url": "https://fr.openfoodfacts.org/categorie/sake", + "id": "en:sake", + "name": "Saké", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-fenouil", + "name": "Graines de fenouil", + "id": "en:fennel-seeds", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gruau-d-avoine", + "id": "en:oat-groats", + "name": "Gruau d'avoine", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanquettes-de-dinde", + "id": "fr:blanquettes-de-dinde", + "name": "Blanquettes-de-dinde", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellinis-boeuf-bolognaise", + "id": "fr:tortellinis-boeuf-bolognaise", + "name": "Tortellinis-boeuf-bolognaise", + "products": 2 + }, + { + "name": "Beignets-de-poulet", + "id": "fr:beignets-de-poulet", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-poulet" + }, + { + "products": 2, + "id": "fr:panes-de-dinde", + "name": "Panes-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/panes-de-dinde" + }, + { + "id": "en:green-cracked-olives", + "name": "Green cracked olives", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/green-cracked-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-jambons", + "name": "Pates-de-jambons", + "id": "fr:pates-de-jambons", + "products": 2 + }, + { + "id": "en:cracked-olives", + "name": "Cracked olives", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cracked-olives" + }, + { + "id": "fr:pommeaux", + "name": "Pommeaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pommeaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farfalles-aromatisees-et-colorees", + "id": "fr:farfalles-aromatisees-et-colorees", + "name": "Farfalles-aromatisees-et-colorees", + "products": 2 + }, + { + "name": "nl:Pates-a-tartiner-vegetales", + "id": "nl:pates-a-tartiner-vegetales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/nl:pates-a-tartiner-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-pour-risotto", + "name": "Sauce-pour-risotto", + "id": "fr:sauce-pour-risotto", + "products": 2 + }, + { + "id": "en:pates-a-tartiner-aux-noisettes-et-au-cacao", + "name": "en:Pates-a-tartiner-aux-noisettes-et-au-cacao", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner-aux-noisettes-et-au-cacao" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1109330" + ], + "url": "https://fr.openfoodfacts.org/categorie/ulves", + "name": "Ulves", + "id": "en:sea-lettuce-seaweeds", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-aux-oeufs", + "id": "fr:creme-aux-oeufs", + "name": "Creme-aux-oeufs", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortelloni-ricotta-epinards", + "id": "fr:tortelloni-ricotta-epinards", + "name": "Tortelloni-ricotta-epinards", + "products": 2 + }, + { + "products": 2, + "id": "fr:tommes-de-brebis", + "name": "Tommes-de-brebis", + "url": "https://fr.openfoodfacts.org/categorie/tommes-de-brebis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-cerise", + "id": "fr:yaourts-brasses-cerise", + "name": "Yaourts-brasses-cerise", + "products": 2 + }, + { + "id": "fr:allumettes-fumees-de-porc", + "name": "Allumettes-fumees-de-porc", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/allumettes-fumees-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-luxembourg", + "products": 2, + "id": "en:wines-from-luxembourg", + "name": "Vins du Luxembourg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:nouilles", + "name": "es:Nouilles", + "id": "es:nouilles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-a-la-biere", + "products": 2, + "name": "Terrines-a-la-biere", + "id": "fr:terrines-a-la-biere" + }, + { + "products": 2, + "id": "sv:pizzas-et-tartes-surgelees", + "name": "sv:Pizzas-et-tartes-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/sv:pizzas-et-tartes-surgelees" + }, + { + "id": "fr:puree-de-piment", + "name": "Puree-de-piment", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/puree-de-piment" + }, + { + "id": "fr:jus-a-base-de-concentre", + "name": "Jus-a-base-de-concentre", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jus-a-base-de-concentre" + }, + { + "products": 2, + "id": "fr:dolmas", + "name": "Dolmas", + "url": "https://fr.openfoodfacts.org/categorie/dolmas" + }, + { + "products": 2, + "name": "Christstollen", + "id": "fr:christstollen", + "url": "https://fr.openfoodfacts.org/categorie/christstollen" + }, + { + "products": 2, + "name": "Filets-de-dorade", + "id": "fr:filets-de-dorade", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-dorade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-a-la-chataigne", + "products": 2, + "name": "Terrine-a-la-chataigne", + "id": "fr:terrine-a-la-chataigne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crumble", + "products": 2, + "name": "Crumble", + "id": "fr:crumble" + }, + { + "products": 2, + "id": "fr:sopas-frias", + "name": "Sopas-frias", + "url": "https://fr.openfoodfacts.org/categorie/sopas-frias" + }, + { + "products": 2, + "id": "fr:strudels", + "name": "Strudels", + "url": "https://fr.openfoodfacts.org/categorie/strudels" + }, + { + "name": "Produits-surgeles", + "id": "fr:produits-surgeles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/produits-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/citrouilles-surgelees", + "id": "en:frozen-pumpkins", + "name": "Citrouilles surgelées", + "products": 2 + }, + { + "id": "fr:tartes-au-thon", + "name": "Tartes-au-thon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-thon" + }, + { + "products": 2, + "name": "Menthe surgelé", + "id": "en:frozen-mint", + "url": "https://fr.openfoodfacts.org/categorie/menthe-surgele" + }, + { + "id": "de:confitures-de-fraises", + "name": "de:Confitures-de-fraises", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-de-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:soupes", + "products": 2, + "id": "de:soupes", + "name": "de:Soupes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yakitori-de-poulet", + "name": "Yakitori-de-poulet", + "id": "fr:yakitori-de-poulet", + "products": 2 + }, + { + "products": 2, + "name": "en:Laits-demi-ecremes", + "id": "en:laits-demi-ecremes", + "url": "https://fr.openfoodfacts.org/categorie/en:laits-demi-ecremes" + }, + { + "products": 2, + "id": "fr:palets-de-legumes", + "name": "Palets-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/palets-de-legumes" + }, + { + "products": 2, + "name": "Cremes-glacees-au-tiramisu", + "id": "fr:cremes-glacees-au-tiramisu", + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-au-tiramisu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:mousses-salees", + "products": 2, + "name": "ro:Mousses-salees", + "id": "ro:mousses-salees" + }, + { + "id": "fr:panecillos-tostados", + "name": "Panecillos-tostados", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/panecillos-tostados" + }, + { + "id": "fr:madeleines-aux-oeufs-frais", + "name": "Madeleines-aux-oeufs-frais", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/madeleines-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-allege", + "products": 2, + "id": "fr:fromage-allege", + "name": "Fromage-allege" + }, + { + "name": "en:Lardons-fumes", + "id": "en:lardons-fumes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:lardons-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-en-coque", + "products": 2, + "name": "Graines de courge en coque", + "id": "en:unshelled-pumpkin-seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-chocolat", + "name": "Creme-chocolat", + "id": "fr:creme-chocolat", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-riz-sur-lit-de-caramel", + "products": 2, + "name": "Gateaux-de-riz-sur-lit-de-caramel", + "id": "fr:gateaux-de-riz-sur-lit-de-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornets-de-glace", + "products": 2, + "name": "Cornets-de-glace", + "id": "fr:cornets-de-glace" + }, + { + "products": 2, + "name": "Haricots verts plats", + "id": "en:fresh-flat-green-beans", + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-plats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-d-orge", + "products": 2, + "name": "Farines d'orge", + "id": "en:barley-flours" + }, + { + "name": "Sarrasin-de-tartarie", + "id": "fr:sarrasin-de-tartarie", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sarrasin-de-tartarie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-precuites", + "name": "Cereales-precuites", + "id": "fr:cereales-precuites", + "products": 2 + }, + { + "products": 2, + "id": "es:fromages", + "name": "es:Fromages", + "url": "https://fr.openfoodfacts.org/categorie/es:fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-chanvre", + "name": "Desserts-au-chanvre", + "id": "fr:desserts-au-chanvre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-soja", + "products": 2, + "id": "fr:steaks-de-soja", + "name": "Steaks-de-soja" + }, + { + "products": 2, + "id": "fr:yaourts-aux-pruneaux", + "name": "Yaourts-aux-pruneaux", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-pruneaux" + }, + { + "name": "Yaourts soja au citron", + "id": "en:lemon-soy-yogurts", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:steaks-vegetaux-pour-hamburgers", + "name": "es:Steaks-vegetaux-pour-hamburgers", + "id": "es:steaks-vegetaux-pour-hamburgers", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pour-les-gateaux", + "id": "fr:pour-les-gateaux", + "name": "Pour-les-gateaux", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bebidas-de-cola", + "products": 2, + "name": "Bebidas-de-cola", + "id": "fr:bebidas-de-cola" + }, + { + "products": 2, + "id": "fr:coulis-de-cerise", + "name": "Coulis-de-cerise", + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-cerise" + }, + { + "name": "Asperges vertes surgelées", + "id": "en:frozen-green-asparagus", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/asperges-vertes-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-preparees", + "name": "Legumes-preparees", + "id": "fr:legumes-preparees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:gaspacho", + "name": "es:Gaspacho", + "id": "es:gaspacho", + "products": 2 + }, + { + "id": "fr:konserven-produkte-auf-pflanzlicher-basis", + "name": "Konserven-produkte-auf-pflanzlicher-basis", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/konserven-produkte-auf-pflanzlicher-basis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-porc", + "name": "Escalopes de porc", + "id": "fr:escalopes-de-porc", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-surgeles", + "id": "en:frozen-common-beans", + "name": "Haricots surgelés", + "products": 2 + }, + { + "products": 2, + "id": "fr:bourgogne-aoc", + "name": "Bourgogne AOC", + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-aoc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2922341" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pommes-de-terre", + "id": "en:pommes-de-terre", + "name": "en:Pommes-de-terre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-hautes-cotes-de-nuits", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2922359" + ], + "products": 2, + "id": "fr:bourgogne-hautes-cotes-de-nuits", + "name": "Bourgogne-hautes-côtes-de-nuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-a-la-pomme", + "id": "fr:galettes-a-la-pomme", + "name": "Galettes-a-la-pomme", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sels-marins", + "products": 2, + "name": "en:Sels-marins", + "id": "en:sels-marins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastilla", + "id": "fr:pastilla", + "name": "Pastilla", + "products": 2 + }, + { + "products": 2, + "id": "fr:flageolets-verts", + "name": "Flageolets-verts", + "url": "https://fr.openfoodfacts.org/categorie/flageolets-verts" + }, + { + "name": "de:Laits-demi-ecremes", + "id": "de:laits-demi-ecremes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:laits-demi-ecremes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:snacks-sales", + "products": 2, + "name": "ro:Snacks-sales", + "id": "ro:snacks-sales" + }, + { + "name": "nl:Bier", + "id": "nl:bier", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/nl:bier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-blanc", + "products": 2, + "id": "fr:ail-blanc", + "name": "Ail-blanc" + }, + { + "id": "fr:compotes-pommes-banane-fraise", + "name": "Compotes-pommes-banane-fraise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-banane-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bitter-chocolate", + "products": 2, + "name": "Bitter chocolate", + "id": "en:bitter-chocolate" + }, + { + "products": 2, + "id": "fr:bebidas-para-tomar-calientes", + "name": "Bebidas-para-tomar-calientes", + "url": "https://fr.openfoodfacts.org/categorie/bebidas-para-tomar-calientes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-allemandes", + "products": 2, + "name": "Moutardes allemandes", + "id": "en:german-mustards" + }, + { + "products": 2, + "id": "fr:chocolats-noirs-aux-noix-de-madacamia", + "name": "Chocolats-noirs-aux-noix-de-madacamia", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-noix-de-madacamia" + }, + { + "products": 2, + "id": "en:cereales-y-patatas", + "name": "en:Cereales-y-patatas", + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-y-patatas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:prodotti-da-forno", + "id": "it:prodotti-da-forno", + "name": "it:Prodotti-da-forno", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:nouilles-instantanees", + "id": "es:nouilles-instantanees", + "name": "es:Nouilles-instantanees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-a-la-fraise", + "products": 2, + "id": "en:strawberry-soy-yogurts", + "name": "Yaourts de soja à la fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-canneberge", + "products": 2, + "id": "fr:confitures-de-canneberge", + "name": "Confitures-de-canneberge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:crema-di-cacao-e-nocciole", + "products": 2, + "id": "it:crema-di-cacao-e-nocciole", + "name": "it:Crema-di-cacao-e-nocciole" + }, + { + "name": "Foies-de-veau", + "id": "fr:foies-de-veau", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/foies-de-veau" + }, + { + "id": "de:pates-a-tartiner-aux-noisettes", + "name": "de:Pates-a-tartiner-aux-noisettes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner-aux-noisettes" + }, + { + "products": 2, + "name": "en:Sauces-arrabiata", + "id": "en:sauces-arrabiata", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-arrabiata" + }, + { + "name": "it:Produits-deshydrates", + "id": "it:produits-deshydrates", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:produits-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-preparees", + "id": "fr:galettes-preparees", + "name": "Galettes-preparees", + "products": 2 + }, + { + "products": 2, + "name": "en:Ongesuikerde-dranken", + "id": "en:ongesuikerde-dranken", + "url": "https://fr.openfoodfacts.org/categorie/en:ongesuikerde-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-noix-de-pecan", + "products": 2, + "id": "fr:chocolats-au-lait-aux-noix-de-pecan", + "name": "Chocolats-au-lait-aux-noix-de-pecan" + }, + { + "name": "en:Produits-sans-gluten", + "id": "en:produits-sans-gluten", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-sans-gluten" + }, + { + "products": 2, + "name": "Bardolino", + "id": "fr:bardolino", + "url": "https://fr.openfoodfacts.org/categorie/bardolino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/figues-de-barbarie", + "products": 2, + "id": "fr:figues-de-barbarie", + "name": "Figues-de-barbarie" + }, + { + "products": 2, + "id": "it:yaourts", + "name": "it:Yaourts", + "url": "https://fr.openfoodfacts.org/categorie/it:yaourts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pestos-rouges", + "id": "fr:pestos-rouges", + "name": "Pestos-rouges", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-prepares-surgeles", + "id": "it:plats-prepares-surgeles", + "name": "it:Plats-prepares-surgeles", + "products": 2 + }, + { + "name": "it:Pomodoro", + "id": "it:pomodoro", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:pomodoro" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gianduja", + "products": 2, + "id": "fr:gianduja", + "name": "Gianduja" + }, + { + "name": "Graines-a-germer", + "id": "fr:graines-a-germer", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/graines-a-germer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vorspeisen", + "name": "Vorspeisen", + "id": "fr:vorspeisen", + "products": 2 + }, + { + "id": "es:semillas-de-girasol-con-cascara-tostadas-aguasal", + "name": "es:Semillas-de-girasol-con-cascara-tostadas-aguasal", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:semillas-de-girasol-con-cascara-tostadas-aguasal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-de-peches", + "name": "es:Confitures-de-peches", + "id": "es:confitures-de-peches", + "products": 2 + }, + { + "name": "en:Graines-de-lupin", + "id": "en:graines-de-lupin", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:graines-de-lupin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:eaux-minerales-naturelles", + "id": "es:eaux-minerales-naturelles", + "name": "es:Eaux-minerales-naturelles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:preparations-pour-gateaux", + "products": 2, + "id": "de:preparations-pour-gateaux", + "name": "de:Preparations-pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/canneberges-sechees", + "products": 2, + "name": "Canneberges-sechees", + "id": "fr:canneberges-sechees" + }, + { + "id": "fr:lentilles-bio", + "name": "Lentilles-bio", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-soja-naturel-avec-du-sucre", + "name": "es:Laits-de-soja-naturel-avec-du-sucre", + "id": "es:laits-de-soja-naturel-avec-du-sucre", + "products": 2 + }, + { + "products": 2, + "id": "es:fromages-pasteurises", + "name": "es:Fromages-pasteurises", + "url": "https://fr.openfoodfacts.org/categorie/es:fromages-pasteurises" + }, + { + "name": "es:Sandwich-cookies", + "id": "es:sandwich-cookies", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:sandwich-cookies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calamars-en-sauce", + "name": "Calamars-en-sauce", + "id": "fr:calamars-en-sauce", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:lacteosas", + "products": 2, + "name": "es:Lacteosas", + "id": "es:lacteosas" + }, + { + "products": 2, + "name": "Poivrons verts", + "id": "en:green-bell-peppers", + "url": "https://fr.openfoodfacts.org/categorie/poivrons-verts" + }, + { + "products": 2, + "name": "Tacos", + "id": "fr:tacos", + "url": "https://fr.openfoodfacts.org/categorie/tacos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-tex-mex", + "products": 2, + "name": "Plats-tex-mex", + "id": "fr:plats-tex-mex" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galletas-de-tipo-campurrianas", + "products": 2, + "name": "es:Galletas-de-tipo-campurrianas", + "id": "es:galletas-de-tipo-campurrianas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-de-provence", + "name": "Vins-de-provence", + "id": "fr:vins-de-provence", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:kekse-mit-milchschokolade", + "id": "de:kekse-mit-milchschokolade", + "name": "de:Kekse-mit-milchschokolade", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:huiles-d-olive", + "products": 2, + "id": "es:huiles-d-olive", + "name": "es:Huiles-d-olive" + }, + { + "products": 2, + "name": "es:Huiles", + "id": "es:huiles", + "url": "https://fr.openfoodfacts.org/categorie/es:huiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-liegoises", + "products": 2, + "id": "fr:gaufres-liegoises", + "name": "Gaufres-liegoises" + }, + { + "products": 2, + "id": "en:gateaux-et-patisseries-surgeles", + "name": "en:Gateaux-et-patisseries-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/en:gateaux-et-patisseries-surgeles" + }, + { + "products": 2, + "id": "fr:nougats-aux-fruits", + "name": "Nougats-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/nougats-aux-fruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q231587" + ], + "url": "https://fr.openfoodfacts.org/categorie/thes-bleus", + "products": 2, + "name": "Thés bleus", + "id": "en:oolong-teas" + }, + { + "name": "Tarte-fine", + "id": "fr:tarte-fine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/tarte-fine" + }, + { + "name": "Fleurons", + "id": "fr:fleurons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fleurons" + }, + { + "name": "it:Aliments-a-base-de-plantes-seches", + "id": "it:aliments-a-base-de-plantes-seches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-a-base-de-plantes-seches" + }, + { + "products": 2, + "name": "Entrecotes-de-boeuf", + "id": "fr:entrecotes-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/entrecotes-de-boeuf" + }, + { + "name": "Biscuits-aperitif-souffles-au-paprika", + "id": "fr:biscuits-aperitif-souffles-au-paprika", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitif-souffles-au-paprika" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivre-gris-moulu", + "name": "Poivre-gris-moulu", + "id": "fr:poivre-gris-moulu", + "products": 2 + }, + { + "products": 2, + "id": "fr:patissons", + "name": "Patissons", + "url": "https://fr.openfoodfacts.org/categorie/patissons" + }, + { + "name": "Marmelades-de-clementines", + "id": "fr:marmelades-de-clementines", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-clementines" + }, + { + "id": "fr:miels-de-thyms", + "name": "Miels-de-thyms", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-thyms" + }, + { + "products": 2, + "id": "fr:crayons-patissiers", + "name": "Crayons-patissiers", + "url": "https://fr.openfoodfacts.org/categorie/crayons-patissiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-d-orleans", + "name": "Moutardes-d-orleans", + "id": "fr:moutardes-d-orleans", + "products": 2 + }, + { + "products": 2, + "name": "Poêlées façon kebab", + "id": "fr:poelees-facon-kebab", + "url": "https://fr.openfoodfacts.org/categorie/poelees-facon-kebab" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains-grilles", + "name": "de:Pains-grilles", + "id": "de:pains-grilles", + "products": 2 + }, + { + "name": "Barres-au-sesame", + "id": "fr:barres-au-sesame", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/barres-au-sesame" + }, + { + "name": "Huile d'olive de Nîmes", + "id": "en:olive-oil-from-nimes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-nimes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:alcools-artisanaux", + "name": "en:Alcools-artisanaux", + "id": "en:alcools-artisanaux", + "products": 2 + }, + { + "id": "fr:fromage-bleu", + "name": "Fromage-bleu", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fromage-bleu" + }, + { + "products": 2, + "name": "Ecureuils-en-chocolat", + "id": "fr:ecureuils-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/ecureuils-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-tartelettes", + "id": "fr:fonds-de-tartelettes", + "name": "Fonds-de-tartelettes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gins", + "id": "en:gins", + "name": "en:Gins", + "products": 2 + }, + { + "products": 2, + "name": "Cerises-surgelees", + "id": "fr:cerises-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/cerises-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-a-pate-filee", + "id": "en:fromages-a-pate-filee", + "name": "en:Fromages-a-pate-filee", + "products": 2 + }, + { + "name": "Boulettes-vegetales", + "id": "fr:boulettes-vegetales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/boulettes-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cottage-cheese", + "name": "en:Cottage-cheese", + "id": "en:cottage-cheese", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crevettes-roses", + "products": 2, + "name": "en:Crevettes-roses", + "id": "en:crevettes-roses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-a-la-truffe", + "name": "Moutardes-a-la-truffe", + "id": "fr:moutardes-a-la-truffe", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-au-pistou", + "products": 2, + "name": "Soupes-au-pistou", + "id": "fr:soupes-au-pistou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garnitures", + "id": "fr:garnitures", + "name": "Garnitures", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-noix-de-coco", + "products": 2, + "name": "Yaourts-brasses-noix-de-coco", + "id": "fr:yaourts-brasses-noix-de-coco" + }, + { + "products": 2, + "name": "Pains-surprises", + "id": "fr:pains-surprises", + "url": "https://fr.openfoodfacts.org/categorie/pains-surprises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-petit-epeautre-t150", + "products": 2, + "id": "en:whole-einkorn-wheat-flours", + "name": "Farines de petit épeautre T150" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-d-erable", + "id": "en:maple-sugars", + "name": "Sucres d'érable", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tommes-de-chevre", + "id": "fr:tommes-de-chevre", + "name": "Tommes-de-chevre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-cidre", + "products": 2, + "id": "fr:boissons-a-base-de-cidre", + "name": "Boissons-a-base-de-cidre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusillini", + "name": "Fusillini", + "id": "fr:fusillini", + "products": 2 + }, + { + "products": 2, + "id": "fr:sundaes", + "name": "Sundaes", + "url": "https://fr.openfoodfacts.org/categorie/sundaes" + }, + { + "products": 2, + "id": "fr:limonaden", + "name": "Limonaden", + "url": "https://fr.openfoodfacts.org/categorie/limonaden" + }, + { + "name": "en:Yaourts-brasses-aux-fruits", + "id": "en:yaourts-brasses-aux-fruits", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-brasses-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-kangourou", + "products": 2, + "id": "fr:viandes-de-kangourou", + "name": "Viandes-de-kangourou" + }, + { + "id": "en:mashed-cauliflower", + "name": "Purées de choux-fleurs", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-choux-fleurs" + }, + { + "products": 2, + "name": "Tartes au sucre", + "id": "en:sugar-pies", + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-sucre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3515853" + ] + }, + { + "products": 2, + "id": "fr:asperges-francaises", + "name": "Asperges-francaises", + "url": "https://fr.openfoodfacts.org/categorie/asperges-francaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-labellises", + "products": 2, + "id": "en:labelized-vegetables", + "name": "Légumes labellisés" + }, + { + "products": 2, + "name": "Jus-d-ananas-victoria", + "id": "fr:jus-d-ananas-victoria", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas-victoria" + }, + { + "id": "fr:caviar-de-acipenser-gueldenstaedtii", + "name": "Caviar de Acipenser gueldenstaedtii", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/caviar-de-acipenser-gueldenstaedtii" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/framboises-jaunes", + "name": "Framboises-jaunes", + "id": "fr:framboises-jaunes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sesame-toaste", + "products": 2, + "name": "Sésame toasté", + "id": "en:toasted-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-pistaches", + "name": "Beurres de pistaches", + "id": "en:pistachio-butters", + "products": 2 + }, + { + "products": 2, + "id": "en:sauces-bolognaises", + "name": "en:Sauces-bolognaises", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-bolognaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:%D1%85%D0%BB%D0%B5%D0%B1", + "name": "en:Хлеб", + "id": "en:хлеб", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-au-chocolat", + "id": "fr:yaourts-a-boire-au-chocolat", + "name": "Yaourts-a-boire-au-chocolat", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-au-fromage", + "id": "fr:puree-au-fromage", + "name": "Puree-au-fromage", + "products": 2 + }, + { + "id": "fr:preparations-de-viande-porcine-hachee-fraiches", + "name": "Preparations-de-viande-porcine-hachee-fraiches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-porcine-hachee-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-cassis", + "id": "fr:compotes-de-cassis", + "name": "Compotes-de-cassis", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/igp-ardeche", + "id": "fr:igp-ardeche", + "name": "Igp-ardeche", + "products": 2 + }, + { + "name": "Gelées de sureau noir", + "id": "en:elderberry-jellies", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-sureau-noir" + }, + { + "products": 2, + "id": "fr:laits-gelifies", + "name": "Laits-gelifies", + "url": "https://fr.openfoodfacts.org/categorie/laits-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-pommier", + "products": 2, + "name": "Miels-de-pommier", + "id": "fr:miels-de-pommier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivre-blanc-moulu", + "id": "en:ground-white-peppers", + "name": "Poivre blanc moulu", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-lavande", + "products": 2, + "name": "Sirops-de-lavande", + "id": "fr:sirops-de-lavande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ossau-iraty", + "products": 2, + "name": "Ossau-iraty", + "id": "fr:ossau-iraty" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougatcremes", + "id": "fr:nougatcremes", + "name": "Nougatcremes", + "products": 2 + }, + { + "products": 2, + "name": "Saucissons-de-boeuf", + "id": "fr:saucissons-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-boeuf" + }, + { + "products": 2, + "id": "fr:mortadelles-de-volaille", + "name": "Mortadelles-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/mortadelles-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-a-la-carbonara", + "products": 2, + "name": "Penne-a-la-carbonara", + "id": "fr:penne-a-la-carbonara" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-pour-barbecue", + "products": 2, + "name": "Viandes-pour-barbecue", + "id": "fr:viandes-pour-barbecue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-sur-lit-de-fruits", + "products": 2, + "id": "en:yaourts-sur-lit-de-fruits", + "name": "en:Yaourts-sur-lit-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-gingembre", + "name": "Biscuits-au-gingembre", + "id": "fr:biscuits-au-gingembre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boeufs-aux-haricots", + "products": 2, + "id": "fr:boeufs-aux-haricots", + "name": "Boeufs-aux-haricots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-d-oie-mi-cuits", + "id": "fr:foies-gras-d-oie-mi-cuits", + "name": "Foies-gras-d-oie-mi-cuits", + "products": 2 + }, + { + "name": "Concombres-au-yaourt", + "id": "fr:concombres-au-yaourt", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/concombres-au-yaourt" + }, + { + "name": "Salsifis-surgeles", + "id": "fr:salsifis-surgeles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/salsifis-surgeles" + }, + { + "products": 2, + "id": "fr:plats-chinois", + "name": "Plats-chinois", + "url": "https://fr.openfoodfacts.org/categorie/plats-chinois" + }, + { + "products": 2, + "id": "de:mate", + "name": "de:Mate", + "url": "https://fr.openfoodfacts.org/categorie/de:mate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-caramel", + "id": "fr:cremes-de-caramel", + "name": "Cremes-de-caramel", + "products": 2 + }, + { + "products": 2, + "name": "en:Aliments-a-base-de-plantes-sechees", + "id": "en:aliments-a-base-de-plantes-sechees", + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-a-base-de-plantes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-pasteque", + "id": "en:watermelon-syrups", + "name": "Sirops de pastèque", + "products": 2 + }, + { + "products": 2, + "id": "en:sauces-tomates-pimentees", + "name": "en:Sauces-tomates-pimentees", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-tomates-pimentees" + }, + { + "name": "en:Laits-de-soja-a-la-vanille", + "id": "en:laits-de-soja-a-la-vanille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-soja-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salze", + "id": "fr:salze", + "name": "Salze", + "products": 2 + }, + { + "products": 2, + "id": "it:charcuteries", + "name": "it:Charcuteries", + "url": "https://fr.openfoodfacts.org/categorie/it:charcuteries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/goulash", + "products": 2, + "name": "Goulash", + "id": "fr:goulash" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-plantes-sechees", + "products": 2, + "id": "de:aliments-a-base-de-plantes-sechees", + "name": "de:Aliments-a-base-de-plantes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graisses-de-coco", + "products": 2, + "name": "Graisses-de-coco", + "id": "fr:graisses-de-coco" + }, + { + "products": 2, + "name": "Relishes", + "id": "fr:relishes", + "url": "https://fr.openfoodfacts.org/categorie/relishes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-deshydratees-au-poivre-vert", + "name": "Sauces-deshydratees-au-poivre-vert", + "id": "fr:sauces-deshydratees-au-poivre-vert", + "products": 2 + }, + { + "products": 2, + "id": "de:bouillons-de-legumes", + "name": "de:Bouillons-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/de:bouillons-de-legumes" + }, + { + "products": 2, + "id": "fr:gateau-au-fromage-blanc", + "name": "Gateau-au-fromage-blanc", + "url": "https://fr.openfoodfacts.org/categorie/gateau-au-fromage-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-noisettes", + "products": 2, + "name": "Gateaux-aux-noisettes", + "id": "fr:gateaux-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aromate", + "id": "fr:aromate", + "name": "Aromate", + "products": 2 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q420726" + ], + "url": "https://fr.openfoodfacts.org/categorie/bcaa", + "products": 2, + "name": "BCAA", + "id": "en:bcaa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bananen", + "products": 2, + "id": "fr:bananen", + "name": "Bananen" + }, + { + "name": "pt:Bolachas", + "id": "pt:bolachas", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:bolachas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait-aux-noisettes", + "products": 2, + "name": "en:Chocolats-au-lait-aux-noisettes", + "id": "en:chocolats-au-lait-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-pistou", + "id": "fr:sauces-au-pistou", + "name": "Sauces-au-pistou", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-franceline", + "products": 2, + "name": "Pommes-de-terre-franceline", + "id": "fr:pommes-de-terre-franceline" + }, + { + "id": "ro:produits-a-tartiner-sales", + "name": "ro:Produits-a-tartiner-sales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ro:produits-a-tartiner-sales" + }, + { + "products": 2, + "name": "Topinambours", + "id": "fr:topinambours", + "url": "https://fr.openfoodfacts.org/categorie/topinambours" + }, + { + "products": 2, + "id": "fr:saumur", + "name": "Saumur", + "url": "https://fr.openfoodfacts.org/categorie/saumur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-igp", + "id": "fr:vin-igp", + "name": "Vin-igp", + "products": 2 + }, + { + "name": "en:Pousses-de-bambou", + "id": "en:pousses-de-bambou", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:pousses-de-bambou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cremes-dessert-chocolat", + "products": 2, + "id": "de:cremes-dessert-chocolat", + "name": "de:Cremes-dessert-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pockys", + "products": 2, + "id": "fr:pockys", + "name": "Pockys" + }, + { + "id": "es:sauces-arrabiata", + "name": "es:Sauces-arrabiata", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:sauces-arrabiata" + }, + { + "products": 2, + "name": "Pois-gourmands", + "id": "fr:pois-gourmands", + "url": "https://fr.openfoodfacts.org/categorie/pois-gourmands" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chouchen", + "products": 2, + "id": "fr:chouchen", + "name": "Chouchen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-chiches-grilles", + "products": 2, + "name": "Pois-chiches-grilles", + "id": "fr:pois-chiches-grilles" + }, + { + "products": 2, + "id": "fr:paves-de-bison", + "name": "Paves-de-bison", + "url": "https://fr.openfoodfacts.org/categorie/paves-de-bison" + }, + { + "id": "fr:dessert-fruitier-pomme-nature", + "name": "Dessert-fruitier-pomme-nature", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/dessert-fruitier-pomme-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/formaggio", + "id": "fr:formaggio", + "name": "Formaggio", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:choux-rouges", + "name": "de:Choux-rouges", + "id": "de:choux-rouges", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:alimentos-de-origen-vegetal", + "products": 2, + "id": "de:alimentos-de-origen-vegetal", + "name": "de:Alimentos-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aceites-y-grasas", + "products": 2, + "id": "fr:aceites-y-grasas", + "name": "Aceites-y-grasas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dorades", + "name": "Dorades", + "id": "en:breams", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-fruits", + "products": 2, + "name": "Melange-de-fruits", + "id": "fr:melange-de-fruits" + }, + { + "products": 2, + "id": "fr:penne-a-la-bolognaise", + "name": "Penne-a-la-bolognaise", + "url": "https://fr.openfoodfacts.org/categorie/penne-a-la-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:pate", + "products": 2, + "id": "ro:pate", + "name": "ro:Pate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-5-mois", + "name": "Dès 5 mois", + "id": "en:from-5-months", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mangue-passion", + "products": 2, + "name": "Compotes-pommes-mangue-passion", + "id": "fr:compotes-pommes-mangue-passion" + }, + { + "products": 2, + "name": "Riz-long-blanc", + "id": "fr:riz-long-blanc", + "url": "https://fr.openfoodfacts.org/categorie/riz-long-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-aux-noisettes", + "id": "en:chocolats-aux-noisettes", + "name": "en:Chocolats-aux-noisettes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-la-figue", + "name": "Nonnettes-a-la-figue", + "id": "fr:nonnettes-a-la-figue", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entremets-au-chocolat", + "name": "Entremets-au-chocolat", + "id": "fr:entremets-au-chocolat", + "products": 2 + }, + { + "name": "Plantes aromatiques sèches", + "id": "en:dried-aromatic-plants", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plantes-aromatiques-seches" + }, + { + "products": 2, + "id": "fr:colins-d-alaska-a-la-florentine", + "name": "Colins-d-alaska-a-la-florentine", + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-la-florentine" + }, + { + "products": 2, + "id": "fr:radiatori-aux-fromages", + "name": "Radiatori-aux-fromages", + "url": "https://fr.openfoodfacts.org/categorie/radiatori-aux-fromages" + }, + { + "id": "fr:fecules-de-pomme-de-terre", + "name": "Fecules-de-pomme-de-terre", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fecules-de-pomme-de-terre" + }, + { + "products": 2, + "name": "Gateaux-secs", + "id": "fr:gateaux-secs", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gras-de-boeuf", + "name": "Gras de bœuf", + "id": "fr:gras-de-boeuf", + "products": 2 + }, + { + "products": 2, + "id": "es:laits-d-avoine", + "name": "es:Laits-d-avoine", + "url": "https://fr.openfoodfacts.org/categorie/es:laits-d-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-riz-a-l-amande", + "products": 2, + "id": "fr:laits-de-riz-a-l-amande", + "name": "Laits-de-riz-a-l-amande" + }, + { + "products": 2, + "name": "Cônes vanille fraise", + "id": "en:strawberry-vanilla-ice-cream-cones", + "url": "https://fr.openfoodfacts.org/categorie/cones-vanille-fraise" + }, + { + "products": 2, + "id": "fr:epis-de-mais-en-conserve", + "name": "Epis-de-mais-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/epis-de-mais-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-nougat", + "products": 2, + "id": "fr:chocolats-au-lait-au-nougat", + "name": "Chocolats-au-lait-au-nougat" + }, + { + "name": "Chocolats-au-matcha", + "id": "fr:chocolats-au-matcha", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-matcha" + }, + { + "name": "Sauce-piquante", + "id": "fr:sauce-piquante", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sauce-piquante" + }, + { + "products": 2, + "name": "it:Pasta-di-semola-di-grano-duro", + "id": "it:pasta-di-semola-di-grano-duro", + "url": "https://fr.openfoodfacts.org/categorie/it:pasta-di-semola-di-grano-duro" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelee-de-saint-jacques", + "products": 2, + "name": "Poelee-de-saint-jacques", + "id": "fr:poelee-de-saint-jacques" + }, + { + "name": "Crepes-fourrees-au-caramel", + "id": "fr:crepes-fourrees-au-caramel", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-au-caramel" + }, + { + "name": "Sirops-de-dattes", + "id": "fr:sirops-de-dattes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-dattes" + }, + { + "id": "fr:mousses-au-chocolat-blanc", + "name": "Mousses-au-chocolat-blanc", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-chocolat-blanc" + }, + { + "name": "Cafe-glace", + "id": "fr:cafe-glace", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cafe-glace" + }, + { + "products": 2, + "id": "en:cremes-vegetales-a-base-de-coco-pour-cuisiner", + "name": "en:Cremes-vegetales-a-base-de-coco-pour-cuisiner", + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-vegetales-a-base-de-coco-pour-cuisiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:riegel", + "products": 2, + "name": "en:Riegel", + "id": "en:riegel" + }, + { + "products": 2, + "name": "Bitterschokoladen", + "id": "fr:bitterschokoladen", + "url": "https://fr.openfoodfacts.org/categorie/bitterschokoladen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-acacia-et-gelee-royale", + "id": "fr:miels-d-acacia-et-gelee-royale", + "name": "Miels-d-acacia-et-gelee-royale", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanquettes-de-poulet", + "products": 2, + "name": "Blanquettes-de-poulet", + "id": "fr:blanquettes-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-foie-de-porc", + "products": 2, + "name": "Mousses-de-foie-de-porc", + "id": "fr:mousses-de-foie-de-porc" + }, + { + "id": "fr:sprats-en-conserve", + "name": "Sprats-en-conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sprats-en-conserve" + }, + { + "products": 2, + "name": "de:Schmand", + "id": "de:schmand", + "url": "https://fr.openfoodfacts.org/categorie/de:schmand" + }, + { + "name": "Queso-manchego", + "id": "fr:queso-manchego", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/queso-manchego" + }, + { + "id": "fr:penne-completes", + "name": "Penne-completes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/penne-completes" + }, + { + "products": 2, + "id": "fr:bieres-lambics", + "name": "Bieres-lambics", + "url": "https://fr.openfoodfacts.org/categorie/bieres-lambics" + }, + { + "id": "en:bieres-aromatisees", + "name": "en:Bieres-aromatisees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-aromatisees" + }, + { + "products": 2, + "id": "fr:bieres-lambic", + "name": "Bieres-lambic", + "url": "https://fr.openfoodfacts.org/categorie/bieres-lambic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-la-noix-de-coco", + "name": "Barres-de-cereales-a-la-noix-de-coco", + "id": "fr:barres-de-cereales-a-la-noix-de-coco", + "products": 2 + }, + { + "id": "fr:preparations-pour-poulet", + "name": "Preparations-pour-poulet", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-poulet" + }, + { + "name": "Genoises-fourrees", + "id": "fr:genoises-fourrees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/genoises-fourrees" + }, + { + "id": "fr:saucisses-americaines", + "name": "Saucisses-americaines", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-americaines" + }, + { + "id": "fr:harengs-fumes-doux", + "name": "Harengs-fumes-doux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/harengs-fumes-doux" + }, + { + "name": "Chocolats-au-praline", + "id": "fr:chocolats-au-praline", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rum-flavored-beer", + "id": "fr:rum-flavored-beer", + "name": "Rum-flavored-beer", + "products": 2 + }, + { + "name": "Cancoillotte-a-l-ail", + "id": "fr:cancoillotte-a-l-ail", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cancoillotte-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cremes-patissieres", + "name": "Preparations-pour-cremes-patissieres", + "id": "fr:preparations-pour-cremes-patissieres", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cranberry-sauces", + "id": "en:cranberry-sauces", + "name": "Cranberry sauces", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumes-frais", + "products": 2, + "id": "en:legumes-frais", + "name": "en:Legumes-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ingredients", + "products": 2, + "name": "Ingredients", + "id": "fr:ingredients" + }, + { + "id": "fr:sautes-de-porc", + "name": "Sautes-de-porc", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sautes-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-de-riz", + "id": "fr:vins-de-riz", + "name": "Vins-de-riz", + "products": 2 + }, + { + "name": "Vin-rouge-biologique", + "id": "fr:vin-rouge-biologique", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/vin-rouge-biologique" + }, + { + "name": "en:Aloe-vera-drinks", + "id": "en:aloe-vera-drinks", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:aloe-vera-drinks" + }, + { + "products": 2, + "name": "Cotes-d-agneau", + "id": "fr:cotes-d-agneau", + "url": "https://fr.openfoodfacts.org/categorie/cotes-d-agneau" + }, + { + "name": "Biscuits-a-la-noix-de-coco", + "id": "fr:biscuits-a-la-noix-de-coco", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-noix-de-coco" + }, + { + "products": 2, + "id": "fr:chakchoukas", + "name": "Chakchoukas", + "url": "https://fr.openfoodfacts.org/categorie/chakchoukas" + }, + { + "products": 2, + "id": "en:biscuits-secs", + "name": "en:Biscuits-secs", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-secs" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2201024" + ], + "url": "https://fr.openfoodfacts.org/categorie/bas-armagnac", + "id": "fr:bas-armagnac", + "name": "Bas-Armagnac", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-de-normandie", + "name": "Poires-de-normandie", + "id": "fr:poires-de-normandie", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-cereales-souffles", + "products": 2, + "id": "en:mixed-puffed-cereals", + "name": "Mélanges de céréales soufflés" + }, + { + "id": "en:filled-crepes-with-jam", + "name": "Crêpes fourrées à la confiture", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-a-la-confiture" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crozets-au-sarrasin", + "name": "Crozets-au-sarrasin", + "id": "fr:crozets-au-sarrasin", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-bolognaise", + "id": "fr:penne-bolognaise", + "name": "Penne-bolognaise", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vins-rouges", + "id": "en:vins-rouges", + "name": "en:Vins-rouges", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-au-vin-blanc", + "id": "fr:maquereaux-au-vin-blanc", + "name": "Maquereaux-au-vin-blanc", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-poivres", + "name": "Melanges-de-poivres", + "id": "fr:melanges-de-poivres", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croquants-aux-amandes", + "id": "fr:croquants-aux-amandes", + "name": "Croquants-aux-amandes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates-a-tartiner-au-chocolat", + "products": 2, + "id": "it:pates-a-tartiner-au-chocolat", + "name": "it:Pates-a-tartiner-au-chocolat" + }, + { + "name": "es:Cereales-au-chocolat", + "id": "es:cereales-au-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-au-chocolat" + }, + { + "name": "en:Fromages-au-lait-cru", + "id": "en:fromages-au-lait-cru", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-au-lait-cru" + }, + { + "name": "Fusilli-aux-fromages", + "id": "fr:fusilli-aux-fromages", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fusilli-aux-fromages" + }, + { + "name": "de:Fromages-de-france", + "id": "de:fromages-de-france", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-de-france" + }, + { + "id": "fr:croissants-precuits", + "name": "Croissants-precuits", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/croissants-precuits" + }, + { + "name": "Soja-fermente", + "id": "fr:soja-fermente", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/soja-fermente" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-a-la-cacahuete", + "products": 2, + "name": "Nougats-a-la-cacahuete", + "id": "fr:nougats-a-la-cacahuete" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:salmon-pies", + "products": 2, + "id": "en:salmon-pies", + "name": "en:Salmon-pies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilli-a-la-bolognaise", + "id": "fr:fusilli-a-la-bolognaise", + "name": "Fusilli-a-la-bolognaise", + "products": 2 + }, + { + "id": "en:fruit-pulps", + "name": "Pulpe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pulpe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-4-fromages", + "name": "Tortellini 4 fromages", + "id": "fr:tortellini-4-fromages", + "products": 2 + }, + { + "id": "fr:crepes-fourrees-a-la-fraise", + "name": "Crepes-fourrees-a-la-fraise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/limande", + "products": 2, + "id": "fr:limande", + "name": "Limande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D1%8B%D0%B5-%D0%BF%D1%80%D0%BE%D0%B4%D1%83%D0%BA%D1%82%D1%8B", + "products": 2, + "name": "Молочные-продукты", + "id": "fr:молочные-продукты" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-de-poulet", + "products": 2, + "id": "fr:des-de-poulet", + "name": "Des-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-georgiens", + "name": "Vins georgiens", + "id": "en:wines-from-georgia", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit-a-pizza", + "id": "fr:kit-a-pizza", + "name": "Kit-a-pizza", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-italiennes", + "id": "fr:salades-italiennes", + "name": "Salades-italiennes", + "products": 2 + }, + { + "products": 2, + "id": "en:fruchtbasierte-lebensmittel", + "name": "en:Fruchtbasierte-lebensmittel", + "url": "https://fr.openfoodfacts.org/categorie/en:fruchtbasierte-lebensmittel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-a-la-creme", + "name": "Brioches-a-la-creme", + "id": "fr:brioches-a-la-creme", + "products": 2 + }, + { + "id": "fr:confit-de-foie-de-volaille", + "name": "Confit-de-foie-de-volaille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/confit-de-foie-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hachis-parmentier-surgele", + "products": 2, + "id": "fr:hachis-parmentier-surgele", + "name": "Hachis-parmentier-surgele" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-coppa", + "products": 2, + "name": "Sandwichs à la coppa", + "id": "en:coppa-sandwiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-sauce-beurre-citron", + "products": 2, + "id": "fr:colins-d-alaska-sauce-beurre-citron", + "name": "Colins-d-alaska-sauce-beurre-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/milk-shake", + "products": 2, + "id": "fr:milk-shake", + "name": "Milk-shake" + }, + { + "products": 2, + "name": "Moutardes-au-piment-d-espelette", + "id": "fr:moutardes-au-piment-d-espelette", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-piment-d-espelette" + }, + { + "id": "es:fruits-rouges", + "name": "es:Fruits-rouges", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-rouges" + }, + { + "id": "fr:cuisine-antillaise", + "name": "Cuisine-antillaise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cuisine-antillaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vins-blancs", + "id": "en:vins-blancs", + "name": "en:Vins-blancs", + "products": 2 + }, + { + "id": "en:wheat-breads", + "name": "Pains de blé", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-ble" + }, + { + "name": "Saumons-sauce-oseille", + "id": "fr:saumons-sauce-oseille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saumons-sauce-oseille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-au-sel", + "id": "fr:cornichons-au-sel", + "name": "Cornichons-au-sel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-aop", + "name": "Produits-aop", + "id": "fr:produits-aop", + "products": 2 + }, + { + "products": 2, + "name": "Boisson-a-l-aloe-vera", + "id": "fr:boisson-a-l-aloe-vera", + "url": "https://fr.openfoodfacts.org/categorie/boisson-a-l-aloe-vera" + }, + { + "name": "Biscuits-meringues", + "id": "fr:biscuits-meringues", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-meringues" + }, + { + "id": "fr:macaroni-d-alsace", + "name": "Macaroni-d-alsace", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/macaroni-d-alsace" + }, + { + "name": "es:Tuiles-salees", + "id": "es:tuiles-salees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:tuiles-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmental-aoc", + "id": "fr:emmental-aoc", + "name": "Emmental-aoc", + "products": 2 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1547447" + ], + "url": "https://fr.openfoodfacts.org/categorie/gros-plant-du-pays-nantais", + "name": "Gros plant du Pays nantais", + "id": "fr:gros-plant-du-pays-nantais", + "products": 2 + }, + { + "id": "fr:emmentals-suisses", + "name": "Emmentals suisses", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/emmentals-suisses" + }, + { + "name": "en:Eclairs-au-chocolat", + "id": "en:eclairs-au-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:eclairs-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fabrication-artisanale", + "name": "Fabrication-artisanale", + "id": "fr:fabrication-artisanale", + "products": 2 + }, + { + "products": 2, + "id": "fr:sojamilch", + "name": "Sojamilch", + "url": "https://fr.openfoodfacts.org/categorie/sojamilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potees-au-chou", + "products": 2, + "name": "Potees-au-chou", + "id": "fr:potees-au-chou" + }, + { + "products": 2, + "id": "fr:crumble-aux-pommes", + "name": "Crumble-aux-pommes", + "url": "https://fr.openfoodfacts.org/categorie/crumble-aux-pommes" + }, + { + "id": "fr:fischfilets", + "name": "Fischfilets", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fischfilets" + }, + { + "name": "Noix-de-jambon", + "id": "fr:noix-de-jambon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/noix-de-jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-aux-oeufs", + "products": 2, + "id": "fr:madeleines-aux-oeufs", + "name": "Madeleines-aux-oeufs" + }, + { + "name": "Ciboulette lyophilisée", + "id": "en:lyophilized-chives", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-lyophilisee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tamarins", + "id": "fr:tamarins", + "name": "Tamarins", + "products": 2 + }, + { + "products": 2, + "id": "fr:pains-d-epices-au-miel", + "name": "Pains-d-epices-au-miel", + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epices-au-miel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-mixes", + "products": 2, + "name": "Fruits-mixes", + "id": "fr:fruits-mixes" + }, + { + "name": "Salades-de-poulet", + "id": "fr:salades-de-poulet", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-poulet" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2973323" + ], + "url": "https://fr.openfoodfacts.org/categorie/cornas", + "products": 2, + "id": "fr:cornas", + "name": "Cornas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-de-poisson", + "products": 2, + "id": "fr:sauce-de-poisson", + "name": "Sauce-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-d-agave", + "name": "en:Sirops-d-agave", + "id": "en:sirops-d-agave", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins", + "id": "de:vins", + "name": "de:Vins", + "products": 2 + }, + { + "products": 2, + "id": "fr:sauce-d-huitre", + "name": "Sauce-d-huitre", + "url": "https://fr.openfoodfacts.org/categorie/sauce-d-huitre" + }, + { + "id": "fr:petit-pont-l-eveque", + "name": "Petit-pont-l-eveque", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/petit-pont-l-eveque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-aux-oeufs", + "id": "fr:penne-aux-oeufs", + "name": "Penne-aux-oeufs", + "products": 2 + }, + { + "name": "Melanges-de-fruits-tropicaux", + "id": "fr:melanges-de-fruits-tropicaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-tropicaux" + }, + { + "id": "fr:biscotes", + "name": "Biscotes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscotes" + }, + { + "products": 2, + "name": "Fruits-de-mer-surgeles", + "id": "fr:fruits-de-mer-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/fruits-de-mer-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations", + "name": "Preparations", + "id": "fr:preparations", + "products": 2 + }, + { + "products": 2, + "name": "es:Chocolats-en-poudre", + "id": "es:chocolats-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/es:chocolats-en-poudre" + }, + { + "name": "Sprats-fumes", + "id": "fr:sprats-fumes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sprats-fumes" + }, + { + "name": "Rigotte de Condrieu", + "id": "fr:rigotte-de-condrieu", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/rigotte-de-condrieu" + }, + { + "products": 2, + "name": "Sauces-pommes-frites", + "id": "fr:sauces-pommes-frites", + "url": "https://fr.openfoodfacts.org/categorie/sauces-pommes-frites" + }, + { + "products": 2, + "id": "fr:chips-de-betteraves", + "name": "Chips-de-betteraves", + "url": "https://fr.openfoodfacts.org/categorie/chips-de-betteraves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bruschetta", + "products": 2, + "name": "Bruschetta", + "id": "fr:bruschetta" + }, + { + "products": 2, + "name": "Huiles de soja", + "id": "en:soybean-oils", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-soja", + "sameAs": [ + "https://www.wikidata.org/wiki/Q926892" + ] + }, + { + "products": 2, + "id": "es:fraises", + "name": "es:Fraises", + "url": "https://fr.openfoodfacts.org/categorie/es:fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:boissons-gazeuses", + "products": 2, + "name": "da:Boissons-gazeuses", + "id": "da:boissons-gazeuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spirelli", + "name": "Spirelli", + "id": "fr:spirelli", + "products": 2 + }, + { + "id": "fr:pinot-noir", + "name": "Pinot-noir", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pinot-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-rouges", + "name": "Bieres-rouges", + "id": "fr:bieres-rouges", + "products": 2 + }, + { + "id": "fr:saucisses-a-griller", + "name": "Saucisses-a-griller", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-a-griller" + }, + { + "products": 2, + "name": "Huiles de chanvre", + "id": "en:hemp-oils", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-chanvre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1575477" + ] + }, + { + "name": "Glaces-au-marron", + "id": "fr:glaces-au-marron", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-marron" + }, + { + "id": "fr:mesclun", + "name": "Mesclun", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mesclun" + }, + { + "id": "en:semoules-de-ble", + "name": "en:Semoules-de-ble", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:semoules-de-ble" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q16642513" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-carthame", + "products": 2, + "id": "en:safflower-oils", + "name": "Huiles de carthame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alphabets-aromatises-et-colores", + "id": "fr:alphabets-aromatises-et-colores", + "name": "Alphabets-aromatises-et-colores", + "products": 2 + }, + { + "name": "Plat-a-base-de-riz", + "id": "fr:plat-a-base-de-riz", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plat-a-base-de-riz" + }, + { + "products": 2, + "name": "Mojito-sans-alcool", + "id": "fr:mojito-sans-alcool", + "url": "https://fr.openfoodfacts.org/categorie/mojito-sans-alcool" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-lunel", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1954038" + ], + "products": 2, + "name": "Muscat de Lunel", + "id": "fr:muscat-de-lunel" + }, + { + "name": "Semillas", + "id": "fr:semillas", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/semillas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fleurette", + "products": 2, + "name": "Cremes-fleurette", + "id": "fr:cremes-fleurette" + }, + { + "products": 2, + "id": "fr:terrines-de-lievre", + "name": "Terrines-de-lievre", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-lievre" + }, + { + "name": "Riz-basmati-bio", + "id": "fr:riz-basmati-bio", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati-bio" + }, + { + "id": "fr:lama", + "name": "Lama", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/lama" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales-aromatisees", + "products": 2, + "name": "Eaux-minerales-aromatisees", + "id": "fr:eaux-minerales-aromatisees" + }, + { + "products": 2, + "name": "en:Vins-italiens", + "id": "en:vins-italiens", + "url": "https://fr.openfoodfacts.org/categorie/en:vins-italiens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:%D0%B7%D0%B5%D1%80%D0%BD%D0%BE%D0%B2%D1%8B%D0%B5-%D0%B8-%D0%BA%D0%B0%D1%80%D1%82%D0%BE%D1%84%D0%B5%D0%BB%D1%8C", + "name": "en:Зерновые-и-картофель", + "id": "en:зерновые-и-картофель", + "products": 2 + }, + { + "products": 2, + "id": "en:viandes-fraiches", + "name": "en:Viandes-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/en:viandes-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-de-porc", + "id": "fr:viandes-fraiches-de-porc", + "name": "Viandes-fraiches-de-porc", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-dans-les-annees-2000", + "products": 2, + "name": "Produits-vendus-dans-les-annees-2000", + "id": "fr:produits-vendus-dans-les-annees-2000" + }, + { + "name": "en:Chocolats-noirs-aux-noisettes", + "id": "en:chocolats-noirs-aux-noisettes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anneaux-de-calamars", + "products": 2, + "id": "fr:anneaux-de-calamars", + "name": "Anneaux-de-calamars" + }, + { + "products": 2, + "id": "fr:cafe-lyophilise", + "name": "Cafe-lyophilise", + "url": "https://fr.openfoodfacts.org/categorie/cafe-lyophilise" + }, + { + "products": 2, + "name": "Saucisses-aux-haricots-blancs", + "id": "fr:saucisses-aux-haricots-blancs", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-haricots-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-sans-gluten", + "id": "fr:cereales-sans-gluten", + "name": "Cereales-sans-gluten", + "products": 2 + }, + { + "id": "fr:pizzas-calzone", + "name": "Pizzas-calzone", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-calzone" + }, + { + "name": "Torsettes-au-ble-dur", + "id": "fr:torsettes-au-ble-dur", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/torsettes-au-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-fumees", + "name": "Viandes-fumees", + "id": "fr:viandes-fumees", + "products": 2 + }, + { + "id": "de:oeufs-frais", + "name": "de:Oeufs-frais", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs-frais" + }, + { + "products": 2, + "id": "fr:farines-de-dattes", + "name": "Farines-de-dattes", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-dattes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/samoussas-aux-legumes", + "id": "en:vegetable-samosas", + "name": "Samoussas aux légumes", + "products": 2 + }, + { + "products": 2, + "name": "Oeufs-gros", + "id": "fr:oeufs-gros", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-gros" + }, + { + "id": "de:erdnussflips", + "name": "de:Erdnussflips", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:erdnussflips" + }, + { + "products": 2, + "name": "Tisanes-de-plantes-melanges", + "id": "fr:tisanes-de-plantes-melanges", + "url": "https://fr.openfoodfacts.org/categorie/tisanes-de-plantes-melanges" + }, + { + "products": 2, + "id": "fr:polentas", + "name": "Polentas", + "url": "https://fr.openfoodfacts.org/categorie/polentas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-sureau", + "id": "fr:sirops-de-sureau", + "name": "Sirops-de-sureau", + "products": 2 + }, + { + "name": "de:Krauterbonbons", + "id": "de:krauterbonbons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:krauterbonbons" + }, + { + "products": 2, + "name": "Fromages fumés", + "id": "en:smoked-cheeses", + "url": "https://fr.openfoodfacts.org/categorie/fromages-fumes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2632885" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-surgelees", + "products": 2, + "id": "fr:moules-surgelees", + "name": "Moules-surgelees" + }, + { + "products": 2, + "id": "fr:prunes-au-sirop", + "name": "Prunes-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/prunes-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-vanille", + "name": "Yaourts-a-la-grecque-vanille", + "id": "fr:yaourts-a-la-grecque-vanille", + "products": 2 + }, + { + "id": "fr:cheverny", + "name": "Cheverny", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q13420375" + ], + "url": "https://fr.openfoodfacts.org/categorie/cheverny" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-a-la-violette", + "products": 2, + "name": "Bonbons-a-la-violette", + "id": "fr:bonbons-a-la-violette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-35", + "products": 2, + "id": "fr:chocolats-noirs-35", + "name": "Chocolats-noirs-35" + }, + { + "id": "fr:pates-seches-completes-au-ble-khorasan", + "name": "Pates-seches-completes-au-ble-khorasan", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pates-seches-completes-au-ble-khorasan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-la-banane", + "products": 2, + "name": "Barres de céréales à la banane", + "id": "en:banana-cereal-bars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-aux-oeufs-sur-lit-de-caramel", + "name": "Cremes-aux-oeufs-sur-lit-de-caramel", + "id": "fr:cremes-aux-oeufs-sur-lit-de-caramel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-riz", + "products": 2, + "id": "fr:plats-a-base-de-riz", + "name": "Plats-a-base-de-riz" + }, + { + "id": "fr:mineralwasser", + "name": "Mineralwasser", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mineralwasser" + }, + { + "name": "Repas-minceur", + "id": "fr:repas-minceur", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/repas-minceur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mirabelles", + "id": "fr:compotes-pommes-mirabelles", + "name": "Compotes-pommes-mirabelles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/popcorn-sucre", + "name": "Popcorn-sucre", + "id": "fr:popcorn-sucre", + "products": 2 + }, + { + "name": "Noix-seches", + "id": "fr:noix-seches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/noix-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fagottini-au-jambon", + "id": "fr:fagottini-au-jambon", + "name": "Fagottini-au-jambon", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-a-la-tomate", + "name": "Filets-de-sardines-a-la-tomate", + "id": "fr:filets-de-sardines-a-la-tomate", + "products": 2 + }, + { + "products": 2, + "name": "Chocolats-blancs-au-caramel", + "id": "fr:chocolats-blancs-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-au-caramel", + "id": "fr:cremes-au-caramel", + "name": "Cremes-au-caramel", + "products": 2 + }, + { + "products": 2, + "name": "Puligny-Montrachet", + "id": "fr:puligny-montrachet", + "url": "https://fr.openfoodfacts.org/categorie/puligny-montrachet", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3410751" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macedoine-de-legumes", + "name": "Macedoine-de-legumes", + "id": "fr:macedoine-de-legumes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noisettes-grillees-emondees", + "products": 2, + "name": "Noisettes grillées émondées", + "id": "en:blanched-roasted-hazelnuts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-pain", + "products": 2, + "name": "Preparations-pour-pain", + "id": "fr:preparations-pour-pain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-japonais", + "name": "Gateaux-japonais", + "id": "fr:gateaux-japonais", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/framboises-au-sirop", + "products": 2, + "id": "fr:framboises-au-sirop", + "name": "Framboises-au-sirop" + }, + { + "name": "Prosciutto", + "id": "fr:prosciutto", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/prosciutto" + }, + { + "products": 2, + "id": "en:chocolate-dinosaurs", + "name": "Dinosaures en chocolat", + "url": "https://fr.openfoodfacts.org/categorie/dinosaures-en-chocolat" + }, + { + "products": 2, + "name": "Toasts-brioches-aux-raisins", + "id": "fr:toasts-brioches-aux-raisins", + "url": "https://fr.openfoodfacts.org/categorie/toasts-brioches-aux-raisins" + }, + { + "products": 2, + "id": "fr:haricots-blancs-secs", + "name": "Haricots-blancs-secs", + "url": "https://fr.openfoodfacts.org/categorie/haricots-blancs-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-boire", + "name": "en:Yaourts-a-boire", + "id": "en:yaourts-a-boire", + "products": 2 + }, + { + "name": "Groseilles-blanches", + "id": "fr:groseilles-blanches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/groseilles-blanches" + }, + { + "name": "en:Yaourts-a-la-myrtille", + "id": "en:yaourts-a-la-myrtille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-myrtille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-au-bloc-de-foie-gras-de-canard", + "name": "Tourtes-au-bloc-de-foie-gras-de-canard", + "id": "fr:tourtes-au-bloc-de-foie-gras-de-canard", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-d-orange-100-pur-jus", + "name": "es:Jus-d-orange-100-pur-jus", + "id": "es:jus-d-orange-100-pur-jus", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-chocolat-blanc", + "name": "Cremes-dessert-chocolat-blanc", + "id": "fr:cremes-dessert-chocolat-blanc", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carnes-vegetales", + "products": 2, + "id": "fr:carnes-vegetales", + "name": "Carnes-vegetales" + }, + { + "products": 2, + "id": "fr:cachirs", + "name": "Cachirs", + "url": "https://fr.openfoodfacts.org/categorie/cachirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-au-chocolat-noir", + "name": "de:Biscuits-au-chocolat-noir", + "id": "de:biscuits-au-chocolat-noir", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-thes", + "products": 2, + "id": "fr:assortiments-de-thes", + "name": "Assortiments-de-thes" + }, + { + "id": "pt:petit-dejeuners", + "name": "pt:Petit-dejeuners", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:petit-dejeuners" + }, + { + "products": 2, + "name": "en:Sauces-barbecue", + "id": "en:sauces-barbecue", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-barbecue" + }, + { + "name": "Moulages-en-chocolat-noir", + "id": "fr:moulages-en-chocolat-noir", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/moulages-en-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chou", + "name": "Chou", + "id": "fr:chou", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-frais", + "products": 2, + "name": "Pain-frais", + "id": "fr:pain-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-en-grains", + "id": "fr:cafe-en-grains", + "name": "Cafe-en-grains", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:soja", + "products": 2, + "name": "de:Soja", + "id": "de:soja" + }, + { + "id": "fr:flocons-de-levure", + "name": "Flocons-de-levure", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-levure" + }, + { + "id": "fr:succes-aux-noix", + "name": "Succes-aux-noix", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/succes-aux-noix" + }, + { + "products": 2, + "id": "en:sodas-light", + "name": "en:Sodas-light", + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-light" + }, + { + "products": 2, + "name": "Lamb-rogan-josh", + "id": "fr:lamb-rogan-josh", + "url": "https://fr.openfoodfacts.org/categorie/lamb-rogan-josh" + }, + { + "name": "en:Yaourts-aux-fruits-avec-morceaux", + "id": "en:yaourts-aux-fruits-avec-morceaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-aux-fruits-avec-morceaux" + }, + { + "id": "fr:sauces-algerienne", + "name": "Sauces-algerienne", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sauces-algerienne" + }, + { + "products": 2, + "id": "fr:brochettes-de-poulet", + "name": "Brochettes-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chorizos-portugais", + "products": 2, + "id": "fr:chorizos-portugais", + "name": "Chorizos-portugais" + }, + { + "id": "fr:des-de-volaille", + "name": "Des-de-volaille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/des-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-instantanee", + "products": 2, + "name": "Preparation-instantanee", + "id": "fr:preparation-instantanee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistachos-tostados", + "products": 2, + "id": "fr:pistachos-tostados", + "name": "Pistachos-tostados" + }, + { + "id": "fr:compotes-pommes-kiwi", + "name": "Compotes pommes kiwi", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-kiwi" + }, + { + "products": 2, + "name": "Sauvignons", + "id": "fr:sauvignons", + "url": "https://fr.openfoodfacts.org/categorie/sauvignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-wok", + "id": "fr:sauces-wok", + "name": "Sauces-wok", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amuse-bouches", + "name": "Amuse-bouches", + "id": "fr:amuse-bouches", + "products": 2 + }, + { + "products": 2, + "name": "Cuisine-indienne", + "id": "fr:cuisine-indienne", + "url": "https://fr.openfoodfacts.org/categorie/cuisine-indienne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-piccalilli", + "products": 2, + "name": "Sauces piccalilli", + "id": "fr:sauces-piccalilli" + }, + { + "products": 2, + "id": "fr:yaourts-sur-lit-de-mures", + "name": "Yaourts-sur-lit-de-mures", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-mures" + }, + { + "id": "de:nouilles-instantanees", + "name": "de:Nouilles-instantanees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:nouilles-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-d-orange", + "products": 2, + "name": "en:Jus-d-orange", + "id": "en:jus-d-orange" + }, + { + "name": "Cabecou", + "id": "fr:cabecou", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cabecou" + }, + { + "products": 2, + "id": "fr:petit-dejeune", + "name": "Petit-dejeune", + "url": "https://fr.openfoodfacts.org/categorie/petit-dejeune" + }, + { + "products": 2, + "id": "en:soupes-en-conserve", + "name": "en:Soupes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:eaux-minerales", + "id": "es:eaux-minerales", + "name": "es:Eaux-minerales", + "products": 2 + }, + { + "products": 2, + "id": "en:chocolats-noirs-aux-amandes", + "name": "en:Chocolats-noirs-aux-amandes", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marlins-fumes", + "products": 2, + "name": "Marlins fumés", + "id": "fr:marlins-fumes" + }, + { + "products": 2, + "id": "fr:gateaux-a-l-abricot", + "name": "Gateaux-a-l-abricot", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-l-abricot" + }, + { + "products": 2, + "name": "es:Nectars-de-fruits", + "id": "es:nectars-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/es:nectars-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-carotte-a-base-de-concentre", + "products": 2, + "name": "Jus de carotte à base de concentré", + "id": "en:concentrated-carrot-juices" + }, + { + "products": 2, + "name": "en:Soupes-deshydratees", + "id": "en:soupes-deshydratees", + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-deshydratees" + }, + { + "products": 2, + "id": "fr:fronton", + "name": "Fronton", + "url": "https://fr.openfoodfacts.org/categorie/fronton" + }, + { + "id": "de:sodas-au-cola", + "name": "de:Sodas-au-cola", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:sodas-au-cola" + }, + { + "products": 2, + "id": "en:kruidentheeen", + "name": "en:Kruidentheeen", + "url": "https://fr.openfoodfacts.org/categorie/en:kruidentheeen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-de-cacahuetes", + "products": 2, + "id": "en:barres-de-cacahuetes", + "name": "en:Barres-de-cacahuetes" + }, + { + "products": 2, + "id": "de:laits-homogeneises", + "name": "de:Laits-homogeneises", + "url": "https://fr.openfoodfacts.org/categorie/de:laits-homogeneises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glutamate-monosodique", + "name": "Glutamate-monosodique", + "id": "fr:glutamate-monosodique", + "products": 2 + }, + { + "id": "en:squeezed-grape-juices", + "name": "Squeezed grape juices", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/squeezed-grape-juices" + }, + { + "name": "Jus-d-orange-sans-pulpe", + "id": "fr:jus-d-orange-sans-pulpe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-sans-pulpe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-a-l-echalote", + "id": "fr:sauce-a-l-echalote", + "name": "Sauce-a-l-echalote", + "products": 2 + }, + { + "products": 2, + "id": "fr:taboules-a-la-menthe", + "name": "Taboules-a-la-menthe", + "url": "https://fr.openfoodfacts.org/categorie/taboules-a-la-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:lambrusco", + "name": "it:Lambrusco", + "id": "it:lambrusco", + "products": 2 + }, + { + "products": 2, + "name": "de:Snacks", + "id": "de:snacks", + "url": "https://fr.openfoodfacts.org/categorie/de:snacks" + }, + { + "products": 2, + "id": "fr:carbonnades", + "name": "Carbonnades", + "url": "https://fr.openfoodfacts.org/categorie/carbonnades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:lapins-en-chocolat", + "name": "de:Lapins-en-chocolat", + "id": "de:lapins-en-chocolat", + "products": 2 + }, + { + "name": "Pain-complet-bio", + "id": "fr:pain-complet-bio", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pain-complet-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-bio", + "name": "Cidres-bio", + "id": "fr:cidres-bio", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-fourrees-aux-fruits", + "id": "fr:barres-chocolatees-fourrees-aux-fruits", + "name": "Barres chocolatées fourrées aux fruits", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-chaudes-instantanees", + "id": "es:boissons-chaudes-instantanees", + "name": "es:Boissons-chaudes-instantanees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-jus-de-fruits", + "name": "Melange-de-jus-de-fruits", + "id": "fr:melange-de-jus-de-fruits", + "products": 2 + }, + { + "products": 2, + "name": "en:Honey-roast-ham", + "id": "en:honey-roast-ham", + "url": "https://fr.openfoodfacts.org/categorie/en:honey-roast-ham" + }, + { + "products": 2, + "name": "Saucissons-de-dinde", + "id": "fr:saucissons-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:pizzas-surgelees", + "products": 2, + "name": "sv:Pizzas-surgelees", + "id": "sv:pizzas-surgelees" + }, + { + "products": 2, + "name": "Preparation-en-poudre-pour-entremets", + "id": "fr:preparation-en-poudre-pour-entremets", + "url": "https://fr.openfoodfacts.org/categorie/preparation-en-poudre-pour-entremets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caramels-au-beurre", + "id": "fr:caramels-au-beurre", + "name": "Caramels-au-beurre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-instantanees-au-poulet", + "name": "Pâtes instantanées au poulet", + "id": "en:instant-pasta-with-chicken", + "products": 2 + }, + { + "id": "ro:wines-from-romania", + "name": "ro:Wines-from-romania", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ro:wines-from-romania" + }, + { + "id": "fr:pastille-pour-l-haleine", + "name": "Pastille-pour-l-haleine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pastille-pour-l-haleine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-en-poudre", + "products": 2, + "id": "fr:fruits-en-poudre", + "name": "Fruits-en-poudre" + }, + { + "products": 2, + "id": "fr:chocolats-au-lait-au-sesame", + "name": "Chocolats-au-lait-au-sesame", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-sesame" + }, + { + "products": 2, + "name": "en:Tisanes-de-plantes-melangees", + "id": "en:tisanes-de-plantes-melangees", + "url": "https://fr.openfoodfacts.org/categorie/en:tisanes-de-plantes-melangees" + }, + { + "name": "pt:Produits-de-la-mer", + "id": "pt:produits-de-la-mer", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:produits-de-la-mer" + }, + { + "name": "Aubergines surgelées", + "id": "en:frozen-aubergines", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/aubergines-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blancs-d-oeufs-liquides", + "products": 2, + "name": "Blancs-d-oeufs-liquides", + "id": "fr:blancs-d-oeufs-liquides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/havarti", + "products": 2, + "id": "fr:havarti", + "name": "Havarti" + }, + { + "id": "fr:plats-a-base-de-crabe", + "name": "Plats-a-base-de-crabe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-crabe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:boissons", + "id": "da:boissons", + "name": "da:Boissons", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-chablis", + "products": 2, + "id": "fr:moutardes-au-chablis", + "name": "Moutardes-au-chablis" + }, + { + "products": 2, + "name": "Fromage-frais-de-chevre", + "id": "fr:fromage-frais-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-de-chevre" + }, + { + "id": "fr:preparations-pour-gateaux-au-chocolat", + "name": "Preparations-pour-gateaux-au-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-gateaux-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-confites", + "products": 2, + "id": "fr:tomates-confites", + "name": "Tomates-confites" + }, + { + "name": "Croquets-aux-figues", + "id": "fr:croquets-aux-figues", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/croquets-aux-figues" + }, + { + "name": "pt:Chocolats-noirs", + "id": "pt:chocolats-noirs", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:chocolats-noirs" + }, + { + "id": "de:chips-au-paprika", + "name": "de:Chips-au-paprika", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:chips-au-paprika" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:beurres", + "name": "de:Beurres", + "id": "de:beurres", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:matieres-grasses-vegetales", + "products": 2, + "name": "nl:Matieres-grasses-vegetales", + "id": "nl:matieres-grasses-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-fromages", + "products": 2, + "name": "Assortiments-de-fromages", + "id": "fr:assortiments-de-fromages" + }, + { + "products": 2, + "id": "fr:bergamotes", + "name": "Bergamotes", + "url": "https://fr.openfoodfacts.org/categorie/bergamotes" + }, + { + "id": "fr:biscuit-aux-cereales", + "name": "Biscuit-aux-cereales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuit-aux-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crabe-royal", + "id": "fr:crabe-royal", + "name": "Crabe-royal", + "products": 2 + }, + { + "products": 2, + "name": "Sirops-de-sucre", + "id": "fr:sirops-de-sucre", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confit-de-legumes", + "products": 2, + "id": "fr:confit-de-legumes", + "name": "Confit-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-la-nougatine", + "products": 2, + "id": "fr:chocolats-blancs-a-la-nougatine", + "name": "Chocolats-blancs-a-la-nougatine" + }, + { + "products": 2, + "name": "Farines-d-epeautre-t80", + "id": "fr:farines-d-epeautre-t80", + "url": "https://fr.openfoodfacts.org/categorie/farines-d-epeautre-t80" + }, + { + "name": "Cones-vanille", + "id": "fr:cones-vanille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cones-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-noix", + "id": "fr:melange-de-noix", + "name": "Melange-de-noix", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/a-tartiner", + "name": "A-tartiner", + "id": "fr:a-tartiner", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tofu-aux-olives", + "products": 2, + "id": "fr:tofu-aux-olives", + "name": "Tofu-aux-olives" + }, + { + "products": 2, + "id": "fr:pains-aux-noix", + "name": "Pains-aux-noix", + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-noix" + }, + { + "id": "fr:yaourts-brasses-framboise", + "name": "Yaourts-brasses-framboise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-framboise" + }, + { + "name": "Pastrami", + "id": "fr:pastrami", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pastrami" + }, + { + "products": 2, + "id": "en:getreide-und-getreideprodukte", + "name": "en:Getreide-und-getreideprodukte", + "url": "https://fr.openfoodfacts.org/categorie/en:getreide-und-getreideprodukte" + }, + { + "products": 2, + "name": "Saumon-surgele", + "id": "fr:saumon-surgele", + "url": "https://fr.openfoodfacts.org/categorie/saumon-surgele" + }, + { + "products": 2, + "id": "fr:cornichons-fins", + "name": "Cornichons-fins", + "url": "https://fr.openfoodfacts.org/categorie/cornichons-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alimentos-de-origen-vegetal-deshidratados", + "id": "fr:alimentos-de-origen-vegetal-deshidratados", + "name": "Alimentos-de-origen-vegetal-deshidratados", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-lactes", + "id": "en:desserts-lactes", + "name": "en:Desserts-lactes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-sucrees", + "name": "Tourtes-sucrees", + "id": "fr:tourtes-sucrees", + "products": 2 + }, + { + "id": "fr:beurres-de-bresse", + "name": "Beurres-de-bresse", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-bresse" + }, + { + "products": 2, + "id": "fr:beurres-a-teneur-reduite-en-matieres-grasses", + "name": "Beurres-a-teneur-reduite-en-matieres-grasses", + "url": "https://fr.openfoodfacts.org/categorie/beurres-a-teneur-reduite-en-matieres-grasses" + }, + { + "products": 2, + "id": "fr:chocolats-noirs-fourres-a-la-menthe", + "name": "Chocolats-noirs-fourres-a-la-menthe", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-a-la-menthe" + }, + { + "products": 2, + "id": "fr:bieres-alsaciennes", + "name": "Bieres-alsaciennes", + "url": "https://fr.openfoodfacts.org/categorie/bieres-alsaciennes" + }, + { + "name": "en:Thons-en-conserve", + "id": "en:thons-en-conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:thons-en-conserve" + }, + { + "products": 2, + "id": "fr:gaches-tranchees", + "name": "Gaches-tranchees", + "url": "https://fr.openfoodfacts.org/categorie/gaches-tranchees" + }, + { + "products": 2, + "id": "fr:confit", + "name": "Confit", + "url": "https://fr.openfoodfacts.org/categorie/confit" + }, + { + "products": 2, + "name": "Cake-aux-legumes", + "id": "fr:cake-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/cake-aux-legumes" + }, + { + "products": 2, + "id": "fr:nonettes", + "name": "Nonettes", + "url": "https://fr.openfoodfacts.org/categorie/nonettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-a-pate-pressee-cuite", + "id": "en:fromages-a-pate-pressee-cuite", + "name": "en:Fromages-a-pate-pressee-cuite", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-la-carbonara", + "id": "fr:pates-a-la-carbonara", + "name": "Pates-a-la-carbonara", + "products": 2 + }, + { + "products": 2, + "id": "fr:plats-prepares-a-rechauffer-a-la-plancha", + "name": "Plats-prepares-a-rechauffer-a-la-plancha", + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-a-la-plancha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-thon-a-l-huile-de-tournesol", + "products": 2, + "name": "Miettes-de-thon-a-l-huile-de-tournesol", + "id": "fr:miettes-de-thon-a-l-huile-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-de-fruits", + "products": 2, + "id": "fr:preparation-de-fruits", + "name": "Preparation-de-fruits" + }, + { + "products": 2, + "id": "fr:riz-incollable", + "name": "Riz-incollable", + "url": "https://fr.openfoodfacts.org/categorie/riz-incollable" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-secs-golden", + "name": "Raisins-secs-golden", + "id": "fr:raisins-secs-golden", + "products": 2 + }, + { + "id": "fr:alimentos-de-origen-vegetal-frescos", + "name": "Alimentos-de-origen-vegetal-frescos", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/alimentos-de-origen-vegetal-frescos" + }, + { + "products": 2, + "name": "Crumbles-aux-pommes", + "id": "fr:crumbles-aux-pommes", + "url": "https://fr.openfoodfacts.org/categorie/crumbles-aux-pommes" + }, + { + "products": 2, + "name": "Fromages-blancs-nature", + "id": "fr:fromages-blancs-nature", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-canard", + "id": "fr:cuisses-de-canard", + "name": "Cuisses-de-canard", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/minestrones", + "id": "fr:minestrones", + "name": "Minestrones", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-de-bretagne", + "products": 2, + "id": "fr:cidres-de-bretagne", + "name": "Cidres-de-bretagne" + }, + { + "name": "Syrah", + "id": "fr:syrah", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/syrah" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-herbes", + "name": "Saucisses-aux-herbes", + "id": "fr:saucisses-aux-herbes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-cuisinees-surgelees", + "products": 2, + "id": "fr:pates-cuisinees-surgelees", + "name": "Pates-cuisinees-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/son", + "id": "fr:son", + "name": "Son", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-canneberge", + "id": "fr:boissons-a-la-canneberge", + "name": "Boissons-a-la-canneberge", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilli-complets", + "id": "fr:fusilli-complets", + "name": "Fusilli-complets", + "products": 2 + }, + { + "name": "Mineraux", + "id": "fr:mineraux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mineraux" + }, + { + "name": "Côtes du Tarn", + "id": "fr:cotes-du-tarn", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3010726" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-tarn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-tomates", + "name": "Confitures de tomates", + "id": "en:tomate-jams", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-liegeoises", + "products": 2, + "id": "fr:mousses-liegeoises", + "name": "Mousses-liegeoises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-solubles", + "name": "en:Cafes-solubles", + "id": "en:cafes-solubles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-noir", + "products": 2, + "name": "Quinoa-noir", + "id": "fr:quinoa-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates-a-tartiner-aux-noisettes", + "id": "it:pates-a-tartiner-aux-noisettes", + "name": "it:Pates-a-tartiner-aux-noisettes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plat-vegetarien", + "name": "Plat-vegetarien", + "id": "fr:plat-vegetarien", + "products": 2 + }, + { + "id": "en:sparkling-mineral-water", + "name": "en:Sparkling-mineral-water", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:sparkling-mineral-water" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cacahuetes", + "products": 2, + "id": "de:cacahuetes", + "name": "de:Cacahuetes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-natures", + "products": 2, + "name": "Flans-natures", + "id": "fr:flans-natures" + }, + { + "name": "en:Aliments-a-base-de-plantes-surgeles", + "id": "en:aliments-a-base-de-plantes-surgeles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-a-base-de-plantes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sauces-pour-pates", + "id": "es:sauces-pour-pates", + "name": "es:Sauces-pour-pates", + "products": 2 + }, + { + "id": "fr:penaeus-vannamei", + "name": "Penaeus-vannamei", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/penaeus-vannamei" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:viandes", + "products": 2, + "name": "ro:Viandes", + "id": "ro:viandes" + }, + { + "products": 2, + "id": "fr:sainte-croix-du-mont", + "name": "Sainte-croix-du-mont", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1257375" + ], + "url": "https://fr.openfoodfacts.org/categorie/sainte-croix-du-mont" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graves-de-vayres", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1456194" + ], + "products": 2, + "name": "Graves-de-vayres", + "id": "fr:graves-de-vayres" + }, + { + "products": 2, + "name": "Lentillons", + "id": "fr:lentillons", + "url": "https://fr.openfoodfacts.org/categorie/lentillons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-vigne", + "products": 2, + "name": "Feuilles-de-vigne", + "id": "fr:feuilles-de-vigne" + }, + { + "products": 2, + "name": "Canards aux cèpes", + "id": "en:duck-with-porcini-mushrooms", + "url": "https://fr.openfoodfacts.org/categorie/canards-aux-cepes" + }, + { + "products": 2, + "id": "es:cacao-en-polvo", + "name": "es:Cacao-en-polvo", + "url": "https://fr.openfoodfacts.org/categorie/es:cacao-en-polvo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-salees", + "products": 2, + "name": "Boissons-salees", + "id": "fr:boissons-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macaroni-prepares", + "products": 2, + "id": "fr:macaroni-prepares", + "name": "Macaroni-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-de-la-ruche", + "id": "es:produits-de-la-ruche", + "name": "es:Produits-de-la-ruche", + "products": 2 + }, + { + "id": "fr:betteraves-rouges-en-cubes", + "name": "Betteraves-rouges-en-cubes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/betteraves-rouges-en-cubes" + }, + { + "products": 2, + "id": "en:ratatouilles", + "name": "en:Ratatouilles", + "url": "https://fr.openfoodfacts.org/categorie/en:ratatouilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/micro-ondes", + "products": 2, + "name": "Micro-ondes", + "id": "fr:micro-ondes" + }, + { + "id": "en:extra-old-mimolettes", + "name": "Mimolettes extra vieilles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mimolettes-extra-vieilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-vanille", + "id": "fr:biscuits-fourres-vanille", + "name": "Biscuits-fourres-vanille", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-frites", + "name": "Sauces-pour-frites", + "id": "fr:sauces-pour-frites", + "products": 2 + }, + { + "name": "Panures", + "id": "fr:panures", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/panures" + }, + { + "name": "pt:Pflanzliche-lebensmittel-und-getranke", + "id": "pt:pflanzliche-lebensmittel-und-getranke", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:pflanzliche-lebensmittel-und-getranke" + }, + { + "id": "fr:saucissons-secs-alleges-en-matieres-grasses", + "name": "Saucissons-secs-alleges-en-matieres-grasses", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-alleges-en-matieres-grasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/listrac-medoc", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1516318" + ], + "products": 2, + "name": "Listrac-Médoc", + "id": "fr:listrac-medoc" + }, + { + "products": 2, + "name": "Roti", + "id": "fr:roti", + "url": "https://fr.openfoodfacts.org/categorie/roti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-poulet", + "name": "Foies-de-poulet", + "id": "fr:foies-de-poulet", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nahrungserganzungsmittel", + "products": 2, + "name": "Nahrungserganzungsmittel", + "id": "fr:nahrungserganzungsmittel" + }, + { + "id": "nl:matieres-grasses", + "name": "nl:Matieres-grasses", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/nl:matieres-grasses" + }, + { + "id": "fr:cakes-au-chocolat", + "name": "Cakes-au-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cakes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruit-pur-jus", + "products": 2, + "id": "fr:jus-multifruit-pur-jus", + "name": "Jus-multifruit-pur-jus" + }, + { + "name": "Juliennes-de-legumes", + "id": "fr:juliennes-de-legumes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/juliennes-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rollot-de-picardie", + "name": "Rollot-de-picardie", + "id": "fr:rollot-de-picardie", + "products": 2 + }, + { + "name": "en:Brownies", + "id": "en:brownies", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:brownies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wines-from-chile", + "name": "Wines from Chile", + "id": "en:wines-from-chile", + "products": 2 + }, + { + "id": "fr:dessert-refrigere", + "name": "Dessert-refrigere", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/dessert-refrigere" + }, + { + "name": "Creme-crue", + "id": "fr:creme-crue", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/creme-crue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/koekjes", + "name": "Koekjes", + "id": "fr:koekjes", + "products": 2 + }, + { + "products": 2, + "id": "en:boissons-aux-legumes", + "name": "en:Boissons-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-aux-legumes" + }, + { + "products": 2, + "id": "en:confitures-de-prunes", + "name": "en:Confitures-de-prunes", + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-prunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-naturels", + "products": 2, + "name": "Vins-naturels", + "id": "fr:vins-naturels" + }, + { + "id": "fr:cafe-en-dosettes-compatible-dolce-gusto", + "name": "Cafe-en-dosettes-compatible-dolce-gusto", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cafe-en-dosettes-compatible-dolce-gusto" + }, + { + "id": "fr:bonbons-sans-sucres-ajoutes", + "name": "Bonbons-sans-sucres-ajoutes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-sans-sucres-ajoutes" + }, + { + "name": "Pizza-jambon-champignons", + "id": "fr:pizza-jambon-champignons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pizza-jambon-champignons" + }, + { + "id": "fr:miels-de-picardie", + "name": "Miels-de-picardie", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/miels-de-picardie" + }, + { + "name": "Spaghetti-a-la-bolognaise", + "id": "fr:spaghetti-a-la-bolognaise", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-a-la-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-noir", + "id": "fr:riz-noir", + "name": "Riz-noir", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:patisseries", + "name": "es:Patisseries", + "id": "es:patisseries", + "products": 2 + }, + { + "products": 2, + "name": "Salades-de-pates-au-poulet", + "id": "fr:salades-de-pates-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates-au-poulet" + }, + { + "products": 2, + "name": "de:Sirops", + "id": "de:sirops", + "url": "https://fr.openfoodfacts.org/categorie/de:sirops" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-blancs", + "name": "Spaghetti-blancs", + "id": "fr:spaghetti-blancs", + "products": 2 + }, + { + "id": "fr:jus-de-noix-de-coco", + "name": "Jus-de-noix-de-coco", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-noix-de-coco" + }, + { + "id": "fr:soupes-en-sachet", + "name": "Soupes-en-sachet", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/soupes-en-sachet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-au-cola-light", + "products": 2, + "name": "en:Sodas-au-cola-light", + "id": "en:sodas-au-cola-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin-100-pur-jus", + "products": 2, + "id": "fr:jus-de-raisin-100-pur-jus", + "name": "Jus-de-raisin-100-pur-jus" + }, + { + "id": "fr:huiles-de-coco-hydrogenees", + "name": "Huiles-de-coco-hydrogenees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-coco-hydrogenees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-midi-pyrenees", + "products": 2, + "id": "fr:miels-de-midi-pyrenees", + "name": "Miels-de-midi-pyrenees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-bananes-plantain", + "products": 2, + "name": "Chips-de-bananes-plantain", + "id": "fr:chips-de-bananes-plantain" + }, + { + "products": 2, + "name": "Gateaux-chinois", + "id": "fr:gateaux-chinois", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-chinois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-sales", + "id": "fr:muffins-sales", + "name": "Muffins-sales", + "products": 2 + }, + { + "id": "en:plant-based-ice-cream-cones", + "name": "Plant-based ice cream cones", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plant-based-ice-cream-cones" + }, + { + "name": "Veloutes-de-legumes-verts", + "id": "fr:veloutes-de-legumes-verts", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-legumes-verts" + }, + { + "products": 2, + "name": "Farines de manioc", + "id": "en:cassava-flour", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-manioc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panadillas", + "products": 2, + "name": "Panadillas", + "id": "fr:panadillas" + }, + { + "name": "Saucissons-de-jambon", + "id": "fr:saucissons-de-jambon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-jambon" + }, + { + "products": 2, + "id": "fr:bieres-danoises", + "name": "Bieres-danoises", + "url": "https://fr.openfoodfacts.org/categorie/bieres-danoises" + }, + { + "products": 2, + "name": "Salers", + "id": "fr:salers", + "url": "https://fr.openfoodfacts.org/categorie/salers" + }, + { + "name": "Côtes de Duras", + "id": "fr:cotes-de-duras", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-duras", + "sameAs": [ + "https://www.wikidata.org/wiki/Q464317" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produit-vegetarien", + "name": "Produit-vegetarien", + "id": "fr:produit-vegetarien", + "products": 2 + }, + { + "products": 2, + "name": "Sorbets-a-la-figue", + "id": "fr:sorbets-a-la-figue", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-figue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/magret-de-canard-fume", + "products": 2, + "id": "fr:magret-de-canard-fume", + "name": "Magret-de-canard-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cafes", + "products": 2, + "name": "de:Cafes", + "id": "de:cafes" + }, + { + "name": "Boissons-lactees-au-chocolat", + "id": "fr:boissons-lactees-au-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/boissons-lactees-au-chocolat" + }, + { + "products": 2, + "id": "fr:epinards-haches", + "name": "Epinards-haches", + "url": "https://fr.openfoodfacts.org/categorie/epinards-haches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauvignon", + "products": 2, + "name": "Sauvignon", + "id": "fr:sauvignon" + }, + { + "name": "Nougats-aux-amandes", + "id": "fr:nougats-aux-amandes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/nougats-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porter", + "name": "Porter", + "id": "fr:porter", + "products": 2 + }, + { + "products": 2, + "id": "fr:fromages-au-lait-microfiltre", + "name": "Fromages-au-lait-microfiltre", + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-lait-microfiltre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiment-de-biscuits", + "name": "Assortiment-de-biscuits", + "id": "fr:assortiment-de-biscuits", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-d-oie", + "products": 2, + "id": "fr:terrines-d-oie", + "name": "Terrines-d-oie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:leches-de-coco", + "products": 2, + "id": "en:leches-de-coco", + "name": "en:Leches-de-coco" + }, + { + "id": "fr:pizzas-vegetales", + "name": "Pizzas-vegetales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-vegetales" + }, + { + "id": "fr:salamis-danois", + "name": "Salamis-danois", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/salamis-danois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/knacks-d-alsace", + "name": "Knacks-d-alsace", + "id": "fr:knacks-d-alsace", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-de-legumes", + "name": "Poelees-de-legumes", + "id": "fr:poelees-de-legumes", + "products": 2 + }, + { + "name": "Galettes-au-tofu", + "id": "fr:galettes-au-tofu", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-tofu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kassler", + "products": 2, + "id": "fr:kassler", + "name": "Kassler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taglioni", + "id": "fr:taglioni", + "name": "Taglioni", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-lieu-noir", + "id": "fr:filets-de-lieu-noir", + "name": "Filets-de-lieu-noir", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tommette-des-alpes", + "name": "Tommette-des-alpes", + "id": "fr:tommette-des-alpes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/touraine", + "name": "Touraine", + "id": "fr:touraine", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/suiker", + "name": "Suiker", + "id": "fr:suiker", + "products": 2 + }, + { + "id": "en:riz", + "name": "en:Riz", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:riz" + }, + { + "products": 2, + "id": "fr:macon", + "name": "Mâcon", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3332007" + ], + "url": "https://fr.openfoodfacts.org/categorie/macon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-legumes", + "products": 2, + "id": "fr:plats-a-base-de-legumes", + "name": "Plats-a-base-de-legumes" + }, + { + "products": 2, + "id": "fr:cuisine-russe", + "name": "Cuisine-russe", + "url": "https://fr.openfoodfacts.org/categorie/cuisine-russe" + }, + { + "products": 2, + "id": "fr:sirop-de-canne", + "name": "Sirop-de-canne", + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-canne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-a-tartiner-sucres", + "products": 2, + "name": "it:Produits-a-tartiner-sucres", + "id": "it:produits-a-tartiner-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/seve-de-bouleau", + "id": "fr:seve-de-bouleau", + "name": "Seve-de-bouleau", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-glaces-saveur-citron", + "name": "en:Thes-glaces-saveur-citron", + "id": "en:thes-glaces-saveur-citron", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pickles-de-legumes", + "products": 2, + "name": "en:Pickles-de-legumes", + "id": "en:pickles-de-legumes" + }, + { + "id": "fr:soupes-de-champignons", + "name": "Soupes-de-champignons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-a-l-alcool", + "products": 2, + "id": "fr:chocolats-au-lait-fourres-a-l-alcool", + "name": "Chocolats-au-lait-fourres-a-l-alcool" + }, + { + "products": 2, + "name": "Pates-de-foies", + "id": "fr:pates-de-foies", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-foies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-sucres", + "products": 2, + "name": "Yaourts-brasses-sucres", + "id": "fr:yaourts-brasses-sucres" + }, + { + "name": "Melanges-de-haricots-verts-et-beurre-en-conserve", + "id": "fr:melanges-de-haricots-verts-et-beurre-en-conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-haricots-verts-et-beurre-en-conserve" + }, + { + "name": "Fettuccini", + "id": "fr:fettuccini", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fettuccini" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pate-a-pizza", + "id": "fr:preparation-pour-pate-a-pizza", + "name": "Preparation-pour-pate-a-pizza", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:moussakas", + "products": 2, + "id": "en:moussakas", + "name": "en:Moussakas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/basil-seed-drink", + "id": "fr:basil-seed-drink", + "name": "Basil-seed-drink", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:boissons-chaudes-instantanees", + "name": "pt:Boissons-chaudes-instantanees", + "id": "pt:boissons-chaudes-instantanees", + "products": 2 + }, + { + "name": "en:Plats-a-base-de-viande-porcine", + "id": "en:plats-a-base-de-viande-porcine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-viande-porcine" + }, + { + "products": 2, + "id": "en:dranken", + "name": "en:Dranken", + "url": "https://fr.openfoodfacts.org/categorie/en:dranken" + }, + { + "id": "en:cereales-y-derivados", + "name": "en:Cereales-y-derivados", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-y-derivados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tomates-et-derives", + "name": "en:Tomates-et-derives", + "id": "en:tomates-et-derives", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-sarriette", + "products": 2, + "id": "fr:miels-de-sarriette", + "name": "Miels-de-sarriette" + }, + { + "products": 2, + "name": "en:Soupes-de-legumes", + "id": "en:soupes-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-au-chocolat-noir", + "name": "Mousse-au-chocolat-noir", + "id": "fr:mousse-au-chocolat-noir", + "products": 2 + }, + { + "id": "fr:vegetables-and-derived-products", + "name": "Vegetables-and-derived-products", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/vegetables-and-derived-products" + }, + { + "name": "Caprons", + "id": "fr:caprons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/caprons" + }, + { + "id": "en:zebra", + "name": "Zèbre", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q32789" + ], + "url": "https://fr.openfoodfacts.org/categorie/zebre" + }, + { + "products": 2, + "id": "fr:beignets-de-calmars", + "name": "Beignets-de-calmars", + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-calmars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-au-porto", + "name": "Boudins-blancs-au-porto", + "id": "fr:boudins-blancs-au-porto", + "products": 2 + }, + { + "id": "fr:appenzeller", + "name": "Appenzeller", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/appenzeller" + }, + { + "id": "fr:des-de-dinde", + "name": "Des-de-dinde", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/des-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-aux-jambons-et-fromages", + "products": 2, + "name": "Coquillettes-aux-jambons-et-fromages", + "id": "fr:coquillettes-aux-jambons-et-fromages" + }, + { + "products": 2, + "name": "Sauces tandoori", + "id": "en:tandoori-sauces", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tandoori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/concombres-au-fromage-blanc", + "products": 2, + "id": "fr:concombres-au-fromage-blanc", + "name": "Concombres-au-fromage-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-sel-et-vinaigre-de-malt", + "products": 2, + "name": "Chips au sel et vinaigre de malt", + "id": "en:salt-and-malt-vinegar-crisps" + }, + { + "products": 2, + "name": "Tomatensaucen", + "id": "fr:tomatensaucen", + "url": "https://fr.openfoodfacts.org/categorie/tomatensaucen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-vegetales", + "products": 2, + "id": "fr:charcuteries-vegetales", + "name": "Charcuteries-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-complet", + "name": "Pates-de-ble-dur-complet", + "id": "fr:pates-de-ble-dur-complet", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-de-coco-vierges", + "products": 2, + "name": "en:Huiles-de-coco-vierges", + "id": "en:huiles-de-coco-vierges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-avec-pulpe", + "products": 2, + "id": "fr:jus-d-orange-avec-pulpe", + "name": "Jus-d-orange-avec-pulpe" + }, + { + "products": 2, + "name": "Confits-de-porc", + "id": "fr:confits-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-yakitori", + "id": "en:yakitori-sauces", + "name": "Sauces yakitori", + "products": 2 + }, + { + "name": "Rillettes-de-carpe", + "id": "fr:rillettes-de-carpe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-carpe" + }, + { + "products": 2, + "id": "fr:barres-chocolatees-biscuitees-lactees", + "name": "Barres-chocolatees-biscuitees-lactees", + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-biscuitees-lactees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-d-epeautre", + "products": 2, + "name": "Pains azymes à la farine d'épeautre", + "id": "fr:pains-azymes-a-la-farine-d-epeautre" + }, + { + "products": 2, + "id": "fr:biscottes-a-la-farine-d-epeautre", + "name": "Biscottes à la farine d'épeautre", + "url": "https://fr.openfoodfacts.org/categorie/biscottes-a-la-farine-d-epeautre" + }, + { + "id": "fr:baguettes-de-campagne", + "name": "Baguettes-de-campagne", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/baguettes-de-campagne" + }, + { + "products": 2, + "id": "fr:gateau-aux-amandes", + "name": "Gateau-aux-amandes", + "url": "https://fr.openfoodfacts.org/categorie/gateau-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-creme", + "id": "fr:biscuits-a-la-creme", + "name": "Biscuits-a-la-creme", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-alleges-en-matiere-grasse", + "name": "Yaourts-a-boire-alleges-en-matiere-grasse", + "id": "fr:yaourts-a-boire-alleges-en-matiere-grasse", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:provolone-valpadana", + "products": 2, + "name": "it:Provolone Valpadana", + "id": "it:provolone-valpadana" + }, + { + "name": "Sossiskis", + "id": "fr:sossiskis", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sossiskis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-la-bolognaise", + "products": 2, + "id": "fr:pates-a-la-bolognaise", + "name": "Pates-a-la-bolognaise" + }, + { + "products": 2, + "id": "en:flavour-enhancers", + "name": "Exhausteurs de goût", + "url": "https://fr.openfoodfacts.org/categorie/exhausteurs-de-gout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-russes", + "products": 2, + "name": "Bieres-russes", + "id": "fr:bieres-russes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-pour-enfants", + "name": "Boissons-pour-enfants", + "id": "fr:boissons-pour-enfants", + "products": 2 + }, + { + "products": 2, + "id": "fr:chocolat-au-lait-bio", + "name": "Chocolat-au-lait-bio", + "url": "https://fr.openfoodfacts.org/categorie/chocolat-au-lait-bio" + }, + { + "name": "pt:Produits-laitiers", + "id": "pt:produits-laitiers", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:produits-laitiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-gateaux", + "products": 2, + "name": "Pate-a-gateaux", + "id": "fr:pate-a-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-teneur-reduite-en-lactose", + "id": "fr:produits-a-teneur-reduite-en-lactose", + "name": "Produits-a-teneur-reduite-en-lactose", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:limoncello", + "id": "it:limoncello", + "name": "it:Limoncello", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/papillotes", + "id": "fr:papillotes", + "name": "Papillotes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/picholines", + "name": "Picholines", + "id": "fr:picholines", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-a-garnir", + "name": "Choux-a-garnir", + "id": "fr:choux-a-garnir", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:merienda", + "products": 2, + "name": "es:Merienda", + "id": "es:merienda" + }, + { + "products": 2, + "id": "fr:flans-vanille-nappes-de-caramel", + "name": "Flans-vanille-nappes-de-caramel", + "url": "https://fr.openfoodfacts.org/categorie/flans-vanille-nappes-de-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-au-miel", + "name": "en:Cereales-au-miel", + "id": "en:cereales-au-miel", + "products": 2 + }, + { + "id": "fr:pains-de-mie-complet-en-tranches", + "name": "Pains-de-mie-complet-en-tranches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-complet-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-riz-souffle", + "products": 2, + "name": "Chocolats-blancs-au-riz-souffle", + "id": "fr:chocolats-blancs-au-riz-souffle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-sucrines", + "products": 2, + "id": "fr:salades-sucrines", + "name": "Salades-sucrines" + }, + { + "id": "de:sucres", + "name": "de:Sucres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:sucres" + }, + { + "id": "fr:pain-de-cereales-germees", + "name": "Pain-de-cereales-germees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pain-de-cereales-germees" + }, + { + "products": 2, + "id": "fr:yaourts-a-boire-coco", + "name": "Yaourts-a-boire-coco", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-coco" + }, + { + "id": "en:pates-de-ble", + "name": "en:Pates-de-ble", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-ble" + }, + { + "id": "fr:conserve-de-sardines", + "name": "Conserve-de-sardines", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/conserve-de-sardines" + }, + { + "name": "en:Thes-sencha", + "id": "en:thes-sencha", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:thes-sencha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes", + "name": "Melanges-de-legumes", + "id": "fr:melanges-de-legumes", + "products": 2 + }, + { + "products": 2, + "id": "fr:chouchens", + "name": "Chouchens", + "url": "https://fr.openfoodfacts.org/categorie/chouchens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gaufres-fourrees", + "products": 2, + "id": "en:gaufres-fourrees", + "name": "en:Gaufres-fourrees" + }, + { + "products": 2, + "name": "Attieke", + "id": "fr:attieke", + "url": "https://fr.openfoodfacts.org/categorie/attieke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rougets", + "products": 2, + "name": "Rougets", + "id": "fr:rougets" + }, + { + "products": 2, + "id": "fr:blanquette-de-poulet", + "name": "Blanquette-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/blanquette-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-tropeziennes", + "products": 2, + "id": "en:tropezian-pies", + "name": "Tartes tropéziennes" + }, + { + "name": "Toast-croustillant", + "id": "fr:toast-croustillant", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/toast-croustillant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faisselles-au-lait-de-chevre", + "id": "fr:faisselles-au-lait-de-chevre", + "name": "Faisselles-au-lait-de-chevre", + "products": 2 + }, + { + "name": "en:Assortiments-de-bonbons-de-chocolat", + "id": "en:assortiments-de-bonbons-de-chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:assortiments-de-bonbons-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilli-sans-gluten", + "id": "fr:fusilli-sans-gluten", + "name": "Fusilli-sans-gluten", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:edulcorants", + "products": 2, + "id": "es:edulcorants", + "name": "es:Edulcorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-lompe-noirs", + "products": 2, + "name": "Oeufs-de-lompe-noirs", + "id": "fr:oeufs-de-lompe-noirs" + }, + { + "id": "fr:напитки-без-добавления-сахара", + "name": "Напитки-без-добавления-сахара", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BA%D0%B8-%D0%B1%D0%B5%D0%B7-%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F-%D1%81%D0%B0%D1%85%D0%B0%D1%80%D0%B0" + }, + { + "name": "Brioches-a-la-creme-fraiche", + "id": "fr:brioches-a-la-creme-fraiche", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/brioches-a-la-creme-fraiche" + }, + { + "products": 2, + "id": "fr:spatzles-frais", + "name": "Spatzles-frais", + "url": "https://fr.openfoodfacts.org/categorie/spatzles-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pistaches", + "products": 2, + "id": "fr:purees-de-pistaches", + "name": "Purees-de-pistaches" + }, + { + "products": 2, + "name": "Cassoulets-en-conserve", + "id": "fr:cassoulets-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gedroogde-pastas", + "products": 2, + "name": "Gedroogde-pastas", + "id": "fr:gedroogde-pastas" + }, + { + "products": 2, + "name": "en:Choux-fleurs-en-fleurettes-surgeles", + "id": "en:choux-fleurs-en-fleurettes-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/en:choux-fleurs-en-fleurettes-surgeles" + }, + { + "products": 2, + "id": "fr:feuilles-de-chene", + "name": "Feuilles-de-chene", + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-chene" + }, + { + "name": "Fromage-vegetal", + "id": "fr:fromage-vegetal", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fromage-vegetal" + }, + { + "products": 2, + "name": "en:Bonbons-gelifies", + "id": "en:bonbons-gelifies", + "url": "https://fr.openfoodfacts.org/categorie/en:bonbons-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potjevlesch", + "id": "fr:potjevlesch", + "name": "Potjevlesch", + "products": 2 + }, + { + "id": "es:cereales-fourrees", + "name": "es:Cereales-fourrees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-fourrees" + }, + { + "id": "es:olives-entieres", + "name": "es:Olives-entieres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:olives-entieres" + }, + { + "products": 2, + "id": "en:roasted-shelled-peanuts", + "name": "Cacahuètes grillées décortiquées", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-grillees-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-glacee-chocolat", + "products": 2, + "name": "Creme-glacee-chocolat", + "id": "fr:creme-glacee-chocolat" + }, + { + "products": 2, + "id": "fr:daim", + "name": "Daim", + "url": "https://fr.openfoodfacts.org/categorie/daim" + }, + { + "name": "en:Laits-d-amande", + "id": "en:laits-d-amande", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:laits-d-amande" + }, + { + "name": "Sauces-pour-viandes", + "id": "fr:sauces-pour-viandes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-viandes" + }, + { + "id": "fr:farines-avec-levure", + "name": "Farines-avec-levure", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/farines-avec-levure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousselines", + "name": "Mousselines", + "id": "fr:mousselines", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oatcakes", + "id": "en:oatcakes", + "name": "en:Oatcakes", + "products": 2 + }, + { + "name": "Biscuits-aux-raisins", + "id": "fr:biscuits-aux-raisins", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-raisins" + }, + { + "products": 2, + "name": "Torsades-a-la-bolognaise", + "id": "fr:torsades-a-la-bolognaise", + "url": "https://fr.openfoodfacts.org/categorie/torsades-a-la-bolognaise" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1757003" + ], + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-pavot", + "id": "en:poppyseed-oils", + "name": "Huiles de pavot", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:matieres-grasses-a-tartiner", + "name": "de:Matieres-grasses-a-tartiner", + "id": "de:matieres-grasses-a-tartiner", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/duos-carottes-et-celeri", + "id": "fr:duos-carottes-et-celeri", + "name": "Duos-carottes-et-celeri", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-refrigeres", + "products": 2, + "name": "Desserts-refrigeres", + "id": "fr:desserts-refrigeres" + }, + { + "products": 2, + "id": "en:orange-juice-from-concentrate", + "name": "en:Orange-juice-from-concentrate", + "url": "https://fr.openfoodfacts.org/categorie/en:orange-juice-from-concentrate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-feves-de-cacao", + "name": "Chocolats-au-lait-aux-feves-de-cacao", + "id": "fr:chocolats-au-lait-aux-feves-de-cacao", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panisse", + "products": 2, + "id": "fr:panisse", + "name": "Panisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epicerie-salee", + "id": "fr:epicerie-salee", + "name": "Epicerie-salee", + "products": 2 + }, + { + "products": 2, + "id": "fr:preparation-pour-glace", + "name": "Preparation-pour-glace", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-glace" + }, + { + "products": 2, + "name": "nl:Confitures-et-marmelades", + "id": "nl:confitures-et-marmelades", + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures-et-marmelades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-granola", + "name": "en:Barres-granola", + "id": "en:barres-granola", + "products": 2 + }, + { + "products": 2, + "name": "Crevettes-crues", + "id": "fr:crevettes-crues", + "url": "https://fr.openfoodfacts.org/categorie/crevettes-crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-noirs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q15062992" + ], + "products": 2, + "name": "Haricots noirs", + "id": "en:black-beans" + }, + { + "products": 2, + "id": "fr:bouillons-de-miso", + "name": "Bouillons-de-miso", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-miso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macon-villages", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3332006" + ], + "products": 2, + "name": "Mâcon Villages", + "id": "fr:macon-villages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-crevette", + "products": 2, + "name": "Rillettes de crevette", + "id": "fr:rillettes-de-crevette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-prunes", + "products": 2, + "id": "en:plum-pastes", + "name": "Pâtes de prunes" + }, + { + "name": "Pizzas-au-chevre", + "id": "fr:pizzas-au-chevre", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-fruits-rouges", + "products": 2, + "id": "en:confitures-de-fruits-rouges", + "name": "en:Confitures-de-fruits-rouges" + }, + { + "name": "Pommes de terre labellisées", + "id": "fr:pommes-de-terre-labellisees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-labellisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ceviches", + "id": "fr:ceviches", + "name": "Ceviches", + "products": 2 + }, + { + "id": "fr:apfelsaft", + "name": "Apfelsaft", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/apfelsaft" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:tartines-craquantes", + "id": "es:tartines-craquantes", + "name": "es:Tartines-craquantes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-sanglier", + "products": 2, + "id": "fr:viande-de-sanglier", + "name": "Viande-de-sanglier" + }, + { + "products": 2, + "name": "Sucres-mascobado", + "id": "fr:sucres-mascobado", + "url": "https://fr.openfoodfacts.org/categorie/sucres-mascobado" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merguez-de-veau", + "name": "Merguez-de-veau", + "id": "fr:merguez-de-veau", + "products": 2 + }, + { + "id": "pt:aliments-et-boissons-a-base-de-vegetaux", + "name": "pt:Aliments-et-boissons-a-base-de-vegetaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-crepes", + "products": 2, + "name": "Preparation-pour-crepes", + "id": "fr:preparation-pour-crepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-vegetaux", + "id": "en:fromages-vegetaux", + "name": "en:Fromages-vegetaux", + "products": 2 + }, + { + "id": "fr:tommes-blanches", + "name": "Tommes-blanches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/tommes-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lacteos", + "products": 2, + "id": "fr:lacteos", + "name": "Lacteos" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q178547" + ], + "url": "https://fr.openfoodfacts.org/categorie/chicoree-endive", + "id": "en:endives", + "name": "Chicorée endive", + "products": 2 + }, + { + "products": 2, + "name": "Tartes à la crème", + "id": "en:cream-pies", + "url": "https://fr.openfoodfacts.org/categorie/tartes-a-la-creme", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1136907" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles-chinoises", + "name": "en:Nouilles-chinoises", + "id": "en:nouilles-chinoises", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/voedsel-op-basis-van-fruit-en-groenten", + "products": 2, + "name": "Voedsel-op-basis-van-fruit-en-groenten", + "id": "fr:voedsel-op-basis-van-fruit-en-groenten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-au-jambon", + "id": "fr:ravioli-au-jambon", + "name": "Ravioli-au-jambon", + "products": 2 + }, + { + "products": 2, + "name": "en:Sauces-cesar", + "id": "en:sauces-cesar", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-cesar" + }, + { + "products": 2, + "id": "fr:filets-de-sardines-a-l-huile-et-au-citron", + "name": "Filets-de-sardines-a-l-huile-et-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-a-l-huile-et-au-citron" + }, + { + "name": "Potees-auvergnates", + "id": "fr:potees-auvergnates", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/potees-auvergnates" + }, + { + "products": 2, + "name": "Fruchtsafte-und-nektare", + "id": "fr:fruchtsafte-und-nektare", + "url": "https://fr.openfoodfacts.org/categorie/fruchtsafte-und-nektare" + }, + { + "products": 2, + "name": "Pizzas-savoyardes", + "id": "fr:pizzas-savoyardes", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-savoyardes" + }, + { + "products": 2, + "id": "fr:pastilles-avec-edulcorants", + "name": "Pastilles-avec-edulcorants", + "url": "https://fr.openfoodfacts.org/categorie/pastilles-avec-edulcorants" + }, + { + "name": "Plats-prepares-a-faible-teneur-en-matieres-grasses", + "id": "fr:plats-prepares-a-faible-teneur-en-matieres-grasses", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-faible-teneur-en-matieres-grasses" + }, + { + "products": 2, + "name": "de:Oeufs-labellises", + "id": "de:oeufs-labellises", + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs-labellises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs-labellises-biologiques", + "products": 2, + "name": "de:Oeufs-labellises-biologiques", + "id": "de:oeufs-labellises-biologiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs-d-oiseau", + "name": "de:Oeufs-d-oiseau", + "id": "de:oeufs-d-oiseau", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-crues", + "name": "Viandes-crues", + "id": "fr:viandes-crues", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cremes", + "products": 2, + "name": "de:Cremes", + "id": "de:cremes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:chips-de-verduras-y-hortalizas-fritas", + "products": 2, + "name": "es:Chips-de-verduras-y-hortalizas-fritas", + "id": "es:chips-de-verduras-y-hortalizas-fritas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-noisettes-et-amandes", + "products": 2, + "name": "Desserts-de-soja-noisettes-et-amandes", + "id": "fr:desserts-de-soja-noisettes-et-amandes" + }, + { + "products": 2, + "id": "en:corn-oils", + "name": "Huiles de maïs", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-mais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q856775" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:verduras-y-hortalizas-fritas", + "products": 2, + "id": "es:verduras-y-hortalizas-fritas", + "name": "es:Verduras-y-hortalizas-fritas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-multisaveurs", + "id": "fr:yaourts-multisaveurs", + "name": "Yaourts-multisaveurs", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/citrons-verts", + "id": "en:limes", + "name": "Citrons verts", + "products": 2 + }, + { + "name": "Pastilles-pour-l-haleine", + "id": "fr:pastilles-pour-l-haleine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pastilles-pour-l-haleine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-au-curry", + "products": 2, + "id": "fr:moules-au-curry", + "name": "Moules-au-curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roules-au-chocolat", + "id": "fr:roules-au-chocolat", + "name": "Roules-au-chocolat", + "products": 2 + }, + { + "name": "Choucroute-cuite", + "id": "fr:choucroute-cuite", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/choucroute-cuite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-noir", + "id": "en:brown-jasmine-rices", + "name": "Riz thaï noir", + "products": 2 + }, + { + "name": "Barre-dietetique", + "id": "fr:barre-dietetique", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/barre-dietetique" + }, + { + "name": "Crevettes grises", + "id": "fr:crevettes-grises", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-grises" + }, + { + "id": "en:riz-basmati", + "name": "en:Riz-basmati", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:riz-basmati" + }, + { + "name": "en:Riz-de-variete-indica", + "id": "en:riz-de-variete-indica", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:riz-de-variete-indica" + }, + { + "products": 2, + "id": "fr:confiseries-sans-sucre", + "name": "Confiseries-sans-sucre", + "url": "https://fr.openfoodfacts.org/categorie/confiseries-sans-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurre-de-baratte", + "name": "Beurre-de-baratte", + "id": "fr:beurre-de-baratte", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-au-yaourt", + "products": 2, + "name": "Gateaux-au-yaourt", + "id": "fr:gateaux-au-yaourt" + }, + { + "products": 2, + "id": "fr:saucissons-de-lyon", + "name": "Saucissons-de-lyon", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-lyon" + }, + { + "id": "fr:confits-de-poire", + "name": "Confits-de-poire", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-dips", + "name": "Sauces-pour-dips", + "id": "fr:sauces-pour-dips", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-de-mie", + "products": 2, + "id": "en:pains-de-mie", + "name": "en:Pains-de-mie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:compotes-de-pomme", + "name": "de:Compotes-de-pomme", + "id": "de:compotes-de-pomme", + "products": 2 + }, + { + "products": 2, + "id": "fr:pate-a-gateau", + "name": "Pate-a-gateau", + "url": "https://fr.openfoodfacts.org/categorie/pate-a-gateau" + }, + { + "products": 2, + "name": "Cervelas-a-l-alsacienne", + "id": "fr:cervelas-a-l-alsacienne", + "url": "https://fr.openfoodfacts.org/categorie/cervelas-a-l-alsacienne" + }, + { + "name": "Jambons-de-volaille", + "id": "fr:jambons-de-volaille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-volaille" + }, + { + "name": "it:Bieres-artisanales", + "id": "it:bieres-artisanales", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:bieres-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gateaux-au-chocolat", + "products": 2, + "name": "en:Gateaux-au-chocolat", + "id": "en:gateaux-au-chocolat" + }, + { + "id": "fr:chocoladeproducten", + "name": "Chocoladeproducten", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocoladeproducten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quorn", + "products": 2, + "id": "fr:quorn", + "name": "Quorn" + }, + { + "products": 2, + "id": "fr:preparation-pour-boissons", + "name": "Preparation-pour-boissons", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gaufrettes", + "products": 2, + "id": "en:gaufrettes", + "name": "en:Gaufrettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-minerales-naturelles", + "products": 2, + "name": "de:Eaux-minerales-naturelles", + "id": "de:eaux-minerales-naturelles" + }, + { + "name": "en:Musliriegel", + "id": "en:musliriegel", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:musliriegel" + }, + { + "products": 2, + "name": "Fromages-forts", + "id": "fr:fromages-forts", + "url": "https://fr.openfoodfacts.org/categorie/fromages-forts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bonbons-de-chocolat", + "name": "es:Bonbons-de-chocolat", + "id": "es:bonbons-de-chocolat", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-sans-gluten", + "id": "fr:spaghettis-sans-gluten", + "name": "Spaghettis-sans-gluten", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-hachees-fraiches", + "id": "fr:viandes-hachees-fraiches", + "name": "Viandes-hachees-fraiches", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-au-petit-epeautre", + "id": "fr:torsades-au-petit-epeautre", + "name": "Torsades-au-petit-epeautre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ecorces-d-orange", + "id": "fr:ecorces-d-orange", + "name": "Ecorces-d-orange", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-en-poudre-non-sucre", + "products": 2, + "name": "Chocolat-en-poudre-non-sucre", + "id": "fr:chocolat-en-poudre-non-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumes-prepares", + "id": "en:legumes-prepares", + "name": "en:Legumes-prepares", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassoulet-de-castelnaudary", + "products": 2, + "id": "fr:cassoulet-de-castelnaudary", + "name": "Cassoulet-de-castelnaudary" + }, + { + "products": 2, + "id": "en:spelt-pastas", + "name": "Pâtes d'épeautre", + "url": "https://fr.openfoodfacts.org/categorie/pates-d-epeautre" + }, + { + "products": 2, + "name": "Kaffeegetranke", + "id": "fr:kaffeegetranke", + "url": "https://fr.openfoodfacts.org/categorie/kaffeegetranke" + }, + { + "name": "Glaces-aromatisees", + "id": "fr:glaces-aromatisees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/glaces-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/scamorza", + "name": "Scamorza", + "id": "fr:scamorza", + "products": 2 + }, + { + "products": 2, + "name": "Marinade-de-la-mer", + "id": "fr:marinade-de-la-mer", + "url": "https://fr.openfoodfacts.org/categorie/marinade-de-la-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-violettes", + "name": "Olives-violettes", + "id": "fr:olives-violettes", + "products": 2 + }, + { + "products": 2, + "name": "Riz-de-konjac", + "id": "fr:riz-de-konjac", + "url": "https://fr.openfoodfacts.org/categorie/riz-de-konjac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacao", + "sameAs": [ + "https://www.wikidata.org/wiki/Q251106" + ], + "products": 2, + "id": "en:cocoa-butter", + "name": "Beurres de cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsettes-aux-oeufs", + "products": 2, + "name": "Torsettes-aux-oeufs", + "id": "fr:torsettes-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-et-carottes-a-l-etuvee", + "products": 2, + "name": "Petits-pois-et-carottes-a-l-etuvee", + "id": "fr:petits-pois-et-carottes-a-l-etuvee" + }, + { + "products": 2, + "name": "Puree-de-pommes-de-terre-en-flocons", + "id": "fr:puree-de-pommes-de-terre-en-flocons", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pommes-de-terre-en-flocons" + }, + { + "id": "en:fromages-labellises", + "name": "en:Fromages-labellises", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-labellises" + }, + { + "name": "Chocolat-70-noir", + "id": "fr:chocolat-70-noir", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolat-70-noir" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q506040" + ], + "url": "https://fr.openfoodfacts.org/categorie/pommes-granny-smith", + "id": "en:granny-smith-apples", + "name": "Pommes Granny Smith", + "products": 2 + }, + { + "id": "en:chocolat", + "name": "en:Chocolat", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolat" + }, + { + "id": "ro:biscuits-et-gateaux", + "name": "ro:Biscuits-et-gateaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ro:biscuits-et-gateaux" + }, + { + "id": "fr:feves-de-cacao", + "name": "Feves-de-cacao", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/feves-de-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/leguminosas", + "id": "fr:leguminosas", + "name": "Leguminosas", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-au-gluten", + "products": 2, + "id": "fr:biscottes-au-gluten", + "name": "Biscottes-au-gluten" + }, + { + "products": 2, + "name": "Biscuits-sables-au-chocolat", + "id": "fr:biscuits-sables-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-sables-au-chocolat" + }, + { + "id": "fr:yaourts-a-la-grenadine", + "name": "Yaourts-a-la-grenadine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grenadine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-abricot", + "products": 2, + "name": "Yaourts-brasses-abricot", + "id": "fr:yaourts-brasses-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-au-chocolat", + "products": 2, + "id": "es:biscuits-au-chocolat", + "name": "es:Biscuits-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscui%C8%9Bi", + "products": 2, + "name": "Biscuiți", + "id": "fr:biscuiți" + }, + { + "products": 2, + "id": "fr:tagliatelles-sans-gluten", + "name": "Tagliatelles-sans-gluten", + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-legumineuses", + "id": "en:laits-de-legumineuses", + "name": "en:Laits-de-legumineuses", + "products": 2 + }, + { + "name": "Beurres-charentes-poitou", + "id": "fr:beurres-charentes-poitou", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/beurres-charentes-poitou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:matieres-grasses-animales", + "products": 2, + "id": "de:matieres-grasses-animales", + "name": "de:Matieres-grasses-animales" + }, + { + "products": 2, + "id": "fr:sels-fins-iodes", + "name": "Sels-fins-iodes", + "url": "https://fr.openfoodfacts.org/categorie/sels-fins-iodes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/limonades-light", + "name": "Limonades-light", + "id": "fr:limonades-light", + "products": 2 + }, + { + "name": "Roti-de-boeuf", + "id": "fr:roti-de-boeuf", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/roti-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-de-konjac", + "id": "fr:tagliatelles-de-konjac", + "name": "Tagliatelles-de-konjac", + "products": 2 + }, + { + "products": 2, + "id": "fr:confitures-d-argouses", + "name": "Confitures-d-argouses", + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-argouses" + }, + { + "name": "Pates-semi-completes", + "id": "fr:pates-semi-completes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pates-semi-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-de-konjac", + "products": 2, + "name": "Spaghettis-de-konjac", + "id": "fr:spaghettis-de-konjac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/proteinpulver", + "products": 2, + "id": "fr:proteinpulver", + "name": "Proteinpulver" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornes-de-gazelles", + "name": "Cornes-de-gazelles", + "id": "fr:cornes-de-gazelles", + "products": 2 + }, + { + "products": 2, + "name": "Pommes-de-terre-entieres", + "id": "fr:pommes-de-terre-entieres", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-entieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-aux-champignons", + "products": 2, + "id": "fr:soupes-aux-champignons", + "name": "Soupes-aux-champignons" + }, + { + "products": 2, + "name": "Yaourt-nature-bio", + "id": "fr:yaourt-nature-bio", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-nature-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-au-soja", + "id": "fr:boisson-au-soja", + "name": "Boisson-au-soja", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillabaisses", + "id": "fr:bouillabaisses", + "name": "Bouillabaisses", + "products": 2 + }, + { + "products": 2, + "id": "nl:cereales-et-pommes-de-terre", + "name": "nl:Cereales-et-pommes-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/nl:cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-au-chocolat", + "products": 2, + "name": "Flans-au-chocolat", + "id": "fr:flans-au-chocolat" + }, + { + "products": 2, + "id": "en:anise", + "name": "Anis vert", + "sameAs": [ + "https://www.wikidata.org/wiki/Q28692" + ], + "url": "https://fr.openfoodfacts.org/categorie/anis-vert" + }, + { + "products": 2, + "id": "fr:baguettes-de-pain", + "name": "Baguettes-de-pain", + "url": "https://fr.openfoodfacts.org/categorie/baguettes-de-pain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-fleurs-d-oranger", + "name": "Miels-de-fleurs-d-oranger", + "id": "fr:miels-de-fleurs-d-oranger", + "products": 2 + }, + { + "id": "fr:fruchtkonfituren", + "name": "Fruchtkonfituren", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fruchtkonfituren" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gyoza", + "products": 2, + "id": "en:gyoza", + "name": "en:Gyoza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/toasts-aux-raisins", + "name": "Toasts-aux-raisins", + "id": "fr:toasts-aux-raisins", + "products": 2 + }, + { + "name": "Bonbons-de-chocolat-a-la-nougatine", + "id": "fr:bonbons-de-chocolat-a-la-nougatine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-a-la-nougatine" + }, + { + "name": "en:Nectars-multifruits", + "id": "en:nectars-multifruits", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:nectars-multifruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lomo", + "products": 2, + "id": "fr:lomo", + "name": "Lomo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajine-de-legumes", + "id": "fr:tajine-de-legumes", + "name": "Tajine-de-legumes", + "products": 2 + }, + { + "products": 2, + "name": "en:Riz-parfumes", + "id": "en:riz-parfumes", + "url": "https://fr.openfoodfacts.org/categorie/en:riz-parfumes" + }, + { + "products": 2, + "name": "Sticks", + "id": "fr:sticks", + "url": "https://fr.openfoodfacts.org/categorie/sticks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manchego", + "products": 2, + "id": "fr:manchego", + "name": "Manchego" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-multifruits", + "name": "en:Jus-multifruits", + "id": "en:jus-multifruits", + "products": 2 + }, + { + "products": 2, + "name": "en:Bouillons-de-volaille", + "id": "en:bouillons-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/en:bouillons-de-volaille" + }, + { + "products": 2, + "name": "en:Sauces-tomates-au-basilic", + "id": "en:sauces-tomates-au-basilic", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-tomates-au-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pipe-rigate-completes", + "name": "Pipe-rigate-completes", + "id": "fr:pipe-rigate-completes", + "products": 2 + }, + { + "name": "Mojitos", + "id": "fr:mojitos", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mojitos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-d-erable", + "products": 2, + "name": "Beurres-d-erable", + "id": "fr:beurres-d-erable" + }, + { + "products": 2, + "name": "Saucisses-cocktail-fumees", + "id": "fr:saucisses-cocktail-fumees", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-cocktail-fumees" + }, + { + "products": 2, + "name": "es:Fruits-a-coques", + "id": "es:fruits-a-coques", + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-a-coques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-noel", + "products": 2, + "name": "Gateaux-de-noel", + "id": "fr:gateaux-de-noel" + }, + { + "id": "en:eaux-de-montagne", + "name": "en:Eaux-de-montagne", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-de-montagne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:surgeles", + "name": "sv:Surgeles", + "id": "sv:surgeles", + "products": 2 + }, + { + "products": 2, + "id": "en:gressins", + "name": "en:Gressins", + "url": "https://fr.openfoodfacts.org/categorie/en:gressins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-gris", + "name": "Sels-gris", + "id": "fr:sels-gris", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-foie", + "id": "fr:cremes-de-foie", + "name": "Cremes-de-foie", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-et-fruits-secs", + "products": 2, + "id": "fr:graines-et-fruits-secs", + "name": "Graines-et-fruits-secs" + }, + { + "id": "fr:verse-producten", + "name": "Verse-producten", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/verse-producten" + }, + { + "products": 2, + "name": "Produits-de-restauration-collective", + "id": "fr:produits-de-restauration-collective", + "url": "https://fr.openfoodfacts.org/categorie/produits-de-restauration-collective" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-sauce", + "name": "Fonds-de-sauce", + "id": "fr:fonds-de-sauce", + "products": 2 + }, + { + "id": "en:zoete-snacks", + "name": "en:Zoete-snacks", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:zoete-snacks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-au-caramel", + "id": "fr:cremes-glacees-au-caramel", + "name": "Cremes-glacees-au-caramel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-chanvre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13099103" + ], + "name": "Boissons végétales de chanvre", + "id": "en:hemp-milks", + "products": 2 + }, + { + "id": "fr:ecrasees-de-pomme-de-terre", + "name": "Ecrasees-de-pomme-de-terre", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ecrasees-de-pomme-de-terre" + }, + { + "name": "Graines-grillees", + "id": "fr:graines-grillees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/graines-grillees" + }, + { + "name": "Sans-ogm", + "id": "fr:sans-ogm", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sans-ogm" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-completes", + "products": 2, + "name": "Torsades-completes", + "id": "fr:torsades-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-pretes-a-l-emploi", + "products": 2, + "name": "Salades-pretes-a-l-emploi", + "id": "fr:salades-pretes-a-l-emploi" + }, + { + "name": "Fructose", + "id": "en:fructose", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q122043" + ], + "url": "https://fr.openfoodfacts.org/categorie/fructose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:cereales-et-pommes-de-terre", + "products": 2, + "name": "ru:Cereales-et-pommes-de-terre", + "id": "ru:cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:gateaux", + "products": 2, + "id": "it:gateaux", + "name": "it:Gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/genoises-fourrees-a-la-cerise", + "products": 2, + "name": "Genoises-fourrees-a-la-cerise", + "id": "fr:genoises-fourrees-a-la-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paves-de-saumon-bio", + "products": 2, + "name": "Paves-de-saumon-bio", + "id": "fr:paves-de-saumon-bio" + }, + { + "id": "en:produits-artisanaux", + "name": "en:Produits-artisanaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-artisanaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-en-sachet", + "name": "Salades-en-sachet", + "id": "fr:salades-en-sachet", + "products": 2 + }, + { + "products": 2, + "name": "Postres-de-soja", + "id": "fr:postres-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/postres-de-soja" + }, + { + "name": "en:Legumineuses-en-conserve", + "id": "en:legumineuses-en-conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:legumineuses-en-conserve" + }, + { + "id": "fr:eminces-de-poulet-grille", + "name": "Eminces-de-poulet-grille", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-poulet-grille" + }, + { + "name": "Œufs durs", + "id": "en:boiled-eggs", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-durs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1062531" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tomates-pelees", + "products": 2, + "name": "en:Tomates-pelees", + "id": "en:tomates-pelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-en-conserve", + "name": "en:Haricots-en-conserve", + "id": "en:haricots-en-conserve", + "products": 2 + }, + { + "products": 2, + "name": "nl:Infusions-en-sachets", + "id": "nl:infusions-en-sachets", + "url": "https://fr.openfoodfacts.org/categorie/nl:infusions-en-sachets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mangue", + "id": "fr:sirops-de-mangue", + "name": "Sirops-de-mangue", + "products": 2 + }, + { + "id": "fr:pommard", + "name": "Pommard", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pommard", + "sameAs": [ + "https://www.wikidata.org/wiki/Q13420336" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-verts-au-wasabi", + "products": 2, + "id": "fr:pois-verts-au-wasabi", + "name": "Pois-verts-au-wasabi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-fruits-a-coques", + "name": "de:Barres-de-fruits-a-coques", + "id": "de:barres-de-fruits-a-coques", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-italiennes", + "products": 2, + "id": "fr:pates-italiennes", + "name": "Pates-italiennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-goyave", + "id": "fr:jus-de-goyave", + "name": "Jus-de-goyave", + "products": 2 + }, + { + "products": 2, + "name": "Fruits-au-jus", + "id": "fr:fruits-au-jus", + "url": "https://fr.openfoodfacts.org/categorie/fruits-au-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-son-d-avoine", + "name": "Galettes-au-son-d-avoine", + "id": "fr:galettes-au-son-d-avoine", + "products": 2 + }, + { + "products": 2, + "name": "Noix de pécan décortiquées", + "id": "en:shelled-pecan-nuts", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-pecan-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bebidas", + "name": "en:Bebidas", + "id": "en:bebidas", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-noix-de-macadamia", + "id": "en:macadamia-nut-milks", + "name": "Laits de noix de macadamia", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:meal-replacements", + "id": "en:meal-replacements", + "name": "en:Meal-replacements", + "products": 2 + }, + { + "id": "en:hypoallergenic-milks", + "name": "Laits hypoallergéniques", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/laits-hypoallergeniques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-marinades", + "name": "Sauces-pour-marinades", + "id": "fr:sauces-pour-marinades", + "products": 2 + }, + { + "name": "Preparations-a-base-de-legumes", + "id": "fr:preparations-a-base-de-legumes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/black-grapes", + "products": 2, + "id": "en:black-grapes", + "name": "Black grapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pickled-onions", + "products": 2, + "id": "en:pickled-onions", + "name": "Pickled onions" + }, + { + "products": 2, + "id": "fr:flan-caramelise", + "name": "Flan-caramelise", + "url": "https://fr.openfoodfacts.org/categorie/flan-caramelise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-fruit", + "name": "Puree-de-fruit", + "id": "fr:puree-de-fruit", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/belgian-pale-ale", + "id": "fr:belgian-pale-ale", + "name": "Belgian-pale-ale", + "products": 2 + }, + { + "products": 2, + "name": "Nectars-de-litchi", + "id": "fr:nectars-de-litchi", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-litchi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/violettes", + "id": "fr:violettes", + "name": "Violettes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-brisees", + "products": 2, + "name": "en:Pates-brisees", + "id": "en:pates-brisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-manioc", + "id": "fr:semoules-de-manioc", + "name": "Semoules-de-manioc", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-bordeaux-rouge", + "name": "Vin-bordeaux-rouge", + "id": "fr:vin-bordeaux-rouge", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soda-aromatise", + "products": 2, + "name": "Soda-aromatise", + "id": "fr:soda-aromatise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pomme", + "products": 2, + "id": "fr:puree-de-pomme", + "name": "Puree-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-aux-noix-de-pecan", + "name": "Cookies-aux-noix-de-pecan", + "id": "fr:cookies-aux-noix-de-pecan", + "products": 2 + }, + { + "name": "de:Alimentos-y-bebidas-de-origen-vegetal", + "id": "de:alimentos-y-bebidas-de-origen-vegetal", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:alimentos-y-bebidas-de-origen-vegetal" + }, + { + "id": "fr:sauces-epicees", + "name": "Sauces-epicees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sauces-epicees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-non-affines", + "id": "fr:fromages-non-affines", + "name": "Fromages-non-affines", + "products": 2 + }, + { + "name": "Saucissons-aux-noisettes", + "id": "fr:saucissons-aux-noisettes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-aux-noisettes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q9280616" + ], + "url": "https://fr.openfoodfacts.org/categorie/sucre-muscovado", + "name": "Sucre muscovado", + "id": "en:muscovado", + "products": 2 + }, + { + "products": 2, + "id": "fr:tomate-ronde", + "name": "Tomate-ronde", + "url": "https://fr.openfoodfacts.org/categorie/tomate-ronde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-tourtes", + "products": 2, + "name": "Mini-tourtes", + "id": "fr:mini-tourtes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-fourrees-aux-calamars", + "products": 2, + "name": "Tourtes-fourrees-aux-calamars", + "id": "fr:tourtes-fourrees-aux-calamars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frites-de-patate-douce", + "products": 2, + "id": "fr:frites-de-patate-douce", + "name": "Frites-de-patate-douce" + }, + { + "products": 2, + "name": "Fromages-a-la-biere", + "id": "fr:fromages-a-la-biere", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-la-biere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-tressees-au-levain-et-au-chocolat", + "id": "fr:brioches-tressees-au-levain-et-au-chocolat", + "name": "Brioches-tressees-au-levain-et-au-chocolat", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-jus-de-fruits", + "id": "fr:boissons-a-base-de-jus-de-fruits", + "name": "Boissons-a-base-de-jus-de-fruits", + "products": 2 + }, + { + "id": "fr:ecorces-de-citrons-confites", + "name": "Ecorces-de-citrons-confites", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/ecorces-de-citrons-confites" + }, + { + "products": 2, + "name": "Boudins-blancs-de-rethel", + "id": "fr:boudins-blancs-de-rethel", + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-de-rethel" + }, + { + "id": "fr:sorbets-a-la-mure", + "name": "Sorbets-a-la-mure", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-mure" + }, + { + "products": 2, + "id": "fr:allumettes-de-bacon-fumees", + "name": "Allumettes-de-bacon-fumees", + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-bacon-fumees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-aux-champignons", + "id": "fr:crepes-aux-champignons", + "name": "Crepes-aux-champignons", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pflanzliche-lebensmittel", + "id": "es:pflanzliche-lebensmittel", + "name": "es:Pflanzliche-lebensmittel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frites-de-poulet-panees", + "products": 2, + "name": "Frites-de-poulet-panees", + "id": "fr:frites-de-poulet-panees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plantaardige-levensmiddelen-en-dranken", + "products": 2, + "name": "en:Plantaardige-levensmiddelen-en-dranken", + "id": "en:plantaardige-levensmiddelen-en-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-d-ardeche", + "products": 2, + "id": "fr:saucissons-d-ardeche", + "name": "Saucissons-d-ardeche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-boisson", + "products": 2, + "id": "fr:preparation-pour-boisson", + "name": "Preparation-pour-boisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:croque-monsieur", + "name": "en:Croque-monsieur", + "id": "en:croque-monsieur", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-du-mont-saint-michel", + "id": "fr:moules-du-mont-saint-michel", + "name": "Moules-du-mont-saint-michel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-igp", + "id": "en:pgi-honeys", + "name": "Miels IGP", + "products": 2 + }, + { + "products": 2, + "name": "Dattes-seches", + "id": "fr:dattes-seches", + "url": "https://fr.openfoodfacts.org/categorie/dattes-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grains-de-sarrasin", + "products": 2, + "id": "fr:grains-de-sarrasin", + "name": "Grains-de-sarrasin" + }, + { + "products": 2, + "id": "fr:sucettes-glacees", + "name": "Sucettes-glacees", + "url": "https://fr.openfoodfacts.org/categorie/sucettes-glacees" + }, + { + "products": 2, + "id": "fr:caramels-tendres", + "name": "Caramels-tendres", + "url": "https://fr.openfoodfacts.org/categorie/caramels-tendres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bulots-cuits", + "products": 2, + "id": "fr:bulots-cuits", + "name": "Bulots-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-d-artichauts-surgeles", + "name": "Fonds-d-artichauts-surgeles", + "id": "fr:fonds-d-artichauts-surgeles", + "products": 2 + }, + { + "id": "fr:boissons-gazeifiees", + "name": "Boissons-gazeifiees", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/boissons-gazeifiees" + }, + { + "products": 2, + "name": "Oranges-sanguines", + "id": "fr:oranges-sanguines", + "url": "https://fr.openfoodfacts.org/categorie/oranges-sanguines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-mirabelles", + "name": "Nectars-de-mirabelles", + "id": "fr:nectars-de-mirabelles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/margarine-allegee-demi-sel", + "products": 2, + "name": "Margarine-allegee-demi-sel", + "id": "fr:margarine-allegee-demi-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-riz-nappage-caramel", + "name": "Gateaux-de-riz-nappage-caramel", + "id": "fr:gateaux-de-riz-nappage-caramel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-a-la-mangue", + "name": "Vinaigres-a-la-mangue", + "id": "fr:vinaigres-a-la-mangue", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-sauvages", + "products": 2, + "name": "Crevettes-sauvages", + "id": "fr:crevettes-sauvages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-aux-champignons", + "products": 2, + "name": "Terrines-aux-champignons", + "id": "fr:terrines-aux-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-de-millet-pour-cuisiner", + "products": 2, + "id": "en:millet-based-creams-for-cooking", + "name": "Crèmes végétales à base de millet pour cuisiner" + }, + { + "products": 2, + "id": "fr:filets-de-maquereaux-moutarde-ancienne-et-citron", + "name": "Filets-de-maquereaux-moutarde-ancienne-et-citron", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-moutarde-ancienne-et-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-sucres", + "id": "fr:sans-sucres", + "name": "Sans-sucres", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taramas-au-crabe", + "id": "fr:taramas-au-crabe", + "name": "Taramas au crabe", + "products": 2 + }, + { + "id": "fr:steaks-vegetales-pour-hamburgers", + "name": "Steaks-vegetales-pour-hamburgers", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/steaks-vegetales-pour-hamburgers" + }, + { + "name": "en:Fromages-de-france", + "id": "en:fromages-de-france", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-de-france" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-aoc", + "products": 2, + "name": "en:Produits-aoc", + "id": "en:produits-aoc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-labellises", + "products": 2, + "name": "en:Produits-labellises", + "id": "en:produits-labellises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-sans-gluten", + "id": "en:biscuits-sans-gluten", + "name": "en:Biscuits-sans-gluten", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-avec-couenne", + "name": "Jambons-avec-couenne", + "id": "fr:jambons-avec-couenne", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-la-catalane", + "id": "fr:filets-de-maquereaux-a-la-catalane", + "name": "Filets-de-maquereaux-a-la-catalane", + "products": 2 + }, + { + "products": 2, + "id": "de:moulages-en-chocolat", + "name": "de:Moulages-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:moulages-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-a-tartiner", + "products": 2, + "id": "de:fromages-a-tartiner", + "name": "de:Fromages-a-tartiner" + }, + { + "products": 2, + "id": "en:fromages-au-lait-de-bufflonne", + "name": "en:Fromages-au-lait-de-bufflonne", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-au-lait-de-bufflonne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-cannelle", + "name": "Biscuits-a-la-cannelle", + "id": "fr:biscuits-a-la-cannelle", + "products": 2 + }, + { + "products": 2, + "name": "Quincy Val de Loire", + "id": "fr:quincy-val-de-loire", + "url": "https://fr.openfoodfacts.org/categorie/quincy-val-de-loire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-affines", + "id": "fr:fromages-affines", + "name": "Fromages-affines", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galettes-de-cereales", + "products": 2, + "id": "es:galettes-de-cereales", + "name": "es:Galettes-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cloches-en-chocolat", + "id": "fr:cloches-en-chocolat", + "name": "Cloches-en-chocolat", + "products": 2 + }, + { + "products": 2, + "id": "es:raisins-secs", + "name": "es:Raisins-secs", + "url": "https://fr.openfoodfacts.org/categorie/es:raisins-secs" + }, + { + "name": "Wurste", + "id": "fr:wurste", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/wurste" + }, + { + "name": "Plats-a-base-de-thon", + "id": "fr:plats-a-base-de-thon", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-thon" + }, + { + "name": "en:Eaux-de-vie", + "id": "en:eaux-de-vie", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:eaux-de-vie" + }, + { + "name": "es:Chips-de-mais", + "id": "es:chips-de-mais", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/es:chips-de-mais" + }, + { + "products": 2, + "name": "Kaffees", + "id": "fr:kaffees", + "url": "https://fr.openfoodfacts.org/categorie/kaffees" + }, + { + "products": 2, + "name": "en:Bebidas-no-azucaradas", + "id": "en:bebidas-no-azucaradas", + "url": "https://fr.openfoodfacts.org/categorie/en:bebidas-no-azucaradas" + }, + { + "id": "fr:bieres-bretons", + "name": "Bieres-bretons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/bieres-bretons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/savaroises", + "products": 2, + "id": "fr:savaroises", + "name": "Savaroises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:riz-long-grain", + "products": 2, + "id": "en:riz-long-grain", + "name": "en:Riz-long-grain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-poivrons-multicolores", + "products": 2, + "name": "Mélanges de poivrons multicolores", + "id": "en:mixed-bell-peppers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gard", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3095358" + ], + "id": "fr:gard", + "name": "Gard", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-sel-et-au-poivre", + "id": "en:salt-and-pepper-crisps", + "name": "Chips au sel et au poivre", + "products": 2 + }, + { + "products": 2, + "id": "fr:courgettes-cuisinees", + "name": "Courgettes-cuisinees", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-cuisinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pleurotes-en-huitre", + "name": "Pleurotes en huître", + "id": "en:oyster-mushrooms", + "products": 2 + }, + { + "products": 2, + "name": "es:Miels-cremeux", + "id": "es:miels-cremeux", + "url": "https://fr.openfoodfacts.org/categorie/es:miels-cremeux" + }, + { + "name": "Chips-de-kale", + "id": "fr:chips-de-kale", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-kale" + }, + { + "products": 2, + "name": "en:Nectars-de-fruits", + "id": "en:nectars-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:nectars-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nems-de-volaille", + "products": 2, + "name": "Nems-de-volaille", + "id": "fr:nems-de-volaille" + }, + { + "products": 2, + "id": "fr:nectars-de-fraises", + "name": "Nectars-de-fraises", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-chinois", + "id": "fr:choux-chinois", + "name": "Choux-chinois", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumes-tiges", + "name": "es:Legumes-tiges", + "id": "es:legumes-tiges", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-natures-sucres", + "products": 2, + "id": "fr:yaourts-a-boire-natures-sucres", + "name": "Yaourts-a-boire-natures-sucres" + }, + { + "name": "de:Fromages-des-pays-bas", + "id": "de:fromages-des-pays-bas", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-des-pays-bas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/linguine-aux-oeufs", + "id": "fr:linguine-aux-oeufs", + "name": "Linguine-aux-oeufs", + "products": 2 + }, + { + "name": "Biscuits-alleges", + "id": "fr:biscuits-alleges", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-alleges" + }, + { + "products": 2, + "name": "Nuggets-de-fromage", + "id": "fr:nuggets-de-fromage", + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-fromage" + }, + { + "products": 2, + "id": "fr:huiles-pour-pizzas", + "name": "Huiles-pour-pizzas", + "url": "https://fr.openfoodfacts.org/categorie/huiles-pour-pizzas" + }, + { + "products": 2, + "id": "fr:chocolats-avec-des-cereales", + "name": "Chocolats-avec-des-cereales", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-avec-des-cereales" + }, + { + "products": 2, + "name": "de:Substitut-du-lait", + "id": "de:substitut-du-lait", + "url": "https://fr.openfoodfacts.org/categorie/de:substitut-du-lait" + }, + { + "name": "Melanges-de-haricots-verts-et-beurre", + "id": "fr:melanges-de-haricots-verts-et-beurre", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-haricots-verts-et-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajines-de-legumes", + "name": "Tajines-de-legumes", + "id": "fr:tajines-de-legumes", + "products": 2 + }, + { + "id": "fr:pilchards", + "name": "Pilchards", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pilchards" + }, + { + "name": "Yaourts-natures-sucres", + "id": "fr:yaourts-natures-sucres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-natures-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:confiseries-chocolatees", + "products": 2, + "name": "de:Confiseries-chocolatees", + "id": "de:confiseries-chocolatees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sardines-en-conserve", + "id": "en:sardines-en-conserve", + "name": "en:Sardines-en-conserve", + "products": 2 + }, + { + "products": 2, + "name": "Vins-d-afrique-du-sud", + "id": "fr:vins-d-afrique-du-sud", + "url": "https://fr.openfoodfacts.org/categorie/vins-d-afrique-du-sud" + }, + { + "products": 2, + "id": "pt:pates", + "name": "pt:Pates", + "url": "https://fr.openfoodfacts.org/categorie/pt:pates" + }, + { + "id": "fr:haricots-noirs-en-conserve", + "name": "Haricots noirs en conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/haricots-noirs-en-conserve" + }, + { + "id": "pt:aliments-d-origine-vegetale", + "name": "pt:Aliments-d-origine-vegetale", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:aliments-d-origine-vegetale" + }, + { + "products": 2, + "name": "pt:Conserves", + "id": "pt:conserves", + "url": "https://fr.openfoodfacts.org/categorie/pt:conserves" + }, + { + "products": 2, + "id": "fr:miels-crus", + "name": "Miels-crus", + "url": "https://fr.openfoodfacts.org/categorie/miels-crus" + }, + { + "products": 2, + "id": "es:productos-del-cacao", + "name": "es:Productos-del-cacao", + "url": "https://fr.openfoodfacts.org/categorie/es:productos-del-cacao" + }, + { + "products": 2, + "id": "es:pains-speciaux", + "name": "es:Pains-speciaux", + "url": "https://fr.openfoodfacts.org/categorie/es:pains-speciaux" + }, + { + "id": "pt:poissons", + "name": "pt:Poissons", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pt:poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelle-de-soja", + "products": 2, + "name": "Vermicelle-de-soja", + "id": "fr:vermicelle-de-soja" + }, + { + "products": 2, + "name": "de:Sodas-light", + "id": "de:sodas-light", + "url": "https://fr.openfoodfacts.org/categorie/de:sodas-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crepes-de-froment", + "products": 2, + "name": "en:Crepes-de-froment", + "id": "en:crepes-de-froment" + }, + { + "name": "Decors-pour-gateaux", + "id": "fr:decors-pour-gateaux", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/decors-pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-du-sud-ouest-avec-morceaux", + "name": "Bloc-de-foie-gras-de-canard-du-sud-ouest-avec-morceaux", + "id": "fr:bloc-de-foie-gras-de-canard-du-sud-ouest-avec-morceaux", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cremes-glacees", + "name": "de:Cremes-glacees", + "id": "de:cremes-glacees", + "products": 2 + }, + { + "products": 2, + "name": "Chocolats-patissiers", + "id": "fr:chocolats-patissiers", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-patissiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-de-menage", + "products": 2, + "name": "Chocolats-de-menage", + "id": "fr:chocolats-de-menage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-brioches", + "id": "fr:preparations-pour-brioches", + "name": "Preparations-pour-brioches", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lalande-de-pomerol", + "sameAs": [ + "https://www.wikidata.org/wiki/Q669737" + ], + "products": 2, + "name": "Lalande-de-pomerol", + "id": "fr:lalande-de-pomerol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-aux-cereales", + "id": "fr:pain-aux-cereales", + "name": "Pain-aux-cereales", + "products": 2 + }, + { + "id": "fr:jarrets-de-porc", + "name": "Jarrets-de-porc", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/jarrets-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pflanzliche-lebensmittel-und-getranke", + "name": "es:Pflanzliche-lebensmittel-und-getranke", + "id": "es:pflanzliche-lebensmittel-und-getranke", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-pour-bebe", + "name": "en:Cereales-pour-bebe", + "id": "en:cereales-pour-bebe", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-plantes-surgeles", + "products": 2, + "id": "de:aliments-a-base-de-plantes-surgeles", + "name": "de:Aliments-a-base-de-plantes-surgeles" + }, + { + "name": "en:Creamy-peanut-butter", + "id": "en:creamy-peanut-butter", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:creamy-peanut-butter" + }, + { + "name": "Pappardelles", + "id": "fr:pappardelles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pappardelles" + }, + { + "products": 2, + "id": "fr:jus-multifruits-100-pur-jus", + "name": "Jus-multifruits-100-pur-jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-multifruits-100-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-fermier-d-auvergne", + "products": 2, + "id": "fr:poulet-fermier-d-auvergne", + "name": "Poulet-fermier-d-auvergne" + }, + { + "id": "en:boissons-light", + "name": "en:Boissons-light", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-light" + }, + { + "products": 2, + "name": "es:Jus-de-fruits-frais", + "id": "es:jus-de-fruits-frais", + "url": "https://fr.openfoodfacts.org/categorie/es:jus-de-fruits-frais" + }, + { + "products": 2, + "name": "Root-beers", + "id": "fr:root-beers", + "url": "https://fr.openfoodfacts.org/categorie/root-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filet-de-boeuf", + "products": 2, + "name": "Filet-de-boeuf", + "id": "fr:filet-de-boeuf" + }, + { + "name": "Foies-gras-d-oies", + "id": "fr:foies-gras-d-oies", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-d-oies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bananes-cavendish", + "name": "Bananes-cavendish", + "id": "fr:bananes-cavendish", + "products": 2 + }, + { + "name": "Torti-a-la-provencale", + "id": "fr:torti-a-la-provencale", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/torti-a-la-provencale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-de-raclette", + "products": 2, + "id": "fr:fromage-de-raclette", + "name": "Fromage-de-raclette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-rafraichissante", + "id": "fr:boisson-rafraichissante", + "name": "Boisson-rafraichissante", + "products": 2 + }, + { + "id": "en:indian-food", + "name": "en:Indian-food", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:indian-food" + }, + { + "name": "Boissons-au-citron", + "id": "fr:boissons-au-citron", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-citron" + }, + { + "products": 2, + "name": "Zoetstoffen", + "id": "fr:zoetstoffen", + "url": "https://fr.openfoodfacts.org/categorie/zoetstoffen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cachet-effervescent", + "products": 2, + "name": "Cachet-effervescent", + "id": "fr:cachet-effervescent" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:coffee-creamer", + "products": 2, + "id": "en:coffee-creamer", + "name": "en:Coffee-creamer" + }, + { + "products": 2, + "id": "en:smoked-chicken-breast", + "name": "Blanc de poulet fumé", + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-poulet-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alimentaire", + "products": 2, + "name": "Alimentaire", + "id": "fr:alimentaire" + }, + { + "id": "sv:chocolats-au-lait", + "name": "sv:Chocolats-au-lait", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sv:chocolats-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beef-jerky", + "id": "en:beef-jerky", + "name": "en:Beef-jerky", + "products": 2 + }, + { + "products": 2, + "id": "fr:merlu", + "name": "Merlu", + "url": "https://fr.openfoodfacts.org/categorie/merlu" + }, + { + "products": 2, + "id": "fr:hachis-parmentier-bio", + "name": "Hachis-parmentier-bio", + "url": "https://fr.openfoodfacts.org/categorie/hachis-parmentier-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-myrtilles", + "products": 2, + "name": "Yaourts-sur-lit-de-myrtilles", + "id": "fr:yaourts-sur-lit-de-myrtilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:postres-vegetales-con-cacao", + "id": "es:postres-vegetales-con-cacao", + "name": "es:Postres-vegetales-con-cacao", + "products": 2 + }, + { + "name": "it:Pates-a-tartiner-aux-noisettes-et-au-cacao", + "id": "it:pates-a-tartiner-aux-noisettes-et-au-cacao", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:pates-a-tartiner-aux-noisettes-et-au-cacao" + }, + { + "products": 2, + "name": "Poissons-panes-de-saumon", + "id": "fr:poissons-panes-de-saumon", + "url": "https://fr.openfoodfacts.org/categorie/poissons-panes-de-saumon" + }, + { + "id": "en:cheddar-and-onion-crisps", + "name": "Chips cheddar et onion", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chips-cheddar-et-onion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-aux-legumes", + "name": "Couscous-aux-legumes", + "id": "fr:couscous-aux-legumes", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-d-epautre", + "products": 2, + "id": "fr:galettes-d-epautre", + "name": "Galettes-d-epautre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q462134" + ], + "url": "https://fr.openfoodfacts.org/categorie/pacherenc-du-vic-bilh-sec", + "id": "fr:pacherenc-du-vic-bilh-sec", + "name": "Pacherenc du Vic-Bilh sec", + "products": 2 + }, + { + "name": "Bieres-de-degustation", + "id": "fr:bieres-de-degustation", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-degustation" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:bouillons-de-legumes-deshydrates", + "products": 2, + "name": "de:Bouillons-de-legumes-deshydrates", + "id": "de:bouillons-de-legumes-deshydrates" + }, + { + "id": "fr:choucroutes-en-conserve", + "name": "Choucroutes-en-conserve", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/choucroutes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blancs-de-dinde-dore-au-four", + "name": "Blancs de dinde doré au four", + "id": "fr:blancs-de-dinde-dore-au-four", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tonics", + "name": "Tonics", + "id": "fr:tonics", + "products": 2 + }, + { + "products": 2, + "name": "Tablette-de-chocolat", + "id": "fr:tablette-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/tablette-de-chocolat" + }, + { + "products": 2, + "name": "Mousses-lactees-au-citron", + "id": "fr:mousses-lactees-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-au-citron" + }, + { + "id": "fr:mousses-lactees-au-cafe", + "name": "Mousses-lactees-au-cafe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-au-cafe" + }, + { + "id": "fr:magrets-de-canard-seches", + "name": "Magrets-de-canard-seches", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/magrets-de-canard-seches" + }, + { + "products": 2, + "name": "Gateaux-de-semoule-aux-raisins", + "id": "fr:gateaux-de-semoule-aux-raisins", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-semoule-aux-raisins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-galette", + "products": 2, + "id": "fr:preparation-pour-galette", + "name": "Preparation-pour-galette" + }, + { + "id": "fr:parmentiers-de-poulet", + "name": "Parmentiers-de-poulet", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-poulet" + }, + { + "id": "fr:compotes-pommes-poires-mandarine", + "name": "Compotes-pommes-poires-mandarine", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-poires-mandarine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fettuccine", + "products": 2, + "id": "fr:fettuccine", + "name": "Fettuccine" + }, + { + "products": 2, + "name": "Sirops-de-goyave", + "id": "fr:sirops-de-goyave", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-goyave" + }, + { + "id": "fr:delices-de-surimi-a-la-chair-de-crabe", + "name": "Delices-de-surimi-a-la-chair-de-crabe", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/delices-de-surimi-a-la-chair-de-crabe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gaufres", + "name": "de:Gaufres", + "id": "de:gaufres", + "products": 2 + }, + { + "products": 2, + "id": "de:complements-alimentaires", + "name": "de:Complements-alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/de:complements-alimentaires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/magret", + "products": 2, + "name": "Magret", + "id": "fr:magret" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-fume", + "products": 2, + "id": "fr:jambon-fume", + "name": "Jambon-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:pates-a-tartiner-vegetaux", + "id": "nl:pates-a-tartiner-vegetaux", + "name": "nl:Pates-a-tartiner-vegetaux", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gnocchi-de-pommes-de-terre", + "name": "en:Gnocchi-de-pommes-de-terre", + "id": "en:gnocchi-de-pommes-de-terre", + "products": 2 + }, + { + "id": "fr:thes-au-jasmin", + "name": "Thes-au-jasmin", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/thes-au-jasmin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure-chimique", + "name": "Levure-chimique", + "id": "fr:levure-chimique", + "products": 2 + }, + { + "id": "fr:vacherin", + "name": "Vacherin", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/vacherin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-et-boissons-de-noel", + "name": "es:Aliments-et-boissons-de-noel", + "id": "es:aliments-et-boissons-de-noel", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-glaces", + "name": "Thes-verts-glaces", + "id": "fr:thes-verts-glaces", + "products": 2 + }, + { + "products": 2, + "name": "en:Pflanzliche-brotaufstriche", + "id": "en:pflanzliche-brotaufstriche", + "url": "https://fr.openfoodfacts.org/categorie/en:pflanzliche-brotaufstriche" + }, + { + "products": 2, + "id": "en:algues-et-derives", + "name": "en:Algues-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/en:algues-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fisch-und-meeresfruchte", + "id": "en:fisch-und-meeresfruchte", + "name": "en:Fisch-und-meeresfruchte", + "products": 2 + }, + { + "products": 2, + "name": "nl:Confitures", + "id": "nl:confitures", + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures-de-fruits", + "products": 2, + "name": "nl:Confitures-de-fruits", + "id": "nl:confitures-de-fruits" + }, + { + "products": 2, + "name": "nl:Confitures-de-fruits-rouges", + "id": "nl:confitures-de-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures-de-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-potiron-carottes", + "products": 2, + "name": "Soupe-potiron-carottes", + "id": "fr:soupe-potiron-carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-glucose", + "products": 2, + "name": "Sirop-de-glucose", + "id": "fr:sirop-de-glucose" + }, + { + "products": 2, + "id": "fr:soupes-bio", + "name": "Soupes-bio", + "url": "https://fr.openfoodfacts.org/categorie/soupes-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:beurres-de-cacahuetes", + "products": 2, + "id": "de:beurres-de-cacahuetes", + "name": "de:Beurres-de-cacahuetes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:beurres-de-legumineuses", + "products": 2, + "id": "de:beurres-de-legumineuses", + "name": "de:Beurres-de-legumineuses" + }, + { + "id": "it:produits-a-tartiner", + "name": "it:Produits-a-tartiner", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:produits-a-tartiner" + }, + { + "name": "de:Des-12-mois", + "id": "de:des-12-mois", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:des-12-mois" + }, + { + "products": 2, + "name": "Plats-a-base-d-agneau", + "id": "fr:plats-a-base-d-agneau", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-d-agneau" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1421562" + ], + "url": "https://fr.openfoodfacts.org/categorie/pomerol", + "name": "Pomerol", + "id": "fr:pomerol", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-blancs", + "name": "Raisins-blancs", + "id": "fr:raisins-blancs", + "products": 2 + }, + { + "products": 2, + "id": "fr:bieres-au-chanvre", + "name": "Bieres-au-chanvre", + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-chanvre" + }, + { + "products": 2, + "name": "Allumettes de jambon", + "id": "fr:allumettes-de-jambon", + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blancs-de-poulet-a-la-provencale", + "name": "Blancs-de-poulet-a-la-provencale", + "id": "fr:blancs-de-poulet-a-la-provencale", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchetti-sardi", + "products": 2, + "id": "fr:gnocchetti-sardi", + "name": "Gnocchetti-sardi" + }, + { + "products": 2, + "name": "Meta-category", + "id": "fr:meta-category", + "url": "https://fr.openfoodfacts.org/categorie/meta-category" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/algues-kombu-seches", + "products": 2, + "name": "Algues kombu sèches", + "id": "en:dried-kombu-seaweeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortelli", + "name": "Tortelli", + "id": "fr:tortelli", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruhstucke", + "products": 2, + "name": "en:Fruhstucke", + "id": "en:fruhstucke" + }, + { + "id": "en:anglers", + "name": "Lottes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/lottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chateauneuf-du-pape", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2914687" + ], + "products": 2, + "id": "fr:chateauneuf-du-pape", + "name": "Châteauneuf-du-Pape" + }, + { + "id": "en:sodas-au-citron", + "name": "en:Sodas-au-citron", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-a-l-orange", + "name": "en:Chocolats-noirs-a-l-orange", + "id": "en:chocolats-noirs-a-l-orange", + "products": 2 + }, + { + "products": 2, + "name": "en:Pruneaux-d-agen", + "id": "en:pruneaux-d-agen", + "url": "https://fr.openfoodfacts.org/categorie/en:pruneaux-d-agen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:rollwasser", + "id": "de:rollwasser", + "name": "de:Rollwasser", + "products": 2 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q10516678" + ], + "url": "https://fr.openfoodfacts.org/categorie/pains-plats-au-ble", + "products": 2, + "id": "en:wheat-flatbreads", + "name": "Pains plats au blé" + }, + { + "name": "Metka", + "id": "fr:metka", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/metka" + }, + { + "products": 2, + "name": "en:Marmelades-d-oranges", + "id": "en:marmelades-d-oranges", + "url": "https://fr.openfoodfacts.org/categorie/en:marmelades-d-oranges" + }, + { + "id": "fr:gateaux-ou-compotes", + "name": "Gateaux-ou-compotes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-ou-compotes" + }, + { + "id": "fr:boisson-chocolatee", + "name": "Boisson-chocolatee", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/boisson-chocolatee" + }, + { + "name": "Brats", + "id": "fr:brats", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/brats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-a-la-viande", + "name": "Tourtes-a-la-viande", + "id": "fr:tourtes-a-la-viande", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chorbas", + "products": 2, + "id": "fr:chorbas", + "name": "Chorbas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-au-lait-avec-nougat", + "products": 2, + "id": "fr:chocolat-au-lait-avec-nougat", + "name": "Chocolat-au-lait-avec-nougat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-fleurette", + "id": "fr:creme-fleurette", + "name": "Creme-fleurette", + "products": 2 + }, + { + "products": 2, + "id": "en:barley-flakes", + "name": "Flocons d'orge", + "url": "https://fr.openfoodfacts.org/categorie/flocons-d-orge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-boeuf-degraisse", + "name": "Bouillons-de-boeuf-degraisse", + "id": "fr:bouillons-de-boeuf-degraisse", + "products": 2 + }, + { + "products": 2, + "id": "fr:chocolats-blancs-aux-feves-de-cacao", + "name": "Chocolats-blancs-aux-feves-de-cacao", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aux-feves-de-cacao" + }, + { + "name": "de:Poissons-surgeles", + "id": "de:poissons-surgeles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:poissons-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:allumettes-de-porc", + "id": "en:allumettes-de-porc", + "name": "en:Allumettes-de-porc", + "products": 2 + }, + { + "name": "Yakitori", + "id": "fr:yakitori", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/yakitori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bicarbonate", + "products": 2, + "name": "Bicarbonate", + "id": "fr:bicarbonate" + }, + { + "products": 2, + "name": "Papayes", + "id": "en:papayas", + "url": "https://fr.openfoodfacts.org/categorie/papayes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:trockensuppe", + "products": 2, + "name": "de:Trockensuppe", + "id": "de:trockensuppe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-penne-rigate", + "products": 2, + "name": "Mini-penne-rigate", + "id": "fr:mini-penne-rigate" + }, + { + "products": 2, + "name": "en:Salad", + "id": "en:salad", + "url": "https://fr.openfoodfacts.org/categorie/en:salad" + }, + { + "products": 2, + "name": "it:Lattiero-caseario", + "id": "it:lattiero-caseario", + "url": "https://fr.openfoodfacts.org/categorie/it:lattiero-caseario" + }, + { + "id": "fr:frutas-deshidratadas", + "name": "Frutas-deshidratadas", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/frutas-deshidratadas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-au-foie-gras", + "products": 2, + "name": "Boudins-blancs-au-foie-gras", + "id": "fr:boudins-blancs-au-foie-gras" + }, + { + "name": "Genièvre", + "id": "en:jenever", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q80680" + ], + "url": "https://fr.openfoodfacts.org/categorie/genievre" + }, + { + "id": "fr:vins-australiens", + "name": "Vins-australiens", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/vins-australiens" + }, + { + "products": 2, + "name": "Cakes-a-la-carotte", + "id": "fr:cakes-a-la-carotte", + "url": "https://fr.openfoodfacts.org/categorie/cakes-a-la-carotte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:boissons", + "products": 2, + "name": "sv:Boissons", + "id": "sv:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/avoine-souffle", + "name": "Avoine soufflé", + "id": "en:puffed-oat", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-grenade-a-base-de-concentre", + "products": 2, + "id": "en:concentrated-pomegranate-juices", + "name": "Jus de grenade à base de concentré" + }, + { + "products": 2, + "id": "fr:preparations-pour-flans-au-chocolat", + "name": "Preparations-pour-flans-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-flans-au-chocolat" + }, + { + "products": 2, + "name": "en:Yaourts-natures", + "id": "en:yaourts-natures", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-natures" + }, + { + "id": "fr:sels-liquides", + "name": "Sels liquides", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sels-liquides" + }, + { + "name": "Cube-pour-soupe-miso", + "id": "fr:cube-pour-soupe-miso", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cube-pour-soupe-miso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-shiitake", + "name": "Champignons shiitake", + "id": "en:shiitake-mushrooms", + "products": 2 + }, + { + "name": "Rosé de Loire Val de Loire", + "id": "fr:rose-de-loire-val-de-loire", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/rose-de-loire-val-de-loire" + }, + { + "products": 2, + "name": "Pizzas aux cinq fromages", + "id": "en:five-cheese-pizza", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-cinq-fromages" + }, + { + "id": "fr:sirop-de-noisettes", + "name": "Sirop-de-noisettes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-sushi", + "products": 2, + "id": "en:sushi-medley", + "name": "Assortiments de sushi" + }, + { + "name": "Tennessee whiskey", + "id": "en:tennessee-whiskey", + "products": 2, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1088701" + ], + "url": "https://fr.openfoodfacts.org/categorie/tennessee-whiskey" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-piments", + "id": "fr:puree-de-piments", + "name": "Puree-de-piments", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coriandre-moulue", + "id": "fr:coriandre-moulue", + "name": "Coriandre-moulue", + "products": 2 + }, + { + "id": "fr:soles", + "name": "Soles", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/soles" + }, + { + "products": 2, + "name": "Dragees-au-chocolat", + "id": "fr:dragees-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/dragees-au-chocolat" + }, + { + "products": 2, + "name": "Liegeois-au-cafe", + "id": "fr:liegeois-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/liegeois-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-mirabelle", + "id": "fr:compotes-de-mirabelle", + "name": "Compotes-de-mirabelle", + "products": 2 + }, + { + "products": 2, + "name": "Brioches-suisses", + "id": "fr:brioches-suisses", + "url": "https://fr.openfoodfacts.org/categorie/brioches-suisses" + }, + { + "products": 2, + "name": "Eminces-de-dinde", + "id": "fr:eminces-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-dinde" + }, + { + "id": "fr:pates-de-ble-entier", + "name": "Pates-de-ble-entier", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-entier" + }, + { + "products": 2, + "name": "es:Chocolats", + "id": "es:chocolats", + "url": "https://fr.openfoodfacts.org/categorie/es:chocolats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/probiotiques", + "products": 2, + "name": "Probiotiques", + "id": "fr:probiotiques" + }, + { + "products": 2, + "id": "en:frozen-avocados", + "name": "Avocats surgelés", + "url": "https://fr.openfoodfacts.org/categorie/avocats-surgeles" + }, + { + "id": "fr:cremes-de-vinaigre-balsamique", + "name": "Cremes-de-vinaigre-balsamique", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-vinaigre-balsamique" + }, + { + "products": 2, + "name": "Faluches", + "id": "fr:faluches", + "url": "https://fr.openfoodfacts.org/categorie/faluches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:cereales-pour-petit-dejeuner", + "products": 2, + "name": "pt:Cereales-pour-petit-dejeuner", + "id": "pt:cereales-pour-petit-dejeuner" + }, + { + "id": "fr:chocolats-aux-insectes", + "name": "Chocolats-aux-insectes", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-insectes" + }, + { + "products": 2, + "name": "Sancerre", + "id": "fr:sancerre", + "url": "https://fr.openfoodfacts.org/categorie/sancerre", + "sameAs": [ + "https://www.wikidata.org/wiki/Q282221" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:legumes-surgeles", + "name": "en:Legumes-surgeles", + "id": "en:legumes-surgeles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistachos", + "id": "fr:pistachos", + "name": "Pistachos", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nappages", + "products": 2, + "name": "en:Nappages", + "id": "en:nappages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coucougnettes", + "name": "Coucougnettes", + "id": "fr:coucougnettes", + "products": 2 + }, + { + "name": "de:Produits-labellises", + "id": "de:produits-labellises", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:produits-labellises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/milch", + "name": "Milch", + "id": "fr:milch", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-tranches", + "products": 2, + "name": "Jambons-tranches", + "id": "fr:jambons-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/onigiri", + "products": 2, + "id": "fr:onigiri", + "name": "Onigiri" + }, + { + "id": "de:biscuits-aperitifs", + "name": "de:Biscuits-aperitifs", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-aperitifs" + }, + { + "products": 2, + "name": "en:Miels-de-fleurs", + "id": "en:miels-de-fleurs", + "url": "https://fr.openfoodfacts.org/categorie/en:miels-de-fleurs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-myrtilles", + "id": "fr:gelees-de-myrtilles", + "name": "Gelees-de-myrtilles", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-guacamoles", + "id": "fr:preparations-pour-guacamoles", + "name": "Preparations-pour-guacamoles", + "products": 2 + }, + { + "products": 2, + "name": "Gelees-d-ananas", + "id": "fr:gelees-d-ananas", + "url": "https://fr.openfoodfacts.org/categorie/gelees-d-ananas" + }, + { + "products": 2, + "id": "fr:pains-italiens", + "name": "Pains-italiens", + "url": "https://fr.openfoodfacts.org/categorie/pains-italiens" + }, + { + "products": 2, + "name": "Pasta-di-gragnano", + "id": "fr:pasta-di-gragnano", + "url": "https://fr.openfoodfacts.org/categorie/pasta-di-gragnano" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:antipasti", + "products": 2, + "id": "it:antipasti", + "name": "it:Antipasti" + }, + { + "id": "fr:fette", + "name": "Fette", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/fette" + }, + { + "name": "Farines de froment T150", + "id": "en:whole-common-wheat-flours", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment-t150" + }, + { + "name": "Persillades", + "id": "fr:persillades", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/persillades" + }, + { + "id": "it:pates-a-tartiner", + "name": "it:Pates-a-tartiner", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:pates-a-tartiner" + }, + { + "products": 2, + "id": "fr:biscuits-pour-le-petit-dejeuner", + "name": "Biscuits-pour-le-petit-dejeuner", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pour-le-petit-dejeuner" + }, + { + "products": 2, + "id": "en:brown-sauces", + "name": "Brown sauces", + "url": "https://fr.openfoodfacts.org/categorie/brown-sauces" + }, + { + "name": "de:Sodas-au-cola-light", + "id": "de:sodas-au-cola-light", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/de:sodas-au-cola-light" + }, + { + "name": "it:Acqua", + "id": "it:acqua", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/it:acqua" + }, + { + "products": 2, + "name": "da:Boissons-sucrees", + "id": "da:boissons-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/da:boissons-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-cola", + "name": "Boissons-au-cola", + "id": "fr:boissons-au-cola", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sucre", + "id": "en:sucre", + "name": "en:Sucre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-de-fruits-100-pur-jus", + "name": "es:Jus-de-fruits-100-pur-jus", + "id": "es:jus-de-fruits-100-pur-jus", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vire-clesse", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3560958" + ], + "id": "fr:vire-clesse", + "name": "Viré-Clessé", + "products": 2 + }, + { + "name": "en:Graines-de-chia", + "id": "en:graines-de-chia", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:graines-de-chia" + }, + { + "products": 2, + "id": "fr:schokoriegel", + "name": "Schokoriegel", + "url": "https://fr.openfoodfacts.org/categorie/schokoriegel" + }, + { + "id": "en:carrot-coriander-soup", + "name": "en:Carrot-coriander-soup", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:carrot-coriander-soup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:genoises", + "name": "en:Genoises", + "id": "en:genoises", + "products": 2 + }, + { + "products": 2, + "id": "fr:levures-fraiches", + "name": "Levures-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/levures-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-creme", + "name": "Gateaux-a-la-creme", + "id": "fr:gateaux-a-la-creme", + "products": 2 + }, + { + "products": 2, + "name": "Gelees-de-fleurs", + "id": "fr:gelees-de-fleurs", + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-fleurs" + }, + { + "products": 2, + "id": "en:petits-pois-en-conserve", + "name": "en:Petits-pois-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/en:petits-pois-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batavia", + "id": "fr:batavia", + "name": "Batavia", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pappardelle", + "products": 2, + "name": "Pappardelle", + "id": "fr:pappardelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-aromatisees-et-colorees", + "id": "fr:tagliatelles-aromatisees-et-colorees", + "name": "Tagliatelles-aromatisees-et-colorees", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pinot-gris", + "name": "Pinot-gris", + "id": "fr:pinot-gris", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-marilyn", + "name": "Pommes-de-terre-marilyn", + "id": "fr:pommes-de-terre-marilyn", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-italiennes", + "products": 2, + "id": "fr:sauces-italiennes", + "name": "Sauces-italiennes" + }, + { + "products": 2, + "name": "nl:Boissons-a-base-de-vegetaux", + "id": "nl:boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/nl:boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-beurre", + "id": "fr:galettes-au-beurre", + "name": "Galettes-au-beurre", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-plantes-en-conserve", + "products": 2, + "id": "de:aliments-a-base-de-plantes-en-conserve", + "name": "de:Aliments-a-base-de-plantes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/badiane", + "products": 2, + "id": "fr:badiane", + "name": "Badiane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues-surgelees", + "products": 2, + "id": "fr:mangues-surgelees", + "name": "Mangues-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-haricots-verts", + "products": 2, + "id": "fr:purees-de-haricots-verts", + "name": "Purées de haricots verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/herbes-de-provence-label-rouge", + "name": "Herbes de Provence Label Rouge", + "id": "fr:herbes-de-provence-label-rouge", + "products": 2 + }, + { + "products": 2, + "name": "es:Tempeh-de-soja", + "id": "es:tempeh-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/es:tempeh-de-soja" + }, + { + "id": "en:chocolats-fourres", + "name": "en:Chocolats-fourres", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-noix-de-saint-jacques", + "products": 2, + "name": "Rillettes-de-noix-de-saint-jacques", + "id": "fr:rillettes-de-noix-de-saint-jacques" + }, + { + "products": 2, + "id": "en:chocolats-noirs-sales", + "name": "en:Chocolats-noirs-sales", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frangipane", + "id": "fr:frangipane", + "name": "Frangipane", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-bar-sauvage", + "name": "Rillettes de bar sauvage", + "id": "fr:rillettes-de-bar-sauvage", + "products": 2 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-citron", + "name": "Yaourts-a-boire-citron", + "id": "fr:yaourts-a-boire-citron", + "products": 2 + }, + { + "products": 2, + "name": "en:Oeufs-en-chocolat", + "id": "en:oeufs-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs-en-chocolat" + }, + { + "name": "Chairs-de-tomates-au-basilic", + "id": "fr:chairs-de-tomates-au-basilic", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/chairs-de-tomates-au-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-guyot", + "products": 2, + "name": "Poires-guyot", + "id": "fr:poires-guyot" + }, + { + "products": 2, + "id": "fr:hypocras", + "name": "Hypocras", + "url": "https://fr.openfoodfacts.org/categorie/hypocras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-d-epinards", + "products": 2, + "id": "en:mashed-spinachs", + "name": "Purées d'épinards" + }, + { + "name": "Manioc", + "id": "fr:manioc", + "products": 2, + "url": "https://fr.openfoodfacts.org/categorie/manioc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-fruits-100-pur-jus", + "products": 2, + "id": "en:jus-de-fruits-100-pur-jus", + "name": "en:Jus-de-fruits-100-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/superaliment", + "id": "fr:superaliment", + "name": "Superaliment", + "products": 2 + }, + { + "products": 2, + "id": "fr:mouton", + "name": "Mouton", + "url": "https://fr.openfoodfacts.org/categorie/mouton" + }, + { + "products": 1, + "id": "fr:beignets-au-chocolat", + "name": "Beignets-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/beignets-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salede", + "products": 1, + "name": "Salede", + "id": "fr:salede" + }, + { + "id": "fr:produits-a-garnir", + "name": "Produits-a-garnir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-a-garnir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:irish-gins", + "id": "en:irish-gins", + "name": "en:Irish-gins", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/patiss", + "name": "Patiss", + "id": "fr:patiss", + "products": 1 + }, + { + "name": "Glaces-aux-speculoos", + "id": "fr:glaces-aux-speculoos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-speculoos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/stabilisants", + "name": "Stabilisants", + "id": "fr:stabilisants", + "products": 1 + }, + { + "id": "fr:chocolats-blancs-a-l-orange", + "name": "Chocolats-blancs-a-l-orange", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/requins", + "id": "fr:requins", + "name": "Requins", + "products": 1 + }, + { + "id": "fr:sorbets-a-la-quetsche", + "name": "Sorbets-a-la-quetsche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-quetsche" + }, + { + "name": "Huile-d-olive-de-navarre", + "id": "fr:huile-d-olive-de-navarre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-navarre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gatea", + "products": 1, + "id": "fr:gatea", + "name": "Gatea" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-cabillaud", + "products": 1, + "name": "Rillettes de cabillaud", + "id": "fr:rillettes-de-cabillaud" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parents", + "id": "fr:parents", + "name": "Parents", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-a-la-chicoree", + "name": "Gaufres-fourrees-a-la-chicoree", + "id": "fr:gaufres-fourrees-a-la-chicoree", + "products": 1 + }, + { + "products": 1, + "name": "de:Ginger-ale", + "id": "de:ginger-ale", + "url": "https://fr.openfoodfacts.org/categorie/de:ginger-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:leche-instantanea", + "products": 1, + "name": "es:Leche-instantanea", + "id": "es:leche-instantanea" + }, + { + "products": 1, + "name": "es:Laits-en-poudre", + "id": "es:laits-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/es:laits-en-poudre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q20767168" + ], + "url": "https://fr.openfoodfacts.org/categorie/rhubarbes", + "products": 1, + "name": "Rhubarbes", + "id": "en:rhubarbs" + }, + { + "name": "Courgettes-rondes", + "id": "fr:courgettes-rondes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/courgettes-rondes" + }, + { + "id": "fr:demi-baguette", + "name": "Demi-baguette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/demi-baguette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plant-based-ice-cream-sandwiches", + "name": "Plant-based ice cream sandwiches", + "id": "en:plant-based-ice-cream-sandwiches", + "products": 1 + }, + { + "name": "Poissons-frais", + "id": "fr:poissons-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poissons-frais" + }, + { + "id": "fr:compotes-de-myrtille", + "name": "Compotes-de-myrtille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-myrtille" + }, + { + "products": 1, + "id": "fr:cheesecakes-au-cassis", + "name": "Cheesecakes-au-cassis", + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-au-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-au-citron-vert", + "products": 1, + "id": "fr:cheesecakes-au-citron-vert", + "name": "Cheesecakes-au-citron-vert" + }, + { + "products": 1, + "id": "fr:boulgour-d-epeautre", + "name": "Boulgour-d-epeautre", + "url": "https://fr.openfoodfacts.org/categorie/boulgour-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-blondes-bio", + "name": "Lentilles-blondes-bio", + "id": "fr:lentilles-blondes-bio", + "products": 1 + }, + { + "name": "Orge-perlee", + "id": "fr:orge-perlee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/orge-perlee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croissants-fourres-a-la-creme", + "products": 1, + "name": "Croissants fourrés à la crème", + "id": "en:croissant-filled-with-cream" + }, + { + "products": 1, + "name": "Bavarois aux fruits", + "id": "fr:bavarois-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/bavarois-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-stracciatella", + "id": "fr:cremes-glacees-stracciatella", + "name": "Cremes-glacees-stracciatella", + "products": 1 + }, + { + "products": 1, + "name": "Aguas-minerales-naturales", + "id": "fr:aguas-minerales-naturales", + "url": "https://fr.openfoodfacts.org/categorie/aguas-minerales-naturales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mi-chevres", + "id": "fr:mi-chevres", + "name": "Mi-chevres", + "products": 1 + }, + { + "id": "fr:risottos-con-vegetales", + "name": "Risottos-con-vegetales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/risottos-con-vegetales" + }, + { + "name": "Pates-de-quinoa", + "id": "fr:pates-de-quinoa", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-quinoa" + }, + { + "products": 1, + "id": "it:salsa", + "name": "it:Salsa", + "url": "https://fr.openfoodfacts.org/categorie/it:salsa" + }, + { + "products": 1, + "id": "fr:compotes-de-fruits-rouges", + "name": "Compotes-de-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/palmiers-aperitifs", + "id": "fr:palmiers-aperitifs", + "name": "Palmiers-aperitifs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourrees-a-la-creme-d-amande", + "name": "Gaufrettes fourrées à la crème d'amande", + "id": "en:almond-creme-filled-wafers", + "products": 1 + }, + { + "products": 1, + "name": "Chocolats-noirs-au-lin", + "id": "fr:chocolats-noirs-au-lin", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-lin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truffes-en-conserve", + "products": 1, + "id": "en:canned-truffles", + "name": "Truffes en conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nappages-a-la-fraise", + "name": "Nappages-a-la-fraise", + "id": "fr:nappages-a-la-fraise", + "products": 1 + }, + { + "products": 1, + "name": "Pays-du-gard", + "id": "fr:pays-du-gard", + "url": "https://fr.openfoodfacts.org/categorie/pays-du-gard" + }, + { + "name": "Chocolats-au-lait-a-la-fraise", + "id": "fr:chocolats-au-lait-a-la-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croissants-aux-abricots", + "products": 1, + "name": "Croissants-aux-abricots", + "id": "fr:croissants-aux-abricots" + }, + { + "products": 1, + "id": "fr:fars-bretons-aux-pruneaux", + "name": "Fars-bretons-aux-pruneaux", + "url": "https://fr.openfoodfacts.org/categorie/fars-bretons-aux-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-invertis", + "sameAs": [ + "https://www.wikidata.org/wiki/Q412082" + ], + "id": "en:inverted-sugar-syrups", + "name": "Sucres invertis", + "products": 1 + }, + { + "id": "fr:pineau-des-charantes", + "name": "Pineau-des-charantes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pineau-des-charantes" + }, + { + "name": "Saint-Bris", + "id": "fr:saint-bris", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saint-bris", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3463542" + ] + }, + { + "products": 1, + "name": "Corton Charlemagne", + "id": "fr:corton-charlemagne", + "url": "https://fr.openfoodfacts.org/categorie/corton-charlemagne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1135641" + ] + }, + { + "name": "Saint-Péray mousseux", + "id": "fr:saint-peray-mousseux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saint-peray-mousseux" + }, + { + "products": 1, + "id": "es:soupes-froides", + "name": "es:Soupes-froides", + "url": "https://fr.openfoodfacts.org/categorie/es:soupes-froides" + }, + { + "products": 1, + "id": "fr:pates-filo", + "name": "Pates-filo", + "url": "https://fr.openfoodfacts.org/categorie/pates-filo" + }, + { + "products": 1, + "id": "fr:landes", + "name": "Landes", + "url": "https://fr.openfoodfacts.org/categorie/landes" + }, + { + "id": "en:thons-a-l-huile", + "name": "en:Thons-a-l-huile", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:thons-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:poissons-en-conserve", + "products": 1, + "name": "en:Poissons-en-conserve", + "id": "en:poissons-en-conserve" + }, + { + "id": "fr:plats-prepares-auto-chauffants", + "name": "Plats-prepares-auto-chauffants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-auto-chauffants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tempura-de-legumes-congelee", + "name": "Tempura de légumes congelée", + "id": "en:frozen-vegetable-tempura", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-concombres", + "products": 1, + "id": "fr:soupes-de-concombres", + "name": "Soupes-de-concombres" + }, + { + "products": 1, + "name": "it:Biscuits-sans-gluten", + "id": "it:biscuits-sans-gluten", + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/surstromming", + "products": 1, + "id": "fr:surstromming", + "name": "Surstromming" + }, + { + "products": 1, + "id": "fr:ziziana", + "name": "Ziziana", + "url": "https://fr.openfoodfacts.org/categorie/ziziana" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-chevre-rapes", + "products": 1, + "id": "fr:fromages-de-chevre-rapes", + "name": "Fromages-de-chevre-rapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-poulet-et-legumes", + "products": 1, + "id": "fr:eminces-de-poulet-et-legumes", + "name": "Eminces-de-poulet-et-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-piment", + "products": 1, + "id": "fr:moutardes-au-piment", + "name": "Moutardes-au-piment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-en-dosettes-compatible-nespresso", + "products": 1, + "id": "en:cafes-en-dosettes-compatible-nespresso", + "name": "en:Cafes-en-dosettes-compatible-nespresso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-en-dosettes", + "products": 1, + "name": "en:Cafes-en-dosettes", + "id": "en:cafes-en-dosettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/espadons", + "products": 1, + "id": "fr:espadons", + "name": "Espadons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-brochet", + "products": 1, + "name": "Oeufs-de-brochet", + "id": "fr:oeufs-de-brochet" + }, + { + "name": "Nectars-d-airelles", + "id": "fr:nectars-d-airelles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectars-d-airelles" + }, + { + "name": "de:Confitures-de-mirabelles", + "id": "de:confitures-de-mirabelles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-de-mirabelles" + }, + { + "id": "fr:chocolats-blancs-aux-framboises", + "name": "Chocolats-blancs-aux-framboises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aux-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-des-pays-bas", + "name": "en:Fromages-des-pays-bas", + "id": "en:fromages-des-pays-bas", + "products": 1 + }, + { + "products": 1, + "name": "Anneaux-d-encornet", + "id": "fr:anneaux-d-encornet", + "url": "https://fr.openfoodfacts.org/categorie/anneaux-d-encornet" + }, + { + "products": 1, + "name": "Sirops-de-banane", + "id": "fr:sirops-de-banane", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-banane" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3323949" + ], + "url": "https://fr.openfoodfacts.org/categorie/morey-saint-denis", + "products": 1, + "name": "Morey-Saint-Denis", + "id": "fr:morey-saint-denis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fixin", + "name": "Fixin", + "id": "fr:fixin", + "products": 1 + }, + { + "name": "Saint-Mont", + "id": "fr:saint-mont", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saint-mont" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q156037" + ], + "url": "https://fr.openfoodfacts.org/categorie/menthe-poivree", + "id": "en:peppermint", + "name": "Menthe poivrée", + "products": 1 + }, + { + "products": 1, + "id": "fr:calendriers-du-ramadan", + "name": "Calendriers-du-ramadan", + "url": "https://fr.openfoodfacts.org/categorie/calendriers-du-ramadan" + }, + { + "id": "fr:cassis", + "name": "Cassis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-enrobees-de-chocolat", + "products": 1, + "id": "fr:noix-enrobees-de-chocolat", + "name": "Noix-enrobees-de-chocolat" + }, + { + "name": "Oeufs-entiers-liquides", + "id": "fr:oeufs-entiers-liquides", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-entiers-liquides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-jaunes", + "products": 1, + "id": "fr:vins-jaunes", + "name": "Vins-jaunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cigares-libanais", + "name": "Cigares-libanais", + "id": "fr:cigares-libanais", + "products": 1 + }, + { + "products": 1, + "name": "en:Gaufrettes-enrobees-de-chocolat", + "id": "en:gaufrettes-enrobees-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/en:gaufrettes-enrobees-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-aux-cerises", + "products": 1, + "id": "fr:gaufres-aux-cerises", + "name": "Gaufres-aux-cerises" + }, + { + "id": "fr:terrines-de-maquereaux", + "name": "Terrines-de-maquereaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-maquereaux" + }, + { + "name": "Charcuterie-corse", + "id": "fr:charcuterie-corse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charcuterie-corse" + }, + { + "id": "fr:cereales-completes", + "name": "Cereales-completes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cereales-completes" + }, + { + "id": "fr:tetes-de-veau", + "name": "Tetes-de-veau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tetes-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/romarin-en-pot", + "name": "Romarin en pot", + "id": "en:potted-rosemary", + "products": 1 + }, + { + "products": 1, + "name": "de:Dosengericht", + "id": "de:dosengericht", + "url": "https://fr.openfoodfacts.org/categorie/de:dosengericht" + }, + { + "id": "fr:canards-aux-lentilles", + "name": "Canards-aux-lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/canards-aux-lentilles" + }, + { + "name": "Biere-japonaise", + "id": "fr:biere-japonaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biere-japonaise" + }, + { + "id": "en:pieds-paquets", + "name": "en:Pieds-paquets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pieds-paquets" + }, + { + "products": 1, + "name": "Alsace", + "id": "fr:alsace", + "url": "https://fr.openfoodfacts.org/categorie/alsace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-villages-laudun", + "products": 1, + "name": "Cotes-du-rhone-villages-laudun", + "id": "fr:cotes-du-rhone-villages-laudun" + }, + { + "id": "fr:cola-soda-diet", + "name": "Cola-soda-diet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cola-soda-diet" + }, + { + "products": 1, + "name": "Malt", + "id": "fr:malt", + "url": "https://fr.openfoodfacts.org/categorie/malt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/onglets-de-boeuf", + "products": 1, + "name": "Onglets-de-boeuf", + "id": "fr:onglets-de-boeuf" + }, + { + "id": "de:obstkonserven", + "name": "de:Obstkonserven", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:obstkonserven" + }, + { + "products": 1, + "name": "Faisselles-de-chevre", + "id": "fr:faisselles-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/faisselles-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-coing", + "products": 1, + "id": "fr:jus-de-coing", + "name": "Jus-de-coing" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-taro", + "products": 1, + "id": "fr:chips-de-taro", + "name": "Chips-de-taro" + }, + { + "products": 1, + "name": "Miels de trèfle", + "id": "fr:miels-de-trefle", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-trefle" + }, + { + "products": 1, + "id": "fr:confitures-de-violettes", + "name": "Confitures-de-violettes", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-violettes" + }, + { + "name": "Palettes-a-la-diable", + "id": "fr:palettes-a-la-diable", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/palettes-a-la-diable" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barre-vitaminee", + "name": "Barre-vitaminee", + "id": "fr:barre-vitaminee", + "products": 1 + }, + { + "products": 1, + "id": "de:chocolats-de-paques", + "name": "de:Chocolats-de-paques", + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-de-paques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-d-argouses", + "products": 1, + "id": "fr:gelees-d-argouses", + "name": "Gelees-d-argouses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girafes-en-chocolat", + "name": "Girafes-en-chocolat", + "id": "fr:girafes-en-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-a-la-creme-chantilly", + "name": "Choux-a-la-creme-chantilly", + "id": "fr:choux-a-la-creme-chantilly", + "products": 1 + }, + { + "name": "en:Flapjacks", + "id": "en:flapjacks", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:flapjacks" + }, + { + "products": 1, + "name": "Bonbon-sans-sucre", + "id": "fr:bonbon-sans-sucre", + "url": "https://fr.openfoodfacts.org/categorie/bonbon-sans-sucre" + }, + { + "id": "fr:bourgueil", + "name": "Bourgueil", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2922370" + ], + "url": "https://fr.openfoodfacts.org/categorie/bourgueil" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pamplemousses", + "products": 1, + "name": "Confitures-de-pamplemousses", + "id": "fr:confitures-de-pamplemousses" + }, + { + "products": 1, + "id": "fr:cones-chocolat", + "name": "Cones-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cones-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-au-caramel", + "products": 1, + "name": "Coulis-au-caramel", + "id": "fr:coulis-au-caramel" + }, + { + "products": 1, + "name": "Soubressades", + "id": "fr:soubressades", + "url": "https://fr.openfoodfacts.org/categorie/soubressades" + }, + { + "id": "fr:purees-de-framboises", + "name": "Purees-de-framboises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-framboises" + }, + { + "products": 1, + "id": "fr:crepes-fourrees-a-la-pate-a-tartiner", + "name": "Crepes-fourrees-a-la-pate-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-a-la-pate-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-bavaroises", + "id": "de:bieres-bavaroises", + "name": "de:Bieres-bavaroises", + "products": 1 + }, + { + "name": "Tartares-de-poisson", + "id": "fr:tartares-de-poisson", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartares-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-forez", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1150991" + ], + "products": 1, + "name": "Côtes du Forez", + "id": "fr:cotes-du-forez" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gambas-surgelees", + "products": 1, + "name": "Gambas-surgelees", + "id": "fr:gambas-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-bio", + "products": 1, + "name": "Graines-de-lin-bio", + "id": "fr:graines-de-lin-bio" + }, + { + "products": 1, + "id": "fr:coteaux-du-languedoc-pic-saint-loup", + "name": "Coteaux du Languedoc Pic-Saint-Loup", + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-languedoc-pic-saint-loup" + }, + { + "name": "Piment-moulu", + "id": "fr:piment-moulu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piment-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-fumes", + "products": 1, + "id": "fr:saucissons-secs-fumes", + "name": "Saucissons-secs-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pancakes-aux-myrtilles", + "name": "Pancakes-aux-myrtilles", + "id": "fr:pancakes-aux-myrtilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compote-de-framboises", + "products": 1, + "id": "fr:compote-de-framboises", + "name": "Compote-de-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macon-charnay-les-macon", + "products": 1, + "id": "fr:macon-charnay-les-macon", + "name": "Mâcon Charnay-lès Mâcon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-edulcorees", + "id": "fr:confitures-edulcorees", + "name": "Confitures-edulcorees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-a-base-de-jus-de-pomme", + "products": 1, + "id": "fr:boisson-a-base-de-jus-de-pomme", + "name": "Boisson-a-base-de-jus-de-pomme" + }, + { + "products": 1, + "id": "fr:sojasun", + "name": "Sojasun", + "url": "https://fr.openfoodfacts.org/categorie/sojasun" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3322367" + ], + "url": "https://fr.openfoodfacts.org/categorie/montagny", + "id": "fr:montagny", + "name": "Montagny", + "products": 1 + }, + { + "products": 1, + "id": "fr:infusions-au-tilleul", + "name": "Infusions-au-tilleul", + "url": "https://fr.openfoodfacts.org/categorie/infusions-au-tilleul" + }, + { + "products": 1, + "name": "Chocolats-a-la-cannelle", + "id": "fr:chocolats-a-la-cannelle", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-la-cannelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-la-cannelle", + "name": "Chocolats-au-lait-a-la-cannelle", + "id": "fr:chocolats-au-lait-a-la-cannelle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-de-chasse", + "id": "fr:gaufres-de-chasse", + "name": "Gaufres-de-chasse", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-bretons", + "name": "Pates-bretons", + "url": "https://fr.openfoodfacts.org/categorie/pates-bretons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-framboise-a-base-de-concentre", + "name": "Jus-de-framboise-a-base-de-concentre", + "id": "fr:jus-de-framboise-a-base-de-concentre", + "products": 1 + }, + { + "products": 1, + "id": "fr:ballons-en-chocolat", + "name": "Ballons-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/ballons-en-chocolat" + }, + { + "id": "fr:confits-d-olives", + "name": "Confits-d-olives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-d-olives" + }, + { + "products": 1, + "name": "Poulpes-prepares", + "id": "fr:poulpes-prepares", + "url": "https://fr.openfoodfacts.org/categorie/poulpes-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-gingembre", + "name": "Glaces-au-gingembre", + "id": "fr:glaces-au-gingembre", + "products": 1 + }, + { + "products": 1, + "name": "Sossen", + "id": "fr:sossen", + "url": "https://fr.openfoodfacts.org/categorie/sossen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panache", + "products": 1, + "name": "Panache", + "id": "fr:panache" + }, + { + "products": 1, + "id": "fr:nectars-de-prune", + "name": "Nectars-de-prune", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-prune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-surgeles", + "products": 1, + "name": "Thons-surgeles", + "id": "fr:thons-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-conference", + "name": "Poires-conference", + "id": "fr:poires-conference", + "products": 1 + }, + { + "products": 1, + "id": "fr:coeur-de-veau", + "name": "Coeur-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/coeur-de-veau" + }, + { + "name": "Nectars-de-framboises", + "id": "fr:nectars-de-framboises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-sesame", + "products": 1, + "name": "Chocolats-blancs-au-sesame", + "id": "fr:chocolats-blancs-au-sesame" + }, + { + "products": 1, + "id": "fr:crakers", + "name": "Crakers", + "url": "https://fr.openfoodfacts.org/categorie/crakers" + }, + { + "products": 1, + "name": "ro:Cereale-expandate", + "id": "ro:cereale-expandate", + "url": "https://fr.openfoodfacts.org/categorie/ro:cereale-expandate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-aux-poivrons", + "name": "Sauces-tomates-aux-poivrons", + "id": "fr:sauces-tomates-aux-poivrons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-farcis", + "products": 1, + "name": "Legumes-farcis", + "id": "fr:legumes-farcis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/souris-d-agneaux", + "id": "fr:souris-d-agneaux", + "name": "Souris-d-agneaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-du-bresil-decortiquees", + "id": "en:shelled-brazil-nuts", + "name": "Noix du Brésil décortiquées", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:tartes", + "name": "nl:Tartes", + "id": "nl:tartes", + "products": 1 + }, + { + "products": 1, + "id": "nl:tartelettes", + "name": "nl:Tartelettes", + "url": "https://fr.openfoodfacts.org/categorie/nl:tartelettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:biscuits-a-la-fraise", + "products": 1, + "id": "nl:biscuits-a-la-fraise", + "name": "nl:Biscuits-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-algues", + "products": 1, + "name": "Yaourts-aux-algues", + "id": "fr:yaourts-aux-algues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-precuits-congeles", + "name": "Riz précuits congelés", + "id": "en:frozen-pre-cooked-rice", + "products": 1 + }, + { + "id": "fr:terrines-de-grenouille", + "name": "Terrines-de-grenouille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-grenouille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cigogne-en-chocolat", + "products": 1, + "name": "Cigogne-en-chocolat", + "id": "fr:cigogne-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:cereali-prima-colazione", + "products": 1, + "id": "it:cereali-prima-colazione", + "name": "it:Cereali-prima-colazione" + }, + { + "name": "it:Snack-salato-cotto-in-forno", + "id": "it:snack-salato-cotto-in-forno", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:snack-salato-cotto-in-forno" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-au-cassis", + "name": "Nonnettes-au-cassis", + "id": "fr:nonnettes-au-cassis", + "products": 1 + }, + { + "id": "fr:cakes-a-la-banane", + "name": "Cakes-a-la-banane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cakes-a-la-banane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/banana-breads", + "products": 1, + "name": "Banana-breads", + "id": "fr:banana-breads" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaperon", + "products": 1, + "id": "fr:gaperon", + "name": "Gaperon" + }, + { + "products": 1, + "id": "fr:orange-juice-from-concentrate", + "name": "Orange-juice-from-concentrate", + "url": "https://fr.openfoodfacts.org/categorie/orange-juice-from-concentrate" + }, + { + "products": 1, + "name": "Confits-de-mangue", + "id": "fr:confits-de-mangue", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-mangue" + }, + { + "products": 1, + "name": "es:Postres-de-coco", + "id": "es:postres-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/es:postres-de-coco" + }, + { + "id": "en:honey-stuffed-waffles", + "name": "Gaufres fourrées au miel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-au-miel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cannelle-en-batons", + "name": "Cannelle-en-batons", + "id": "fr:cannelle-en-batons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-farine", + "products": 1, + "id": "fr:preparations-a-base-de-farine", + "name": "Preparations-a-base-de-farine" + }, + { + "id": "fr:plat-prepare-pret-a-servi", + "name": "Plat-prepare-pret-a-servi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plat-prepare-pret-a-servi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-italiennes", + "products": 1, + "name": "Charcuteries-italiennes", + "id": "fr:charcuteries-italiennes" + }, + { + "products": 1, + "name": "Thes-glaces-saveur-jasmin", + "id": "fr:thes-glaces-saveur-jasmin", + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-jasmin" + }, + { + "id": "fr:boulettes-de-riz", + "name": "Boulettes-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boulettes-de-riz" + }, + { + "id": "fr:pates-de-ble-dur-avec-du-poisson", + "name": "Pates-de-ble-dur-avec-du-poisson", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-avec-du-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:hefe", + "products": 1, + "name": "de:Hefe", + "id": "de:hefe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-cherie", + "products": 1, + "id": "fr:pommes-de-terre-cherie", + "name": "Pommes-de-terre-cherie" + }, + { + "products": 1, + "name": "Galettes-de-riz-a-garnir", + "id": "fr:galettes-de-riz-a-garnir", + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-a-garnir" + }, + { + "id": "fr:pates-de-lentille", + "name": "Pates-de-lentille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-lentille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalote-et-derives", + "products": 1, + "name": "Echalote-et-derives", + "id": "fr:echalote-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-cannelle", + "products": 1, + "id": "fr:sirop-cannelle", + "name": "Sirop-cannelle" + }, + { + "id": "fr:carottes-preparees", + "name": "Carottes-preparees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carottes-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raviolis-a-la-tomate", + "id": "fr:raviolis-a-la-tomate", + "name": "Raviolis-a-la-tomate", + "products": 1 + }, + { + "name": "en:Entremets-genoise-cacao", + "id": "en:entremets-genoise-cacao", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:entremets-genoise-cacao" + }, + { + "products": 1, + "name": "es:Boissons-vegetales-a-base-d-avoine", + "id": "es:boissons-vegetales-a-base-d-avoine", + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-vegetales-a-base-d-avoine" + }, + { + "id": "fr:filets-de-maquereaux-a-la-provencale", + "name": "Filets-de-maquereaux-a-la-provencale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-la-provencale" + }, + { + "products": 1, + "name": "Churros", + "id": "fr:churros", + "url": "https://fr.openfoodfacts.org/categorie/churros" + }, + { + "products": 1, + "name": "Pizzas-au-peperroni", + "id": "fr:pizzas-au-peperroni", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-peperroni" + }, + { + "name": "Joels", + "id": "fr:joels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/joels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-farcis", + "id": "fr:champignons-farcis", + "name": "Champignons-farcis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oreilles-de-porc", + "name": "Oreilles-de-porc", + "id": "fr:oreilles-de-porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerfeuils-tubereux", + "name": "Cerfeuils-tubereux", + "id": "fr:cerfeuils-tubereux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fleurs-de-courgette", + "name": "Fleurs-de-courgette", + "id": "fr:fleurs-de-courgette", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-boeuf-sechees", + "products": 1, + "name": "Viandes-de-boeuf-sechees", + "id": "fr:viandes-de-boeuf-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-bruns", + "products": 1, + "name": "Champignons-bruns", + "id": "fr:champignons-bruns" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-bergamotes", + "name": "Confitures-de-bergamotes", + "id": "fr:confitures-de-bergamotes", + "products": 1 + }, + { + "products": 1, + "id": "en:honeys-from-romania", + "name": "Miels roumains", + "url": "https://fr.openfoodfacts.org/categorie/miels-roumains" + }, + { + "products": 1, + "id": "fr:pates-fraiches-alsciennes", + "name": "Pates-fraiches-alsciennes", + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-alsciennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-au-chou", + "name": "Soupes-au-chou", + "id": "fr:soupes-au-chou", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garbures", + "products": 1, + "id": "fr:garbures", + "name": "Garbures" + }, + { + "products": 1, + "id": "fr:capres-en-saumure", + "name": "Capres-en-saumure", + "url": "https://fr.openfoodfacts.org/categorie/capres-en-saumure" + }, + { + "products": 1, + "name": "Epinards-a-la-creme", + "id": "fr:epinards-a-la-creme", + "url": "https://fr.openfoodfacts.org/categorie/epinards-a-la-creme" + }, + { + "name": "Poivrons-au-thon", + "id": "fr:poivrons-au-thon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poivrons-au-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:knoblauch-sauce", + "id": "de:knoblauch-sauce", + "name": "de:Knoblauch-sauce", + "products": 1 + }, + { + "products": 1, + "id": "fr:nonnettes-au-citron", + "name": "Nonnettes-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-tournesol-vierges", + "products": 1, + "name": "Huiles-de-tournesol-vierges", + "id": "fr:huiles-de-tournesol-vierges" + }, + { + "name": "Paves-d-agneau", + "id": "fr:paves-d-agneau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paves-d-agneau" + }, + { + "id": "fr:gateaux-a-l-amande", + "name": "Gateaux-a-l-amande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-l-amande" + }, + { + "id": "fr:pates-a-tartiner-aux-pistaches", + "name": "Pates-a-tartiner-aux-pistaches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-pistaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-quetsche", + "id": "fr:yaourts-a-la-quetsche", + "name": "Yaourts-a-la-quetsche", + "products": 1 + }, + { + "id": "fr:vinaigre-a-l-estragon", + "name": "Vinaigre-a-l-estragon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigre-a-l-estragon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cookies", + "products": 1, + "name": "Preparations-pour-cookies", + "id": "fr:preparations-pour-cookies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-viande", + "products": 1, + "id": "fr:saucisses-de-viande", + "name": "Saucisses-de-viande" + }, + { + "id": "fr:coquillettes-au-ble-complet", + "name": "Coquillettes-au-ble-complet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-au-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-en-bocal", + "name": "Olives-en-bocal", + "id": "fr:olives-en-bocal", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/angeliques", + "id": "fr:angeliques", + "name": "Angeliques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:caramelle", + "name": "it:Caramelle", + "id": "it:caramelle", + "products": 1 + }, + { + "products": 1, + "name": "es:Plats-prepares-en-conserve", + "id": "es:plats-prepares-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-noir", + "products": 1, + "name": "Filets-de-poulet-noir", + "id": "fr:filets-de-poulet-noir" + }, + { + "name": "Tartes à la noix de coco", + "id": "en:coconut-pies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-aux-biscuits", + "name": "Chocolats-blancs-aux-biscuits", + "id": "fr:chocolats-blancs-aux-biscuits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/operas", + "id": "fr:operas", + "name": "Operas", + "products": 1 + }, + { + "products": 1, + "id": "de:kroketten", + "name": "de:Kroketten", + "url": "https://fr.openfoodfacts.org/categorie/de:kroketten" + }, + { + "products": 1, + "id": "en:chai-teas", + "name": "Thés chaï", + "url": "https://fr.openfoodfacts.org/categorie/thes-chai" + }, + { + "products": 1, + "id": "fr:lait-de-chevre-en-poudre", + "name": "Lait-de-chevre-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/lait-de-chevre-en-poudre" + }, + { + "name": "Blanc-manger", + "id": "fr:blanc-manger", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/blanc-manger" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-au-cognac", + "id": "fr:terrines-au-cognac", + "name": "Terrines-au-cognac", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mochi-glace", + "products": 1, + "id": "fr:mochi-glace", + "name": "Mochi-glace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:carrot-cakes", + "products": 1, + "id": "en:carrot-cakes", + "name": "en:Carrot-cakes" + }, + { + "id": "fr:veloutes-de-crustaces", + "name": "Veloutes-de-crustaces", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-crustaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-mirabelles", + "id": "fr:tartes-aux-mirabelles", + "name": "Tartes-aux-mirabelles", + "products": 1 + }, + { + "products": 1, + "name": "Fruit-sauces", + "id": "fr:fruit-sauces", + "url": "https://fr.openfoodfacts.org/categorie/fruit-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/proteinriegel", + "products": 1, + "id": "fr:proteinriegel", + "name": "Proteinriegel" + }, + { + "products": 1, + "id": "fr:beignets-nature", + "name": "Beignets-nature", + "url": "https://fr.openfoodfacts.org/categorie/beignets-nature" + }, + { + "products": 1, + "name": "Chablis premier cru", + "id": "fr:chablis-premier-cru", + "url": "https://fr.openfoodfacts.org/categorie/chablis-premier-cru" + }, + { + "name": "Bieres-chinoises", + "id": "fr:bieres-chinoises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-chinoises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:des-12-mois", + "products": 1, + "id": "es:des-12-mois", + "name": "es:Des-12-mois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-sales-au-cantal", + "products": 1, + "name": "Sables-sales-au-cantal", + "id": "fr:sables-sales-au-cantal" + }, + { + "products": 1, + "name": "Filets d'anchois marinés à la catalane", + "id": "fr:filets-d-anchois-marines-a-la-catalane", + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines-a-la-catalane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dos-de-colin", + "id": "fr:dos-de-colin", + "name": "Dos-de-colin", + "products": 1 + }, + { + "products": 1, + "id": "en:amaranth-flakes", + "name": "Flocons d'amarante", + "url": "https://fr.openfoodfacts.org/categorie/flocons-d-amarante" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-glaces", + "name": "Thes-noirs-glaces", + "id": "fr:thes-noirs-glaces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taboules-provencaux", + "products": 1, + "name": "Taboules-provencaux", + "id": "fr:taboules-provencaux" + }, + { + "products": 1, + "name": "Preparations-de-viande-de-veau", + "id": "fr:preparations-de-viande-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-de-veau" + }, + { + "products": 1, + "name": "Terrines-a-cuire", + "id": "fr:terrines-a-cuire", + "url": "https://fr.openfoodfacts.org/categorie/terrines-a-cuire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/omelette-de-pomme-de-terre-aux-oignons", + "products": 1, + "name": "Omelette-de-pomme-de-terre-aux-oignons", + "id": "fr:omelette-de-pomme-de-terre-aux-oignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:poireaux-surgeles", + "products": 1, + "name": "en:Poireaux-surgeles", + "id": "en:poireaux-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mousses-de-foies", + "id": "en:mousses-de-foies", + "name": "en:Mousses-de-foies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-millet", + "id": "en:millet-milks", + "name": "Boissons végétales de millet", + "products": 1 + }, + { + "name": "Truffes de Chine", + "id": "en:chinese-black-truffles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/truffes-de-chine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:sirops-aromatises", + "id": "it:sirops-aromatises", + "name": "it:Sirops-aromatises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-edulcorees", + "products": 1, + "name": "it:Boissons-edulcorees", + "id": "it:boissons-edulcorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sesame-bio", + "products": 1, + "name": "Sesame-bio", + "id": "fr:sesame-bio" + }, + { + "name": "en:Boissons-vegetales-au-soja", + "id": "en:boissons-vegetales-au-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-vegetales-au-soja" + }, + { + "name": "Chocolats-noirs-au-yuzu", + "id": "fr:chocolats-noirs-au-yuzu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-yuzu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-frais", + "products": 1, + "name": "Thons-frais", + "id": "fr:thons-frais" + }, + { + "products": 1, + "name": "Filets-de-lapin", + "id": "fr:filets-de-lapin", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-lapin" + }, + { + "products": 1, + "name": "Peres-noel-en-chocolat-au-lait", + "id": "fr:peres-noel-en-chocolat-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/peres-noel-en-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sushi-saumon-avocat", + "products": 1, + "id": "en:avocado-and-salmon-sushis", + "name": "Sushi saumon avocat" + }, + { + "products": 1, + "id": "fr:boissons-maltees", + "name": "Boissons-maltees", + "url": "https://fr.openfoodfacts.org/categorie/boissons-maltees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirups", + "name": "en:Sirups", + "id": "en:sirups", + "products": 1 + }, + { + "id": "fr:confitures-de-mombins", + "name": "Confitures-de-mombins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mombins" + }, + { + "id": "es:viandes", + "name": "es:Viandes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:viandes" + }, + { + "name": "es:Saucissons", + "id": "es:saucissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:saucissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:charcuteries", + "id": "es:charcuteries", + "name": "es:Charcuteries", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-au-vin", + "products": 1, + "id": "fr:terrines-au-vin", + "name": "Terrines-au-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-kalamansi", + "products": 1, + "name": "Sorbets-au-kalamansi", + "id": "fr:sorbets-au-kalamansi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-foie-gras", + "name": "Preparations-a-base-de-foie-gras", + "id": "fr:preparations-a-base-de-foie-gras", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-la-mirabelle", + "id": "fr:nonnettes-a-la-mirabelle", + "name": "Nonnettes-a-la-mirabelle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bibimbap", + "products": 1, + "id": "fr:bibimbap", + "name": "Bibimbap" + }, + { + "id": "fr:cafes-aromatises", + "name": "Cafes-aromatises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cafes-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-lapin", + "products": 1, + "name": "Rillettes de lapin", + "id": "en:hare-rillettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-hareng", + "name": "Rillettes-de-hareng", + "id": "fr:rillettes-de-hareng", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-crabes", + "id": "fr:terrines-de-crabes", + "name": "Terrines-de-crabes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:chocolade-hagel", + "id": "nl:chocolade-hagel", + "name": "nl:Chocolade-hagel", + "products": 1 + }, + { + "id": "fr:tartelettes-aux-fruits", + "name": "Tartelettes-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croustades", + "products": 1, + "name": "Croustades", + "id": "fr:croustades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-a-l-huile", + "products": 1, + "name": "Champignons-a-l-huile", + "id": "fr:champignons-a-l-huile" + }, + { + "products": 1, + "id": "pl:produits-laitiers-fermentes", + "name": "pl:Produits-laitiers-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/pl:produits-laitiers-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:produits-laitiers", + "id": "pl:produits-laitiers", + "name": "pl:Produits-laitiers", + "products": 1 + }, + { + "name": "pl:Produits-fermentes", + "id": "pl:produits-fermentes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:produits-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:cremes", + "products": 1, + "name": "pl:Cremes", + "id": "pl:cremes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corned-beed", + "name": "Corned-beed", + "id": "fr:corned-beed", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-fruits-a-coques", + "name": "es:Laits-de-fruits-a-coques", + "id": "es:laits-de-fruits-a-coques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bentos", + "id": "fr:bentos", + "name": "Bentos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-au-cafe", + "products": 1, + "id": "fr:yaourt-au-cafe", + "name": "Yaourt-au-cafe" + }, + { + "products": 1, + "id": "fr:cadillac", + "name": "Cadillac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1025147" + ], + "url": "https://fr.openfoodfacts.org/categorie/cadillac" + }, + { + "id": "fr:plats-a-base-de-homard", + "name": "Plats-a-base-de-homard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-homard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-a-la-cannelle", + "products": 1, + "id": "fr:thes-a-la-cannelle", + "name": "Thes-a-la-cannelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-foie-de-cabillaud", + "id": "en:codliver-fats", + "name": "Huiles de foie de cabillaud", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-quinoa", + "name": "Chocolats-au-quinoa", + "id": "fr:chocolats-au-quinoa", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-graines", + "products": 1, + "name": "Purees-de-graines", + "id": "fr:purees-de-graines" + }, + { + "name": "Sauces-tomates-au-fromage", + "id": "fr:sauces-tomates-au-fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-au-fromage" + }, + { + "products": 1, + "name": "Beurres-de-saumon", + "id": "fr:beurres-de-saumon", + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-saumon" + }, + { + "products": 1, + "id": "pt:biscuits-au-chocolat-au-lait", + "name": "pt:Biscuits-au-chocolat-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/pt:biscuits-au-chocolat-au-lait" + }, + { + "name": "Blettes", + "id": "en:chards", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/blettes" + }, + { + "name": "Galettes-a-la-poire", + "id": "fr:galettes-a-la-poire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-a-la-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-fraise", + "products": 1, + "id": "fr:cremes-de-fraise", + "name": "Cremes-de-fraise" + }, + { + "products": 1, + "name": "Infusions-de-kinkeliba", + "id": "fr:infusions-de-kinkeliba", + "url": "https://fr.openfoodfacts.org/categorie/infusions-de-kinkeliba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-sans-alcool-gout-tropical", + "products": 1, + "name": "Boisson-sans-alcool-gout-tropical", + "id": "fr:boisson-sans-alcool-gout-tropical" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-sans-alcool-aromatisee-a-la-mangue", + "products": 1, + "id": "fr:boisson-sans-alcool-aromatisee-a-la-mangue", + "name": "Boisson-sans-alcool-aromatisee-a-la-mangue" + }, + { + "name": "Bieres-lettonnes", + "id": "fr:bieres-lettonnes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-lettonnes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucetttes", + "name": "Sucetttes", + "id": "fr:sucetttes", + "products": 1 + }, + { + "name": "Confits-de-cidre", + "id": "fr:confits-de-cidre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-cidre" + }, + { + "products": 1, + "id": "fr:produits-de-france", + "name": "Produits-de-france", + "url": "https://fr.openfoodfacts.org/categorie/produits-de-france" + }, + { + "products": 1, + "id": "fr:gambas-congelees", + "name": "Gambas-congelees", + "url": "https://fr.openfoodfacts.org/categorie/gambas-congelees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3463541" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-aubin", + "products": 1, + "id": "fr:saint-aubin", + "name": "Saint-Aubin" + }, + { + "id": "fr:cheddar-aux-oignons-caramelises", + "name": "Cheddar-aux-oignons-caramelises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cheddar-aux-oignons-caramelises" + }, + { + "id": "fr:preparations-a-base-de-mollusques", + "name": "Preparations-a-base-de-mollusques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-mollusques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-moules", + "name": "Cremes-de-moules", + "id": "fr:cremes-de-moules", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-en-croute", + "products": 1, + "id": "fr:jambons-en-croute", + "name": "Jambons-en-croute" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/smartphone-en-chocolat", + "products": 1, + "name": "Smartphone-en-chocolat", + "id": "fr:smartphone-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-goyaves", + "products": 1, + "id": "fr:compotes-pommes-goyaves", + "name": "Compotes-pommes-goyaves" + }, + { + "products": 1, + "id": "fr:compotes-de-prune", + "name": "Compotes-de-prune", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-prune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-chataigne", + "id": "fr:gateaux-a-la-chataigne", + "name": "Gateaux-a-la-chataigne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-aux-oeufs-au-caramel", + "products": 1, + "id": "fr:cremes-aux-oeufs-au-caramel", + "name": "Cremes-aux-oeufs-au-caramel" + }, + { + "products": 1, + "id": "es:chucherias", + "name": "es:Chucherias", + "url": "https://fr.openfoodfacts.org/categorie/es:chucherias" + }, + { + "id": "fr:lecithines-de-soja", + "name": "Lecithines-de-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lecithines-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:hagelslag", + "id": "nl:hagelslag", + "name": "nl:Hagelslag", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tr:thes-aromatises", + "products": 1, + "name": "tr:Thes-aromatises", + "id": "tr:thes-aromatises" + }, + { + "name": "en:Pain-d-epices", + "id": "en:pain-d-epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pain-d-epices" + }, + { + "products": 1, + "name": "Jesus", + "id": "fr:jesus", + "url": "https://fr.openfoodfacts.org/categorie/jesus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-colin-d-alaska", + "products": 1, + "id": "fr:rillettes-de-colin-d-alaska", + "name": "Rillettes-de-colin-d-alaska" + }, + { + "products": 1, + "id": "fr:kangourous", + "name": "Kangourous", + "url": "https://fr.openfoodfacts.org/categorie/kangourous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-au-jambon-cru", + "products": 1, + "id": "fr:tortellini-au-jambon-cru", + "name": "Tortellini-au-jambon-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-truffes", + "products": 1, + "id": "fr:pates-aux-truffes", + "name": "Pates-aux-truffes" + }, + { + "id": "fr:pains-de-mie-au-pain-d-epices", + "name": "Pains-de-mie-au-pain-d-epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-au-pain-d-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-base-d-olives-noires", + "id": "fr:produits-a-base-d-olives-noires", + "name": "Produits-a-base-d-olives-noires", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crocodiles", + "name": "Crocodiles", + "id": "fr:crocodiles", + "products": 1 + }, + { + "id": "en:produits-panes", + "name": "en:Produits-panes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:produits-panes" + }, + { + "id": "fr:saumons-flambes", + "name": "Saumons-flambes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saumons-flambes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-en-sauce", + "id": "fr:plats-en-sauce", + "name": "Plats-en-sauce", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saison", + "name": "Saison", + "id": "fr:saison", + "products": 1 + }, + { + "name": "Taramas-de-saint-jacques", + "id": "fr:taramas-de-saint-jacques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/taramas-de-saint-jacques" + }, + { + "products": 1, + "name": "Graines-de-lin-dores", + "id": "fr:graines-de-lin-dores", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-dores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-canard", + "name": "Rotis-de-canard", + "id": "fr:rotis-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plum-puddings", + "name": "en:Plum-puddings", + "id": "en:plum-puddings", + "products": 1 + }, + { + "id": "fr:biphilus", + "name": "Biphilus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biphilus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:prodotti-dolciari", + "id": "it:prodotti-dolciari", + "name": "it:Prodotti-dolciari", + "products": 1 + }, + { + "products": 1, + "id": "fr:eclairs-a-la-vanille", + "name": "Eclairs-a-la-vanille", + "url": "https://fr.openfoodfacts.org/categorie/eclairs-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-canard-aux-figues", + "products": 1, + "id": "fr:mousses-de-canard-aux-figues", + "name": "Mousses-de-canard-aux-figues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-yuzu", + "products": 1, + "id": "fr:jus-de-yuzu", + "name": "Jus-de-yuzu" + }, + { + "products": 1, + "name": "Omelettes", + "id": "fr:omelettes", + "url": "https://fr.openfoodfacts.org/categorie/omelettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-de-volaille", + "products": 1, + "name": "Boudins-blancs-de-volaille", + "id": "fr:boudins-blancs-de-volaille" + }, + { + "products": 1, + "id": "fr:bonites", + "name": "Bonites", + "url": "https://fr.openfoodfacts.org/categorie/bonites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pain-d-epices", + "id": "fr:preparation-pour-pain-d-epices", + "name": "Preparation-pour-pain-d-epices", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-savoie", + "products": 1, + "id": "fr:yaourts-de-savoie", + "name": "Yaourts-de-savoie" + }, + { + "id": "fr:bagels-au-saumon", + "name": "Bagels-au-saumon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bagels-au-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-a-grain-long", + "name": "Riz-a-grain-long", + "id": "fr:riz-a-grain-long", + "products": 1 + }, + { + "products": 1, + "name": "Capsules-de-cafe-arabica", + "id": "fr:capsules-de-cafe-arabica", + "url": "https://fr.openfoodfacts.org/categorie/capsules-de-cafe-arabica" + }, + { + "id": "es:filets-de-poissons", + "name": "es:Filets-de-poissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:filets-de-poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:filets-de-maquereaux", + "name": "es:Filets-de-maquereaux", + "id": "es:filets-de-maquereaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-cannelle", + "name": "Chocolats-noirs-a-la-cannelle", + "id": "fr:chocolats-noirs-a-la-cannelle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-aux-noisettes", + "name": "it:Chocolats-aux-noisettes", + "id": "it:chocolats-aux-noisettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fourrees-au-cacao", + "products": 1, + "id": "fr:gaufres-fourrees-au-cacao", + "name": "Gaufres-fourrees-au-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-margaritas", + "products": 1, + "id": "fr:pizzas-margaritas", + "name": "Pizzas-margaritas" + }, + { + "name": "Moussaka-au-boeuf", + "id": "fr:moussaka-au-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moussaka-au-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-au-citron", + "products": 1, + "id": "fr:filets-de-maquereaux-au-citron", + "name": "Filets-de-maquereaux-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BA%D1%80%D1%83%D0%BF%D0%B0-%D0%B3%D1%80%D0%B5%D1%87%D0%BD%D0%B5%D0%B2%D0%B0%D1%8F-%D1%8F%D0%B4%D1%80%D0%B8%D1%86%D0%B0-%D0%B1%D1%8B%D1%81%D1%82%D1%80%D0%BE%D1%80%D0%B0%D0%B7%D0%B2%D0%B0%D1%80%D0%B8%D0%B2%D0%B0%D1%8E%D1%89%D0%B0%D1%8F%D1%81%D1%8F-%D0%B3%D0%BE%D1%81%D1%82-%D1%80-55290-2012", + "products": 1, + "name": "ru:Крупа-гречневая-ядрица-быстроразваривающаяся-гост-р-55290-2012", + "id": "ru:крупа-гречневая-ядрица-быстроразваривающаяся-гост-р-55290-2012" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:filets-de-poulet", + "name": "de:Filets-de-poulet", + "id": "de:filets-de-poulet", + "products": 1 + }, + { + "id": "en:vermicelles-de-konjac", + "name": "en:Vermicelles-de-konjac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:vermicelles-de-konjac" + }, + { + "name": "el:Margarines-allegees", + "id": "el:margarines-allegees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/el:margarines-allegees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:sodas-au-cola", + "name": "pl:Sodas-au-cola", + "id": "pl:sodas-au-cola", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-gazeuses", + "products": 1, + "id": "pl:boissons-gazeuses", + "name": "pl:Boissons-gazeuses" + }, + { + "products": 1, + "id": "fr:hamburgers-au-jambon", + "name": "Hamburgers-au-jambon", + "url": "https://fr.openfoodfacts.org/categorie/hamburgers-au-jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-pommes-de-terre", + "products": 1, + "id": "fr:plats-a-base-de-pommes-de-terre", + "name": "Plats-a-base-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusion-multi-plantes", + "products": 1, + "id": "fr:infusion-multi-plantes", + "name": "Infusion-multi-plantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusion-citronnelle-gingembre", + "id": "fr:infusion-citronnelle-gingembre", + "name": "Infusion-citronnelle-gingembre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compote-pomme-cannelle", + "products": 1, + "name": "Compote-pomme-cannelle", + "id": "fr:compote-pomme-cannelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-basques", + "name": "Pates-basques", + "id": "fr:pates-basques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-saumon-fume", + "name": "Lardons-de-saumon-fume", + "id": "fr:lardons-de-saumon-fume", + "products": 1 + }, + { + "products": 1, + "id": "fr:riz-au-lait-de-chevre", + "name": "Riz-au-lait-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-praline", + "name": "Chocolats-au-lait-au-praline", + "id": "fr:chocolats-au-lait-au-praline", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-loue", + "name": "Oeufs-de-loue", + "id": "fr:oeufs-de-loue", + "products": 1 + }, + { + "products": 1, + "id": "fi:vegetarische-lasagne", + "name": "fi:Vegetarische-lasagne", + "url": "https://fr.openfoodfacts.org/categorie/fi:vegetarische-lasagne" + }, + { + "name": "Saumon-en-conserve-au-naturel", + "id": "fr:saumon-en-conserve-au-naturel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saumon-en-conserve-au-naturel" + }, + { + "id": "fr:pizza-bio-sans-gluten-au-rayon-frais", + "name": "Pizza-bio-sans-gluten-au-rayon-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pizza-bio-sans-gluten-au-rayon-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:nectars-de-poire", + "products": 1, + "id": "it:nectars-de-poire", + "name": "it:Nectars-de-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/whisky-blended", + "id": "fr:whisky-blended", + "name": "Whisky-blended", + "products": 1 + }, + { + "products": 1, + "id": "fr:viandes-hachees-de-boeuf-surgelees", + "name": "Viandes-hachees-de-boeuf-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/viandes-hachees-de-boeuf-surgelees" + }, + { + "name": "Cheddar mûr", + "id": "en:mature-cheddar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cheddar-mur" + }, + { + "products": 1, + "id": "fr:batons-de-reglisse", + "name": "Batons-de-reglisse", + "url": "https://fr.openfoodfacts.org/categorie/batons-de-reglisse" + }, + { + "name": "pt:Viandes", + "id": "pt:viandes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:viandes" + }, + { + "id": "fr:bloc-de-foie-gras-de-canard-au-porto-mi-cuit", + "name": "Bloc-de-foie-gras-de-canard-au-porto-mi-cuit", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-au-porto-mi-cuit" + }, + { + "products": 1, + "id": "fr:salades-de-museau", + "name": "Salades-de-museau", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-museau" + }, + { + "name": "Soda-a-la-framboise", + "id": "fr:soda-a-la-framboise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soda-a-la-framboise" + }, + { + "name": "Chocolats-aux-graines", + "id": "fr:chocolats-aux-graines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-graines" + }, + { + "products": 1, + "id": "fr:chocolats-au-lait-aux-graines", + "name": "Chocolats-au-lait-aux-graines", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-graines" + }, + { + "name": "es:Biscuits-au-chocolat-au-lait", + "id": "es:biscuits-au-chocolat-au-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-au-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-au-boeuf", + "name": "Tortellini-au-boeuf", + "id": "fr:tortellini-au-boeuf", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/samoussas-au-porc", + "id": "en:pork-samosas", + "name": "Samoussas au porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huhnereiweisse", + "products": 1, + "name": "Huhnereiweisse", + "id": "fr:huhnereiweisse" + }, + { + "products": 1, + "id": "fr:rotis-de-cerf", + "name": "Rotis-de-cerf", + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-cerf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-bar", + "products": 1, + "name": "Filets-de-bar", + "id": "fr:filets-de-bar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ipa-beers", + "id": "en:ipa-beers", + "name": "en:Ipa-beers", + "products": 1 + }, + { + "products": 1, + "name": "en:Indian-pale-ales", + "id": "en:indian-pale-ales", + "url": "https://fr.openfoodfacts.org/categorie/en:indian-pale-ales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bieres-artisanales", + "id": "es:bieres-artisanales", + "name": "es:Bieres-artisanales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lungo", + "id": "fr:lungo", + "name": "Lungo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-au-caramel", + "products": 1, + "name": "Madeleines-au-caramel", + "id": "fr:madeleines-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistaches-grillees-sans-sel", + "products": 1, + "id": "fr:pistaches-grillees-sans-sel", + "name": "Pistaches-grillees-sans-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-en-poudre", + "products": 1, + "id": "en:preparations-en-poudre", + "name": "en:Preparations-en-poudre" + }, + { + "products": 1, + "id": "fr:dulces-de-frutos-de-cascara", + "name": "Dulces-de-frutos-de-cascara", + "url": "https://fr.openfoodfacts.org/categorie/dulces-de-frutos-de-cascara" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puxisardinophile", + "products": 1, + "id": "fr:puxisardinophile", + "name": "Puxisardinophile" + }, + { + "products": 1, + "id": "fr:confitures-de-patates-douces", + "name": "Confitures-de-patates-douces", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-patates-douces" + }, + { + "name": "Galettes-de-froment", + "id": "fr:galettes-de-froment", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-froment" + }, + { + "id": "it:muesli-di-cereali", + "name": "it:Muesli-di-cereali", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:muesli-di-cereali" + }, + { + "products": 1, + "id": "en:bieres-americaines", + "name": "en:Bieres-americaines", + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-americaines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/forelterinnes", + "products": 1, + "name": "Forelterinnes", + "id": "en:trout-terrine" + }, + { + "products": 1, + "name": "nl:Cappuccino-en-poudre", + "id": "nl:cappuccino-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/nl:cappuccino-en-poudre" + }, + { + "id": "nl:champignons-de-paris-eminces-en-conserve", + "name": "nl:Champignons-de-paris-eminces-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:champignons-de-paris-eminces-en-conserve" + }, + { + "id": "fr:confitures-de-fraise-et-rhubarbe", + "name": "Confitures-de-fraise-et-rhubarbe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fraise-et-rhubarbe" + }, + { + "id": "fr:preparation-pour-dessert", + "name": "Preparation-pour-dessert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-dessert" + }, + { + "products": 1, + "id": "fr:saucisses-aux-legumes", + "name": "Saucisses-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fruchtgummi", + "name": "de:Fruchtgummi", + "id": "de:fruchtgummi", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-aux-cerises", + "id": "fr:tourtes-aux-cerises", + "name": "Tourtes-aux-cerises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-au-lait-de-brebis", + "name": "Semoules-au-lait-de-brebis", + "id": "fr:semoules-au-lait-de-brebis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rose", + "id": "en:rose", + "name": "en:Rose", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-labellises", + "products": 1, + "name": "Miels labellisés", + "id": "en:labeled-honeys" + }, + { + "name": "de:Apfelschorle", + "id": "de:apfelschorle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:apfelschorle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soda-mojito", + "id": "fr:soda-mojito", + "name": "Soda-mojito", + "products": 1 + }, + { + "name": "Kits-pour-enchiladas", + "id": "fr:kits-pour-enchiladas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/kits-pour-enchiladas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-cerfs", + "name": "Pates-de-cerfs", + "id": "fr:pates-de-cerfs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-au-lait-de-chevre", + "id": "fr:semoules-au-lait-de-chevre", + "name": "Semoules-au-lait-de-chevre", + "products": 1 + }, + { + "products": 1, + "name": "Langoustines-cuites", + "id": "fr:langoustines-cuites", + "url": "https://fr.openfoodfacts.org/categorie/langoustines-cuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:schokoladen", + "id": "it:schokoladen", + "name": "it:Schokoladen", + "products": 1 + }, + { + "products": 1, + "name": "Moutardes-aux-marrons-glaces", + "id": "fr:moutardes-aux-marrons-glaces", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-marrons-glaces" + }, + { + "products": 1, + "name": "it:Semoules-de-mais", + "id": "it:semoules-de-mais", + "url": "https://fr.openfoodfacts.org/categorie/it:semoules-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:semoules-de-cereales", + "products": 1, + "name": "it:Semoules-de-cereales", + "id": "it:semoules-de-cereales" + }, + { + "name": "Boulgours-de-riz", + "id": "fr:boulgours-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boulgours-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bitter", + "id": "fr:bitter", + "name": "Bitter", + "products": 1 + }, + { + "name": "Grappa", + "id": "fr:grappa", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/grappa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thons-a-l-huile-d-olive", + "id": "en:thons-a-l-huile-d-olive", + "name": "en:Thons-a-l-huile-d-olive", + "products": 1 + }, + { + "products": 1, + "id": "en:dried-peaches", + "name": "Pêches séchées", + "url": "https://fr.openfoodfacts.org/categorie/peches-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mueslis-floconneux", + "name": "es:Mueslis-floconneux", + "id": "es:mueslis-floconneux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-cranberries", + "products": 1, + "id": "fr:sirops-de-cranberries", + "name": "Sirops-de-cranberries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-ventoux", + "name": "Cotes-du-ventoux", + "id": "fr:cotes-du-ventoux", + "products": 1 + }, + { + "name": "de:Chataignes-decortiquees", + "id": "de:chataignes-decortiquees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chataignes-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-froment", + "products": 1, + "id": "fr:bieres-de-froment", + "name": "Bieres-de-froment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-crus-doux", + "name": "Beurres-crus-doux", + "id": "fr:beurres-crus-doux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-crus-demi-sel", + "products": 1, + "id": "fr:beurres-crus-demi-sel", + "name": "Beurres-crus-demi-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sodas-au-cola-light", + "id": "es:sodas-au-cola-light", + "name": "es:Sodas-au-cola-light", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-light", + "products": 1, + "id": "es:boissons-light", + "name": "es:Boissons-light" + }, + { + "name": "en:Cheese-biscuits", + "id": "en:cheese-biscuits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cheese-biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-a-l-huile-d-olive", + "products": 1, + "name": "Maquereaux-a-l-huile-d-olive", + "id": "fr:maquereaux-a-l-huile-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-entieres", + "id": "fr:sardines-entieres", + "name": "Sardines-entieres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/postres-de-coco", + "name": "Postres-de-coco", + "id": "fr:postres-de-coco", + "products": 1 + }, + { + "name": "Confits-de-canard-et-pommes-de-terre", + "id": "fr:confits-de-canard-et-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-canard-et-pommes-de-terre" + }, + { + "name": "Chocolats-au-lait-aux-raisins", + "id": "fr:chocolats-au-lait-aux-raisins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-raisins" + }, + { + "id": "en:black-rice-vinegars", + "name": "Vinaigres de riz noirs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-riz-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-au-pesto-basilic", + "products": 1, + "name": "Ravioli-au-pesto-basilic", + "id": "fr:ravioli-au-pesto-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-vegetaliennes", + "products": 1, + "id": "fr:specialites-vegetaliennes", + "name": "Specialites-vegetaliennes" + }, + { + "id": "fr:potjevleeschs", + "name": "Potjevleeschs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/potjevleeschs" + }, + { + "name": "Poivres-rouges", + "id": "fr:poivres-rouges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poivres-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-thon-a-la-sauce-tomate", + "name": "Miettes-de-thon-a-la-sauce-tomate", + "id": "fr:miettes-de-thon-a-la-sauce-tomate", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/axoas-de-canard", + "id": "fr:axoas-de-canard", + "name": "Axoas-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sous-vide", + "products": 1, + "name": "Sous-vide", + "id": "fr:sous-vide" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-grenades", + "products": 1, + "name": "Gelees-de-grenades", + "id": "fr:gelees-de-grenades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-caramel", + "products": 1, + "id": "fr:tartelettes-au-caramel", + "name": "Tartelettes-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:produits-artisanaux", + "name": "de:Produits-artisanaux", + "id": "de:produits-artisanaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:alcools-artisanaux", + "id": "de:alcools-artisanaux", + "name": "de:Alcools-artisanaux", + "products": 1 + }, + { + "name": "Hefeweizen-dunkel", + "id": "fr:hefeweizen-dunkel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/hefeweizen-dunkel" + }, + { + "products": 1, + "name": "Hefeweizen", + "id": "fr:hefeweizen", + "url": "https://fr.openfoodfacts.org/categorie/hefeweizen" + }, + { + "products": 1, + "name": "de:Bieres-blondes", + "id": "de:bieres-blondes", + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-blondes" + }, + { + "name": "en:American-pale-ale", + "id": "en:american-pale-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:american-pale-ale" + }, + { + "id": "fr:haches-au-jambon", + "name": "Haches-au-jambon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/haches-au-jambon" + }, + { + "products": 1, + "name": "Bieres-au-lambic", + "id": "fr:bieres-au-lambic", + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-lambic" + }, + { + "products": 1, + "id": "fr:boules-de-picoulat", + "name": "Boules-de-picoulat", + "url": "https://fr.openfoodfacts.org/categorie/boules-de-picoulat" + }, + { + "id": "fr:turrones-de-guirlache", + "name": "Turrones-de-guirlache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/turrones-de-guirlache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises-sechees", + "name": "Fraises-sechees", + "id": "fr:fraises-sechees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cacahuetes-au-chocolat", + "products": 1, + "name": "de:Cacahuetes-au-chocolat", + "id": "de:cacahuetes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-y-sus-productos", + "products": 1, + "id": "fr:tomates-y-sus-productos", + "name": "Tomates-y-sus-productos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-nice", + "name": "Huile d'olive de Nice", + "id": "en:olive-oil-from-nice", + "products": 1 + }, + { + "products": 1, + "id": "fr:riz-de-camargue-igp", + "name": "Riz-de-camargue-igp", + "url": "https://fr.openfoodfacts.org/categorie/riz-de-camargue-igp" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/porto-blancs", + "products": 1, + "id": "en:white-ports", + "name": "Porto blancs" + }, + { + "name": "Olives-vertes-picholines", + "id": "fr:olives-vertes-picholines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-picholines" + }, + { + "name": "Natas-vegetales-para-cocinar", + "id": "fr:natas-vegetales-para-cocinar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/natas-vegetales-para-cocinar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/natas-vegetales-a-base-de-soja-para-cocinar", + "products": 1, + "name": "Natas-vegetales-a-base-de-soja-para-cocinar", + "id": "fr:natas-vegetales-a-base-de-soja-para-cocinar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/natas-vegetales", + "name": "Natas-vegetales", + "id": "fr:natas-vegetales", + "products": 1 + }, + { + "id": "fr:saucisses-de-toulouse-aux-lentilles", + "name": "Saucisses-de-toulouse-aux-lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-toulouse-aux-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:eaux", + "name": "pt:Eaux", + "id": "pt:eaux", + "products": 1 + }, + { + "name": "de:Farines", + "id": "de:farines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:farines" + }, + { + "products": 1, + "id": "fr:fromages-de-belgique", + "name": "Fromages-de-belgique", + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-belgique" + }, + { + "products": 1, + "id": "ko:chips", + "name": "ko:Chips", + "url": "https://fr.openfoodfacts.org/categorie/ko:chips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ko:aperitif", + "products": 1, + "name": "ko:Aperitif", + "id": "ko:aperitif" + }, + { + "products": 1, + "id": "fr:saumons-gravlax", + "name": "Saumons-gravlax", + "url": "https://fr.openfoodfacts.org/categorie/saumons-gravlax" + }, + { + "name": "Viandes-cuites", + "id": "fr:viandes-cuites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-cuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-petit-epeautre-t110", + "products": 1, + "name": "Farines de petit épeautre T110", + "id": "en:small-spelt-flour-t110" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-espagnols", + "name": "Nougats-espagnols", + "id": "fr:nougats-espagnols", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-peches", + "name": "Tartes-aux-peches", + "id": "fr:tartes-aux-peches", + "products": 1 + }, + { + "id": "fr:viande-de-boeuf-hachee-fraiche", + "name": "Viande-de-boeuf-hachee-fraiche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viande-de-boeuf-hachee-fraiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fraises-et-cerises", + "products": 1, + "id": "fr:confitures-de-fraises-et-cerises", + "name": "Confitures-de-fraises-et-cerises" + }, + { + "name": "Viandes-fraiches-de-canard", + "id": "fr:viandes-fraiches-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-jaunes-fermiers-du-gers", + "products": 1, + "id": "fr:poulets-jaunes-fermiers-du-gers", + "name": "Poulets-jaunes-fermiers-du-gers" + }, + { + "id": "fr:munster", + "name": "Munster", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/munster" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-de-regime", + "products": 1, + "name": "Aliments-de-regime", + "id": "fr:aliments-de-regime" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-grecs", + "name": "Gateaux-grecs", + "id": "fr:gateaux-grecs", + "products": 1 + }, + { + "products": 1, + "name": "Nectars-de-mirabelle", + "id": "fr:nectars-de-mirabelle", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-mirabelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-au-caramel", + "name": "Barres-de-cereales-au-caramel", + "id": "fr:barres-de-cereales-au-caramel", + "products": 1 + }, + { + "products": 1, + "id": "fr:jus-de-pasteques", + "name": "Jus-de-pasteques", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pasteques" + }, + { + "products": 1, + "id": "fr:nougats-a-la-chataigne", + "name": "Nougats-a-la-chataigne", + "url": "https://fr.openfoodfacts.org/categorie/nougats-a-la-chataigne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:graines-de-legumineuses", + "products": 1, + "name": "de:Graines-de-legumineuses", + "id": "de:graines-de-legumineuses" + }, + { + "id": "fr:gnocchi-au-fromage", + "name": "Gnocchi-au-fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gnocchi-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cremes-entieres", + "products": 1, + "name": "de:Cremes-entieres", + "id": "de:cremes-entieres" + }, + { + "id": "en:saffron-threads", + "name": "Safran pistils", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/safran-pistils" + }, + { + "products": 1, + "id": "fr:poireaux-frais", + "name": "Poireaux-frais", + "url": "https://fr.openfoodfacts.org/categorie/poireaux-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-fine", + "products": 1, + "id": "fr:saucisse-fine", + "name": "Saucisse-fine" + }, + { + "products": 1, + "name": "Confitures de citrouille", + "id": "en:pumpkin-jams", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-citrouille" + }, + { + "id": "bg:yaourts-natures", + "name": "bg:Yaourts-natures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bg:yaourts-natures" + }, + { + "products": 1, + "name": "Chocolats-noirs-fourres-a-la-noix-de-coco", + "id": "fr:chocolats-noirs-fourres-a-la-noix-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-a-la-noix-de-coco" + }, + { + "products": 1, + "id": "fr:croquettes-de-poisson", + "name": "Croquettes-de-poisson", + "url": "https://fr.openfoodfacts.org/categorie/croquettes-de-poisson" + }, + { + "name": "Pates-vegan", + "id": "fr:pates-vegan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-vegan" + }, + { + "name": "Rillettes-de-thon-blanc", + "id": "fr:rillettes-de-thon-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-thon-blanc" + }, + { + "id": "fr:canelloni", + "name": "Canelloni", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/canelloni" + }, + { + "products": 1, + "name": "Specialites-a-base-de-langoustine", + "id": "fr:specialites-a-base-de-langoustine", + "url": "https://fr.openfoodfacts.org/categorie/specialites-a-base-de-langoustine" + }, + { + "products": 1, + "id": "fr:cabardes", + "name": "Cabardès", + "url": "https://fr.openfoodfacts.org/categorie/cabardes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q844467" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poitrine-de-dinde", + "id": "fr:poitrine-de-dinde", + "name": "Poitrine-de-dinde", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:chocolats-aux-noisettes", + "products": 1, + "id": "da:chocolats-aux-noisettes", + "name": "da:Chocolats-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/double-india-pale-ale", + "products": 1, + "name": "Double-india-pale-ale", + "id": "fr:double-india-pale-ale" + }, + { + "products": 1, + "name": "da:Bonbons-de-chocolat", + "id": "da:bonbons-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/da:bonbons-de-chocolat" + }, + { + "products": 1, + "id": "da:conserves", + "name": "da:Conserves", + "url": "https://fr.openfoodfacts.org/categorie/da:conserves" + }, + { + "id": "da:aliments-a-base-de-plantes-en-conserve", + "name": "da:Aliments-a-base-de-plantes-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/da:aliments-a-base-de-plantes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:aliments-et-boissons-a-base-de-vegetaux", + "name": "da:Aliments-et-boissons-a-base-de-vegetaux", + "id": "da:aliments-et-boissons-a-base-de-vegetaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nb:barres-de-cereales", + "products": 1, + "id": "nb:barres-de-cereales", + "name": "nb:Barres-de-cereales" + }, + { + "products": 1, + "name": "nb:Barres", + "id": "nb:barres", + "url": "https://fr.openfoodfacts.org/categorie/nb:barres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-en-saumure", + "products": 1, + "name": "Olives-en-saumure", + "id": "fr:olives-en-saumure" + }, + { + "products": 1, + "name": "sv:Boissons-a-base-de-vegetaux", + "id": "sv:boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/sv:boissons-a-base-de-vegetaux" + }, + { + "products": 1, + "name": "sv:Boissons-non-sucrees", + "id": "sv:boissons-non-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/sv:boissons-non-sucrees" + }, + { + "products": 1, + "name": "sv:Produits-a-tartiner-sucres", + "id": "sv:produits-a-tartiner-sucres", + "url": "https://fr.openfoodfacts.org/categorie/sv:produits-a-tartiner-sucres" + }, + { + "products": 1, + "name": "Pains-au-cereales", + "id": "fr:pains-au-cereales", + "url": "https://fr.openfoodfacts.org/categorie/pains-au-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:kohlensaurehaltiges-wasser", + "products": 1, + "id": "de:kohlensaurehaltiges-wasser", + "name": "de:Kohlensaurehaltiges-wasser" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-pintade", + "name": "Cuisses-de-pintade", + "id": "fr:cuisses-de-pintade", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-patisseries", + "name": "en:Preparations-pour-patisseries", + "id": "en:preparations-pour-patisseries", + "products": 1 + }, + { + "products": 1, + "id": "en:preparations-pour-pancakes", + "name": "en:Preparations-pour-pancakes", + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-pancakes" + }, + { + "products": 1, + "id": "en:preparations-pour-crepes", + "name": "en:Preparations-pour-crepes", + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-crepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaches-vendeennes", + "name": "Gaches-vendeennes", + "id": "fr:gaches-vendeennes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:laits-pasteurises", + "id": "de:laits-pasteurises", + "name": "de:Laits-pasteurises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chips-de-pommes-de-terre-a-l-huile-de-tournesol", + "products": 1, + "id": "de:chips-de-pommes-de-terre-a-l-huile-de-tournesol", + "name": "de:Chips-de-pommes-de-terre-a-l-huile-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dehydrated-mulberries", + "name": "Dehydrated-mulberries", + "id": "fr:dehydrated-mulberries", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulets-cuits", + "id": "fr:poulets-cuits", + "name": "Poulets-cuits", + "products": 1 + }, + { + "products": 1, + "id": "es:sels-iodes", + "name": "es:Sels-iodes", + "url": "https://fr.openfoodfacts.org/categorie/es:sels-iodes" + }, + { + "products": 1, + "name": "es:Sels-fins", + "id": "es:sels-fins", + "url": "https://fr.openfoodfacts.org/categorie/es:sels-fins" + }, + { + "id": "it:omelettes-de-pommes-de-terre", + "name": "it:Omelettes-de-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:omelettes-de-pommes-de-terre" + }, + { + "id": "fr:vinaigres-balsamiques-blancs", + "name": "Vinaigres-balsamiques-blancs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-balsamiques-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:kalkoenfilets", + "id": "en:kalkoenfilets", + "name": "en:Kalkoenfilets", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vis", + "name": "en:Vis", + "id": "en:vis", + "products": 1 + }, + { + "products": 1, + "name": "Sautes-de-canard", + "id": "fr:sautes-de-canard", + "url": "https://fr.openfoodfacts.org/categorie/sautes-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bruine-lijnzaad", + "products": 1, + "name": "nl:Bruine-lijnzaad", + "id": "nl:bruine-lijnzaad" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faux-filets-de-boeuf", + "name": "Faux-filets-de-boeuf", + "id": "fr:faux-filets-de-boeuf", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-au-thon", + "id": "fr:lasagnes-au-thon", + "name": "Lasagnes-au-thon", + "products": 1 + }, + { + "name": "Thes-glaces-saveur-mandarine", + "id": "fr:thes-glaces-saveur-mandarine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-mandarine" + }, + { + "products": 1, + "id": "fr:barres-nutrivives", + "name": "Barres-nutrivives", + "url": "https://fr.openfoodfacts.org/categorie/barres-nutrivives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/risottos-aux-legumes", + "products": 1, + "name": "Risottos-aux-legumes", + "id": "fr:risottos-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-vegetariennes", + "id": "fr:saucisses-vegetariennes", + "name": "Saucisses-vegetariennes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-chardon", + "products": 1, + "name": "Miels-de-chardon", + "id": "fr:miels-de-chardon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croutons-gout-chevre", + "products": 1, + "name": "Croutons-gout-chevre", + "id": "fr:croutons-gout-chevre" + }, + { + "products": 1, + "name": "Mogettes-cuites", + "id": "fr:mogettes-cuites", + "url": "https://fr.openfoodfacts.org/categorie/mogettes-cuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-gateaux", + "id": "fr:petits-gateaux", + "name": "Petits-gateaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bajo-aragon", + "name": "es:Bajo-aragon", + "id": "es:bajo-aragon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-levure-maltee", + "products": 1, + "name": "Flocons-de-levure-maltee", + "id": "fr:flocons-de-levure-maltee" + }, + { + "products": 1, + "id": "de:laits-de-cereales", + "name": "de:Laits-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/de:laits-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:soupes-de-legumes", + "products": 1, + "name": "it:Soupes-de-legumes", + "id": "it:soupes-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gels-energisants", + "name": "Gels-energisants", + "id": "fr:gels-energisants", + "products": 1 + }, + { + "products": 1, + "name": "en:Sodas-au-gingembre", + "id": "en:sodas-au-gingembre", + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-au-gingembre" + }, + { + "id": "fr:vanille-bourbon", + "name": "Vanille-bourbon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vanille-bourbon" + }, + { + "products": 1, + "name": "Chocolats-blancs-sales", + "id": "fr:chocolats-blancs-sales", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-sales" + }, + { + "products": 1, + "name": "es:Boissons-a-base-de-soja", + "id": "es:boissons-a-base-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-a-base-de-soja" + }, + { + "products": 1, + "id": "fr:yaourts-brasses-a-la-mytille", + "name": "Yaourts-brasses-a-la-mytille", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-a-la-mytille" + }, + { + "id": "fr:pulpes-de-pruneaux", + "name": "Pulpes-de-pruneaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pulpes-de-pruneaux" + }, + { + "id": "fr:fleurs-sechees-pour-infusion", + "name": "Fleurs-sechees-pour-infusion", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fleurs-sechees-pour-infusion" + }, + { + "id": "fr:riz-thailandait", + "name": "Riz-thailandait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-thailandait" + }, + { + "id": "ro:grains-soufflees", + "name": "ro:Grains-soufflees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:grains-soufflees" + }, + { + "name": "ro:Cereales-soufflees", + "id": "ro:cereales-soufflees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:cereales-soufflees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:cereales-pour-petit-dejeuner", + "name": "ro:Cereales-pour-petit-dejeuner", + "id": "ro:cereales-pour-petit-dejeuner", + "products": 1 + }, + { + "products": 1, + "id": "ro:aliments-d-origine-vegetale", + "name": "ro:Aliments-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/ro:aliments-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/drop", + "products": 1, + "id": "fr:drop", + "name": "Drop" + }, + { + "products": 1, + "id": "de:burgenland", + "name": "de:Burgenland", + "url": "https://fr.openfoodfacts.org/categorie/de:burgenland" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/imperial-india-pale-ale", + "products": 1, + "name": "Imperial-india-pale-ale", + "id": "fr:imperial-india-pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-norvegiennes", + "products": 1, + "id": "fr:bieres-norvegiennes", + "name": "Bieres-norvegiennes" + }, + { + "id": "fr:cotechino", + "name": "Cotechino", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cotechino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rables-de-lapin", + "name": "Rables-de-lapin", + "id": "fr:rables-de-lapin", + "products": 1 + }, + { + "id": "fr:jerky", + "name": "Jerky", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jerky" + }, + { + "products": 1, + "id": "fr:sirops-de-fleurs", + "name": "Sirops-de-fleurs", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-fleurs" + }, + { + "id": "de:sirops-de-betterave", + "name": "de:Sirops-de-betterave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sirops-de-betterave" + }, + { + "name": "Tagliatelles-au-pesto-et-saumon", + "id": "fr:tagliatelles-au-pesto-et-saumon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-au-pesto-et-saumon" + }, + { + "products": 1, + "name": "Brandades-ail-et-fines-herbes", + "id": "fr:brandades-ail-et-fines-herbes", + "url": "https://fr.openfoodfacts.org/categorie/brandades-ail-et-fines-herbes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panna-cottas-a-la-mangue", + "id": "fr:panna-cottas-a-la-mangue", + "name": "Panna-cottas-a-la-mangue", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/acras-de-crevettes", + "name": "Acras-de-crevettes", + "id": "fr:acras-de-crevettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:salted-snacks", + "products": 1, + "name": "en:Salted-snacks", + "id": "en:salted-snacks" + }, + { + "products": 1, + "name": "Miels-du-massif-central", + "id": "fr:miels-du-massif-central", + "url": "https://fr.openfoodfacts.org/categorie/miels-du-massif-central" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-confits", + "products": 1, + "id": "de:fruits-confits", + "name": "de:Fruits-confits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3275065" + ], + "url": "https://fr.openfoodfacts.org/categorie/macvin-du-jura", + "id": "fr:macvin-du-jura", + "name": "Macvin du Jura", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-anis", + "name": "Bonbons-anis", + "id": "fr:bonbons-anis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quernons-d-ardoise", + "name": "Quernons-d-ardoise", + "id": "fr:quernons-d-ardoise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aguas-de-manantial", + "id": "fr:aguas-de-manantial", + "name": "Aguas-de-manantial", + "products": 1 + }, + { + "id": "fr:rognons-de-veau", + "name": "Rognons-de-veau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rognons-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anchoiades", + "products": 1, + "name": "Anchoiades", + "id": "fr:anchoiades" + }, + { + "name": "Pur-jus-d-orange", + "id": "fr:pur-jus-d-orange", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-d-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/psyllium", + "id": "fr:psyllium", + "name": "Psyllium", + "products": 1 + }, + { + "products": 1, + "id": "fr:bonbons-acides", + "name": "Bonbons-acides", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-acides" + }, + { + "products": 1, + "name": "Riz-en-poudre", + "id": "fr:riz-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/riz-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:epicerie", + "products": 1, + "name": "sr:Epicerie", + "id": "sr:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:aliments-et-boissons-a-base-de-vegetaux", + "products": 1, + "name": "sr:Aliments-et-boissons-a-base-de-vegetaux", + "id": "sr:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:india-pale-ale", + "products": 1, + "id": "it:india-pale-ale", + "name": "it:India-pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:alcools-artisanaux", + "name": "it:Alcools-artisanaux", + "id": "it:alcools-artisanaux", + "products": 1 + }, + { + "name": "en:Bieres-brunes", + "id": "en:bieres-brunes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-brunes" + }, + { + "name": "ca:Bieres-artisanales", + "id": "ca:bieres-artisanales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ca:bieres-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-togolaises", + "id": "fr:bieres-togolaises", + "name": "Bieres-togolaises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-africaines", + "products": 1, + "id": "fr:bieres-africaines", + "name": "Bieres-africaines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-au-lait-a-la-vanille", + "products": 1, + "name": "Semoules-au-lait-a-la-vanille", + "id": "fr:semoules-au-lait-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-neerlandaises", + "id": "en:bieres-neerlandaises", + "name": "en:Bieres-neerlandaises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-caramel", + "id": "fr:cookies-au-caramel", + "name": "Cookies-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-museaux-de-porc", + "name": "Salades-de-museaux-de-porc", + "id": "fr:salades-de-museaux-de-porc", + "products": 1 + }, + { + "products": 1, + "name": "Provolones", + "id": "fr:provolones", + "url": "https://fr.openfoodfacts.org/categorie/provolones" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-williams-au-sirop", + "name": "Poires-williams-au-sirop", + "id": "fr:poires-williams-au-sirop", + "products": 1 + }, + { + "id": "fr:couscous-a-preparer", + "name": "Couscous-a-preparer", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/couscous-a-preparer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:maionese", + "products": 1, + "name": "en:Maionese", + "id": "en:maionese" + }, + { + "products": 1, + "name": "nl:India-pale-ale", + "id": "nl:india-pale-ale", + "url": "https://fr.openfoodfacts.org/categorie/nl:india-pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:moutardes", + "name": "ro:Moutardes", + "id": "ro:moutardes", + "products": 1 + }, + { + "products": 1, + "id": "ro:moutarde-de-l-est", + "name": "ro:Moutarde-de-l-est", + "url": "https://fr.openfoodfacts.org/categorie/ro:moutarde-de-l-est" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galette-de-cereales-completes", + "id": "fr:galette-de-cereales-completes", + "name": "Galette-de-cereales-completes", + "products": 1 + }, + { + "products": 1, + "name": "Strong-ale", + "id": "fr:strong-ale", + "url": "https://fr.openfoodfacts.org/categorie/strong-ale" + }, + { + "products": 1, + "id": "fr:gomasios", + "name": "Gomasios", + "url": "https://fr.openfoodfacts.org/categorie/gomasios" + }, + { + "products": 1, + "name": "Preparations-pour-muffins", + "id": "fr:preparations-pour-muffins", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-muffins" + }, + { + "id": "fr:lambic", + "name": "Lambic", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lambic" + }, + { + "products": 1, + "id": "cs:chocolats-noirs-fourres", + "name": "cs:Chocolats-noirs-fourres", + "url": "https://fr.openfoodfacts.org/categorie/cs:chocolats-noirs-fourres" + }, + { + "products": 1, + "id": "es:thons-albacore", + "name": "es:Thons-albacore", + "url": "https://fr.openfoodfacts.org/categorie/es:thons-albacore" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cs:chocolats-noirs", + "products": 1, + "name": "cs:Chocolats-noirs", + "id": "cs:chocolats-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-en-dosettes-pour-machines-senseo", + "name": "Boissons-en-dosettes-pour-machines-senseo", + "id": "fr:boissons-en-dosettes-pour-machines-senseo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:confiseries-chocolatees", + "id": "sr:confiseries-chocolatees", + "name": "sr:Confiseries-chocolatees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:bonbons-de-chocolat", + "products": 1, + "id": "sr:bonbons-de-chocolat", + "name": "sr:Bonbons-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-d-artichaut", + "products": 1, + "name": "Cremes-d-artichaut", + "id": "fr:cremes-d-artichaut" + }, + { + "id": "en:producto-de-aperitivo", + "name": "en:Producto-de-aperitivo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:producto-de-aperitivo" + }, + { + "id": "fr:chocolats-lait-truffe", + "name": "Chocolats-lait-truffe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-lait-truffe" + }, + { + "products": 1, + "id": "fr:saumon-au-naturel", + "name": "Saumon-au-naturel", + "url": "https://fr.openfoodfacts.org/categorie/saumon-au-naturel" + }, + { + "products": 1, + "id": "fr:souffles-a-l-emmental", + "name": "Souffles-a-l-emmental", + "url": "https://fr.openfoodfacts.org/categorie/souffles-a-l-emmental" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-au-piment", + "products": 1, + "id": "fr:saucisses-au-piment", + "name": "Saucisses-au-piment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-de-pois-chiches", + "products": 1, + "id": "fr:couscous-de-pois-chiches", + "name": "Couscous-de-pois-chiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/volailles-panees", + "id": "fr:volailles-panees", + "name": "Volailles-panees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/harengs-a-la-tomate", + "id": "fr:harengs-a-la-tomate", + "name": "Harengs-a-la-tomate", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:chocolats-fourres-au-praline", + "products": 1, + "id": "sv:chocolats-fourres-au-praline", + "name": "sv:Chocolats-fourres-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-poulet-chorizo", + "name": "Salades-poulet-chorizo", + "id": "fr:salades-poulet-chorizo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-ble-pane", + "products": 1, + "name": "Nuggets-de-ble-pane", + "id": "fr:nuggets-de-ble-pane" + }, + { + "name": "Thes-glaces-saveur-fruits-tropicaux", + "id": "fr:thes-glaces-saveur-fruits-tropicaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-fruits-tropicaux" + }, + { + "name": "Emmentals-francais-a-teneur-reduite-en-sel", + "id": "fr:emmentals-francais-a-teneur-reduite-en-sel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/emmentals-francais-a-teneur-reduite-en-sel" + }, + { + "id": "it:boissons-gazeuses", + "name": "it:Boissons-gazeuses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-gazeuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-nature", + "id": "fr:chips-nature", + "name": "Chips-nature", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-marron", + "name": "Desserts-lactes-au-marron", + "id": "fr:desserts-lactes-au-marron", + "products": 1 + }, + { + "products": 1, + "name": "es:Tortillas-de-maiz", + "id": "es:tortillas-de-maiz", + "url": "https://fr.openfoodfacts.org/categorie/es:tortillas-de-maiz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grenades", + "id": "en:pomegranates", + "name": "Grenades", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cotes-du-rhone-villages", + "id": "en:cotes-du-rhone-villages", + "name": "en:Cotes-du-rhone-villages", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:appelation-cotes-du-rhone-villages", + "name": "en:Appelation-cotes-du-rhone-villages", + "id": "en:appelation-cotes-du-rhone-villages", + "products": 1 + }, + { + "name": "Imperial-porter", + "id": "fr:imperial-porter", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/imperial-porter" + }, + { + "name": "Desserts-lactes-a-la-fraise", + "id": "fr:desserts-lactes-a-la-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-a-la-fraise" + }, + { + "products": 1, + "id": "fr:primeur", + "name": "Primeur", + "url": "https://fr.openfoodfacts.org/categorie/primeur" + }, + { + "products": 1, + "name": "Bonbons-de-chocolats-fourres-a-la-liqueur", + "id": "fr:bonbons-de-chocolats-fourres-a-la-liqueur", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolats-fourres-a-la-liqueur" + }, + { + "name": "Axoas", + "id": "fr:axoas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/axoas" + }, + { + "products": 1, + "id": "fr:colombos", + "name": "Colombos", + "url": "https://fr.openfoodfacts.org/categorie/colombos" + }, + { + "products": 1, + "name": "es:Croissants-precuits", + "id": "es:croissants-precuits", + "url": "https://fr.openfoodfacts.org/categorie/es:croissants-precuits" + }, + { + "name": "Pommes-de-terre-colomba", + "id": "fr:pommes-de-terre-colomba", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-colomba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truite-a-l-huile", + "products": 1, + "id": "fr:truite-a-l-huile", + "name": "Truite-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-framboise", + "products": 1, + "name": "Nectars-de-framboise", + "id": "fr:nectars-de-framboise" + }, + { + "id": "fr:rotis-de-thon", + "name": "Rotis-de-thon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rotis-de-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-au-caramel", + "products": 1, + "name": "Muffins-au-caramel", + "id": "fr:muffins-au-caramel" + }, + { + "id": "es:produits-laitiers-fermentes", + "name": "es:Produits-laitiers-fermentes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:produits-laitiers-fermentes" + }, + { + "products": 1, + "id": "fr:specialite-a-tartiner", + "name": "Specialite-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/specialite-a-tartiner" + }, + { + "name": "en:Spaghettis-au-ble-complet", + "id": "en:spaghettis-au-ble-complet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:spaghettis-au-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulgour-gros", + "products": 1, + "id": "fr:boulgour-gros", + "name": "Boulgour-gros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bottereaux", + "products": 1, + "id": "fr:bottereaux", + "name": "Bottereaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/seitan-bio", + "id": "fr:seitan-bio", + "name": "Seitan-bio", + "products": 1 + }, + { + "products": 1, + "id": "pl:jus-de-legumes", + "name": "pl:Jus-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/pl:jus-de-legumes" + }, + { + "products": 1, + "id": "pl:aliments-a-base-de-fruits-et-de-legumes", + "name": "pl:Aliments-a-base-de-fruits-et-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/pl:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:aliments-et-boissons-a-base-de-vegetaux", + "name": "pl:Aliments-et-boissons-a-base-de-vegetaux", + "id": "pl:aliments-et-boissons-a-base-de-vegetaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trianons", + "products": 1, + "id": "fr:trianons", + "name": "Trianons" + }, + { + "products": 1, + "id": "pl:aliments-d-origine-vegetale", + "name": "pl:Aliments-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/pl:aliments-d-origine-vegetale" + }, + { + "name": "Succedanes-de-fromages", + "id": "fr:succedanes-de-fromages", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/succedanes-de-fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:oignons-frits", + "products": 1, + "name": "de:Oignons-frits", + "id": "de:oignons-frits" + }, + { + "products": 1, + "id": "da:epicerie", + "name": "da:Epicerie", + "url": "https://fr.openfoodfacts.org/categorie/da:epicerie" + }, + { + "id": "fr:saucissons-lyonnais", + "name": "Saucissons-lyonnais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-lyonnais" + }, + { + "name": "Chips-au-poivre", + "id": "fr:chips-au-poivre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chips-au-poivre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salaisons", + "products": 1, + "id": "fr:salaisons", + "name": "Salaisons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-piment", + "name": "Chocolats-au-lait-au-piment", + "id": "fr:chocolats-au-lait-au-piment", + "products": 1 + }, + { + "id": "fr:paves-de-truites", + "name": "Paves-de-truites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paves-de-truites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grands-crus-classes", + "products": 1, + "id": "fr:grands-crus-classes", + "name": "Grands-crus-classes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-crudites", + "products": 1, + "id": "fr:melanges-de-crudites", + "name": "Melanges-de-crudites" + }, + { + "products": 1, + "id": "fr:bais", + "name": "Bais", + "url": "https://fr.openfoodfacts.org/categorie/bais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-cacao", + "id": "fr:pates-de-cacao", + "name": "Pates-de-cacao", + "products": 1 + }, + { + "id": "fr:morceaux-poulet-thym-citron", + "name": "Morceaux-poulet-thym-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/morceaux-poulet-thym-citron" + }, + { + "products": 1, + "id": "en:cremes-entieres", + "name": "en:Cremes-entieres", + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-entieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cervelas-de-volaille", + "products": 1, + "id": "fr:cervelas-de-volaille", + "name": "Cervelas-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-myrte", + "products": 1, + "name": "Liqueurs-de-myrte", + "id": "fr:liqueurs-de-myrte" + }, + { + "name": "ca:Coffee-candies", + "id": "ca:coffee-candies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ca:coffee-candies" + }, + { + "id": "it:succo-di-frutta", + "name": "it:Succo-di-frutta", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:succo-di-frutta" + }, + { + "name": "Yaourts-aux-prunes", + "id": "fr:yaourts-aux-prunes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-prunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hamburgers-vegetariens", + "name": "Hamburgers-vegetariens", + "id": "fr:hamburgers-vegetariens", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:powder", + "id": "en:powder", + "name": "en:Powder", + "products": 1 + }, + { + "products": 1, + "id": "fr:nems-a-la-dinde", + "name": "Nems-a-la-dinde", + "url": "https://fr.openfoodfacts.org/categorie/nems-a-la-dinde" + }, + { + "id": "fr:pates-de-campagne-aux-noix", + "name": "Pates-de-campagne-aux-noix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-campagne-aux-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:conos-de-sorbete", + "products": 1, + "id": "es:conos-de-sorbete", + "name": "es:Conos-de-sorbete" + }, + { + "products": 1, + "id": "fr:noix-de-paprika", + "name": "Noix-de-paprika", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-paprika" + }, + { + "products": 1, + "id": "fr:nougats-tendre-et-dur", + "name": "Nougats-tendre-et-dur", + "url": "https://fr.openfoodfacts.org/categorie/nougats-tendre-et-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-extra", + "products": 1, + "name": "Confitures-extra", + "id": "fr:confitures-extra" + }, + { + "products": 1, + "id": "fr:bieres-luxembourgeoises", + "name": "Bieres-luxembourgeoises", + "url": "https://fr.openfoodfacts.org/categorie/bieres-luxembourgeoises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:torti", + "products": 1, + "name": "de:Torti", + "id": "de:torti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-alimentaires-sans-gluten", + "products": 1, + "name": "de:Pates-alimentaires-sans-gluten", + "id": "de:pates-alimentaires-sans-gluten" + }, + { + "products": 1, + "name": "es:Barres-aux-fruits", + "id": "es:barres-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/es:barres-aux-fruits" + }, + { + "id": "fr:steaks-de-veau", + "name": "Steaks-de-veau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-quatre-saisons", + "products": 1, + "name": "Pizzas-quatre-saisons", + "id": "fr:pizzas-quatre-saisons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait-extra-fin", + "id": "en:chocolats-au-lait-extra-fin", + "name": "en:Chocolats-au-lait-extra-fin", + "products": 1 + }, + { + "products": 1, + "id": "fr:jus-de-fraise", + "name": "Jus-de-fraise", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mueslis-croustillants", + "products": 1, + "name": "es:Mueslis-croustillants", + "id": "es:mueslis-croustillants" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q413126" + ], + "url": "https://fr.openfoodfacts.org/categorie/ajoblanco", + "products": 1, + "name": "Ajoblanco", + "id": "en:ajoblanco" + }, + { + "id": "fr:preparations-pour-pains-aux-graines", + "name": "Preparations-pour-pains-aux-graines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-pains-aux-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-chene", + "name": "Miels de chêne", + "id": "en:oak-honeys", + "products": 1 + }, + { + "name": "Glace-vanille-noix-de-pecan", + "id": "fr:glace-vanille-noix-de-pecan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glace-vanille-noix-de-pecan" + }, + { + "products": 1, + "name": "Miels-de-coriandre", + "id": "fr:miels-de-coriandre", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-coriandre" + }, + { + "id": "fr:galettes-des-rois-a-la-pistache", + "name": "Galettes-des-rois-a-la-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-des-rois-a-la-pistache" + }, + { + "id": "fr:sauces-vegetaliennes", + "name": "Sauces-vegetaliennes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-vegetaliennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:assortiments-de-chocolats", + "products": 1, + "id": "de:assortiments-de-chocolats", + "name": "de:Assortiments-de-chocolats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bigarreaux-au-sirop", + "name": "Bigarreaux-au-sirop", + "id": "fr:bigarreaux-au-sirop", + "products": 1 + }, + { + "products": 1, + "name": "Ktipitis", + "id": "fr:ktipitis", + "url": "https://fr.openfoodfacts.org/categorie/ktipitis" + }, + { + "name": "Epaississants", + "id": "fr:epaississants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/epaississants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-aux-fruits", + "products": 1, + "id": "en:biscuits-aux-fruits", + "name": "en:Biscuits-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-italiens", + "name": "Biscuits-italiens", + "id": "fr:biscuits-italiens", + "products": 1 + }, + { + "id": "fr:tartares-de-boeuf", + "name": "Tartares-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartares-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D1%82%D0%B0%D0%BD-%D0%B8-%D0%B0%D0%B9%D1%80%D0%B0%D0%BD", + "products": 1, + "id": "fr:тан-и-айран", + "name": "Тан-и-айран" + }, + { + "products": 1, + "name": "Молочные-напитки", + "id": "fr:молочные-напитки", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D1%8B%D0%B5-%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BA%D0%B8" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D0%BA%D0%B8%D1%81%D0%BB%D0%BE%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D1%8B%D0%B5-%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BA%D0%B8", + "name": "Кисломолочные-напитки", + "id": "fr:кисломолочные-напитки", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bosbessen", + "id": "nl:bosbessen", + "name": "nl:Bosbessen", + "products": 1 + }, + { + "name": "Lentilles-et-lardons", + "id": "fr:lentilles-et-lardons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-et-lardons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-poissons", + "products": 1, + "id": "fr:pates-de-poissons", + "name": "Pates-de-poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-marocaines", + "id": "fr:sauces-marocaines", + "name": "Sauces-marocaines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/postres-helados", + "products": 1, + "id": "fr:postres-helados", + "name": "Postres-helados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/helados", + "id": "fr:helados", + "name": "Helados", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-de-seigle", + "name": "en:Pains-de-seigle", + "id": "en:pains-de-seigle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-complets-aux-graines-de-chia", + "products": 1, + "id": "fr:pains-complets-aux-graines-de-chia", + "name": "Pains-complets-aux-graines-de-chia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-poulet-emincees", + "products": 1, + "id": "fr:cuisses-de-poulet-emincees", + "name": "Cuisses-de-poulet-emincees" + }, + { + "products": 1, + "id": "en:khorasan-wheats", + "name": "Blés de Khorasan", + "url": "https://fr.openfoodfacts.org/categorie/bles-de-khorasan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q11163068" + ] + }, + { + "id": "fr:preparations-vegetariennes", + "name": "Preparations-vegetariennes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-vegetariennes" + }, + { + "name": "Carpaccios-vegetariens", + "id": "fr:carpaccios-vegetariens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carpaccios-vegetariens" + }, + { + "id": "fr:bieres-polonaises", + "name": "Bieres-polonaises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-polonaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscottes", + "products": 1, + "name": "en:Biscottes", + "id": "en:biscottes" + }, + { + "products": 1, + "name": "Terrines-de-carpe", + "id": "fr:terrines-de-carpe", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-carpe" + }, + { + "id": "fr:sirops-de-mandarines", + "name": "Sirops-de-mandarines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mandarines" + }, + { + "products": 1, + "id": "nl:doperwten", + "name": "nl:Doperwten", + "url": "https://fr.openfoodfacts.org/categorie/nl:doperwten" + }, + { + "id": "fr:gesiers-de-canard-confits", + "name": "Gesiers-de-canard-confits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-canard-confits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boeuf-aux-carottes", + "name": "Boeuf-aux-carottes", + "id": "fr:boeuf-aux-carottes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cs:bonbons-de-chocolat", + "name": "cs:Bonbons-de-chocolat", + "id": "cs:bonbons-de-chocolat", + "products": 1 + }, + { + "id": "fr:purees-de-noix-de-macadamia", + "name": "Purees-de-noix-de-macadamia", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-noix-de-macadamia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-noix-de-macadamia", + "id": "en:macadamia-nut-butters", + "name": "Beurres de noix de macadamia", + "products": 1 + }, + { + "products": 1, + "name": "Cheval-en-chocolat", + "id": "fr:cheval-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/cheval-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chracuteries-a-cuire", + "id": "fr:chracuteries-a-cuire", + "name": "Chracuteries-a-cuire", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-de-plantes", + "products": 1, + "id": "fr:infusions-de-plantes", + "name": "Infusions-de-plantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-de-l-olivier", + "products": 1, + "name": "it:Produits-de-l-olivier", + "id": "it:produits-de-l-olivier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:huiles", + "id": "it:huiles", + "name": "it:Huiles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galletas-rellenas", + "name": "es:Galletas-rellenas", + "id": "es:galletas-rellenas", + "products": 1 + }, + { + "id": "fr:semoules-d-epeautre", + "name": "Semoules-d-epeautre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/semoules-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:flocons-de-seigle", + "id": "pt:flocons-de-seigle", + "name": "pt:Flocons-de-seigle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:triples", + "id": "en:triples", + "name": "en:Triples", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cacah", + "products": 1, + "id": "fr:cacah", + "name": "Cacah" + }, + { + "id": "fr:dinkelmilch", + "name": "Dinkelmilch", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dinkelmilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epaules-de-porc", + "products": 1, + "id": "fr:epaules-de-porc", + "name": "Epaules-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-de-legumes", + "products": 1, + "id": "fr:flans-de-legumes", + "name": "Flans-de-legumes" + }, + { + "products": 1, + "id": "fr:pizzas-a-la-mozzarella", + "name": "Pizzas-a-la-mozzarella", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-a-la-mozzarella" + }, + { + "name": "Rognons-de-boeuf", + "id": "fr:rognons-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rognons-de-boeuf" + }, + { + "id": "fr:nectars-de-griotte", + "name": "Nectars-de-griotte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-griotte" + }, + { + "name": "Extra-pale-ale", + "id": "fr:extra-pale-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/extra-pale-ale" + }, + { + "id": "nl:geconfijte-vruchten", + "name": "nl:Geconfijte-vruchten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:geconfijte-vruchten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruchtjoghurt", + "name": "Fruchtjoghurt", + "id": "fr:fruchtjoghurt", + "products": 1 + }, + { + "name": "Huiles-pour-cuisson", + "id": "fr:huiles-pour-cuisson", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-pour-cuisson" + }, + { + "products": 1, + "name": "Des-de-bacon", + "id": "fr:des-de-bacon", + "url": "https://fr.openfoodfacts.org/categorie/des-de-bacon" + }, + { + "name": "Jus-de-truffes", + "id": "fr:jus-de-truffes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-truffes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-portugal", + "id": "fr:miels-du-portugal", + "name": "Miels-du-portugal", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-aquitaine", + "name": "Miels d'Aquitaine", + "id": "fr:miels-d-aquitaine", + "products": 1 + }, + { + "products": 1, + "name": "Miels-de-franche-comte", + "id": "fr:miels-de-franche-comte", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-franche-comte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-nappes-de-chocolat", + "name": "Biscuits-nappes-de-chocolat", + "id": "fr:biscuits-nappes-de-chocolat", + "products": 1 + }, + { + "name": "Biscuits-aux-pepites-de-chocolat", + "id": "fr:biscuits-aux-pepites-de-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-pepites-de-chocolat" + }, + { + "id": "fr:pates-a-tartiner-aux-noix", + "name": "Pates-a-tartiner-aux-noix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-aux-noix" + }, + { + "id": "en:buckwheat-milks", + "name": "Boissons végétales de sarrasin", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-sarrasin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-noix", + "products": 1, + "id": "fr:biscuits-aux-noix", + "name": "Biscuits-aux-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:decorations-alimentaires", + "id": "es:decorations-alimentaires", + "name": "es:Decorations-alimentaires", + "products": 1 + }, + { + "products": 1, + "name": "es:Decorations", + "id": "es:decorations", + "url": "https://fr.openfoodfacts.org/categorie/es:decorations" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-au-praline", + "id": "fr:chocolats-noirs-fourres-au-praline", + "name": "Chocolats-noirs-fourres-au-praline", + "products": 1 + }, + { + "products": 1, + "name": "Susse-maise", + "id": "fr:susse-maise", + "url": "https://fr.openfoodfacts.org/categorie/susse-maise" + }, + { + "id": "fr:melange-4-huiles", + "name": "Melange-4-huiles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melange-4-huiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-gouters", + "products": 1, + "name": "Biscuits-gouters", + "id": "fr:biscuits-gouters" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dattes-sukari", + "products": 1, + "name": "Dattes-sukari", + "id": "fr:dattes-sukari" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-repas", + "products": 1, + "id": "fr:boissons-repas", + "name": "Boissons-repas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:instant-nudeln", + "products": 1, + "name": "en:Instant-nudeln", + "id": "en:instant-nudeln" + }, + { + "products": 1, + "id": "fr:chips-au-chili", + "name": "Chips-au-chili", + "url": "https://fr.openfoodfacts.org/categorie/chips-au-chili" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-a-l-avoine", + "products": 1, + "name": "de:Boissons-a-l-avoine", + "id": "de:boissons-a-l-avoine" + }, + { + "id": "de:boissons-vegetales", + "name": "de:Boissons-vegetales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-vegetales" + }, + { + "id": "en:mate", + "name": "en:Mate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:mate" + }, + { + "products": 1, + "id": "de:assortiments-de-bonbons-de-chocolat", + "name": "de:Assortiments-de-bonbons-de-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:assortiments-de-bonbons-de-chocolat" + }, + { + "products": 1, + "id": "fr:preparation-pour-desserts", + "name": "Preparation-pour-desserts", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-desserts" + }, + { + "products": 1, + "name": "Bieres-vietnamiennes", + "id": "fr:bieres-vietnamiennes", + "url": "https://fr.openfoodfacts.org/categorie/bieres-vietnamiennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/andouillettes-au-canard", + "products": 1, + "id": "fr:andouillettes-au-canard", + "name": "Andouillettes-au-canard" + }, + { + "products": 1, + "id": "fr:madeleines-a-la-pistache", + "name": "Madeleines-a-la-pistache", + "url": "https://fr.openfoodfacts.org/categorie/madeleines-a-la-pistache" + }, + { + "products": 1, + "id": "fr:chocolats-aux-epices", + "name": "Chocolats-aux-epices", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/billes-chocolatees", + "products": 1, + "name": "Billes-chocolatees", + "id": "fr:billes-chocolatees" + }, + { + "name": "Fufus", + "id": "fr:fufus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fufus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-framboises-et-groseilles", + "products": 1, + "id": "fr:sirops-de-framboises-et-groseilles", + "name": "Sirops-de-framboises-et-groseilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ketchup-epices", + "products": 1, + "id": "fr:ketchup-epices", + "name": "Ketchup-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-prepares", + "products": 1, + "name": "Oignons-prepares", + "id": "fr:oignons-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cake-au-citron-et-graines-de-pavot", + "id": "fr:cake-au-citron-et-graines-de-pavot", + "name": "Cake-au-citron-et-graines-de-pavot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-cake", + "products": 1, + "name": "Preparation-pour-cake", + "id": "fr:preparation-pour-cake" + }, + { + "id": "fr:quenelles-de-carpe", + "name": "Quenelles-de-carpe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-carpe" + }, + { + "products": 1, + "name": "it:Thons-a-l-huile-d-olive", + "id": "it:thons-a-l-huile-d-olive", + "url": "https://fr.openfoodfacts.org/categorie/it:thons-a-l-huile-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/turon", + "products": 1, + "id": "fr:turon", + "name": "Turon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aubergines-et-derives", + "products": 1, + "id": "fr:aubergines-et-derives", + "name": "Aubergines-et-derives" + }, + { + "products": 1, + "name": "Jambons-secs-de-savoie", + "id": "fr:jambons-secs-de-savoie", + "url": "https://fr.openfoodfacts.org/categorie/jambons-secs-de-savoie" + }, + { + "name": "Escalopes-de-dinde-panees", + "id": "fr:escalopes-de-dinde-panees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-dinde-panees" + }, + { + "products": 1, + "id": "fr:compotes-pommes-mirabelle", + "name": "Compotes-pommes-mirabelle", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mirabelle" + }, + { + "name": "Coffee-creamer", + "id": "fr:coffee-creamer", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/coffee-creamer" + }, + { + "id": "fr:charcuteries-espagnoles", + "name": "Charcuteries-espagnoles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-espagnoles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/madeleines-fourrees", + "products": 1, + "id": "fr:madeleines-fourrees", + "name": "Madeleines-fourrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alimentaires-de-ble-dur", + "id": "fr:pates-alimentaires-de-ble-dur", + "name": "Pates-alimentaires-de-ble-dur", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparation-pour-pate-a-crepes", + "name": "Preparation-pour-pate-a-crepes", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pate-a-crepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:safte-und-nektare", + "products": 1, + "name": "en:Safte-und-nektare", + "id": "en:safte-und-nektare" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-curry", + "id": "en:pates-de-curry", + "name": "en:Pates-de-curry", + "products": 1 + }, + { + "name": "Ventreches-de-thon", + "id": "fr:ventreches-de-thon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ventreches-de-thon" + }, + { + "id": "fr:thes-glaces-saveur-mure", + "name": "Thes-glaces-saveur-mure", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-saveur-mure" + }, + { + "id": "es:sirops-d-agave", + "name": "es:Sirops-d-agave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:sirops-d-agave" + }, + { + "products": 1, + "id": "fr:cappucino", + "name": "Cappucino", + "url": "https://fr.openfoodfacts.org/categorie/cappucino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-blancs", + "products": 1, + "id": "en:fromages-blancs", + "name": "en:Fromages-blancs" + }, + { + "products": 1, + "name": "Altbier", + "id": "fr:altbier", + "url": "https://fr.openfoodfacts.org/categorie/altbier" + }, + { + "id": "fr:beurres-de-homard", + "name": "Beurres-de-homard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-homard" + }, + { + "id": "fr:pains-aux-graines-de-tournesol", + "name": "Pains-aux-graines-de-tournesol", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-graines-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:almond-powder", + "products": 1, + "id": "en:almond-powder", + "name": "en:Almond-powder" + }, + { + "products": 1, + "id": "fr:stimulants", + "name": "Stimulants", + "url": "https://fr.openfoodfacts.org/categorie/stimulants" + }, + { + "products": 1, + "name": "Sangrias", + "id": "fr:sangrias", + "url": "https://fr.openfoodfacts.org/categorie/sangrias" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-estoniennes", + "products": 1, + "id": "fr:bieres-estoniennes", + "name": "Bieres-estoniennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/persil-en-pot", + "products": 1, + "id": "en:potted-parsley", + "name": "Persil en pot" + }, + { + "products": 1, + "id": "fr:pommes-et-derives", + "name": "Pommes-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/pommes-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-pommes", + "name": "Preparations-a-base-de-pommes", + "id": "fr:preparations-a-base-de-pommes", + "products": 1 + }, + { + "products": 1, + "name": "Condiments-asiatiques", + "id": "fr:condiments-asiatiques", + "url": "https://fr.openfoodfacts.org/categorie/condiments-asiatiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-cerfeuil", + "products": 1, + "name": "Feuilles de cerfeuil", + "id": "en:garden-chervil-leaves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-crus", + "products": 1, + "name": "it:Chocolats-crus", + "id": "it:chocolats-crus" + }, + { + "products": 1, + "id": "fr:chocolats-au-lait-fourres-au-nougat", + "name": "Chocolats-au-lait-fourres-au-nougat", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-au-nougat" + }, + { + "id": "en:bouillons-de-mouton", + "name": "en:Bouillons-de-mouton", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bouillons-de-mouton" + }, + { + "products": 1, + "id": "fr:maches-nantaises", + "name": "Maches-nantaises", + "url": "https://fr.openfoodfacts.org/categorie/maches-nantaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-surgeles", + "id": "fr:choux-surgeles", + "name": "Choux-surgeles", + "products": 1 + }, + { + "products": 1, + "id": "fr:araignees-de-porc", + "name": "Araignees-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/araignees-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-deshyratees", + "name": "Boissons-deshyratees", + "id": "fr:boissons-deshyratees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:french-pies", + "products": 1, + "id": "en:french-pies", + "name": "en:French-pies" + }, + { + "name": "en:Zuckerrubensirup", + "id": "en:zuckerrubensirup", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:zuckerrubensirup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-alerger", + "products": 1, + "id": "fr:fromage-alerger", + "name": "Fromage-alerger" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galettes-d-anis", + "name": "es:Galettes-d-anis", + "id": "es:galettes-d-anis", + "products": 1 + }, + { + "products": 1, + "name": "Riz gluant", + "id": "en:glutinous-rices", + "sameAs": [ + "https://www.wikidata.org/wiki/Q115443" + ], + "url": "https://fr.openfoodfacts.org/categorie/riz-gluant" + }, + { + "id": "fr:ravioli-au-porc", + "name": "Ravioli-au-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ravioli-au-porc" + }, + { + "id": "fr:jambon-braise", + "name": "Jambon-braise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambon-braise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-mures", + "products": 1, + "id": "fr:sirops-de-mures", + "name": "Sirops-de-mures" + }, + { + "name": "es:Tortillas-de-trigo", + "id": "es:tortillas-de-trigo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:tortillas-de-trigo" + }, + { + "products": 1, + "name": "en:Pains-hot-dog", + "id": "en:pains-hot-dog", + "url": "https://fr.openfoodfacts.org/categorie/en:pains-hot-dog" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:viandes-bovines-crues", + "name": "en:Viandes-bovines-crues", + "id": "en:viandes-bovines-crues", + "products": 1 + }, + { + "name": "Melanges-de-vins-blancs", + "id": "fr:melanges-de-vins-blancs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-vins-blancs" + }, + { + "name": "pt:Leite", + "id": "pt:leite", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:leite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-seches-pur-porc", + "name": "Saucisses-seches-pur-porc", + "id": "fr:saucisses-seches-pur-porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:celeri-en-conserve", + "products": 1, + "name": "es:Celeri-en-conserve", + "id": "es:celeri-en-conserve" + }, + { + "id": "fr:powder-for-lemon-ice-teas", + "name": "Powder-for-lemon-ice-teas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/powder-for-lemon-ice-teas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-equines", + "products": 1, + "name": "Viandes-equines", + "id": "fr:viandes-equines" + }, + { + "id": "es:boissons-au-soja", + "name": "es:Boissons-au-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-au-soja" + }, + { + "products": 1, + "name": "Patisseries-portugaises", + "id": "fr:patisseries-portugaises", + "url": "https://fr.openfoodfacts.org/categorie/patisseries-portugaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-myrtille", + "products": 1, + "id": "fr:purees-de-myrtille", + "name": "Purees-de-myrtille" + }, + { + "products": 1, + "name": "Brioche-aux-pepites-de-citron", + "id": "fr:brioche-aux-pepites-de-citron", + "url": "https://fr.openfoodfacts.org/categorie/brioche-aux-pepites-de-citron" + }, + { + "name": "de:Porto-tawny", + "id": "de:porto-tawny", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:porto-tawny" + }, + { + "name": "de:Porto", + "id": "de:porto", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:porto" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-langoustine", + "products": 1, + "id": "fr:rillettes-de-langoustine", + "name": "Rillettes de langoustine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-praline", + "id": "fr:pates-a-tartiner-au-praline", + "name": "Pates-a-tartiner-au-praline", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-seches", + "products": 1, + "id": "de:pates-seches", + "name": "de:Pates-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-au-caramel", + "id": "fr:mousses-au-caramel", + "name": "Mousses-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-exotiques", + "products": 1, + "name": "Boissons-exotiques", + "id": "fr:boissons-exotiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sels-marins", + "products": 1, + "name": "es:Sels-marins", + "id": "es:sels-marins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-tunisie", + "id": "fr:huile-d-olive-de-tunisie", + "name": "Huile-d-olive-de-tunisie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:jus-d-ananas-a-base-de-concentre", + "name": "it:Jus-d-ananas-a-base-de-concentre", + "id": "it:jus-d-ananas-a-base-de-concentre", + "products": 1 + }, + { + "products": 1, + "id": "en:fermented-milk", + "name": "en:Fermented-milk", + "url": "https://fr.openfoodfacts.org/categorie/en:fermented-milk" + }, + { + "products": 1, + "name": "en:Pestos-rouges", + "id": "en:pestos-rouges", + "url": "https://fr.openfoodfacts.org/categorie/en:pestos-rouges" + }, + { + "id": "fr:regnie", + "name": "Régnié", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/regnie" + }, + { + "name": "en:Haricots-rouges-en-conserve", + "id": "en:haricots-rouges-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-rouges-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-de-soja-et-froment-nuaturellement-fermentes", + "name": "Sauce-de-soja-et-froment-nuaturellement-fermentes", + "id": "fr:sauce-de-soja-et-froment-nuaturellement-fermentes", + "products": 1 + }, + { + "id": "fr:salade-composee-vegetale", + "name": "Salade-composee-vegetale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salade-composee-vegetale" + }, + { + "products": 1, + "id": "fr:pastel", + "name": "Pastel", + "url": "https://fr.openfoodfacts.org/categorie/pastel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-paques", + "name": "Gateaux-de-paques", + "id": "fr:gateaux-de-paques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rostis-de-pommes-de-terre", + "products": 1, + "id": "fr:rostis-de-pommes-de-terre", + "name": "Rostis-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-secs-au-beaufort", + "products": 1, + "name": "Saucissons-secs-au-beaufort", + "id": "fr:saucissons-secs-au-beaufort" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bars-fumes", + "products": 1, + "name": "Bars-fumes", + "id": "fr:bars-fumes" + }, + { + "id": "en:desayunos", + "name": "en:Desayunos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:desayunos" + }, + { + "name": "en:Cereales-para-el-desayuno", + "id": "en:cereales-para-el-desayuno", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-para-el-desayuno" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:laits-de-soja", + "products": 1, + "name": "it:Laits-de-soja", + "id": "it:laits-de-soja" + }, + { + "products": 1, + "name": "en:Amidons-de-cereales", + "id": "en:amidons-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/en:amidons-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:laits-de-legumineuses", + "products": 1, + "name": "de:Laits-de-legumineuses", + "id": "de:laits-de-legumineuses" + }, + { + "name": "en:Fischfilets", + "id": "en:fischfilets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fischfilets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ginger-ale", + "products": 1, + "id": "en:ginger-ale", + "name": "en:Ginger-ale" + }, + { + "name": "en:Ginger-ales", + "id": "en:ginger-ales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:ginger-ales" + }, + { + "products": 1, + "name": "ca:Boissons-alcoolisees", + "id": "ca:boissons-alcoolisees", + "url": "https://fr.openfoodfacts.org/categorie/ca:boissons-alcoolisees" + }, + { + "id": "en:black-india-pale-ale", + "name": "en:Black-india-pale-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:black-india-pale-ale" + }, + { + "products": 1, + "name": "en:Haricots-a-la-sauce-tomate", + "id": "en:haricots-a-la-sauce-tomate", + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-a-la-sauce-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-burgers-vegetariens", + "products": 1, + "id": "fr:preparations-pour-burgers-vegetariens", + "name": "Preparations-pour-burgers-vegetariens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aguas-minerales-naturales", + "products": 1, + "id": "en:aguas-minerales-naturales", + "name": "en:Aguas-minerales-naturales" + }, + { + "name": "Mulberries-sechees", + "id": "fr:mulberries-sechees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mulberries-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pasteleria", + "name": "es:Pasteleria", + "id": "es:pasteleria", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plat-a-rechauffer", + "name": "Plat-a-rechauffer", + "id": "fr:plat-a-rechauffer", + "products": 1 + }, + { + "id": "ru:семечки-жареные-отборные-соленые", + "name": "ru:Семечки-жареные-отборные-соленые", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D0%B5%D0%BC%D0%B5%D1%87%D0%BA%D0%B8-%D0%B6%D0%B0%D1%80%D0%B5%D0%BD%D1%8B%D0%B5-%D0%BE%D1%82%D0%B1%D0%BE%D1%80%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE%D0%BB%D0%B5%D0%BD%D1%8B%D0%B5" + }, + { + "id": "ru:graines-de-tournesol-grillees", + "name": "ru:Graines-de-tournesol-grillees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:graines-de-tournesol-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:graines-de-tournesol-et-derives", + "products": 1, + "id": "ru:graines-de-tournesol-et-derives", + "name": "ru:Graines-de-tournesol-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-la-fraise", + "name": "Desserts-a-la-fraise", + "id": "fr:desserts-a-la-fraise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-a-la-pulpe-de-fruit", + "id": "fr:vinaigres-a-la-pulpe-de-fruit", + "name": "Vinaigres-a-la-pulpe-de-fruit", + "products": 1 + }, + { + "products": 1, + "name": "es:Mango-congelado", + "id": "es:mango-congelado", + "url": "https://fr.openfoodfacts.org/categorie/es:mango-congelado" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thon-a-la-provencale", + "name": "Thon-a-la-provencale", + "id": "fr:thon-a-la-provencale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grissotti", + "name": "Grissotti", + "id": "fr:grissotti", + "products": 1 + }, + { + "name": "en:Tomatenmark", + "id": "en:tomatenmark", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:tomatenmark" + }, + { + "products": 1, + "id": "en:gemusebasierte-lebensmittel", + "name": "en:Gemusebasierte-lebensmittel", + "url": "https://fr.openfoodfacts.org/categorie/en:gemusebasierte-lebensmittel" + }, + { + "products": 1, + "name": "Tiramisu-au-citron", + "id": "fr:tiramisu-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/tiramisu-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-haricots", + "name": "Salades-de-haricots", + "id": "fr:salades-de-haricots", + "products": 1 + }, + { + "products": 1, + "id": "fr:fromages-a-fondue", + "name": "Fromages-a-fondue", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-fondue" + }, + { + "products": 1, + "name": "Soupes-de-potimarron", + "id": "fr:soupes-de-potimarron", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-potimarron" + }, + { + "products": 1, + "id": "fr:bortschs", + "name": "Bortschs", + "url": "https://fr.openfoodfacts.org/categorie/bortschs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-deshydrates", + "products": 1, + "name": "en:Fruits-deshydrates", + "id": "en:fruits-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grains-de-moutarde", + "products": 1, + "id": "fr:grains-de-moutarde", + "name": "Grains-de-moutarde" + }, + { + "products": 1, + "id": "fr:glaces-artisanales", + "name": "Glaces-artisanales", + "url": "https://fr.openfoodfacts.org/categorie/glaces-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/decors-sucres", + "name": "Decors-sucres", + "id": "fr:decors-sucres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-noix-de-coco", + "id": "fr:boissons-a-la-noix-de-coco", + "name": "Boissons-a-la-noix-de-coco", + "products": 1 + }, + { + "products": 1, + "name": "en:Sirops-de-sucre-inverti", + "id": "en:sirops-de-sucre-inverti", + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-sucre-inverti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panes-de-poulet", + "products": 1, + "id": "fr:panes-de-poulet", + "name": "Panes-de-poulet" + }, + { + "name": "en:Substituts-de-viande", + "id": "en:substituts-de-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:substituts-de-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:%D0%BE%D0%BB%D0%B8%D0%B2%D0%BA%D0%B8-%D0%B7%D0%B5%D0%BB%D1%91%D0%BD%D1%8B%D0%B5", + "id": "es:оливки-зелёные", + "name": "es:Оливки-зелёные", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aceituna-verde-partida-con-especias-categoria-selecta", + "name": "es:Aceituna-verde-partida-con-especias-categoria-selecta", + "id": "es:aceituna-verde-partida-con-especias-categoria-selecta", + "products": 1 + }, + { + "id": "fr:charchuteries", + "name": "Charchuteries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charchuteries" + }, + { + "name": "es:Oeufs-de-poules-elevees-au-sol", + "id": "es:oeufs-de-poules-elevees-au-sol", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:oeufs-de-poules-elevees-au-sol" + }, + { + "products": 1, + "id": "es:tiramisu-au-cafe", + "name": "es:Tiramisu-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/es:tiramisu-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:oeufs", + "products": 1, + "name": "es:Oeufs", + "id": "es:oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-droid", + "products": 1, + "name": "en:Chocolate-droid", + "id": "en:chocolate-droid" + }, + { + "products": 1, + "id": "en:chocolate-troll", + "name": "en:Chocolate-troll", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-troll" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-disco-glitter-ball", + "id": "en:chocolate-disco-glitter-ball", + "name": "en:Chocolate-disco-glitter-ball", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:red-velvet-cake", + "products": 1, + "id": "en:red-velvet-cake", + "name": "en:Red-velvet-cake" + }, + { + "id": "sr:aliments-a-base-de-fruits-et-de-legumes", + "name": "sr:Aliments-a-base-de-fruits-et-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sr:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "products": 1, + "id": "en:puree-de-tomates-fraiches-sans-conservateur-sans-eau-ajoutee", + "name": "en:Puree-de-tomates-fraiches-sans-conservateur-sans-eau-ajoutee", + "url": "https://fr.openfoodfacts.org/categorie/en:puree-de-tomates-fraiches-sans-conservateur-sans-eau-ajoutee" + }, + { + "name": "Huiles-vierges-de-noix", + "id": "fr:huiles-vierges-de-noix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierges-de-noix" + }, + { + "products": 1, + "name": "Moutardes-aromatisees", + "id": "fr:moutardes-aromatisees", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-gazeifies", + "id": "fr:cidres-gazeifies", + "name": "Cidres-gazeifies", + "products": 1 + }, + { + "products": 1, + "id": "fr:caviars-d-aubegines", + "name": "Caviars-d-aubegines", + "url": "https://fr.openfoodfacts.org/categorie/caviars-d-aubegines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quatre-baies", + "id": "fr:quatre-baies", + "name": "Quatre-baies", + "products": 1 + }, + { + "products": 1, + "id": "fr:bouches-du-rhone", + "name": "Bouches du Rhône", + "url": "https://fr.openfoodfacts.org/categorie/bouches-du-rhone" + }, + { + "name": "Biscuits-aromatises", + "id": "fr:biscuits-aromatises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aromatises" + }, + { + "id": "fr:gelees-de-fleurs-de-sureau", + "name": "Gelees-de-fleurs-de-sureau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-fleurs-de-sureau" + }, + { + "id": "fr:chocolats-noirs-a-dessert", + "name": "Chocolats-noirs-a-dessert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-dessert" + }, + { + "id": "fr:bouillons-de-coquillages", + "name": "Bouillons-de-coquillages", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-coquillages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:getrocknete-kokosnuss", + "name": "en:Getrocknete-kokosnuss", + "id": "en:getrocknete-kokosnuss", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pecorino-romano", + "products": 1, + "id": "en:pecorino-romano", + "name": "en:Pecorino-romano" + }, + { + "name": "en:Pecorino", + "id": "en:pecorino", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pecorino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pauillac", + "name": "en:Pauillac", + "id": "en:pauillac", + "products": 1 + }, + { + "id": "fr:billes-de-chocolat-aux-fruits", + "name": "Billes-de-chocolat-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/billes-de-chocolat-aux-fruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1152711" + ], + "url": "https://fr.openfoodfacts.org/categorie/fleur-d-oranger", + "products": 1, + "name": "Fleur d'oranger", + "id": "en:orange-blossom" + }, + { + "products": 1, + "name": "en:Protein-breads", + "id": "en:protein-breads", + "url": "https://fr.openfoodfacts.org/categorie/en:protein-breads" + }, + { + "name": "it:Proscuitto-di-parma", + "id": "it:proscuitto-di-parma", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:proscuitto-di-parma" + }, + { + "id": "es:riz-prepares", + "name": "es:Riz-prepares", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:riz-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-foie-gras-au-sauternes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3518776" + ], + "products": 1, + "name": "Terrine de foie gras au sauternes", + "id": "fr:terrine-de-foie-gras-au-sauternes" + }, + { + "products": 1, + "id": "fr:filets-de-merlu-blanc", + "name": "Filets-de-merlu-blanc", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-merlu-blanc" + }, + { + "products": 1, + "id": "fr:chips-hot-piri-piri", + "name": "Chips-hot-piri-piri", + "url": "https://fr.openfoodfacts.org/categorie/chips-hot-piri-piri" + }, + { + "id": "en:tortilla-chips", + "name": "en:Tortilla-chips", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:tortilla-chips" + }, + { + "products": 1, + "name": "ru:Graines", + "id": "ru:graines", + "url": "https://fr.openfoodfacts.org/categorie/ru:graines" + }, + { + "id": "en:sossen", + "name": "en:Sossen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sossen" + }, + { + "products": 1, + "id": "de:fromages-blancs", + "name": "de:Fromages-blancs", + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-blancs" + }, + { + "id": "en:amandes-grillees-et-salees", + "name": "en:Amandes-grillees-et-salees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:amandes-grillees-et-salees" + }, + { + "products": 1, + "id": "en:sodas-au-citron-light", + "name": "en:Sodas-au-citron-light", + "url": "https://fr.openfoodfacts.org/categorie/en:sodas-au-citron-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nectars-de-coco", + "products": 1, + "name": "en:Nectars-de-coco", + "id": "en:nectars-de-coco" + }, + { + "products": 1, + "id": "en:sauces-caesar", + "name": "en:Sauces-caesar", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-caesar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-jambon-cru-et-fromage", + "products": 1, + "name": "Tortellini-jambon-cru-et-fromage", + "id": "fr:tortellini-jambon-cru-et-fromage" + }, + { + "products": 1, + "name": "Artichauts-a-l-huile", + "id": "fr:artichauts-a-l-huile", + "url": "https://fr.openfoodfacts.org/categorie/artichauts-a-l-huile" + }, + { + "products": 1, + "name": "nl:Edulcorants", + "id": "nl:edulcorants", + "url": "https://fr.openfoodfacts.org/categorie/nl:edulcorants" + }, + { + "id": "nl:produits-d-elevages", + "name": "nl:Produits-d-elevages", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-d-elevages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:miels-de-fleurs", + "products": 1, + "name": "nl:Miels-de-fleurs", + "id": "nl:miels-de-fleurs" + }, + { + "products": 1, + "name": "en:Sauces-chili", + "id": "en:sauces-chili", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-chili" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:infusions-aux-fruits", + "products": 1, + "name": "en:Infusions-aux-fruits", + "id": "en:infusions-aux-fruits" + }, + { + "name": "en:Cereales-au-beurre-de-cacahuetes", + "id": "en:cereales-au-beurre-de-cacahuetes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-au-beurre-de-cacahuetes" + }, + { + "products": 1, + "name": "en:Salsas-de-chiles", + "id": "en:salsas-de-chiles", + "url": "https://fr.openfoodfacts.org/categorie/en:salsas-de-chiles" + }, + { + "id": "de:pates-seches-aux-oeufs", + "name": "de:Pates-seches-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-seches-aux-oeufs" + }, + { + "products": 1, + "name": "Salades-de-legumes-avec-poulet", + "id": "fr:salades-de-legumes-avec-poulet", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-legumes-avec-poulet" + }, + { + "products": 1, + "id": "fr:esargots-en-conserve", + "name": "Esargots-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/esargots-en-conserve" + }, + { + "name": "Feuilles-d-epinard", + "id": "fr:feuilles-d-epinard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feuilles-d-epinard" + }, + { + "name": "Farine-d-avoine", + "id": "fr:farine-d-avoine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farine-d-avoine" + }, + { + "id": "de:geback", + "name": "de:Geback", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:geback" + }, + { + "products": 1, + "id": "fr:yaourts-edulcores", + "name": "Yaourts-edulcores", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-cereales-et-legumineuses", + "name": "Melange-de-cereales-et-legumineuses", + "id": "fr:melange-de-cereales-et-legumineuses", + "products": 1 + }, + { + "products": 1, + "name": "es:Speculoos", + "id": "es:speculoos", + "url": "https://fr.openfoodfacts.org/categorie/es:speculoos" + }, + { + "products": 1, + "id": "nl:fruit-bar", + "name": "nl:Fruit-bar", + "url": "https://fr.openfoodfacts.org/categorie/nl:fruit-bar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-pizza-bio", + "name": "Pate-a-pizza-bio", + "id": "fr:pate-a-pizza-bio", + "products": 1 + }, + { + "products": 1, + "id": "fr:blanc-d-oeuf-pasteurise", + "name": "Blanc-d-oeuf-pasteurise", + "url": "https://fr.openfoodfacts.org/categorie/blanc-d-oeuf-pasteurise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanc-d-oeuf", + "products": 1, + "name": "Blanc-d-oeuf", + "id": "fr:blanc-d-oeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/esquimaux", + "id": "fr:esquimaux", + "name": "Esquimaux", + "products": 1 + }, + { + "name": "Fettucine", + "id": "fr:fettucine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fettucine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-mangue-et-passion", + "products": 1, + "id": "fr:coulis-de-mangue-et-passion", + "name": "Coulis-de-mangue-et-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:delle-venezie", + "id": "it:delle-venezie", + "name": "it:Delle Venezie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-passion", + "id": "fr:compotes-pommes-passion", + "name": "Compotes-pommes-passion", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alimentaires-de-sarrasin", + "products": 1, + "id": "fr:pates-alimentaires-de-sarrasin", + "name": "Pates-alimentaires-de-sarrasin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:knackebrot", + "name": "en:Knackebrot", + "id": "en:knackebrot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assaisionnement-bouillon", + "id": "fr:assaisionnement-bouillon", + "name": "Assaisionnement-bouillon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-moulus", + "products": 1, + "id": "en:cafes-moulus", + "name": "en:Cafes-moulus" + }, + { + "products": 1, + "id": "de:jus-d-orange-sanguine", + "name": "de:Jus-d-orange-sanguine", + "url": "https://fr.openfoodfacts.org/categorie/de:jus-d-orange-sanguine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-anis", + "name": "Sirops-d-anis", + "id": "fr:sirops-d-anis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fermented", + "id": "fr:fermented", + "name": "Fermented", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-croustillants", + "id": "fr:filets-de-poulet-croustillants", + "name": "Filets-de-poulet-croustillants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-pour-fritures", + "products": 1, + "name": "Huiles-pour-fritures", + "id": "fr:huiles-pour-fritures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chips", + "products": 1, + "id": "ru:chips", + "name": "ru:Chips" + }, + { + "products": 1, + "name": "Gaufrettes-salees", + "id": "fr:gaufrettes-salees", + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-salees" + }, + { + "id": "en:dried-nori-seaweed-sheets", + "name": "Dried nori seaweed sheets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dried-nori-seaweed-sheets" + }, + { + "products": 1, + "id": "fr:preparations-pour-vins-chauds", + "name": "Preparations-pour-vins-chauds", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-vins-chauds" + }, + { + "products": 1, + "name": "en:Pates-seches-aromatisees-et-colorees", + "id": "en:pates-seches-aromatisees-et-colorees", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-seches-aromatisees-et-colorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:schokoriegel", + "name": "en:Schokoriegel", + "id": "en:schokoriegel", + "products": 1 + }, + { + "id": "en:konfekt", + "name": "en:Konfekt", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:konfekt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortillas-de-mais", + "products": 1, + "id": "fr:tortillas-de-mais", + "name": "Tortillas-de-mais" + }, + { + "id": "en:biscuits-aperitifs-souffles-a-la-cacahuete", + "name": "en:Biscuits-aperitifs-souffles-a-la-cacahuete", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-aperitifs-souffles-a-la-cacahuete" + }, + { + "products": 1, + "id": "fr:morbiflettes", + "name": "Morbiflettes", + "url": "https://fr.openfoodfacts.org/categorie/morbiflettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kumquats", + "id": "fr:kumquats", + "name": "Kumquats", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-mutifruits", + "name": "Jus-mutifruits", + "id": "fr:jus-mutifruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-pains", + "products": 1, + "id": "fr:pates-a-pains", + "name": "Pates-a-pains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-lactes-pour-bebe", + "products": 1, + "name": "en:Desserts-lactes-pour-bebe", + "id": "en:desserts-lactes-pour-bebe" + }, + { + "products": 1, + "id": "en:compotes-de-pomme", + "name": "en:Compotes-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/en:compotes-de-pomme" + }, + { + "id": "fr:olives-assaisonnees", + "name": "Olives-assaisonnees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/olives-assaisonnees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiment-de-thes", + "products": 1, + "id": "fr:assortiment-de-thes", + "name": "Assortiment-de-thes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/datiles-sin-hueso", + "name": "Datiles-sin-hueso", + "id": "fr:datiles-sin-hueso", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tranches-de-saumon", + "products": 1, + "id": "fr:tranches-de-saumon", + "name": "Tranches-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-en-sachets", + "products": 1, + "id": "fr:thes-en-sachets", + "name": "Thes-en-sachets" + }, + { + "id": "fr:cocktail-de-crevette", + "name": "Cocktail-de-crevette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cocktail-de-crevette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rissoles-de-savoie", + "name": "Rissoles-de-savoie", + "id": "fr:rissoles-de-savoie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rissoles", + "name": "Rissoles", + "id": "fr:rissoles", + "products": 1 + }, + { + "products": 1, + "id": "fr:tikka-masala", + "name": "Tikka-masala", + "url": "https://fr.openfoodfacts.org/categorie/tikka-masala" + }, + { + "id": "en:corned-beef", + "name": "en:Corned-beef", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:corned-beef" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/substitut-de-cafe", + "name": "Substitut-de-cafe", + "id": "fr:substitut-de-cafe", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:marmelades-de-framboise", + "name": "en:Marmelades-de-framboise", + "id": "en:marmelades-de-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-potimarron", + "products": 1, + "name": "Veloutes-de-potimarron", + "id": "fr:veloutes-de-potimarron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-apperitifs", + "id": "fr:biscuits-apperitifs", + "name": "Biscuits-apperitifs", + "products": 1 + }, + { + "id": "nl:smaakmaker", + "name": "nl:Smaakmaker", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:smaakmaker" + }, + { + "products": 1, + "id": "fr:garlic-baguettes", + "name": "Garlic-baguettes", + "url": "https://fr.openfoodfacts.org/categorie/garlic-baguettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-cabillaud-panes", + "products": 1, + "id": "fr:filets-de-cabillaud-panes", + "name": "Filets-de-cabillaud-panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-coco-curry", + "id": "fr:sauce-coco-curry", + "name": "Sauce-coco-curry", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-instantanee-cacaotee", + "products": 1, + "name": "Boisson-instantanee-cacaotee", + "id": "fr:boisson-instantanee-cacaotee" + }, + { + "id": "fr:compotine", + "name": "Compotine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotine" + }, + { + "products": 1, + "name": "Pates-de-ble-dur-pour-la-salade", + "id": "fr:pates-de-ble-dur-pour-la-salade", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-dur-pour-la-salade" + }, + { + "id": "en:cottage-cheeses", + "name": "en:Cottage-cheeses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cottage-cheeses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:coulis-de-tomates", + "name": "en:Coulis-de-tomates", + "id": "en:coulis-de-tomates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baies-de-mulberries", + "id": "fr:baies-de-mulberries", + "name": "Baies-de-mulberries", + "products": 1 + }, + { + "id": "fr:tomme-du-massif-central", + "name": "Tomme du Massif central", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tomme-du-massif-central" + }, + { + "id": "en:leches", + "name": "en:Leches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:leches" + }, + { + "products": 1, + "id": "fr:eperlans", + "name": "Eperlans", + "url": "https://fr.openfoodfacts.org/categorie/eperlans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:mandelmus", + "name": "de:Mandelmus", + "id": "de:mandelmus", + "products": 1 + }, + { + "products": 1, + "id": "fr:viennoisere", + "name": "Viennoisere", + "url": "https://fr.openfoodfacts.org/categorie/viennoisere" + }, + { + "products": 1, + "id": "en:ananas-au-sirop", + "name": "en:Ananas-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/en:ananas-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-sans-gluten-sans-lactose", + "products": 1, + "name": "Pain-sans-gluten-sans-lactose", + "id": "fr:pain-sans-gluten-sans-lactose" + }, + { + "products": 1, + "id": "fr:boudins-de-lyon", + "name": "Boudins-de-lyon", + "url": "https://fr.openfoodfacts.org/categorie/boudins-de-lyon" + }, + { + "products": 1, + "id": "fr:saucisses-aux-choux", + "name": "Saucisses aux choux", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-choux" + }, + { + "products": 1, + "name": "Soumaintrains", + "id": "fr:soumaintrains", + "url": "https://fr.openfoodfacts.org/categorie/soumaintrains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-surgelees", + "name": "Boissons-surgelees", + "id": "fr:boissons-surgelees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:graines-de-lin-brunes", + "id": "de:graines-de-lin-brunes", + "name": "de:Graines-de-lin-brunes", + "products": 1 + }, + { + "name": "Carres-d-affinois", + "id": "fr:carres-d-affinois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carres-d-affinois" + }, + { + "name": "de:Melanges-de-fruits-a-coque", + "id": "de:melanges-de-fruits-a-coque", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:melanges-de-fruits-a-coque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-blancs", + "id": "de:chocolats-blancs", + "name": "de:Chocolats-blancs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-d-orange-sanguine", + "products": 1, + "id": "fr:pur-jus-d-orange-sanguine", + "name": "Pur-jus-d-orange-sanguine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mayon", + "name": "Mayon", + "id": "fr:mayon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-fruits-de-la-passion", + "name": "Compotes-de-fruits-de-la-passion", + "id": "fr:compotes-de-fruits-de-la-passion", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gateaux-et-patisseries-surgeles", + "id": "de:gateaux-et-patisseries-surgeles", + "name": "de:Gateaux-et-patisseries-surgeles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arroces-de-la-variedad-indica", + "products": 1, + "name": "Arroces-de-la-variedad-indica", + "id": "fr:arroces-de-la-variedad-indica" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-pizza-fraiche", + "name": "Pate-a-pizza-fraiche", + "id": "fr:pate-a-pizza-fraiche", + "products": 1 + }, + { + "name": "Compotes-pommes-fraise-framboise", + "id": "fr:compotes-pommes-fraise-framboise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-fraise-framboise" + }, + { + "products": 1, + "name": "Subsitut-de-repas", + "id": "fr:subsitut-de-repas", + "url": "https://fr.openfoodfacts.org/categorie/subsitut-de-repas" + }, + { + "products": 1, + "name": "Fromage-aop", + "id": "fr:fromage-aop", + "url": "https://fr.openfoodfacts.org/categorie/fromage-aop" + }, + { + "name": "en:Choux-rouges-prepares", + "id": "en:choux-rouges-prepares", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:choux-rouges-prepares" + }, + { + "products": 1, + "name": "Desserts-de-riz-au-caramel", + "id": "fr:desserts-de-riz-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-riz-au-caramel" + }, + { + "products": 1, + "name": "Pomme-de-terre-ratte", + "id": "fr:pomme-de-terre-ratte", + "url": "https://fr.openfoodfacts.org/categorie/pomme-de-terre-ratte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-secs-au-chocolat", + "products": 1, + "name": "Fruits-secs-au-chocolat", + "id": "fr:fruits-secs-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:frische-eierspatzle", + "id": "de:frische-eierspatzle", + "name": "de:Frische-eierspatzle", + "products": 1 + }, + { + "name": "Getreidekorner", + "id": "fr:getreidekorner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/getreidekorner" + }, + { + "id": "de:eierspatzle", + "name": "de:Eierspatzle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:eierspatzle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:strudels", + "products": 1, + "id": "de:strudels", + "name": "de:Strudels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pralinen", + "id": "fr:pralinen", + "name": "Pralinen", + "products": 1 + }, + { + "id": "fr:pains-precuitspains-sans-gluten", + "name": "Pains-precuitspains-sans-gluten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-precuitspains-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-muesli", + "name": "Yaourts-au-muesli", + "id": "fr:yaourts-au-muesli", + "products": 1 + }, + { + "products": 1, + "id": "fr:chips-au-piment-et-a-la-mangue", + "name": "Chips-au-piment-et-a-la-mangue", + "url": "https://fr.openfoodfacts.org/categorie/chips-au-piment-et-a-la-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:weisse-bohnen", + "id": "de:weisse-bohnen", + "name": "de:Weisse-bohnen", + "products": 1 + }, + { + "products": 1, + "name": "Capsules-pour-machines-a-cafe", + "id": "fr:capsules-pour-machines-a-cafe", + "url": "https://fr.openfoodfacts.org/categorie/capsules-pour-machines-a-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ab-6-monat", + "id": "fr:ab-6-monat", + "name": "Ab-6-monat", + "products": 1 + }, + { + "id": "fr:vins-cuits", + "name": "Vins-cuits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gaufres-au-miel", + "products": 1, + "id": "de:gaufres-au-miel", + "name": "de:Gaufres-au-miel" + }, + { + "id": "fr:sirops-a-la-pomme-et-au-kiwi", + "name": "Sirops-a-la-pomme-et-au-kiwi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-a-la-pomme-et-au-kiwi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-limette", + "products": 1, + "name": "Jus-de-limette", + "id": "fr:jus-de-limette" + }, + { + "id": "fr:michfreie-kase", + "name": "Michfreie-kase", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/michfreie-kase" + }, + { + "name": "Camemberts-suisses", + "id": "fr:camemberts-suisses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/camemberts-suisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/skyrs-a-la-myrtille", + "products": 1, + "id": "fr:skyrs-a-la-myrtille", + "name": "Skyrs-a-la-myrtille" + }, + { + "id": "de:biscuits-fourres-au-cacao", + "name": "de:Biscuits-fourres-au-cacao", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-fourres-au-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-stracciatella", + "id": "fr:yaourts-stracciatella", + "name": "Yaourts-stracciatella", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-cocktail-de-crevettes", + "products": 1, + "name": "Chips cocktail de crevettes", + "id": "en:prawn-cocktail-crisps" + }, + { + "id": "fr:glutenfrei", + "name": "Glutenfrei", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glutenfrei" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-kamut", + "name": "Pâtes de kamut", + "id": "en:kamut-pasta", + "products": 1 + }, + { + "id": "de:boissons-energetiques", + "name": "de:Boissons-energetiques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-energetiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kichererbsen", + "products": 1, + "id": "fr:kichererbsen", + "name": "Kichererbsen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-non-sucrees", + "products": 1, + "id": "pl:boissons-non-sucrees", + "name": "pl:Boissons-non-sucrees" + }, + { + "id": "fr:blancs-de-poireaux", + "name": "Blancs-de-poireaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/blancs-de-poireaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thunfischkonserve", + "id": "fr:thunfischkonserve", + "name": "Thunfischkonserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-et-gelees-royales", + "id": "fr:miels-et-gelees-royales", + "name": "Miels-et-gelees-royales", + "products": 1 + }, + { + "products": 1, + "name": "Gemusebruhen", + "id": "fr:gemusebruhen", + "url": "https://fr.openfoodfacts.org/categorie/gemusebruhen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-a-base-de-jus-concentre", + "id": "fr:nectars-a-base-de-jus-concentre", + "name": "Nectars-a-base-de-jus-concentre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-en-sucre", + "products": 1, + "id": "fr:bonbons-en-sucre", + "name": "Bonbons-en-sucre" + }, + { + "products": 1, + "id": "fr:sauces-portugaises", + "name": "Sauces-portugaises", + "url": "https://fr.openfoodfacts.org/categorie/sauces-portugaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-des-rois-a-la-pomme", + "name": "Galettes-des-rois-a-la-pomme", + "id": "fr:galettes-des-rois-a-la-pomme", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-confiseries", + "id": "fr:assortiments-de-confiseries", + "name": "Assortiments-de-confiseries", + "products": 1 + }, + { + "name": "Pepperoni-de-dinde", + "id": "fr:pepperoni-de-dinde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pepperoni-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues-en-tranches", + "name": "Mangues-en-tranches", + "id": "fr:mangues-en-tranches", + "products": 1 + }, + { + "products": 1, + "name": "Zout", + "id": "fr:zout", + "url": "https://fr.openfoodfacts.org/categorie/zout" + }, + { + "products": 1, + "id": "fr:plats-a-base-de-taureau", + "name": "Plats-a-base-de-taureau", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-taureau" + }, + { + "name": "Sirops-saveur-the", + "id": "fr:sirops-saveur-the", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-saveur-the" + }, + { + "products": 1, + "name": "Sirops-ginger-ale", + "id": "fr:sirops-ginger-ale", + "url": "https://fr.openfoodfacts.org/categorie/sirops-ginger-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-pamplemousse-rose", + "products": 1, + "id": "fr:sirops-de-pamplemousse-rose", + "name": "Sirops-de-pamplemousse-rose" + }, + { + "id": "fr:pizzas-au-poisson", + "name": "Pizzas-au-poisson", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-poisson" + }, + { + "products": 1, + "name": "Plats-a-base-de-champignons", + "id": "fr:plats-a-base-de-champignons", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-champignons" + }, + { + "products": 1, + "name": "Toast-melba", + "id": "fr:toast-melba", + "url": "https://fr.openfoodfacts.org/categorie/toast-melba" + }, + { + "products": 1, + "id": "fr:specialite-a-tartiner-a-base-de-foie-gras", + "name": "Specialite-a-tartiner-a-base-de-foie-gras", + "url": "https://fr.openfoodfacts.org/categorie/specialite-a-tartiner-a-base-de-foie-gras" + }, + { + "id": "fr:raviolis-chinois", + "name": "Raviolis-chinois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-chinois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-en-conserve", + "id": "de:plats-prepares-en-conserve", + "name": "de:Plats-prepares-en-conserve", + "products": 1 + }, + { + "name": "Saucissons-serrano", + "id": "fr:saucissons-serrano", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-serrano" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-de-poisson", + "products": 1, + "name": "en:Soupes-de-poisson", + "id": "en:soupes-de-poisson" + }, + { + "id": "fr:liqueurs-de-pomme", + "name": "Liqueurs-de-pomme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/la-laitiere", + "products": 1, + "name": "La-laitiere", + "id": "fr:la-laitiere" + }, + { + "name": "Preparation-a-base-de-legumes", + "id": "fr:preparation-a-base-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-a-base-de-legumes" + }, + { + "id": "fr:saucisses-seches-aux-noisettes", + "name": "Saucisses-seches-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-seches-aux-noisettes" + }, + { + "id": "es:melanges-de-graines", + "name": "es:Melanges-de-graines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:melanges-de-graines" + }, + { + "name": "Caramels-au-sirop-d-erable", + "id": "fr:caramels-au-sirop-d-erable", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/caramels-au-sirop-d-erable" + }, + { + "products": 1, + "id": "fr:sauces-a-l-avocat", + "name": "Sauces-a-l-avocat", + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-l-avocat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-d-ecosse", + "products": 1, + "name": "Bieres-d-ecosse", + "id": "fr:bieres-d-ecosse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait-aux-amandes", + "id": "en:chocolats-au-lait-aux-amandes", + "name": "en:Chocolats-au-lait-aux-amandes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-marrons-de-l-ardeche", + "id": "fr:creme-de-marrons-de-l-ardeche", + "name": "Creme-de-marrons-de-l-ardeche", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vanillezucker", + "name": "de:Vanillezucker", + "id": "de:vanillezucker", + "products": 1 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3442913" + ], + "url": "https://fr.openfoodfacts.org/categorie/rose-d-anjou", + "products": 1, + "name": "Rosé d'Anjou", + "id": "fr:rose-d-anjou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sucres-vanilles", + "id": "de:sucres-vanilles", + "name": "de:Sucres-vanilles", + "products": 1 + }, + { + "products": 1, + "id": "fr:spatzles", + "name": "Spatzles", + "url": "https://fr.openfoodfacts.org/categorie/spatzles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bok-choy", + "name": "Bok-choy", + "id": "fr:bok-choy", + "products": 1 + }, + { + "id": "fr:terrine-vegetales", + "name": "Terrine-vegetales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrine-vegetales" + }, + { + "products": 1, + "name": "de:Pils", + "id": "de:pils", + "url": "https://fr.openfoodfacts.org/categorie/de:pils" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-a-la-fleur-de-sureau", + "id": "en:boissons-a-la-fleur-de-sureau", + "name": "en:Boissons-a-la-fleur-de-sureau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farces-vegetales", + "name": "Farces-vegetales", + "id": "fr:farces-vegetales", + "products": 1 + }, + { + "products": 1, + "name": "Epices-pimentees", + "id": "fr:epices-pimentees", + "url": "https://fr.openfoodfacts.org/categorie/epices-pimentees" + }, + { + "id": "fr:gruyere-au-lait-cru", + "name": "Gruyere-au-lait-cru", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gruyere-au-lait-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-gout-chocolat", + "name": "Yaourts-a-boire-gout-chocolat", + "id": "fr:yaourts-a-boire-gout-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats", + "products": 1, + "name": "Plats", + "id": "fr:plats" + }, + { + "products": 1, + "name": "Sels-epices", + "id": "fr:sels-epices", + "url": "https://fr.openfoodfacts.org/categorie/sels-epices" + }, + { + "products": 1, + "name": "nl:Produits-a-tartiner-sales", + "id": "nl:produits-a-tartiner-sales", + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-a-tartiner-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:matieres-grasses-a-tartiner", + "products": 1, + "id": "nl:matieres-grasses-a-tartiner", + "name": "nl:Matieres-grasses-a-tartiner" + }, + { + "products": 1, + "id": "en:semoules-de-cereales", + "name": "en:Semoules-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/en:semoules-de-cereales" + }, + { + "id": "fr:choux-farcis", + "name": "Choux-farcis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/choux-farcis" + }, + { + "id": "fr:yaourts-a-la-pistache", + "name": "Yaourts-a-la-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-pistache" + }, + { + "id": "xx:sels", + "name": "xx:Sels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:sels" + }, + { + "id": "it:sirops-de-menthe", + "name": "it:Sirops-de-menthe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:sirops-de-menthe" + }, + { + "id": "en:speculoos", + "name": "en:Speculoos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:speculoos" + }, + { + "id": "fr:porcelet", + "name": "Porcelet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/porcelet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rose-a-la-framboise", + "products": 1, + "id": "fr:vin-rose-a-la-framboise", + "name": "Vin-rose-a-la-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plat-exotique", + "name": "Plat-exotique", + "id": "fr:plat-exotique", + "products": 1 + }, + { + "products": 1, + "id": "xx:brot", + "name": "xx:Brot", + "url": "https://fr.openfoodfacts.org/categorie/xx:brot" + }, + { + "id": "de:tagliatelles-aux-oeufs", + "name": "de:Tagliatelles-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:tagliatelles-aux-oeufs" + }, + { + "name": "Desserts-lactes-gelifiees", + "id": "fr:desserts-lactes-gelifiees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-gelifiees" + }, + { + "id": "en:roasted-shelled-pumpkin-seeds", + "name": "Graines de courge décortiquées grillées", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-decortiquees-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:truffes-en-chocolat", + "products": 1, + "name": "en:Truffes-en-chocolat", + "id": "en:truffes-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/toppings", + "products": 1, + "name": "Toppings", + "id": "fr:toppings" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chips-de-mais", + "id": "de:chips-de-mais", + "name": "de:Chips-de-mais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-surgeles", + "products": 1, + "id": "en:fruits-surgeles", + "name": "en:Fruits-surgeles" + }, + { + "name": "sv:Biscuits-et-gateaux", + "id": "sv:biscuits-et-gateaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:biscuits-et-gateaux" + }, + { + "products": 1, + "name": "de:Legumes-surgeles", + "id": "de:legumes-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-blancs-aux-noisettes", + "products": 1, + "name": "en:Chocolats-blancs-aux-noisettes", + "id": "en:chocolats-blancs-aux-noisettes" + }, + { + "name": "Preparation-pour-boissons-pour-le-sport", + "id": "fr:preparation-pour-boissons-pour-le-sport", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-boissons-pour-le-sport" + }, + { + "products": 1, + "id": "en:напиток-соевый-обогащенный-кальцием-и-витаминами", + "name": "en:Напиток-соевый-обогащенный-кальцием-и-витаминами", + "url": "https://fr.openfoodfacts.org/categorie/en:%D0%BD%D0%B0%D0%BF%D0%B8%D1%82%D0%BE%D0%BA-%D1%81%D0%BE%D0%B5%D0%B2%D1%8B%D0%B9-%D0%BE%D0%B1%D0%BE%D0%B3%D0%B0%D1%89%D0%B5%D0%BD%D0%BD%D1%8B%D0%B9-%D0%BA%D0%B0%D0%BB%D1%8C%D1%86%D0%B8%D0%B5%D0%BC-%D0%B8-%D0%B2%D0%B8%D1%82%D0%B0%D0%BC%D0%B8%D0%BD%D0%B0%D0%BC%D0%B8" + }, + { + "products": 1, + "id": "en:soya-drink-with-added-calcium-and-vitamins", + "name": "en:Soya-drink-with-added-calcium-and-vitamins", + "url": "https://fr.openfoodfacts.org/categorie/en:soya-drink-with-added-calcium-and-vitamins" + }, + { + "name": "de:Parboiled-reis", + "id": "de:parboiled-reis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:parboiled-reis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-myrtilles", + "name": "Cremes-de-myrtilles", + "id": "fr:cremes-de-myrtilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-sucrees", + "id": "fr:galettes-sucrees", + "name": "Galettes-sucrees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-salees", + "products": 1, + "name": "Galettes-salees", + "id": "fr:galettes-salees" + }, + { + "products": 1, + "name": "Chocolats-noirs-de-degustation", + "id": "fr:chocolats-noirs-de-degustation", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-de-degustation" + }, + { + "products": 1, + "name": "Moutardes-au-vinaigre-balsamique-de-modene", + "id": "fr:moutardes-au-vinaigre-balsamique-de-modene", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-vinaigre-balsamique-de-modene" + }, + { + "name": "Pates-d-olive", + "id": "fr:pates-d-olive", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-d-olive" + }, + { + "id": "de:lentilles-en-conserve", + "name": "de:Lentilles-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:lentilles-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barre-aux-dates", + "name": "en:Barre-aux-dates", + "id": "en:barre-aux-dates", + "products": 1 + }, + { + "products": 1, + "id": "de:soupes-au-poulet", + "name": "de:Soupes-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/de:soupes-au-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:purees-de-tomates", + "products": 1, + "id": "xx:purees-de-tomates", + "name": "xx:Purees-de-tomates" + }, + { + "name": "xx:Passatas", + "id": "xx:passatas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:passatas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-a-base-d-avoine", + "id": "fr:boisson-a-base-d-avoine", + "name": "Boisson-a-base-d-avoine", + "products": 1 + }, + { + "name": "de:Chocolats-noirs-aromatises", + "id": "de:chocolats-noirs-aromatises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-noirs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-pralines", + "id": "fr:chocolats-au-lait-fourres-pralines", + "name": "Chocolats-au-lait-fourres-pralines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:boissons-non-sucrees", + "products": 1, + "name": "ro:Boissons-non-sucrees", + "id": "ro:boissons-non-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:boissons", + "id": "ro:boissons", + "name": "ro:Boissons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-pour-viandes", + "products": 1, + "name": "de:Sauces-pour-viandes", + "id": "de:sauces-pour-viandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buchettes-au-fromage", + "id": "fr:buchettes-au-fromage", + "name": "Buchettes-au-fromage", + "products": 1 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q18414851" + ], + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-saint-jean-de-minervois", + "name": "Muscat de Saint-Jean-de-Minervois", + "id": "fr:muscat-de-saint-jean-de-minervois", + "products": 1 + }, + { + "products": 1, + "id": "de:vinaigres-balsamiques", + "name": "de:Vinaigres-balsamiques", + "url": "https://fr.openfoodfacts.org/categorie/de:vinaigres-balsamiques" + }, + { + "products": 1, + "id": "fr:boisson-a-base-de-soja", + "name": "Boisson-a-base-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/boisson-a-base-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:foies-gras-entiers", + "name": "es:Foies-gras-entiers", + "id": "es:foies-gras-entiers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:chips", + "id": "ro:chips", + "name": "ro:Chips", + "products": 1 + }, + { + "products": 1, + "name": "en:Jambon-superieur", + "id": "en:jambon-superieur", + "url": "https://fr.openfoodfacts.org/categorie/en:jambon-superieur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambon-cuit", + "products": 1, + "id": "en:jambon-cuit", + "name": "en:Jambon-cuit" + }, + { + "id": "en:chips-au-sel-et-vinaigre", + "name": "en:Chips-au-sel-et-vinaigre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chips-au-sel-et-vinaigre" + }, + { + "products": 1, + "id": "en:t110-spelt-flours", + "name": "Farines d'épeautre T110", + "url": "https://fr.openfoodfacts.org/categorie/farines-d-epeautre-t110" + }, + { + "name": "es:Neufchatel", + "id": "es:neufchatel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:neufchatel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:baies", + "id": "en:baies", + "name": "en:Baies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-biscuits", + "products": 1, + "id": "fr:chocolats-aux-biscuits", + "name": "Chocolats-aux-biscuits" + }, + { + "products": 1, + "name": "Bieres-speciales", + "id": "fr:bieres-speciales", + "url": "https://fr.openfoodfacts.org/categorie/bieres-speciales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-salade", + "name": "Pousses-de-salade", + "id": "fr:pousses-de-salade", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yoghurts-op-een-laag-fruit", + "name": "en:Yoghurts-op-een-laag-fruit", + "id": "en:yoghurts-op-een-laag-fruit", + "products": 1 + }, + { + "id": "sv:yaourts-soja-aux-fruits", + "name": "sv:Yaourts-soja-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:yaourts-soja-aux-fruits" + }, + { + "products": 1, + "id": "sv:yaourts-au-soja", + "name": "sv:Yaourts-au-soja", + "url": "https://fr.openfoodfacts.org/categorie/sv:yaourts-au-soja" + }, + { + "name": "sv:Yaourts", + "id": "sv:yaourts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:yaourts" + }, + { + "products": 1, + "id": "sv:produits-laitiers-fermentes", + "name": "sv:Produits-laitiers-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/sv:produits-laitiers-fermentes" + }, + { + "products": 1, + "name": "sv:Produits-fermentes", + "id": "sv:produits-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/sv:produits-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-vanille-fraise", + "id": "fr:glaces-vanille-fraise", + "name": "Glaces-vanille-fraise", + "products": 1 + }, + { + "id": "fr:glaces-vanille-chocolat", + "name": "Glaces-vanille-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-vanille-chocolat" + }, + { + "name": "de:Cereales-au-miel", + "id": "de:cereales-au-miel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-au-miel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:praline", + "products": 1, + "name": "it:Praline", + "id": "it:praline" + }, + { + "id": "de:leberwurst", + "name": "de:Leberwurst", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:leberwurst" + }, + { + "name": "xx:Rote-bete-saft", + "id": "xx:rote-bete-saft", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:rote-bete-saft" + }, + { + "name": "de:Erfrischungsgetranke-zuckerfrei", + "id": "de:erfrischungsgetranke-zuckerfrei", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:erfrischungsgetranke-zuckerfrei" + }, + { + "name": "Oeufs-de-caille-sans-coquille", + "id": "fr:oeufs-de-caille-sans-coquille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-caille-sans-coquille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-bruts-millesimes", + "id": "fr:champagnes-bruts-millesimes", + "name": "Champagnes-bruts-millesimes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/matieres-grasses-vegetales-a-tartiner", + "id": "fr:matieres-grasses-vegetales-a-tartiner", + "name": "Matieres-grasses-vegetales-a-tartiner", + "products": 1 + }, + { + "id": "en:crevettes-cuites", + "name": "en:Crevettes-cuites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:crevettes-cuites" + }, + { + "products": 1, + "name": "de:Vinaigres-de-pomme", + "id": "de:vinaigres-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/de:vinaigres-de-pomme" + }, + { + "products": 1, + "name": "Andouillettes-preparees", + "id": "fr:andouillettes-preparees", + "url": "https://fr.openfoodfacts.org/categorie/andouillettes-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anis-au-cassis", + "id": "fr:anis-au-cassis", + "name": "Anis-au-cassis", + "products": 1 + }, + { + "name": "ja:Confiseries-chocolatees", + "id": "ja:confiseries-chocolatees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ja:confiseries-chocolatees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:confiseries", + "name": "ja:Confiseries", + "id": "ja:confiseries", + "products": 1 + }, + { + "id": "fr:amaretto", + "name": "Amaretto", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/amaretto" + }, + { + "products": 1, + "name": "Vegecaos", + "id": "fr:vegecaos", + "url": "https://fr.openfoodfacts.org/categorie/vegecaos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-morue", + "name": "Beignets-de-morue", + "id": "fr:beignets-de-morue", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/super-aliments-crus", + "id": "fr:super-aliments-crus", + "name": "Super-aliments-crus", + "products": 1 + }, + { + "products": 1, + "name": "Cremes-de-nougat", + "id": "fr:cremes-de-nougat", + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-nougat" + }, + { + "products": 1, + "name": "Brioches-aux-fruits-confits", + "id": "fr:brioches-aux-fruits-confits", + "url": "https://fr.openfoodfacts.org/categorie/brioches-aux-fruits-confits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/papillotes-chocolat-praline", + "products": 1, + "name": "Papillotes-chocolat-praline", + "id": "fr:papillotes-chocolat-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-l-orange", + "name": "Gateaux-a-l-orange", + "id": "fr:gateaux-a-l-orange", + "products": 1 + }, + { + "products": 1, + "name": "Produits-au-lait-de-brebis", + "id": "fr:produits-au-lait-de-brebis", + "url": "https://fr.openfoodfacts.org/categorie/produits-au-lait-de-brebis" + }, + { + "id": "fr:cremes-de-mures", + "name": "Cremes-de-mures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-mures" + }, + { + "products": 1, + "name": "Cheesecakes à la vanille", + "id": "en:vanilla-cheesecakes", + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-a-la-vanille" + }, + { + "products": 1, + "name": "en:Plantaardige-dranken", + "id": "en:plantaardige-dranken", + "url": "https://fr.openfoodfacts.org/categorie/en:plantaardige-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:kamille", + "products": 1, + "name": "en:Kamille", + "id": "en:kamille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:a-de-sel-peut-contenir-des-traces-de-i-sugar", + "products": 1, + "name": "en:A-de-sel-peut-contenir-des-traces-de-i-sugar", + "id": "en:a-de-sel-peut-contenir-des-traces-de-i-sugar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:zorn", + "name": "en:Zorn", + "id": "en:zorn", + "products": 1 + }, + { + "id": "en:gepofte-mais-25", + "name": "en:Gepofte-mais-25", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gepofte-mais-25" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:colorartt-caramel-e150b", + "products": 1, + "id": "en:colorartt-caramel-e150b", + "name": "en:Colorartt-caramel-e150b" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mollusques", + "products": 1, + "name": "en:Mollusques", + "id": "en:mollusques" + }, + { + "products": 1, + "name": "en:Soupes-froides", + "id": "en:soupes-froides", + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-froides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-dietetiques", + "products": 1, + "name": "Plats-prepares-dietetiques", + "id": "fr:plats-prepares-dietetiques" + }, + { + "products": 1, + "name": "en:Gaspacho", + "id": "en:gaspacho", + "url": "https://fr.openfoodfacts.org/categorie/en:gaspacho" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ris-de-veau", + "id": "fr:ris-de-veau", + "name": "Ris-de-veau", + "products": 1 + }, + { + "name": "Bieres-bulgares", + "id": "fr:bieres-bulgares", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-bulgares" + }, + { + "id": "pl:jus-de-tomates", + "name": "pl:Jus-de-tomates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:jus-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taramas-au-caviar", + "products": 1, + "name": "Taramas-au-caviar", + "id": "fr:taramas-au-caviar" + }, + { + "products": 1, + "id": "fr:salmon-egg", + "name": "Salmon-egg", + "url": "https://fr.openfoodfacts.org/categorie/salmon-egg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/traiteur-asiatique", + "products": 1, + "id": "fr:traiteur-asiatique", + "name": "Traiteur-asiatique" + }, + { + "id": "fr:pains-de-mie-aux-aromates", + "name": "Pains-de-mie-aux-aromates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-aux-aromates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/irouleguy", + "id": "fr:irouleguy", + "name": "Irouléguy", + "products": 1 + }, + { + "id": "fr:peches-plates", + "name": "Peches-plates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/peches-plates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-a-la-creme", + "products": 1, + "name": "Mousses-a-la-creme", + "id": "fr:mousses-a-la-creme" + }, + { + "products": 1, + "id": "fr:soba", + "name": "Soba", + "url": "https://fr.openfoodfacts.org/categorie/soba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saison-ale", + "products": 1, + "name": "Saison-ale", + "id": "fr:saison-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-a-la-moutarde", + "products": 1, + "id": "fr:maquereaux-a-la-moutarde", + "name": "Maquereaux-a-la-moutarde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sirops-traditionnels", + "id": "de:sirops-traditionnels", + "name": "de:Sirops-traditionnels", + "products": 1 + }, + { + "name": "Vins-africains", + "id": "fr:vins-africains", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-africains" + }, + { + "products": 1, + "id": "fr:yogures", + "name": "Yogures", + "url": "https://fr.openfoodfacts.org/categorie/yogures" + }, + { + "products": 1, + "name": "en:Vanilla-soymilk", + "id": "en:vanilla-soymilk", + "url": "https://fr.openfoodfacts.org/categorie/en:vanilla-soymilk" + }, + { + "products": 1, + "name": "Vins sans alcool", + "id": "en:non-alcoholic-wines", + "url": "https://fr.openfoodfacts.org/categorie/vins-sans-alcool" + }, + { + "products": 1, + "name": "Glutens-de-ble", + "id": "fr:glutens-de-ble", + "url": "https://fr.openfoodfacts.org/categorie/glutens-de-ble" + }, + { + "id": "fr:creme-cuisine", + "name": "Creme-cuisine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-cuisine" + }, + { + "products": 1, + "id": "fr:chocolats-au-combava", + "name": "Chocolats-au-combava", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-combava" + }, + { + "products": 1, + "id": "fr:longe-de-porc", + "name": "Longe-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/longe-de-porc" + }, + { + "products": 1, + "id": "fr:canettes", + "name": "Canettes", + "url": "https://fr.openfoodfacts.org/categorie/canettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vi:epicerie", + "products": 1, + "name": "vi:Epicerie", + "id": "vi:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-a-l-orange", + "id": "fr:chocolats-au-lait-a-l-orange", + "name": "Chocolats-au-lait-a-l-orange", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-ble-noir", + "name": "Bieres-au-ble-noir", + "id": "fr:bieres-au-ble-noir", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-en-poudre", + "products": 1, + "id": "fr:tomates-en-poudre", + "name": "Tomates-en-poudre" + }, + { + "products": 1, + "name": "Fromage-frais-brousse", + "id": "fr:fromage-frais-brousse", + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-brousse" + }, + { + "products": 1, + "id": "fr:chocolats-de-couverture", + "name": "Chocolats-de-couverture", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-de-couverture" + }, + { + "id": "de:peres-noel-en-chocolat", + "name": "de:Peres-noel-en-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:peres-noel-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:foi-de-vi%C8%9B%C4%83", + "products": 1, + "name": "ro:Foi-de-viță", + "id": "ro:foi-de-viță" + }, + { + "id": "ro:borșuri", + "name": "ro:Borșuri", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:bor%C8%99uri" + }, + { + "products": 1, + "id": "fr:fromages-belges", + "name": "Fromages-belges", + "url": "https://fr.openfoodfacts.org/categorie/fromages-belges" + }, + { + "products": 1, + "name": "Canards-fumes", + "id": "fr:canards-fumes", + "url": "https://fr.openfoodfacts.org/categorie/canards-fumes" + }, + { + "id": "fr:fonds-de-viande", + "name": "Fonds-de-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-viande" + }, + { + "id": "fr:sauces-au-homard", + "name": "Sauces-au-homard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-homard" + }, + { + "id": "en:aop-honeys", + "name": "Miels AOP", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/miels-aop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panela-blocks", + "name": "Panela blocks", + "id": "en:panela-blocks", + "products": 1 + }, + { + "products": 1, + "id": "fr:koffiepads", + "name": "Koffiepads", + "url": "https://fr.openfoodfacts.org/categorie/koffiepads" + }, + { + "name": "en:Moussaka", + "id": "en:moussaka", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:moussaka" + }, + { + "products": 1, + "name": "Olives-vertes-farcies-au-piment", + "id": "fr:olives-vertes-farcies-au-piment", + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcies-au-piment" + }, + { + "products": 1, + "name": "en:Gratins-de-legumes", + "id": "en:gratins-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/en:gratins-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:haricots-verts-en-conserve", + "products": 1, + "name": "es:Haricots-verts-en-conserve", + "id": "es:haricots-verts-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-a-la-vanille", + "products": 1, + "id": "fr:fromages-blancs-a-la-vanille", + "name": "Fromages-blancs-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-cassis", + "products": 1, + "id": "fr:yaourts-au-cassis", + "name": "Yaourts-au-cassis" + }, + { + "name": "Pestos-a-l-ail-des-ours", + "id": "fr:pestos-a-l-ail-des-ours", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pestos-a-l-ail-des-ours" + }, + { + "id": "fr:bisons", + "name": "Bisons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bisons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-risottos", + "name": "Preparations-pour-risottos", + "id": "fr:preparations-pour-risottos", + "products": 1 + }, + { + "id": "en:huile-d-olive-extra-vierge", + "name": "en:Huile-d-olive-extra-vierge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:huile-d-olive-extra-vierge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-light", + "id": "de:boissons-light", + "name": "de:Boissons-light", + "products": 1 + }, + { + "name": "Cephalopodes", + "id": "fr:cephalopodes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cephalopodes" + }, + { + "id": "fr:pastramis-de-dinde", + "name": "Pastramis-de-dinde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pastramis-de-dinde" + }, + { + "products": 1, + "id": "fr:biscuits-au-chocolat-caramel", + "name": "Biscuits-au-chocolat-caramel", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chocolat-caramel" + }, + { + "name": "Breuvage", + "id": "fr:breuvage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/breuvage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pralin", + "products": 1, + "id": "fr:pralin", + "name": "Pralin" + }, + { + "products": 1, + "id": "es:thons-en-conserve", + "name": "es:Thons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:thons-en-conserve" + }, + { + "name": "de:Ananas-au-jus", + "id": "de:ananas-au-jus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:ananas-au-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roti-de-dinde-cuit-100-filet", + "id": "fr:roti-de-dinde-cuit-100-filet", + "name": "Roti-de-dinde-cuit-100-filet", + "products": 1 + }, + { + "products": 1, + "id": "de:chocolats-suisses", + "name": "de:Chocolats-suisses", + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-suisses" + }, + { + "name": "de:Chocolats-au-lait-aux-noisettes", + "id": "de:chocolats-au-lait-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-au-lait-aux-noisettes" + }, + { + "products": 1, + "name": "de:Chocolats-au-lait-aux-amandes", + "id": "de:chocolats-au-lait-aux-amandes", + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-au-lait-aux-amandes" + }, + { + "products": 1, + "name": "de:Purees-d-amande", + "id": "de:purees-d-amande", + "url": "https://fr.openfoodfacts.org/categorie/de:purees-d-amande" + }, + { + "products": 1, + "id": "fr:salade-de-surimi", + "name": "Salade-de-surimi", + "url": "https://fr.openfoodfacts.org/categorie/salade-de-surimi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chaussons-aux-fraises", + "products": 1, + "id": "fr:chaussons-aux-fraises", + "name": "Chaussons-aux-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-preparees", + "products": 1, + "id": "fr:crepes-preparees", + "name": "Crepes-preparees" + }, + { + "products": 1, + "id": "fr:chaussons", + "name": "Chaussons", + "url": "https://fr.openfoodfacts.org/categorie/chaussons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semi-conserve-harengs", + "products": 1, + "id": "fr:semi-conserve-harengs", + "name": "Semi-conserve-harengs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-au-froment", + "name": "Brioches-au-froment", + "id": "fr:brioches-au-froment", + "products": 1 + }, + { + "products": 1, + "id": "en:unleavened-bread-with-buckwheat-flour", + "name": "Pains azymes à la farine de sarrasin", + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-de-sarrasin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-avec-amandes", + "id": "de:chocolats-avec-amandes", + "name": "de:Chocolats-avec-amandes", + "products": 1 + }, + { + "id": "fr:chocolate-peanut-butter", + "name": "Chocolate-peanut-butter", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolate-peanut-butter" + }, + { + "id": "de:plats-a-base-de-viande-porcine", + "name": "de:Plats-a-base-de-viande-porcine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:plats-a-base-de-viande-porcine" + }, + { + "name": "Haricots pinto", + "id": "en:pinto-beans", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/haricots-pinto", + "sameAs": [ + "https://www.wikidata.org/wiki/Q323635" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dolmades", + "products": 1, + "name": "Dolmades", + "id": "fr:dolmades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pure-chocolades", + "products": 1, + "id": "fr:pure-chocolades", + "name": "Pure-chocolades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crocodiles-gelifies", + "products": 1, + "name": "Crocodiles-gelifies", + "id": "fr:crocodiles-gelifies" + }, + { + "products": 1, + "name": "Bigorneaux", + "id": "fr:bigorneaux", + "url": "https://fr.openfoodfacts.org/categorie/bigorneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruchte", + "products": 1, + "id": "en:fruchte", + "name": "en:Fruchte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-cola-a-la-stevia", + "name": "Sodas-au-cola-a-la-stevia", + "id": "fr:sodas-au-cola-a-la-stevia", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-stevia", + "products": 1, + "name": "Boissons-a-la-stevia", + "id": "fr:boissons-a-la-stevia" + }, + { + "products": 1, + "id": "fr:olives-a-la-grecque", + "name": "Olives-a-la-grecque", + "url": "https://fr.openfoodfacts.org/categorie/olives-a-la-grecque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-hareng-a-l-huile-de-colza", + "products": 1, + "id": "fr:filets-de-hareng-a-l-huile-de-colza", + "name": "Filets-de-hareng-a-l-huile-de-colza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chairs-de-crabe", + "products": 1, + "id": "fr:chairs-de-crabe", + "name": "Chairs-de-crabe" + }, + { + "name": "en:Saucisses-allemandes", + "id": "en:saucisses-allemandes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:saucisses-allemandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-charcuteries", + "name": "Assortiments-de-charcuteries", + "id": "fr:assortiments-de-charcuteries", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dosettes-pour-chocolats-chauds", + "products": 1, + "id": "fr:dosettes-pour-chocolats-chauds", + "name": "Dosettes-pour-chocolats-chauds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:haferflocken", + "products": 1, + "name": "en:Haferflocken", + "id": "en:haferflocken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-d-ail", + "products": 1, + "name": "Cremes-d-ail", + "id": "fr:cremes-d-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pflanzenmilch", + "name": "en:Pflanzenmilch", + "id": "en:pflanzenmilch", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:hafermilch", + "products": 1, + "id": "en:hafermilch", + "name": "en:Hafermilch" + }, + { + "products": 1, + "name": "da:Snacks-sucres", + "id": "da:snacks-sucres", + "url": "https://fr.openfoodfacts.org/categorie/da:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:getreidemilch", + "products": 1, + "id": "en:getreidemilch", + "name": "en:Getreidemilch" + }, + { + "name": "Castillon-côtes-de-bordeaux", + "id": "fr:castillon-cotes-de-bordeaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/castillon-cotes-de-bordeaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bieres-espagnoles", + "products": 1, + "name": "es:Bieres-espagnoles", + "id": "es:bieres-espagnoles" + }, + { + "products": 1, + "id": "fr:miel-exotique", + "name": "Miel-exotique", + "url": "https://fr.openfoodfacts.org/categorie/miel-exotique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-au-poulet", + "id": "fr:pates-au-poulet", + "name": "Pates-au-poulet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miel-indication-geographique-protegee", + "products": 1, + "name": "Miel-indication-geographique-protegee", + "id": "fr:miel-indication-geographique-protegee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-biscuitees", + "name": "Barres-biscuitees", + "id": "fr:barres-biscuitees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jambons-de-la-foret-noire", + "products": 1, + "id": "de:jambons-de-la-foret-noire", + "name": "de:Jambons-de-la-foret-noire" + }, + { + "name": "de:Jambons-crus-fumes", + "id": "de:jambons-crus-fumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:jambons-crus-fumes" + }, + { + "id": "de:jambons-crus", + "name": "de:Jambons-crus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:jambons-crus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jambons", + "name": "de:Jambons", + "id": "de:jambons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:snacks-sucres", + "products": 1, + "id": "ja:snacks-sucres", + "name": "ja:Snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-rouges", + "id": "en:haricots-rouges", + "name": "en:Haricots-rouges", + "products": 1 + }, + { + "name": "pt:Aceto-balsamico-di-modena", + "id": "pt:aceto-balsamico-di-modena", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:aceto-balsamico-di-modena" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:tortilla-chips", + "products": 1, + "id": "nl:tortilla-chips", + "name": "nl:Tortilla-chips" + }, + { + "id": "fr:pate-de-pistache", + "name": "Pate-de-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-de-pistache" + }, + { + "name": "ro:Pate-de-pui", + "id": "ro:pate-de-pui", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:pate-de-pui" + }, + { + "products": 1, + "name": "en:Melanges-d-epices", + "id": "en:melanges-d-epices", + "url": "https://fr.openfoodfacts.org/categorie/en:melanges-d-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-et-saucisses", + "id": "fr:haricots-et-saucisses", + "name": "Haricots-et-saucisses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fins-copeaux-de-chocolat-noir-100-cacao-pour-preparation-de-chocolat-chaud", + "id": "fr:fins-copeaux-de-chocolat-noir-100-cacao-pour-preparation-de-chocolat-chaud", + "name": "Fins-copeaux-de-chocolat-noir-100-cacao-pour-preparation-de-chocolat-chaud", + "products": 1 + }, + { + "products": 1, + "id": "fr:copeaux-de-chocolat-noir", + "name": "Copeaux-de-chocolat-noir", + "url": "https://fr.openfoodfacts.org/categorie/copeaux-de-chocolat-noir" + }, + { + "products": 1, + "id": "it:semoules-de-mais-pour-polenta", + "name": "it:Semoules-de-mais-pour-polenta", + "url": "https://fr.openfoodfacts.org/categorie/it:semoules-de-mais-pour-polenta" + }, + { + "products": 1, + "name": "Riz-fermente", + "id": "fr:riz-fermente", + "url": "https://fr.openfoodfacts.org/categorie/riz-fermente" + }, + { + "name": "Plat-prepare-au-saumon", + "id": "fr:plat-prepare-au-saumon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plat-prepare-au-saumon" + }, + { + "products": 1, + "name": "Barley-wine", + "id": "fr:barley-wine", + "url": "https://fr.openfoodfacts.org/categorie/barley-wine" + }, + { + "name": "Tartine", + "id": "fr:tartine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/microwave-popcorn", + "products": 1, + "id": "fr:microwave-popcorn", + "name": "Microwave-popcorn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vins-grecs", + "products": 1, + "name": "en:Vins-grecs", + "id": "en:vins-grecs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rayons-de-miel", + "id": "fr:rayons-de-miel", + "name": "Rayons-de-miel", + "products": 1 + }, + { + "products": 1, + "name": "Macedoines", + "id": "fr:macedoines", + "url": "https://fr.openfoodfacts.org/categorie/macedoines" + }, + { + "name": "Reduction-de-jus-de-carottes", + "id": "fr:reduction-de-jus-de-carottes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/reduction-de-jus-de-carottes" + }, + { + "name": "Boeuf-marine", + "id": "fr:boeuf-marine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boeuf-marine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plantaardige-levensmiddelen", + "products": 1, + "id": "en:plantaardige-levensmiddelen", + "name": "en:Plantaardige-levensmiddelen" + }, + { + "products": 1, + "id": "nl:wokpastas", + "name": "nl:Wokpastas", + "url": "https://fr.openfoodfacts.org/categorie/nl:wokpastas" + }, + { + "id": "nl:eaux-minerales-naturelles", + "name": "nl:Eaux-minerales-naturelles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:eaux-minerales-naturelles" + }, + { + "id": "nl:eaux-de-sources", + "name": "nl:Eaux-de-sources", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:eaux-de-sources" + }, + { + "products": 1, + "id": "ru:шоколадная-плитка-с-миндалём-и-вафлями-дроблёными", + "name": "ru:Шоколадная-плитка-с-миндалём-и-вафлями-дроблёными", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4%D0%BD%D0%B0%D1%8F-%D0%BF%D0%BB%D0%B8%D1%82%D0%BA%D0%B0-%D1%81-%D0%BC%D0%B8%D0%BD%D0%B4%D0%B0%D0%BB%D1%91%D0%BC-%D0%B8-%D0%B2%D0%B0%D1%84%D0%BB%D1%8F%D0%BC%D0%B8-%D0%B4%D1%80%D0%BE%D0%B1%D0%BB%D1%91%D0%BD%D1%8B%D0%BC%D0%B8" + }, + { + "name": "Camemberts-aux-truffes", + "id": "fr:camemberts-aux-truffes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/camemberts-aux-truffes" + }, + { + "name": "Sirop-de-pina-colada", + "id": "fr:sirop-de-pina-colada", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-pina-colada" + }, + { + "name": "de:Bohnen", + "id": "de:bohnen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:bohnen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panes-de-dinde-au-fromage-fondu", + "name": "Panes-de-dinde-au-fromage-fondu", + "id": "fr:panes-de-dinde-au-fromage-fondu", + "products": 1 + }, + { + "products": 1, + "name": "Nahrungserganzungen-fur-bodybuilder", + "id": "fr:nahrungserganzungen-fur-bodybuilder", + "url": "https://fr.openfoodfacts.org/categorie/nahrungserganzungen-fur-bodybuilder" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:maquereaux", + "products": 1, + "id": "es:maquereaux", + "name": "es:Maquereaux" + }, + { + "id": "pt:epices", + "name": "pt:Epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mueslis-au-chocolat", + "products": 1, + "id": "es:mueslis-au-chocolat", + "name": "es:Mueslis-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:curry", + "id": "pt:curry", + "name": "pt:Curry", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-cereales", + "name": "Plats-a-base-de-cereales", + "id": "fr:plats-a-base-de-cereales", + "products": 1 + }, + { + "products": 1, + "name": "ru:Flocons-de-cereales", + "id": "ru:flocons-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/ru:flocons-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:flocons-d-avoine", + "name": "ru:Flocons-d-avoine", + "id": "ru:flocons-d-avoine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-ferme", + "products": 1, + "name": "Fromages-a-pate-ferme", + "id": "fr:fromages-a-pate-ferme" + }, + { + "products": 1, + "name": "ru:Cereales-et-derives", + "id": "ru:cereales-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/ru:cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:marinades", + "name": "en:Marinades", + "id": "en:marinades", + "products": 1 + }, + { + "products": 1, + "name": "Beurres-gastronomiques", + "id": "fr:beurres-gastronomiques", + "url": "https://fr.openfoodfacts.org/categorie/beurres-gastronomiques" + }, + { + "products": 1, + "name": "Tamarin", + "id": "fr:tamarin", + "url": "https://fr.openfoodfacts.org/categorie/tamarin" + }, + { + "products": 1, + "name": "Soupes-asiatiques", + "id": "fr:soupes-asiatiques", + "url": "https://fr.openfoodfacts.org/categorie/soupes-asiatiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/homard-en-conserve", + "id": "fr:homard-en-conserve", + "name": "Homard-en-conserve", + "products": 1 + }, + { + "products": 1, + "name": "Civet-de-canard", + "id": "fr:civet-de-canard", + "url": "https://fr.openfoodfacts.org/categorie/civet-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment-t80", + "products": 1, + "name": "Farines de froment T80", + "id": "en:semi-polished-common-wheat-flours" + }, + { + "name": "Sauces-et-marinades", + "id": "fr:sauces-et-marinades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-et-marinades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pois-chiches", + "id": "fr:chips-de-pois-chiches", + "name": "Chips-de-pois-chiches", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaillac-premieres-cotes", + "name": "Gaillac premières côtes", + "id": "fr:gaillac-premieres-cotes", + "products": 1 + }, + { + "products": 1, + "id": "en:banana-flavoured-powder", + "name": "en:Banana-flavoured-powder", + "url": "https://fr.openfoodfacts.org/categorie/en:banana-flavoured-powder" + }, + { + "name": "Desserts-de-soja-a-la-pistache", + "id": "fr:desserts-de-soja-a-la-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-a-la-pistache" + }, + { + "id": "fr:olivades", + "name": "Olivades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/olivades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-a-base-de-fruits-de-mer", + "products": 1, + "name": "de:Plats-a-base-de-fruits-de-mer", + "id": "de:plats-a-base-de-fruits-de-mer" + }, + { + "name": "de:Grillsauce", + "id": "de:grillsauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:grillsauce" + }, + { + "products": 1, + "name": "Eau-plate", + "id": "fr:eau-plate", + "url": "https://fr.openfoodfacts.org/categorie/eau-plate" + }, + { + "products": 1, + "name": "Terrines-pur-porc", + "id": "fr:terrines-pur-porc", + "url": "https://fr.openfoodfacts.org/categorie/terrines-pur-porc" + }, + { + "name": "Poissons-a-la-meuniere", + "id": "fr:poissons-a-la-meuniere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poissons-a-la-meuniere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/absinthe", + "sameAs": [ + "https://www.wikidata.org/wiki/Q25686" + ], + "products": 1, + "name": "Absinthe", + "id": "en:absinthium" + }, + { + "products": 1, + "name": "Maltodextridine", + "id": "fr:maltodextridine", + "url": "https://fr.openfoodfacts.org/categorie/maltodextridine" + }, + { + "id": "fr:focaccias", + "name": "Focaccias", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/focaccias" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-a-la-pistache", + "id": "fr:saucissons-a-la-pistache", + "name": "Saucissons-a-la-pistache", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/knacks-d-alsaces", + "name": "Knacks-d-alsaces", + "id": "fr:knacks-d-alsaces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-condimentaire", + "id": "fr:sauce-condimentaire", + "name": "Sauce-condimentaire", + "products": 1 + }, + { + "name": "it:Pate-de-ble-dur", + "id": "it:pate-de-ble-dur", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:pate-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment-t110", + "name": "Farines de froment T110", + "id": "en:wheat-flour-t110", + "products": 1 + }, + { + "name": "nl:Bieres-brunes", + "id": "nl:bieres-brunes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-brunes" + }, + { + "id": "fr:nouilles-aux-legumes", + "name": "Nouilles-aux-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nouilles-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises-surgelees", + "products": 1, + "name": "Fraises surgelées", + "id": "en:frozen-strawberries" + }, + { + "name": "Viandes-d-autruche-surgelee", + "id": "fr:viandes-d-autruche-surgelee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-d-autruche-surgelee" + }, + { + "products": 1, + "name": "Bieres-au-sarrasin", + "id": "fr:bieres-au-sarrasin", + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-sarrasin" + }, + { + "products": 1, + "id": "es:ensaladas-de-quinoa", + "name": "es:Ensaladas-de-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/es:ensaladas-de-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marrons-en-conserve", + "id": "fr:marrons-en-conserve", + "name": "Marrons-en-conserve", + "products": 1 + }, + { + "name": "Preparation-dessert", + "id": "fr:preparation-dessert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-dessert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-pour-wok", + "name": "Huile-pour-wok", + "id": "fr:huile-pour-wok", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:myrtilles", + "id": "en:myrtilles", + "name": "en:Myrtilles", + "products": 1 + }, + { + "products": 1, + "name": "Yaourt-a-boire-chocolate", + "id": "fr:yaourt-a-boire-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-a-boire-chocolate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-champignons", + "name": "Cremes-de-champignons", + "id": "fr:cremes-de-champignons", + "products": 1 + }, + { + "name": "de:Sauces-au-curry", + "id": "de:sauces-au-curry", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-au-curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-figues", + "id": "fr:moutardes-aux-figues", + "name": "Moutardes-aux-figues", + "products": 1 + }, + { + "id": "fr:pleurotes", + "name": "Pleurotes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pleurotes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-citron", + "products": 1, + "id": "en:sirops-de-citron", + "name": "en:Sirops-de-citron" + }, + { + "products": 1, + "id": "fr:biscuits-au-sirop-d-erable", + "name": "Biscuits-au-sirop-d-erable", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-sirop-d-erable" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-liquides", + "id": "fr:levures-liquides", + "name": "Levures-liquides", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:barres-chocolatees", + "products": 1, + "name": "sv:Barres-chocolatees", + "id": "sv:barres-chocolatees" + }, + { + "name": "pt:Kohlensaurehaltige-getranke", + "id": "pt:kohlensaurehaltige-getranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:kohlensaurehaltige-getranke" + }, + { + "id": "pt:fruchtgetranke", + "name": "pt:Fruchtgetranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:fruchtgetranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:erfrischungsgetranke", + "products": 1, + "id": "pt:erfrischungsgetranke", + "name": "pt:Erfrischungsgetranke" + }, + { + "name": "Viande-de-cerf", + "id": "fr:viande-de-cerf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viande-de-cerf" + }, + { + "products": 1, + "id": "fr:biere-de-fermentation-haute", + "name": "Biere-de-fermentation-haute", + "url": "https://fr.openfoodfacts.org/categorie/biere-de-fermentation-haute" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-fruitees", + "name": "Preparations-fruitees", + "id": "fr:preparations-fruitees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectar-de-litchi", + "name": "Nectar-de-litchi", + "id": "fr:nectar-de-litchi", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/figues-sechees", + "products": 1, + "name": "Figues-sechees", + "id": "fr:figues-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-pizza", + "products": 1, + "name": "Fonds-de-pizza", + "id": "fr:fonds-de-pizza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-saveur-cannelle", + "name": "Riz-au-lait-saveur-cannelle", + "id": "fr:riz-au-lait-saveur-cannelle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-porc", + "products": 1, + "name": "Steaks-de-porc", + "id": "fr:steaks-de-porc" + }, + { + "products": 1, + "name": "Fromages-britanniques", + "id": "fr:fromages-britanniques", + "url": "https://fr.openfoodfacts.org/categorie/fromages-britanniques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:crema-spalmabile-alle-nocciole", + "name": "it:Crema-spalmabile-alle-nocciole", + "id": "it:crema-spalmabile-alle-nocciole", + "products": 1 + }, + { + "id": "fr:preparations-a-base-de-marrons", + "name": "Preparations-a-base-de-marrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-marrons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-d-espadon", + "products": 1, + "name": "Rillettes-d-espadon", + "id": "fr:rillettes-d-espadon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-jambon-et-a-la-mozzarella", + "products": 1, + "id": "fr:sandwichs-au-jambon-et-a-la-mozzarella", + "name": "Sandwichs-au-jambon-et-a-la-mozzarella" + }, + { + "id": "fr:cakes-aux-poires", + "name": "Cakes-aux-poires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-poires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-fromages", + "id": "fr:cremes-de-fromages", + "name": "Cremes-de-fromages", + "products": 1 + }, + { + "name": "Cakes-aux-cerises", + "id": "fr:cakes-aux-cerises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-cerises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/etoiles-en-sucre", + "products": 1, + "name": "Etoiles-en-sucre", + "id": "fr:etoiles-en-sucre" + }, + { + "products": 1, + "id": "fr:petits-livarot", + "name": "Petits-livarot", + "url": "https://fr.openfoodfacts.org/categorie/petits-livarot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nigelle", + "products": 1, + "id": "fr:nigelle", + "name": "Nigelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-a-l-huile", + "name": "Poivrons-a-l-huile", + "id": "fr:poivrons-a-l-huile", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/meules-belmontoises", + "name": "Meules-belmontoises", + "id": "fr:meules-belmontoises", + "products": 1 + }, + { + "name": "Schokoladenbonbons", + "id": "fr:schokoladenbonbons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/schokoladenbonbons" + }, + { + "name": "Tourtes-salees", + "id": "fr:tourtes-salees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tourtes-salees" + }, + { + "products": 1, + "name": "Menthe-pepites-chocolat", + "id": "fr:menthe-pepites-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/menthe-pepites-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:baklavas", + "id": "en:baklavas", + "name": "en:Baklavas", + "products": 1 + }, + { + "id": "fr:cabillaud-fume", + "name": "Cabillaud-fume", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cabillaud-fume" + }, + { + "id": "de:kakaodrink", + "name": "de:Kakaodrink", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:kakaodrink" + }, + { + "products": 1, + "name": "Laurier sec moulu", + "id": "en:ground-dried-bay-laurel", + "url": "https://fr.openfoodfacts.org/categorie/laurier-sec-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-legumes-et-de-fruits", + "name": "Jus-de-legumes-et-de-fruits", + "id": "fr:jus-de-legumes-et-de-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-d-arracacha", + "name": "Chips-d-arracacha", + "id": "fr:chips-d-arracacha", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-pates-aux-legumes", + "products": 1, + "id": "fr:gratins-de-pates-aux-legumes", + "name": "Gratins-de-pates-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:barres-proteinees", + "name": "de:Barres-proteinees", + "id": "de:barres-proteinees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pot-je-vless", + "products": 1, + "name": "Pot-je-vless", + "id": "fr:pot-je-vless" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/medaillons-de-porc", + "id": "fr:medaillons-de-porc", + "name": "Medaillons-de-porc", + "products": 1 + }, + { + "products": 1, + "id": "fr:laitages-au-lait-ecreme-pasteurise", + "name": "Laitages-au-lait-ecreme-pasteurise", + "url": "https://fr.openfoodfacts.org/categorie/laitages-au-lait-ecreme-pasteurise" + }, + { + "name": "Cereales-a-la-cannelle", + "id": "fr:cereales-a-la-cannelle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cereales-a-la-cannelle" + }, + { + "id": "fr:infusion-ayurvedique-aux-epices", + "name": "Infusion-ayurvedique-aux-epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/infusion-ayurvedique-aux-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-pays-de-champagne", + "id": "fr:miels-du-pays-de-champagne", + "name": "Miels du Pays de Champagne", + "products": 1 + }, + { + "products": 1, + "id": "fr:sauces-en-conserve", + "name": "Sauces-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/sauces-en-conserve" + }, + { + "products": 1, + "id": "fr:zwarte-pepers", + "name": "Zwarte-pepers", + "url": "https://fr.openfoodfacts.org/categorie/zwarte-pepers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pasteis-de-nata", + "name": "Pasteis-de-nata", + "id": "fr:pasteis-de-nata", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zwarte-peperkorrels", + "name": "Zwarte-peperkorrels", + "id": "fr:zwarte-peperkorrels", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/smaakmakers", + "id": "fr:smaakmakers", + "name": "Smaakmakers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kruidenierswaren", + "products": 1, + "id": "fr:kruidenierswaren", + "name": "Kruidenierswaren" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:soupes-aux-pates", + "products": 1, + "id": "de:soupes-aux-pates", + "name": "de:Soupes-aux-pates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:alphabet-soup", + "name": "de:Alphabet-soup", + "id": "de:alphabet-soup", + "products": 1 + }, + { + "products": 1, + "id": "fr:compotee-d-artichaut", + "name": "Compotee-d-artichaut", + "url": "https://fr.openfoodfacts.org/categorie/compotee-d-artichaut" + }, + { + "products": 1, + "name": "en:Wheat-tortillas", + "id": "en:wheat-tortillas", + "url": "https://fr.openfoodfacts.org/categorie/en:wheat-tortillas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carbures", + "name": "Carbures", + "id": "fr:carbures", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-4-fromages", + "id": "fr:pates-aux-4-fromages", + "name": "Pates-aux-4-fromages", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/risottos-au-saumon", + "products": 1, + "id": "en:salmon-risottos", + "name": "Risottos au saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crabes-au-naturel", + "products": 1, + "name": "Crabes-au-naturel", + "id": "fr:crabes-au-naturel" + }, + { + "name": "Gratins-d-agneau-et-courgettes", + "id": "fr:gratins-d-agneau-et-courgettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gratins-d-agneau-et-courgettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-d-agneau", + "products": 1, + "name": "Gratins-d-agneau", + "id": "fr:gratins-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-tomates", + "name": "Tartes-aux-tomates", + "id": "fr:tartes-aux-tomates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-chevre-epinards", + "name": "Tartes-chevre-epinards", + "id": "fr:tartes-chevre-epinards", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-speck-et-a-la-raclette", + "products": 1, + "name": "Pizzas-au-speck-et-a-la-raclette", + "id": "fr:pizzas-au-speck-et-a-la-raclette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escalopes-hachees", + "id": "fr:escalopes-hachees", + "name": "Escalopes-hachees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-a-la-grecque", + "id": "de:yaourts-a-la-grecque", + "name": "de:Yaourts-a-la-grecque", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-au-miel", + "products": 1, + "id": "de:yaourts-au-miel", + "name": "de:Yaourts-au-miel" + }, + { + "products": 1, + "id": "fr:salades-de-crudites", + "name": "Salades-de-crudites", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-crudites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-d-oignons", + "id": "fr:beignets-d-oignons", + "name": "Beignets-d-oignons", + "products": 1 + }, + { + "products": 1, + "name": "Rondelles d'oignon panées", + "id": "en:breaded-onion-rings", + "url": "https://fr.openfoodfacts.org/categorie/rondelles-d-oignon-panees" + }, + { + "name": "en:Chicken-burger", + "id": "en:chicken-burger", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chicken-burger" + }, + { + "products": 1, + "name": "Ferments-lactiques", + "id": "fr:ferments-lactiques", + "url": "https://fr.openfoodfacts.org/categorie/ferments-lactiques" + }, + { + "id": "en:fresh-green-peppercorns", + "name": "Poivre vert fraîche en grains", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poivre-vert-fraiche-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gendarmes", + "name": "Gendarmes", + "id": "fr:gendarmes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baby-kiwi", + "name": "Baby-kiwi", + "id": "fr:baby-kiwi", + "products": 1 + }, + { + "name": "Schinkenwurst", + "id": "fr:schinkenwurst", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/schinkenwurst" + }, + { + "products": 1, + "name": "Champignons-frais", + "id": "fr:champignons-frais", + "url": "https://fr.openfoodfacts.org/categorie/champignons-frais" + }, + { + "id": "fr:brioches-au-fruit", + "name": "Brioches-au-fruit", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/brioches-au-fruit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charolais", + "products": 1, + "id": "fr:charolais", + "name": "Charolais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BC%D0%BE%D1%80%D0%BE%D0%B6%D0%B5%D0%BD%D0%BE%D0%B5-%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D0%BE%D0%B5-%D1%81-%D0%BD%D0%B5%D0%B6%D0%BD%D0%BE%D0%B9-%D0%BC%D1%8F%D0%BA%D0%BE%D1%82%D1%8C%D1%8E-%D0%BA%D0%BE%D0%BA%D0%BE%D1%81%D0%B0-%D0%BA%D0%BE%D0%BA%D0%BE%D1%81%D0%BE%D0%B2%D1%8B%D0%BC-%D0%BC%D0%BE%D0%BB%D0%BE%D0%BA%D0%BE%D0%BC-%D0%B8-%D0%BA%D1%83%D1%81%D0%BE%D1%87%D0%BA%D0%B0%D0%BC%D0%B8-%D0%BF%D0%B5%D1%87%D0%B5%D0%BD%D1%8C%D1%8F-%D0%BF%D0%BE%D0%BA%D1%80%D1%8B%D1%82%D0%BE%D0%B5-%D0%B3%D0%BB%D0%B0%D0%B7%D1%83%D1%80%D1%8C%D1%8E", + "id": "ru:мороженое-молочное-с-нежной-мякотью-кокоса-кокосовым-молоком-и-кусочками-печенья-покрытое-глазурью", + "name": "ru:Мороженое-молочное-с-нежной-мякотью-кокоса-кокосовым-молоком-и-кусочками-печенья-покрытое-глазурью", + "products": 1 + }, + { + "id": "fr:pates-de-volailles", + "name": "Pates-de-volailles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-volailles" + }, + { + "id": "en:sandwichs-au-bacon", + "name": "en:Sandwichs-au-bacon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-bacon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-l-eau-de-coco", + "products": 1, + "name": "Boissons-a-l-eau-de-coco", + "id": "fr:boissons-a-l-eau-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-candi", + "sameAs": [ + "https://www.wikidata.org/wiki/Q849816" + ], + "name": "Sucres candi", + "id": "en:rock-candies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:kartoffelchips", + "products": 1, + "id": "nl:kartoffelchips", + "name": "nl:Kartoffelchips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-legumes-grilles", + "products": 1, + "id": "fr:pizzas-aux-legumes-grilles", + "name": "Pizzas-aux-legumes-grilles" + }, + { + "products": 1, + "id": "fr:laits-de-vache", + "name": "Laits-de-vache", + "url": "https://fr.openfoodfacts.org/categorie/laits-de-vache" + }, + { + "products": 1, + "name": "Ales", + "id": "fr:ales", + "url": "https://fr.openfoodfacts.org/categorie/ales" + }, + { + "name": "Plats-a-cuisiner", + "id": "fr:plats-a-cuisiner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-cuisiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beef-stroganoff", + "products": 1, + "id": "fr:beef-stroganoff", + "name": "Beef-stroganoff" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gibiers", + "name": "Gibiers", + "id": "fr:gibiers", + "products": 1 + }, + { + "id": "fr:amandes-d-abricots", + "name": "Amandes-d-abricots", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/amandes-d-abricots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-la-vanille", + "name": "Desserts-a-la-vanille", + "id": "fr:desserts-a-la-vanille", + "products": 1 + }, + { + "products": 1, + "id": "fr:laits-cailles", + "name": "Laits-cailles", + "url": "https://fr.openfoodfacts.org/categorie/laits-cailles" + }, + { + "products": 1, + "name": "Flocons-de-son-de-ble", + "id": "fr:flocons-de-son-de-ble", + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-son-de-ble" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rape-de-surimi", + "name": "Rape-de-surimi", + "id": "fr:rape-de-surimi", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farine-de-ble-fermiere", + "products": 1, + "name": "Farine-de-ble-fermiere", + "id": "fr:farine-de-ble-fermiere" + }, + { + "id": "de:sandwichs", + "name": "de:Sandwichs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sandwichs" + }, + { + "id": "fr:compotes-en-gourde", + "name": "Compotes-en-gourde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotes-en-gourde" + }, + { + "id": "fr:geflugelfrikadellen", + "name": "Geflugelfrikadellen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/geflugelfrikadellen" + }, + { + "name": "Frikadellen", + "id": "fr:frikadellen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/frikadellen" + }, + { + "id": "fr:auf-fleisch-basierende-lebensmittel", + "name": "Auf-fleisch-basierende-lebensmittel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/auf-fleisch-basierende-lebensmittel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gress", + "id": "fr:gress", + "name": "Gress", + "products": 1 + }, + { + "id": "fr:poirees", + "name": "Poirées", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poirees" + }, + { + "name": "Schapenkazen", + "id": "fr:schapenkazen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/schapenkazen" + }, + { + "products": 1, + "name": "it:Jambons-blancs", + "id": "it:jambons-blancs", + "url": "https://fr.openfoodfacts.org/categorie/it:jambons-blancs" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q157124" + ], + "url": "https://fr.openfoodfacts.org/categorie/hibiscus", + "products": 1, + "id": "en:hibiscus", + "name": "Hibiscus" + }, + { + "name": "en:Farines-de-sarrasin", + "id": "en:farines-de-sarrasin", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:farines-de-sarrasin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-verts", + "products": 1, + "name": "Cafes-verts", + "id": "fr:cafes-verts" + }, + { + "name": "Pommes-de-terre-valery", + "id": "fr:pommes-de-terre-valery", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-valery" + }, + { + "name": "Smeerbare-producten", + "id": "fr:smeerbare-producten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/smeerbare-producten" + }, + { + "name": "Roomboters", + "id": "fr:roomboters", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/roomboters" + }, + { + "products": 1, + "id": "fr:melkvetten", + "name": "Melkvetten", + "url": "https://fr.openfoodfacts.org/categorie/melkvetten" + }, + { + "products": 1, + "name": "Dierlijke-vetten", + "id": "fr:dierlijke-vetten", + "url": "https://fr.openfoodfacts.org/categorie/dierlijke-vetten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-brasses-nature", + "products": 1, + "id": "en:yaourts-brasses-nature", + "name": "en:Yaourts-brasses-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-superieur", + "products": 1, + "id": "fr:jambon-superieur", + "name": "Jambon-superieur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/allumettes-de-chorizo", + "products": 1, + "name": "Allumettes-de-chorizo", + "id": "fr:allumettes-de-chorizo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudin-noir-a-l-ancienne", + "products": 1, + "name": "Boudin-noir-a-l-ancienne", + "id": "fr:boudin-noir-a-l-ancienne" + }, + { + "products": 1, + "name": "Produit-traite-en-salaison", + "id": "fr:produit-traite-en-salaison", + "url": "https://fr.openfoodfacts.org/categorie/produit-traite-en-salaison" + }, + { + "id": "fr:cuisines-a-la-graisse-de-canard", + "name": "Cuisines-a-la-graisse-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cuisines-a-la-graisse-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-gingembre-epice", + "name": "Sodas-au-gingembre-epice", + "id": "fr:sodas-au-gingembre-epice", + "products": 1 + }, + { + "name": "Grattons-de-canard", + "id": "fr:grattons-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/grattons-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:champignons-de-paris-entiers-en-conserve", + "products": 1, + "id": "de:champignons-de-paris-entiers-en-conserve", + "name": "de:Champignons-de-paris-entiers-en-conserve" + }, + { + "name": "it:Confiseries", + "id": "it:confiseries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:confiseries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-homards", + "products": 1, + "id": "fr:soupes-de-homards", + "name": "Soupes-de-homards" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:farines-d-epeautre-t1050", + "products": 1, + "name": "de:Farines-d-epeautre-t1050", + "id": "de:farines-d-epeautre-t1050" + }, + { + "name": "Boissons-au-chocolat", + "id": "fr:boissons-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-au-chocolat", + "id": "fr:boisson-au-chocolat", + "name": "Boisson-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:thes-noirs", + "products": 1, + "id": "it:thes-noirs", + "name": "it:Thes-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cubes", + "products": 1, + "id": "fr:cubes", + "name": "Cubes" + }, + { + "id": "fr:melanges-de-fruits-tropicaux-en-conserve", + "name": "Melanges-de-fruits-tropicaux-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-tropicaux-en-conserve" + }, + { + "products": 1, + "id": "de:jus-de-bouleaux", + "name": "de:Jus-de-bouleaux", + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-bouleaux" + }, + { + "id": "fr:soupes-pour-bebes", + "name": "Soupes-pour-bebes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-pour-bebes" + }, + { + "id": "fr:datiles", + "name": "Datiles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/datiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes-cuisines", + "name": "Melanges-de-legumes-cuisines", + "id": "fr:melanges-de-legumes-cuisines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-miel", + "id": "fr:sauces-au-miel", + "name": "Sauces au miel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-viandes", + "id": "fr:fonds-de-viandes", + "name": "Fonds-de-viandes", + "products": 1 + }, + { + "products": 1, + "id": "pt:laits-homogeneises", + "name": "pt:Laits-homogeneises", + "url": "https://fr.openfoodfacts.org/categorie/pt:laits-homogeneises" + }, + { + "id": "fr:sirops-au-caramel", + "name": "Sirops-au-caramel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-ronce", + "products": 1, + "id": "fr:miels-de-ronce", + "name": "Miels de ronce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chouchous", + "products": 1, + "name": "Chouchous", + "id": "fr:chouchous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carrefour-bio", + "products": 1, + "name": "Carrefour-bio", + "id": "fr:carrefour-bio" + }, + { + "products": 1, + "name": "Mini-cakes", + "id": "fr:mini-cakes", + "url": "https://fr.openfoodfacts.org/categorie/mini-cakes" + }, + { + "name": "Repas-hypocalorique", + "id": "fr:repas-hypocalorique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/repas-hypocalorique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-valois", + "name": "Miels-du-valois", + "id": "fr:miels-du-valois", + "products": 1 + }, + { + "products": 1, + "id": "fr:leches-vegetales-en-polvo", + "name": "Leches-vegetales-en-polvo", + "url": "https://fr.openfoodfacts.org/categorie/leches-vegetales-en-polvo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/leches-de-castana-en-polvo", + "products": 1, + "name": "Leches-de-castana-en-polvo", + "id": "fr:leches-de-castana-en-polvo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-au-caramel", + "id": "fr:chocolats-au-lait-fourres-au-caramel", + "name": "Chocolats-au-lait-fourres-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisson-sec-d-auvergne", + "products": 1, + "id": "fr:saucisson-sec-d-auvergne", + "name": "Saucisson-sec-d-auvergne" + }, + { + "products": 1, + "name": "Coulis-de-caramel", + "id": "fr:coulis-de-caramel", + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:legumineuses-en-conserve", + "products": 1, + "name": "da:Legumineuses-en-conserve", + "id": "da:legumineuses-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mescluns", + "name": "Mescluns", + "id": "fr:mescluns", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-a-cuisiner", + "id": "fr:sauce-a-cuisiner", + "name": "Sauce-a-cuisiner", + "products": 1 + }, + { + "name": "Beurre-de-baratte-a-la-fleur-de-sel-de-guerande", + "id": "fr:beurre-de-baratte-a-la-fleur-de-sel-de-guerande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beurre-de-baratte-a-la-fleur-de-sel-de-guerande" + }, + { + "name": "Lentilles-cuisinees", + "id": "fr:lentilles-cuisinees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lentilles-cuisinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-et-legumes-bio", + "id": "fr:fruits-et-legumes-bio", + "name": "Fruits-et-legumes-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:purees-de-tomates", + "products": 1, + "name": "de:Purees-de-tomates", + "id": "de:purees-de-tomates" + }, + { + "products": 1, + "name": "de:Jus-de-tomates", + "id": "de:jus-de-tomates", + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-legumes", + "products": 1, + "id": "de:jus-de-legumes", + "name": "de:Jus-de-legumes" + }, + { + "products": 1, + "name": "de:Aliments-et-boissons-a-base-de-legumes", + "id": "de:aliments-et-boissons-a-base-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-et-boissons-a-base-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-boissons-instantanees", + "products": 1, + "id": "fr:preparations-pour-boissons-instantanees", + "name": "Preparations-pour-boissons-instantanees" + }, + { + "products": 1, + "name": "Пиво-пшеничное-нефильтрованное", + "id": "fr:пиво-пшеничное-нефильтрованное", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BF%D0%B8%D0%B2%D0%BE-%D0%BF%D1%88%D0%B5%D0%BD%D0%B8%D1%87%D0%BD%D0%BE%D0%B5-%D0%BD%D0%B5%D1%84%D0%B8%D0%BB%D1%8C%D1%82%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B5" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-blanches", + "products": 1, + "id": "nl:bieres-blanches", + "name": "nl:Bieres-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-vanillines", + "sameAs": [ + "https://www.wikidata.org/wiki/Q26883454" + ], + "name": "Sucres vanillinés", + "id": "en:vanillin-sugars", + "products": 1 + }, + { + "name": "ja:Thes-verts-japonais", + "id": "ja:thes-verts-japonais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ja:thes-verts-japonais" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q458075" + ], + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-tricastin", + "name": "Coteaux du Tricastin", + "id": "fr:coteaux-du-tricastin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pe-tsai", + "products": 1, + "name": "Pe-tsai", + "id": "fr:pe-tsai" + }, + { + "id": "fr:cocktails-a-base-de-rhum", + "name": "Cocktails-a-base-de-rhum", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cocktails-a-base-de-rhum" + }, + { + "name": "Chou-chinois", + "id": "fr:chou-chinois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chou-chinois" + }, + { + "products": 1, + "name": "en:Chocolats-au-lait-a-l-orange", + "id": "en:chocolats-au-lait-a-l-orange", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-au-lait-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-secs", + "products": 1, + "id": "de:biscuits-secs", + "name": "de:Biscuits-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cacahuetes-salees", + "id": "de:cacahuetes-salees", + "name": "de:Cacahuetes-salees", + "products": 1 + }, + { + "products": 1, + "name": "Massaman curry pastes", + "id": "en:massaman-curry-pastes", + "url": "https://fr.openfoodfacts.org/categorie/massaman-curry-pastes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-vegetarien", + "id": "fr:couscous-vegetarien", + "name": "Couscous-vegetarien", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glace-sans-lactose", + "products": 1, + "name": "Glace-sans-lactose", + "id": "fr:glace-sans-lactose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-pamplemousse-rose", + "products": 1, + "name": "Sirop-de-pamplemousse-rose", + "id": "fr:sirop-de-pamplemousse-rose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-cranberry", + "products": 1, + "id": "fr:sirops-de-cranberry", + "name": "Sirops-de-cranberry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-riz-complet", + "id": "fr:farines-de-riz-complet", + "name": "Farines-de-riz-complet", + "products": 1 + }, + { + "name": "Boissons-aux-jus-de-fruits-concentres", + "id": "fr:boissons-aux-jus-de-fruits-concentres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-aux-jus-de-fruits-concentres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bebida-con-frutas", + "name": "es:Bebida-con-frutas", + "id": "es:bebida-con-frutas", + "products": 1 + }, + { + "id": "fr:jambon-decouenne-desosse", + "name": "Jambon-decouenne-desosse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambon-decouenne-desosse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chicken-pies", + "id": "fr:chicken-pies", + "name": "Chicken-pies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amandes-de-mer", + "id": "fr:amandes-de-mer", + "name": "Amandes-de-mer", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-poulet-25-de-sel", + "products": 1, + "id": "fr:blanc-de-poulet-25-de-sel", + "name": "Blanc-de-poulet-25-de-sel" + }, + { + "products": 1, + "id": "fr:jambons-degraisses", + "name": "Jambons-degraisses", + "url": "https://fr.openfoodfacts.org/categorie/jambons-degraisses" + }, + { + "id": "fr:roti-de-dinde-en-tranches", + "name": "Roti-de-dinde-en-tranches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/roti-de-dinde-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/souffles-au-fromage", + "products": 1, + "name": "Souffles-au-fromage", + "id": "fr:souffles-au-fromage" + }, + { + "products": 1, + "id": "de:barres-de-sesame", + "name": "de:Barres-de-sesame", + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-sesame" + }, + { + "products": 1, + "id": "de:barres-de-graines", + "name": "de:Barres-de-graines", + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-soja-et-piments", + "name": "Sauces-au-soja-et-piments", + "id": "fr:sauces-au-soja-et-piments", + "products": 1 + }, + { + "name": "Vietnam", + "id": "fr:vietnam", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vietnam" + }, + { + "products": 1, + "name": "vi:Thực-phẩm-chế-biến", + "id": "vi:thực-phẩm-chế-biến", + "url": "https://fr.openfoodfacts.org/categorie/vi:th%E1%BB%B1c-ph%E1%BA%A9m-ch%E1%BA%BF-bi%E1%BA%BFn" + }, + { + "name": "Crevettes-en-sauce", + "id": "fr:crevettes-en-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-en-sauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bieres-blondes", + "products": 1, + "id": "es:bieres-blondes", + "name": "es:Bieres-blondes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-petillants", + "name": "Jus-de-pomme-petillants", + "id": "fr:jus-de-pomme-petillants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chips-aromatisees", + "id": "en:chips-aromatisees", + "name": "en:Chips-aromatisees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tranches-de-poitrine-nature", + "products": 1, + "name": "Tranches-de-poitrine-nature", + "id": "fr:tranches-de-poitrine-nature" + }, + { + "products": 1, + "id": "fr:jambonneau-en-boite", + "name": "Jambonneau-en-boite", + "url": "https://fr.openfoodfacts.org/categorie/jambonneau-en-boite" + }, + { + "name": "Vins-demi-sec", + "id": "fr:vins-demi-sec", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-demi-sec" + }, + { + "products": 1, + "id": "fr:vins-blancs-demi-sec", + "name": "Vins-blancs-demi-sec", + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs-demi-sec" + }, + { + "products": 1, + "id": "fr:vins-mousseux-doux", + "name": "Vins-mousseux-doux", + "url": "https://fr.openfoodfacts.org/categorie/vins-mousseux-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-volaille-a-la-provencale", + "name": "Gesiers-de-volaille-a-la-provencale", + "id": "fr:gesiers-de-volaille-a-la-provencale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girolles-surgeles", + "name": "Girolles surgelés", + "id": "en:frozen-chanterelle-mushrooms", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morilles-surgelees", + "products": 1, + "id": "fr:morilles-surgelees", + "name": "Morilles-surgelees" + }, + { + "products": 1, + "name": "Puree-de-pomme-100-fruit", + "id": "fr:puree-de-pomme-100-fruit", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pomme-100-fruit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-aux-fruits", + "products": 1, + "name": "Preparations-aux-fruits", + "id": "fr:preparations-aux-fruits" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q775950" + ], + "url": "https://fr.openfoodfacts.org/categorie/canon-fronsac", + "products": 1, + "id": "fr:canon-fronsac", + "name": "Canon-fronsac" + }, + { + "products": 1, + "name": "Involtini", + "id": "fr:involtini", + "url": "https://fr.openfoodfacts.org/categorie/involtini" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-de-corde", + "products": 1, + "name": "Moules-de-corde", + "id": "fr:moules-de-corde" + }, + { + "id": "en:asperges-blanches-miniatures", + "name": "en:Asperges-blanches-miniatures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:asperges-blanches-miniatures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:asperges", + "id": "en:asperges", + "name": "en:Asperges", + "products": 1 + }, + { + "products": 1, + "id": "fr:gouters-au-chocolat", + "name": "Gouters-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/gouters-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-reserves-aux-professionnels", + "products": 1, + "id": "fr:produits-reserves-aux-professionnels", + "name": "Produits-reserves-aux-professionnels" + }, + { + "products": 1, + "id": "xx:naturliches-mineralwasser-ohne-kohlensaure", + "name": "xx:Naturliches-mineralwasser-ohne-kohlensaure", + "url": "https://fr.openfoodfacts.org/categorie/xx:naturliches-mineralwasser-ohne-kohlensaure" + }, + { + "name": "xx:Getranke", + "id": "xx:getranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulis", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3325895" + ], + "products": 1, + "name": "Moulis", + "id": "fr:moulis" + }, + { + "products": 1, + "id": "en:open-beauty-facts", + "name": "Open Beauty Facts", + "url": "https://fr.openfoodfacts.org/categorie/open-beauty-facts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:meta-category", + "id": "en:meta-category", + "name": "en:Meta-category", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frangipanes", + "id": "fr:frangipanes", + "name": "Frangipanes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-des-rois-en-kit", + "name": "Galettes-des-rois-en-kit", + "id": "fr:galettes-des-rois-en-kit", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparation-pour-nappage", + "name": "Preparation-pour-nappage", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-nappage" + }, + { + "products": 1, + "name": "Pour-la-confiserie", + "id": "fr:pour-la-confiserie", + "url": "https://fr.openfoodfacts.org/categorie/pour-la-confiserie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulghour-fin-bio", + "products": 1, + "id": "fr:boulghour-fin-bio", + "name": "Boulghour-fin-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/repas-de-substitution", + "name": "Repas-de-substitution", + "id": "fr:repas-de-substitution", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-sans-gluten", + "products": 1, + "id": "fr:spaghetti-sans-gluten", + "name": "Spaghetti-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-sans-gluten", + "name": "Coquillettes-sans-gluten", + "id": "fr:coquillettes-sans-gluten", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pavot-saveur-romarin", + "products": 1, + "id": "fr:biscuits-pavot-saveur-romarin", + "name": "Biscuits-pavot-saveur-romarin" + }, + { + "id": "fr:biscuits-pavot", + "name": "Biscuits-pavot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-pavot" + }, + { + "id": "fr:cereale-bio", + "name": "Cereale-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cereale-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galletas-y-pasteles", + "products": 1, + "name": "Galletas-y-pasteles", + "id": "fr:galletas-y-pasteles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galletas-rellenas", + "id": "fr:galletas-rellenas", + "name": "Galletas-rellenas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crousti-panes-tomates", + "name": "Crousti-panes-tomates", + "id": "fr:crousti-panes-tomates", + "products": 1 + }, + { + "id": "en:poissons-seches", + "name": "en:Poissons-seches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:poissons-seches" + }, + { + "name": "Sable-miel-datte", + "id": "fr:sable-miel-datte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sable-miel-datte" + }, + { + "id": "fr:biscuits-fondants", + "name": "Biscuits-fondants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fondants" + }, + { + "products": 1, + "name": "Eminces-soja-ble", + "id": "fr:eminces-soja-ble", + "url": "https://fr.openfoodfacts.org/categorie/eminces-soja-ble" + }, + { + "id": "fr:risottos-con-vegetales-deshidratados", + "name": "Risottos-con-vegetales-deshidratados", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/risottos-con-vegetales-deshidratados" + }, + { + "name": "Preparation-en-poudre", + "id": "fr:preparation-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kristalsuikers", + "id": "fr:kristalsuikers", + "name": "Kristalsuikers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lithotamne", + "products": 1, + "id": "fr:lithotamne", + "name": "Lithotamne" + }, + { + "products": 1, + "name": "Pinot-blanc", + "id": "fr:pinot-blanc", + "url": "https://fr.openfoodfacts.org/categorie/pinot-blanc" + }, + { + "id": "fr:cotes-du-rhone-rouge", + "name": "Cotes-du-rhone-rouge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-fruits-rouges", + "name": "Mueslis-aux-fruits-rouges", + "id": "fr:mueslis-aux-fruits-rouges", + "products": 1 + }, + { + "products": 1, + "name": "Koemelkkazen", + "id": "fr:koemelkkazen", + "url": "https://fr.openfoodfacts.org/categorie/koemelkkazen" + }, + { + "id": "fr:gepasteuriseerde-kazen", + "name": "Gepasteuriseerde-kazen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gepasteuriseerde-kazen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-avec-brisures-de-truffes", + "id": "fr:fromages-avec-brisures-de-truffes", + "name": "Fromages-avec-brisures-de-truffes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-entremet-en-poudre", + "id": "fr:preparation-pour-entremet-en-poudre", + "name": "Preparation-pour-entremet-en-poudre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potage-aux-champignons", + "name": "Potage-aux-champignons", + "id": "fr:potage-aux-champignons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-renversee-au-lait-de-brebis", + "products": 1, + "name": "Creme-renversee-au-lait-de-brebis", + "id": "fr:creme-renversee-au-lait-de-brebis" + }, + { + "id": "de:pilz-creme-suppe", + "name": "de:Pilz-creme-suppe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pilz-creme-suppe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:spearmint-sugarfree-gum", + "products": 1, + "id": "en:spearmint-sugarfree-gum", + "name": "en:Spearmint-sugarfree-gum" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/iced-coffees", + "sameAs": [ + "https://www.wikidata.org/wiki/Q968554" + ], + "products": 1, + "id": "en:iced-coffees", + "name": "Iced coffees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-au-cranberry-multifruits", + "name": "Boisson-au-cranberry-multifruits", + "id": "fr:boisson-au-cranberry-multifruits", + "products": 1 + }, + { + "products": 1, + "name": "fi:Jus-de-pomme", + "id": "fi:jus-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/fi:jus-de-pomme" + }, + { + "id": "fi:jus-de-fruits", + "name": "fi:Jus-de-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fi:jus-de-fruits" + }, + { + "id": "fi:boissons-a-base-de-vegetaux", + "name": "fi:Boissons-a-base-de-vegetaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fi:boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-roses-surgelees", + "products": 1, + "name": "Crevettes-roses-surgelees", + "id": "fr:crevettes-roses-surgelees" + }, + { + "name": "de:Feta-preparees", + "id": "de:feta-preparees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:feta-preparees" + }, + { + "id": "en:pumpernickel", + "name": "en:Pumpernickel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pumpernickel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-champignons", + "id": "fr:coulis-de-champignons", + "name": "Coulis-de-champignons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-aperitifs-souffles-a-base-de-pomme-de-terre", + "products": 1, + "id": "en:biscuits-aperitifs-souffles-a-base-de-pomme-de-terre", + "name": "en:Biscuits-aperitifs-souffles-a-base-de-pomme-de-terre" + }, + { + "products": 1, + "id": "en:backpulver", + "name": "en:Backpulver", + "url": "https://fr.openfoodfacts.org/categorie/en:backpulver" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-ratte", + "name": "Pommes-de-terre-ratte", + "id": "fr:pommes-de-terre-ratte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:susswaren", + "name": "zh:Susswaren", + "id": "zh:susswaren", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-gateaux-de-riz", + "name": "Preparations-pour-gateaux-de-riz", + "id": "fr:preparations-pour-gateaux-de-riz", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:ours-gelifies", + "products": 1, + "name": "de:Ours-gelifies", + "id": "de:ours-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-noix", + "products": 1, + "name": "Melanges-de-noix", + "id": "fr:melanges-de-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumineuses-en-conserve", + "products": 1, + "name": "de:Legumineuses-en-conserve", + "id": "de:legumineuses-en-conserve" + }, + { + "products": 1, + "name": "Bouillons-de-poule-bio", + "id": "fr:bouillons-de-poule-bio", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-poule-bio" + }, + { + "name": "it:Pizza-salmone-tonno-e-scampi", + "id": "it:pizza-salmone-tonno-e-scampi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:pizza-salmone-tonno-e-scampi" + }, + { + "products": 1, + "id": "fr:pizzas-a-l-ananas", + "name": "Pizzas-a-l-ananas", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-a-l-ananas" + }, + { + "name": "Paves-de-porc", + "id": "fr:paves-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paves-de-porc" + }, + { + "products": 1, + "id": "fr:haricots-helda", + "name": "Haricots-helda", + "url": "https://fr.openfoodfacts.org/categorie/haricots-helda" + }, + { + "products": 1, + "id": "fr:mantecados", + "name": "Mantecados", + "url": "https://fr.openfoodfacts.org/categorie/mantecados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:knusperbrot", + "products": 1, + "id": "de:knusperbrot", + "name": "de:Knusperbrot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/golosinas", + "name": "Golosinas", + "id": "fr:golosinas", + "products": 1 + }, + { + "id": "fr:frutas-recubiertas-de-chocolate", + "name": "Frutas-recubiertas-de-chocolate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/frutas-recubiertas-de-chocolate" + }, + { + "id": "fr:ketchups-au-curry", + "name": "Ketchups-au-curry", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ketchups-au-curry" + }, + { + "products": 1, + "id": "fr:bombones", + "name": "Bombones", + "url": "https://fr.openfoodfacts.org/categorie/bombones" + }, + { + "products": 1, + "id": "fr:cashewnusse", + "name": "Cashewnusse", + "url": "https://fr.openfoodfacts.org/categorie/cashewnusse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4", + "name": "de:Шоколад", + "id": "de:шоколад", + "products": 1 + }, + { + "id": "de:тёмный-шоколад", + "name": "de:Тёмный-шоколад", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:%D1%82%D1%91%D0%BC%D0%BD%D1%8B%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4" + }, + { + "products": 1, + "name": "de:Chocolats-aux-noisettes", + "id": "de:chocolats-aux-noisettes", + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:schokoladen", + "products": 1, + "name": "en:Schokoladen", + "id": "en:schokoladen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:%D0%B3%D0%BE%D1%80%D1%8C%D0%BA%D0%B8%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4", + "products": 1, + "id": "de:горький-шоколад", + "name": "de:Горький-шоколад" + }, + { + "id": "en:non-alcoholic-wheat-beers", + "name": "Non-Alcoholic wheat beers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/non-alcoholic-wheat-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sojakerne", + "products": 1, + "id": "de:sojakerne", + "name": "de:Sojakerne" + }, + { + "name": "de:Abricots-secs", + "id": "de:abricots-secs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:abricots-secs" + }, + { + "id": "de:sirops-d-agave", + "name": "de:Sirops-d-agave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sirops-d-agave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:grunkernschrot", + "products": 1, + "name": "de:Grunkernschrot", + "id": "de:grunkernschrot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:grunkern", + "name": "de:Grunkern", + "id": "de:grunkern", + "products": 1 + }, + { + "id": "en:preserve", + "name": "en:Preserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:preserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:milk-chocolate-eggs", + "products": 1, + "id": "en:milk-chocolate-eggs", + "name": "en:Milk-chocolate-eggs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merlot-rose", + "id": "fr:merlot-rose", + "name": "Merlot-rose", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-et-de-cerises", + "products": 1, + "name": "Jus-de-pomme-et-de-cerises", + "id": "fr:jus-de-pomme-et-de-cerises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolat-aux-fruits", + "products": 1, + "name": "Bonbons-de-chocolat-aux-fruits", + "id": "fr:bonbons-de-chocolat-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-pour-bebe", + "products": 1, + "name": "Soupes-pour-bebe", + "id": "fr:soupes-pour-bebe" + }, + { + "id": "fr:caramel-sale", + "name": "Caramel-sale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/caramel-sale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-vegetales-a-l-amande", + "products": 1, + "id": "es:boissons-vegetales-a-l-amande", + "name": "es:Boissons-vegetales-a-l-amande" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2998546" + ], + "url": "https://fr.openfoodfacts.org/categorie/coteaux-de-peyriac", + "id": "fr:coteaux-de-peyriac", + "name": "Coteaux de Peyriac", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%D0%B3%D0%BE%D1%80%D1%8C%D0%BA%D0%B8%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4", + "products": 1, + "name": "Горький-шоколад", + "id": "fr:горький-шоколад" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-citron", + "products": 1, + "id": "fr:chocolats-fourres-au-citron", + "name": "Chocolats-fourres-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-lait", + "name": "Chocolats-fourres-au-lait", + "id": "fr:chocolats-fourres-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:blueberry-jam", + "products": 1, + "name": "en:Blueberry-jam", + "id": "en:blueberry-jam" + }, + { + "name": "Liqueurs-de-pommes", + "id": "fr:liqueurs-de-pommes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-pommes" + }, + { + "name": "Curacao-bleu", + "id": "fr:curacao-bleu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/curacao-bleu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pistaches", + "id": "en:pistaches", + "name": "en:Pistaches", + "products": 1 + }, + { + "id": "fr:mousses-a-la-creme-et-au-mascarpone", + "name": "Mousses-a-la-creme-et-au-mascarpone", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-a-la-creme-et-au-mascarpone" + }, + { + "name": "Epices-orientales", + "id": "fr:epices-orientales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/epices-orientales" + }, + { + "name": "Piment kabyle", + "id": "fr:piment-kabyle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piment-kabyle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manuka-honeys", + "products": 1, + "name": "Manuka-honeys", + "id": "fr:manuka-honeys" + }, + { + "name": "en:Ciboulette-en-pot", + "id": "en:ciboulette-en-pot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:ciboulette-en-pot" + }, + { + "products": 1, + "id": "it:castel-del-monte", + "name": "it:Castel del Monte", + "url": "https://fr.openfoodfacts.org/categorie/it:castel-del-monte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-prepares-en-conserve", + "name": "it:Plats-prepares-en-conserve", + "id": "it:plats-prepares-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:lasagnes-a-garnir", + "products": 1, + "name": "it:Lasagnes-a-garnir", + "id": "it:lasagnes-a-garnir" + }, + { + "id": "fr:parmigino-reggiano", + "name": "Parmigino-reggiano", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/parmigino-reggiano" + }, + { + "products": 1, + "id": "fr:substitut-repas", + "name": "Substitut-repas", + "url": "https://fr.openfoodfacts.org/categorie/substitut-repas" + }, + { + "name": "Italienischer-kase", + "id": "fr:italienischer-kase", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/italienischer-kase" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:bibite", + "id": "it:bibite", + "name": "it:Bibite", + "products": 1 + }, + { + "id": "it:sangiovese", + "name": "it:Sangiovese", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:sangiovese" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-riz-a-la-noisette-et-au-cacao", + "id": "fr:laits-de-riz-a-la-noisette-et-au-cacao", + "name": "Laits-de-riz-a-la-noisette-et-au-cacao", + "products": 1 + }, + { + "products": 1, + "id": "fr:spaghetti-semi-complets", + "name": "Spaghetti-semi-complets", + "url": "https://fr.openfoodfacts.org/categorie/spaghetti-semi-complets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-blanches", + "id": "fr:penne-blanches", + "name": "Penne-blanches", + "products": 1 + }, + { + "id": "fr:c-onfisseries-de-fruits-a-bogues", + "name": "C-onfisseries-de-fruits-a-bogues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/c-onfisseries-de-fruits-a-bogues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscotti-frollini", + "id": "it:biscotti-frollini", + "name": "it:Biscotti-frollini", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-au-son", + "id": "en:cereales-au-son", + "name": "en:Cereales-au-son", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bacon-non-fume", + "products": 1, + "id": "en:unsmoked-bacon", + "name": "Bacon non fumé" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:veloutes-de-legumes", + "name": "es:Veloutes-de-legumes", + "id": "es:veloutes-de-legumes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:soupes-de-legumes-refrigerees", + "id": "es:soupes-de-legumes-refrigerees", + "name": "es:Soupes-de-legumes-refrigerees", + "products": 1 + }, + { + "products": 1, + "id": "es:soupes-de-legumes", + "name": "es:Soupes-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/es:soupes-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:eaux-minerales-gazeuses", + "id": "it:eaux-minerales-gazeuses", + "name": "it:Eaux-minerales-gazeuses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:soupes", + "name": "es:Soupes", + "id": "es:soupes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/croccatelli", + "name": "Croccatelli", + "id": "fr:croccatelli", + "products": 1 + }, + { + "products": 1, + "id": "en:cafe-para-llevar", + "name": "en:Cafe-para-llevar", + "url": "https://fr.openfoodfacts.org/categorie/en:cafe-para-llevar" + }, + { + "id": "fr:graines-de-cardamome", + "name": "Graines-de-cardamome", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-cardamome" + }, + { + "id": "fr:vollmilch", + "name": "Vollmilch", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vollmilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/homogenisierte-milch", + "products": 1, + "id": "fr:homogenisierte-milch", + "name": "Homogenisierte-milch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pois-chiches-en-conserve", + "name": "de:Pois-chiches-en-conserve", + "id": "de:pois-chiches-en-conserve", + "products": 1 + }, + { + "products": 1, + "name": "en:Yaourts-a-la-vanille", + "id": "en:yaourts-a-la-vanille", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-prepares-refrigeres", + "products": 1, + "name": "de:Plats-prepares-refrigeres", + "id": "de:plats-prepares-refrigeres" + }, + { + "name": "de:Baies-de-goji", + "id": "de:baies-de-goji", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:baies-de-goji" + }, + { + "products": 1, + "name": "de:Farines-de-ble", + "id": "de:farines-de-ble", + "url": "https://fr.openfoodfacts.org/categorie/de:farines-de-ble" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coconut-juices", + "products": 1, + "name": "Coconut-juices", + "id": "fr:coconut-juices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cremes-fouettees", + "products": 1, + "name": "de:Cremes-fouettees", + "id": "de:cremes-fouettees" + }, + { + "id": "fr:huiles-de-coco-desodorisees", + "name": "Huiles-de-coco-desodorisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-coco-desodorisees" + }, + { + "products": 1, + "name": "Kokosole", + "id": "fr:kokosole", + "url": "https://fr.openfoodfacts.org/categorie/kokosole" + }, + { + "id": "fr:viandes-de-lama", + "name": "Viandes-de-lama", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-lama" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:thes-verts-japonais", + "products": 1, + "id": "es:thes-verts-japonais", + "name": "es:Thes-verts-japonais" + }, + { + "products": 1, + "name": "Pates-gascons", + "id": "fr:pates-gascons", + "url": "https://fr.openfoodfacts.org/categorie/pates-gascons" + }, + { + "products": 1, + "name": "es:Thes-verts", + "id": "es:thes-verts", + "url": "https://fr.openfoodfacts.org/categorie/es:thes-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:thes-genmaicha", + "products": 1, + "name": "es:Thes-genmaicha", + "id": "es:thes-genmaicha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-chaudes", + "id": "es:boissons-chaudes", + "name": "es:Boissons-chaudes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carpaccio-de-poulpe", + "name": "Carpaccio-de-poulpe", + "id": "fr:carpaccio-de-poulpe", + "products": 1 + }, + { + "id": "fr:prosciutto-crudo", + "name": "Prosciutto-crudo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/prosciutto-crudo" + }, + { + "id": "de:yaourts-multifruits", + "name": "de:Yaourts-multifruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-multifruits" + }, + { + "id": "de:compotes-pommes-nature", + "name": "de:Compotes-pommes-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:compotes-pommes-nature" + }, + { + "products": 1, + "name": "de:Yaourts-alleges-en-matiere-grasse", + "id": "de:yaourts-alleges-en-matiere-grasse", + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-alleges-en-matiere-grasse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:noix-de-cajou", + "products": 1, + "name": "en:Noix-de-cajou", + "id": "en:noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-fenugrec", + "name": "Graines de fenugrec", + "id": "en:fenugreek-seeds", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:alfalfa", + "id": "nl:alfalfa", + "name": "nl:Alfalfa", + "products": 1 + }, + { + "id": "fr:terrine-de-faisan-a-l-armagnac", + "name": "Terrine-de-faisan-a-l-armagnac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-faisan-a-l-armagnac" + }, + { + "id": "fr:canard-en-civet", + "name": "Canard-en-civet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/canard-en-civet" + }, + { + "products": 1, + "name": "Menetou-Salon", + "id": "fr:menetou-salon", + "url": "https://fr.openfoodfacts.org/categorie/menetou-salon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-d-alcool-colores", + "name": "Vinaigres-d-alcool-colores", + "id": "fr:vinaigres-d-alcool-colores", + "products": 1 + }, + { + "id": "fr:boissons-au-litchi", + "name": "Boissons-au-litchi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-litchi" + }, + { + "products": 1, + "name": "Laitues-en-conserve", + "id": "fr:laitues-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/laitues-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-emince", + "products": 1, + "id": "fr:ail-emince", + "name": "Ail-emince" + }, + { + "products": 1, + "id": "fr:soupes-condensees", + "name": "Soupes-condensees", + "url": "https://fr.openfoodfacts.org/categorie/soupes-condensees" + }, + { + "products": 1, + "id": "fr:tamarin-confit", + "name": "Tamarin-confit", + "url": "https://fr.openfoodfacts.org/categorie/tamarin-confit" + }, + { + "name": "th:เบียร์", + "id": "th:เบียร์", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/th:%E0%B9%80%E0%B8%9A%E0%B8%B5%E0%B8%A2%E0%B8%A3%E0%B9%8C" + }, + { + "id": "fr:cannelloni-a-la-bolognaise", + "name": "Cannelloni-a-la-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cannelloni-a-la-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:laits-de-coco", + "id": "de:laits-de-coco", + "name": "de:Laits-de-coco", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/th:biscuit-asiatique", + "products": 1, + "name": "th:Biscuit-asiatique", + "id": "th:biscuit-asiatique" + }, + { + "products": 1, + "id": "fr:tamarind", + "name": "Tamarind", + "url": "https://fr.openfoodfacts.org/categorie/tamarind" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutas", + "products": 1, + "name": "Frutas", + "id": "fr:frutas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:geflugel-pastete", + "id": "en:geflugel-pastete", + "name": "en:Geflugel-pastete", + "products": 1 + }, + { + "name": "th:Boissons-gazeuses", + "id": "th:boissons-gazeuses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/th:boissons-gazeuses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q23237" + ], + "url": "https://fr.openfoodfacts.org/categorie/wines-from-austria", + "id": "en:wines-from-austria", + "name": "Wines from Austria", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-biscuits", + "products": 1, + "name": "Mini-biscuits", + "id": "fr:mini-biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:peeled-plum-tomatoes", + "products": 1, + "id": "en:peeled-plum-tomatoes", + "name": "en:Peeled-plum-tomatoes" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q824529" + ], + "url": "https://fr.openfoodfacts.org/categorie/thes-jaunes", + "id": "en:yellow-teas", + "name": "Thés jaunes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-aromatisees-au-jambon-et-a-la-moutard-anglaise", + "products": 1, + "id": "fr:chips-aromatisees-au-jambon-et-a-la-moutard-anglaise", + "name": "Chips-aromatisees-au-jambon-et-a-la-moutard-anglaise" + }, + { + "products": 1, + "id": "it:organic", + "name": "it:Organic", + "url": "https://fr.openfoodfacts.org/categorie/it:organic" + }, + { + "products": 1, + "id": "it:spaghettis-de-ble-dur", + "name": "it:Spaghettis-de-ble-dur", + "url": "https://fr.openfoodfacts.org/categorie/it:spaghettis-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:torsades-de-ble-dur", + "products": 1, + "id": "de:torsades-de-ble-dur", + "name": "de:Torsades-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mezze-penne-aromatises-et-colores", + "products": 1, + "id": "fr:mezze-penne-aromatises-et-colores", + "name": "Mezze-penne-aromatises-et-colores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:mischstreichfett", + "id": "de:mischstreichfett", + "name": "de:Mischstreichfett", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:farfalles", + "id": "en:farfalles", + "name": "en:Farfalles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates-completes", + "name": "it:Pates-completes", + "id": "it:pates-completes", + "products": 1 + }, + { + "products": 1, + "name": "Mini-penne-rigate-aromatises-et-colores", + "id": "fr:mini-penne-rigate-aromatises-et-colores", + "url": "https://fr.openfoodfacts.org/categorie/mini-penne-rigate-aromatises-et-colores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:frollini", + "name": "it:Frollini", + "id": "it:frollini", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-poulet", + "name": "Pates-de-poulet", + "id": "fr:pates-de-poulet", + "products": 1 + }, + { + "name": "Sauce-preparee", + "id": "fr:sauce-preparee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-preparee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-bolognese", + "products": 1, + "name": "Sauce-bolognese", + "id": "fr:sauce-bolognese" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-a-base-de-vegetaux", + "id": "pl:boissons-a-base-de-vegetaux", + "name": "pl:Boissons-a-base-de-vegetaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cibi-e-bevande-a-base-vegetale", + "name": "en:Cibi-e-bevande-a-base-vegetale", + "id": "en:cibi-e-bevande-a-base-vegetale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-de-konjac", + "products": 1, + "id": "fr:vermicelles-de-konjac", + "name": "Vermicelles-de-konjac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cibi-a-base-vegetale", + "id": "en:cibi-a-base-vegetale", + "name": "en:Cibi-a-base-vegetale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereali-e-patate", + "products": 1, + "name": "en:Cereali-e-patate", + "id": "en:cereali-e-patate" + }, + { + "name": "Conchiglie-rigate", + "id": "fr:conchiglie-rigate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/conchiglie-rigate" + }, + { + "id": "fr:preparations-de-viande-de-poulet-hachee-surgelees", + "name": "Preparations-de-viande-de-poulet-hachee-surgelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-de-poulet-hachee-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-sablees", + "products": 1, + "name": "en:Pates-sablees", + "id": "en:pates-sablees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-aux-arachides", + "id": "fr:nougats-aux-arachides", + "name": "Nougats-aux-arachides", + "products": 1 + }, + { + "products": 1, + "name": "Pur-jus-de-pomme-biologique", + "id": "fr:pur-jus-de-pomme-biologique", + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-de-pomme-biologique" + }, + { + "products": 1, + "id": "fr:pur-jus-d-oranges-bio", + "name": "Pur-jus-d-oranges-bio", + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-d-oranges-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-d-oranges", + "products": 1, + "id": "fr:pur-jus-d-oranges", + "name": "Pur-jus-d-oranges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bruleurs-de-graisse", + "products": 1, + "id": "fr:bruleurs-de-graisse", + "name": "Bruleurs-de-graisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-vertes", + "name": "Salades-vertes", + "id": "fr:salades-vertes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-de-brebis-nature", + "id": "fr:yaourt-de-brebis-nature", + "name": "Yaourt-de-brebis-nature", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-lait-de-brebis", + "name": "Desserts-lactes-au-lait-de-brebis", + "id": "fr:desserts-lactes-au-lait-de-brebis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-blanc-au-lait-de-brebis-framboise", + "name": "Fromage-blanc-au-lait-de-brebis-framboise", + "id": "fr:fromage-blanc-au-lait-de-brebis-framboise", + "products": 1 + }, + { + "products": 1, + "name": "Riz-au-lait-de-brebis", + "id": "fr:riz-au-lait-de-brebis", + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-de-brebis" + }, + { + "products": 1, + "name": "Punchs", + "id": "fr:punchs", + "url": "https://fr.openfoodfacts.org/categorie/punchs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-epicee", + "products": 1, + "name": "Pate-epicee", + "id": "fr:pate-epicee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/minced-garlic", + "products": 1, + "id": "fr:minced-garlic", + "name": "Minced-garlic" + }, + { + "products": 1, + "name": "Salade-de-pates", + "id": "fr:salade-de-pates", + "url": "https://fr.openfoodfacts.org/categorie/salade-de-pates" + }, + { + "id": "fr:gingembres-marines", + "name": "Gingembres-marines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gingembres-marines" + }, + { + "products": 1, + "name": "Madeleines-salees", + "id": "fr:madeleines-salees", + "url": "https://fr.openfoodfacts.org/categorie/madeleines-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-l-ail", + "products": 1, + "id": "fr:sauces-a-l-ail", + "name": "Sauces-a-l-ail" + }, + { + "name": "Filets-de-haddock", + "id": "fr:filets-de-haddock", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-haddock" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cancoillotte", + "products": 1, + "id": "fr:preparations-pour-cancoillotte", + "name": "Preparations-pour-cancoillotte" + }, + { + "products": 1, + "name": "Laits-pour-nourrissons", + "id": "fr:laits-pour-nourrissons", + "url": "https://fr.openfoodfacts.org/categorie/laits-pour-nourrissons" + }, + { + "products": 1, + "id": "fr:compotes-a-b", + "name": "Compotes-a-b", + "url": "https://fr.openfoodfacts.org/categorie/compotes-a-b" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/indian-pale-ales", + "products": 1, + "name": "Indian-pale-ales", + "id": "fr:indian-pale-ales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-mangue-ananas", + "id": "fr:compotes-pommes-mangue-ananas", + "name": "Compotes-pommes-mangue-ananas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-de-suite-en-poudre", + "products": 1, + "name": "Lait-de-suite-en-poudre", + "id": "fr:lait-de-suite-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chabichous", + "products": 1, + "id": "fr:chabichous", + "name": "Chabichous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:blackcurrent-juice-drink", + "products": 1, + "name": "en:Blackcurrent-juice-drink", + "id": "en:blackcurrent-juice-drink" + }, + { + "id": "en:yaourts-nature", + "name": "en:Yaourts-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-nature" + }, + { + "name": "xx:Fertiggerichte", + "id": "xx:fertiggerichte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:fertiggerichte" + }, + { + "products": 1, + "id": "fr:sardines-marinade-citron-basilic", + "name": "Sardines-marinade-citron-basilic", + "url": "https://fr.openfoodfacts.org/categorie/sardines-marinade-citron-basilic" + }, + { + "id": "fr:chevreaux", + "name": "Chevreaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chevreaux" + }, + { + "products": 1, + "id": "fr:croquets-du-berry", + "name": "Croquets-du-berry", + "url": "https://fr.openfoodfacts.org/categorie/croquets-du-berry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cappellacci", + "name": "Cappellacci", + "id": "fr:cappellacci", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cremes-dessert-chocolat", + "name": "es:Cremes-dessert-chocolat", + "id": "es:cremes-dessert-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conchiglie-aromatises-et-colores", + "products": 1, + "id": "fr:conchiglie-aromatises-et-colores", + "name": "Conchiglie-aromatises-et-colores" + }, + { + "products": 1, + "id": "fr:goudas-mi-vieux", + "name": "Goudas mi-vieux", + "url": "https://fr.openfoodfacts.org/categorie/goudas-mi-vieux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-a-la-menthe", + "id": "en:thes-a-la-menthe", + "name": "en:Thes-a-la-menthe", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonnezeaux", + "products": 1, + "name": "Bonnezeaux", + "id": "fr:bonnezeaux" + }, + { + "name": "Sandwichs au parmesan", + "id": "en:parmesan-cheese-sandwiches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-parmesan" + }, + { + "id": "de:bieres-d-abbayes", + "name": "de:Bieres-d-abbayes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-d-abbayes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-gruyere", + "products": 1, + "id": "fr:sandwichs-au-gruyere", + "name": "Sandwichs-au-gruyere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-bleus", + "products": 1, + "name": "Fromages-bleus", + "id": "fr:fromages-bleus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aubergines-farcies", + "id": "en:aubergines-farcies", + "name": "en:Aubergines-farcies", + "products": 1 + }, + { + "products": 1, + "id": "zh:sauce-de-soja", + "name": "zh:Sauce-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/zh:sauce-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alcool-de-riz", + "products": 1, + "id": "fr:alcool-de-riz", + "name": "Alcool-de-riz" + }, + { + "name": "Boisson-biologique-a-base-de-soja-saveur-banane", + "id": "fr:boisson-biologique-a-base-de-soja-saveur-banane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-biologique-a-base-de-soja-saveur-banane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nefles-au-sirop", + "id": "fr:nefles-au-sirop", + "name": "Nefles-au-sirop", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chataignes-d-eau", + "id": "fr:chataignes-d-eau", + "name": "Chataignes-d-eau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ciboule", + "products": 1, + "id": "fr:ciboule", + "name": "Ciboule" + }, + { + "products": 1, + "name": "nl:Pates-a-tartiner-aux-arachides", + "id": "nl:pates-a-tartiner-aux-arachides", + "url": "https://fr.openfoodfacts.org/categorie/nl:pates-a-tartiner-aux-arachides" + }, + { + "products": 1, + "id": "en:jambons-de-bayonne", + "name": "en:Jambons-de-bayonne", + "url": "https://fr.openfoodfacts.org/categorie/en:jambons-de-bayonne" + }, + { + "products": 1, + "name": "Viande-de-marcassin", + "id": "fr:viande-de-marcassin", + "url": "https://fr.openfoodfacts.org/categorie/viande-de-marcassin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plat-a-base-de-pommes-de-terre", + "id": "fr:plat-a-base-de-pommes-de-terre", + "name": "Plat-a-base-de-pommes-de-terre", + "products": 1 + }, + { + "products": 1, + "id": "fr:gratins-de-crabe", + "name": "Gratins-de-crabe", + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-crabe" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q6112467" + ], + "url": "https://fr.openfoodfacts.org/categorie/roscos-de-vino", + "products": 1, + "id": "en:roscos-de-vino", + "name": "Roscos de vino" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:crottins-de-chevre", + "products": 1, + "name": "es:Crottins-de-chevre", + "id": "es:crottins-de-chevre" + }, + { + "products": 1, + "name": "Jus-vegetaux", + "id": "fr:jus-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/jus-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-aux-extraits-de-the-aromatise-peche", + "id": "fr:boisson-aux-extraits-de-the-aromatise-peche", + "name": "Boisson-aux-extraits-de-the-aromatise-peche", + "products": 1 + }, + { + "products": 1, + "name": "en:Psyllium", + "id": "en:psyllium", + "url": "https://fr.openfoodfacts.org/categorie/en:psyllium" + }, + { + "products": 1, + "name": "Bac-a-glace", + "id": "fr:bac-a-glace", + "url": "https://fr.openfoodfacts.org/categorie/bac-a-glace" + }, + { + "products": 1, + "id": "nl:broodsmeersels", + "name": "nl:Broodsmeersels", + "url": "https://fr.openfoodfacts.org/categorie/nl:broodsmeersels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/smoothie-framboise-myrtille", + "name": "Smoothie-framboise-myrtille", + "id": "fr:smoothie-framboise-myrtille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cervelas-fumes", + "name": "Cervelas-fumes", + "id": "fr:cervelas-fumes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pommes-et-poires", + "products": 1, + "name": "Puree-de-pommes-et-poires", + "id": "fr:puree-de-pommes-et-poires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:meal-replacement", + "products": 1, + "id": "en:meal-replacement", + "name": "en:Meal-replacement" + }, + { + "products": 1, + "id": "en:oeufs-de-poisson", + "name": "en:Oeufs-de-poisson", + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartinable-au-poisson", + "products": 1, + "id": "fr:tartinable-au-poisson", + "name": "Tartinable-au-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salicorne", + "products": 1, + "name": "Salicorne", + "id": "fr:salicorne" + }, + { + "products": 1, + "name": "Terrines-a-l-echalote", + "id": "fr:terrines-a-l-echalote", + "url": "https://fr.openfoodfacts.org/categorie/terrines-a-l-echalote" + }, + { + "name": "ro:Petit-dejeuners", + "id": "ro:petit-dejeuners", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:petit-dejeuners" + }, + { + "products": 1, + "name": "Paniers-noix-de-saint-jacques-a-la-bretonne", + "id": "fr:paniers-noix-de-saint-jacques-a-la-bretonne", + "url": "https://fr.openfoodfacts.org/categorie/paniers-noix-de-saint-jacques-a-la-bretonne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rotis-d-agneau-farcis", + "products": 1, + "id": "fr:rotis-d-agneau-farcis", + "name": "Rotis-d-agneau-farcis" + }, + { + "id": "en:frozen-chards", + "name": "Blettes surgelés", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/blettes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/verrines", + "products": 1, + "id": "fr:verrines", + "name": "Verrines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-jambon-fromage", + "products": 1, + "id": "fr:galettes-au-jambon-fromage", + "name": "Galettes-au-jambon-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bifidus", + "id": "en:bifidus", + "name": "en:Bifidus", + "products": 1 + }, + { + "products": 1, + "name": "Navets surgelés", + "id": "en:frozen-turnips", + "url": "https://fr.openfoodfacts.org/categorie/navets-surgeles" + }, + { + "products": 1, + "name": "Crepes-au-jambon-et-au-fromage", + "id": "fr:crepes-au-jambon-et-au-fromage", + "url": "https://fr.openfoodfacts.org/categorie/crepes-au-jambon-et-au-fromage" + }, + { + "id": "fr:fromages-au-cumin", + "name": "Fromages-au-cumin", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-cumin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/achards", + "id": "fr:achards", + "name": "Achards", + "products": 1 + }, + { + "products": 1, + "name": "Lentilles-cuisinees-a-la-creole", + "id": "fr:lentilles-cuisinees-a-la-creole", + "url": "https://fr.openfoodfacts.org/categorie/lentilles-cuisinees-a-la-creole" + }, + { + "products": 1, + "id": "fr:aux-gravains", + "name": "Aux-gravains", + "url": "https://fr.openfoodfacts.org/categorie/aux-gravains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melasse-de-sucre-de-canne", + "products": 1, + "name": "Melasse-de-sucre-de-canne", + "id": "fr:melasse-de-sucre-de-canne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-natures-bio", + "products": 1, + "name": "Yaourts-natures-bio", + "id": "fr:yaourts-natures-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulin-de-poivre", + "name": "Moulin de poivre", + "id": "en:peppercorn-grinders", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/igp-moutarde-de-bourgogne", + "id": "fr:igp-moutarde-de-bourgogne", + "name": "Igp-moutarde-de-bourgogne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:graines-de-tournesol-et-derives", + "products": 1, + "id": "es:graines-de-tournesol-et-derives", + "name": "es:Graines-de-tournesol-et-derives" + }, + { + "id": "es:graines-de-tournesol-en-coque-grillees", + "name": "es:Graines-de-tournesol-en-coque-grillees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:graines-de-tournesol-en-coque-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:gogo%C8%99ari-in-o%C8%9Bet", + "products": 1, + "name": "ro:Gogoșari-in-oțet", + "id": "ro:gogoșari-in-oțet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:graines-de-tournesol-en-coque", + "products": 1, + "id": "es:graines-de-tournesol-en-coque", + "name": "es:Graines-de-tournesol-en-coque" + }, + { + "products": 1, + "name": "Cyclamate", + "id": "en:sodium-cyclamate", + "sameAs": [ + "https://www.wikidata.org/wiki/Q407786" + ], + "url": "https://fr.openfoodfacts.org/categorie/cyclamate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:arroces-con-vegetales", + "name": "es:Arroces-con-vegetales", + "id": "es:arroces-con-vegetales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-acerola", + "products": 1, + "name": "Confitures-d-acerola", + "id": "fr:confitures-d-acerola" + }, + { + "products": 1, + "id": "fr:sorbets-a-l-orange-sanguine", + "name": "Sorbets-a-l-orange-sanguine", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-l-orange-sanguine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-au-caramel", + "products": 1, + "name": "Chocolats-noirs-fourres-au-caramel", + "id": "fr:chocolats-noirs-fourres-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumineuses-surgelees", + "name": "es:Legumineuses-surgelees", + "id": "es:legumineuses-surgelees", + "products": 1 + }, + { + "name": "es:Aliments-a-base-de-plantes-surgeles", + "id": "es:aliments-a-base-de-plantes-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-plantes-surgeles" + }, + { + "id": "es:salteados-de-vegetales-congelados", + "name": "es:Salteados de vegetales congelados", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:salteados-de-vegetales-congelados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-marinees", + "id": "es:olives-marinees", + "name": "es:Olives-marinees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-aperitifs-souffles-a-base-de-mais", + "products": 1, + "id": "es:biscuits-aperitifs-souffles-a-base-de-mais", + "name": "es:Biscuits-aperitifs-souffles-a-base-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-aperitifs-souffles-au-fromage", + "products": 1, + "id": "es:biscuits-aperitifs-souffles-au-fromage", + "name": "es:Biscuits-aperitifs-souffles-au-fromage" + }, + { + "products": 1, + "name": "Miels-de-guadeloupe", + "id": "fr:miels-de-guadeloupe", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-guadeloupe" + }, + { + "products": 1, + "name": "es:Moules-en-conserve", + "id": "es:moules-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:moules-en-conserve" + }, + { + "name": "Glutens", + "id": "fr:glutens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glutens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/untables", + "id": "fr:untables", + "name": "Untables", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grasas-animales", + "name": "Grasas-animales", + "id": "fr:grasas-animales", + "products": 1 + }, + { + "products": 1, + "name": "en:Laits-uht", + "id": "en:laits-uht", + "url": "https://fr.openfoodfacts.org/categorie/en:laits-uht" + }, + { + "products": 1, + "name": "es:Laits-demi-ecremes", + "id": "es:laits-demi-ecremes", + "url": "https://fr.openfoodfacts.org/categorie/es:laits-demi-ecremes" + }, + { + "name": "Horchatas de chufa", + "id": "en:horchatas-de-chufa", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1587937" + ], + "url": "https://fr.openfoodfacts.org/categorie/horchatas-de-chufa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-souchet", + "id": "en:tigernut-milks", + "name": "Boissons végétales de souchet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/refrigerated-squeezed-apple-juices", + "id": "en:refrigerated-squeezed-apple-juices", + "name": "Refrigerated squeezed apple juices", + "products": 1 + }, + { + "id": "es:chips-de-patatas-fritas-onduladas", + "name": "es:Chips-de-patatas-fritas-onduladas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:chips-de-patatas-fritas-onduladas" + }, + { + "id": "fr:tortellini-aux-champignons", + "name": "Tortellini-aux-champignons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tortellini-aux-champignons" + }, + { + "products": 1, + "name": "Cereales-para-el-desayuno", + "id": "fr:cereales-para-el-desayuno", + "url": "https://fr.openfoodfacts.org/categorie/cereales-para-el-desayuno" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-albacore-a-l-huile-d-olive", + "name": "Thons-albacore-a-l-huile-d-olive", + "id": "fr:thons-albacore-a-l-huile-d-olive", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:flocons-de-cereales", + "products": 1, + "id": "pt:flocons-de-cereales", + "name": "pt:Flocons-de-cereales" + }, + { + "id": "pt:flocons", + "name": "pt:Flocons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:flocons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zaden", + "products": 1, + "name": "Zaden", + "id": "fr:zaden" + }, + { + "id": "fr:langgraanrijst", + "name": "Langgraanrijst", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/langgraanrijst" + }, + { + "products": 1, + "id": "fr:graankorrels", + "name": "Graankorrels", + "url": "https://fr.openfoodfacts.org/categorie/graankorrels" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q237315" + ], + "url": "https://fr.openfoodfacts.org/categorie/eau-tonique", + "name": "Eau tonique", + "id": "en:tonic-water", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-aromatisee-a-la-tequila", + "products": 1, + "id": "fr:biere-aromatisee-a-la-tequila", + "name": "Biere-aromatisee-a-la-tequila" + }, + { + "products": 1, + "name": "en:Mint-chocolate", + "id": "en:mint-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/en:mint-chocolate" + }, + { + "name": "ru:Светлое-пиво", + "id": "ru:светлое-пиво", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D0%B2%D0%B5%D1%82%D0%BB%D0%BE%D0%B5-%D0%BF%D0%B8%D0%B2%D0%BE" + }, + { + "name": "Filets-de-poissons-panes", + "id": "fr:filets-de-poissons-panes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poissons-panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glace-vegetale", + "id": "fr:glace-vegetale", + "name": "Glace-vegetale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurre-d-erable", + "name": "Beurre-d-erable", + "id": "fr:beurre-d-erable", + "products": 1 + }, + { + "name": "Madère", + "id": "en:madeira-wine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/madere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-gluants-fermentes", + "products": 1, + "name": "Riz-gluants-fermentes", + "id": "fr:riz-gluants-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-liqueurs", + "id": "fr:cremes-de-liqueurs", + "name": "Cremes-de-liqueurs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-fraiches-legeres", + "products": 1, + "id": "en:cremes-fraiches-legeres", + "name": "en:Cremes-fraiches-legeres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-entieres-semi-epaisses", + "products": 1, + "name": "Cremes-entieres-semi-epaisses", + "id": "fr:cremes-entieres-semi-epaisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-desosses-degraisses", + "name": "Jambons-desosses-degraisses", + "id": "fr:jambons-desosses-degraisses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mayonnaises-allegees", + "products": 1, + "name": "en:Mayonnaises-allegees", + "id": "en:mayonnaises-allegees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-fletan", + "name": "Filets-de-fletan", + "id": "fr:filets-de-fletan", + "products": 1 + }, + { + "id": "fr:confits-de-foie", + "name": "Confits-de-foie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-foie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-avec-morceaux-de-biscuits", + "name": "Yaourt-avec-morceaux-de-biscuits", + "id": "fr:yaourt-avec-morceaux-de-biscuits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chewing-gum-fraise", + "products": 1, + "name": "Chewing-gum-fraise", + "id": "fr:chewing-gum-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux-a-choucroutes", + "products": 1, + "id": "fr:choux-a-choucroutes", + "name": "Choux-a-choucroutes" + }, + { + "products": 1, + "id": "fr:sans-antibiotique", + "name": "Sans-antibiotique", + "url": "https://fr.openfoodfacts.org/categorie/sans-antibiotique" + }, + { + "products": 1, + "name": "Graisses", + "id": "fr:graisses", + "url": "https://fr.openfoodfacts.org/categorie/graisses" + }, + { + "id": "fr:miels-chiliens", + "name": "Miels-chiliens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/miels-chiliens" + }, + { + "products": 1, + "id": "en:sels-de-guerande", + "name": "en:Sels-de-guerande", + "url": "https://fr.openfoodfacts.org/categorie/en:sels-de-guerande" + }, + { + "products": 1, + "name": "nl:Cereales-et-derives", + "id": "nl:cereales-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/nl:cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gros-sels", + "products": 1, + "name": "en:Gros-sels", + "id": "en:gros-sels" + }, + { + "products": 1, + "name": "en:Yaourts-aromatises", + "id": "en:yaourts-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-aromatises" + }, + { + "name": "en:Gros-sel-de-guerande", + "id": "en:gros-sel-de-guerande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gros-sel-de-guerande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mirabelles-sechees", + "id": "fr:mirabelles-sechees", + "name": "Mirabelles-sechees", + "products": 1 + }, + { + "id": "it:antipasto", + "name": "it:Antipasto", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:antipasto" + }, + { + "name": "Filet-mignon", + "id": "fr:filet-mignon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-mignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bisques-de-homard", + "products": 1, + "name": "Bisques-de-homard", + "id": "fr:bisques-de-homard" + }, + { + "id": "fr:moutarde-en-poudre", + "name": "Moutarde-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutarde-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ginseng", + "products": 1, + "id": "en:ginseng", + "name": "en:Ginseng" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caipirinha", + "products": 1, + "name": "Caipirinha", + "id": "fr:caipirinha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscoito", + "products": 1, + "name": "Biscoito", + "id": "fr:biscoito" + }, + { + "name": "en:Coriandre-en-pot", + "id": "en:coriandre-en-pot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:coriandre-en-pot" + }, + { + "products": 1, + "id": "fr:brathering", + "name": "Brathering", + "url": "https://fr.openfoodfacts.org/categorie/brathering" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:studentenfutter", + "products": 1, + "name": "de:Studentenfutter", + "id": "de:studentenfutter" + }, + { + "products": 1, + "name": "en:Plats-a-base-de-crustaces", + "id": "en:plats-a-base-de-crustaces", + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-crustaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassoulet-de-castelnaudary-au-confit-de-canard", + "name": "Cassoulet-de-castelnaudary-au-confit-de-canard", + "id": "fr:cassoulet-de-castelnaudary-au-confit-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-yuzu-vert", + "id": "fr:jus-de-yuzu-vert", + "name": "Jus-de-yuzu-vert", + "products": 1 + }, + { + "id": "en:black-grams", + "name": "Haricots urd", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q369447" + ], + "url": "https://fr.openfoodfacts.org/categorie/haricots-urd" + }, + { + "name": "de:Bouillons-cube-de-legumes", + "id": "de:bouillons-cube-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:bouillons-cube-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-sans-sucres-aux-plantes", + "name": "Bonbons-sans-sucres-aux-plantes", + "id": "fr:bonbons-sans-sucres-aux-plantes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-a-la-mayonnaise", + "id": "fr:thons-a-la-mayonnaise", + "name": "Thons-a-la-mayonnaise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:confitures-de-framboises", + "id": "ru:confitures-de-framboises", + "name": "ru:Confitures-de-framboises", + "products": 1 + }, + { + "products": 1, + "id": "fr:truffes-surgelees", + "name": "Truffes-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/truffes-surgelees" + }, + { + "name": "de:Deutsche-markenbutter", + "id": "de:deutsche-markenbutter", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:deutsche-markenbutter" + }, + { + "id": "de:trockenbackhefe", + "name": "de:Trockenbackhefe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:trockenbackhefe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:wholefood", + "id": "en:wholefood", + "name": "en:Wholefood", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-a-la-stracciatella", + "name": "Yaourt-a-la-stracciatella", + "id": "fr:yaourt-a-la-stracciatella", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-crevette", + "name": "Pate-de-crevette", + "id": "fr:pate-de-crevette", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:shrimp-paste", + "id": "en:shrimp-paste", + "name": "en:Shrimp-paste", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arty-barcode", + "products": 1, + "id": "fr:arty-barcode", + "name": "Arty-barcode" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:minervois", + "products": 1, + "name": "nl:Minervois", + "id": "nl:minervois" + }, + { + "name": "Boisson-fermentee", + "id": "fr:boisson-fermentee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-fermentee" + }, + { + "products": 1, + "name": "de:Schwarze-oliven-mit-stein", + "id": "de:schwarze-oliven-mit-stein", + "url": "https://fr.openfoodfacts.org/categorie/de:schwarze-oliven-mit-stein" + }, + { + "products": 1, + "id": "es:bebidas-a-base-de-limon", + "name": "es:Bebidas-a-base-de-limon", + "url": "https://fr.openfoodfacts.org/categorie/es:bebidas-a-base-de-limon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliment-a-base-de-vegetaux", + "products": 1, + "name": "Aliment-a-base-de-vegetaux", + "id": "fr:aliment-a-base-de-vegetaux" + }, + { + "name": "Garlic-bread-slices", + "id": "fr:garlic-bread-slices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/garlic-bread-slices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:sauces-tomate", + "products": 1, + "name": "it:Sauces-tomate", + "id": "it:sauces-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garlic-bread", + "products": 1, + "id": "fr:garlic-bread", + "name": "Garlic-bread" + }, + { + "id": "cs:gaufrettes", + "name": "cs:Gaufrettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cs:gaufrettes" + }, + { + "id": "fr:melange-aromatique", + "name": "Melange-aromatique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melange-aromatique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-bio-a-base-de-concentre", + "name": "Jus-d-orange-bio-a-base-de-concentre", + "id": "fr:jus-d-orange-bio-a-base-de-concentre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paprika-bio", + "products": 1, + "id": "fr:paprika-bio", + "name": "Paprika-bio" + }, + { + "products": 1, + "id": "fr:ratatouilles-en-conserve", + "name": "Ratatouilles-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/ratatouilles-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-myrtilles", + "name": "en:Confitures-de-myrtilles", + "id": "en:confitures-de-myrtilles", + "products": 1 + }, + { + "products": 1, + "id": "fr:jus-d-anans-et-de-noix-de-coco-a-base-de-concentre", + "name": "Jus-d-anans-et-de-noix-de-coco-a-base-de-concentre", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-anans-et-de-noix-de-coco-a-base-de-concentre" + }, + { + "products": 1, + "id": "it:mueslis-croustillants", + "name": "it:Mueslis-croustillants", + "url": "https://fr.openfoodfacts.org/categorie/it:mueslis-croustillants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigrettes-a-la-moutarde", + "products": 1, + "id": "fr:vinaigrettes-a-la-moutarde", + "name": "Vinaigrettes-a-la-moutarde" + }, + { + "id": "fr:fonds-d-artichauts-en-conserve", + "name": "Fonds-d-artichauts-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fonds-d-artichauts-en-conserve" + }, + { + "products": 1, + "name": "Vinaigres-d-alcool-cristal", + "id": "fr:vinaigres-d-alcool-cristal", + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-d-alcool-cristal" + }, + { + "products": 1, + "name": "Conserves-de-crabe", + "id": "fr:conserves-de-crabe", + "url": "https://fr.openfoodfacts.org/categorie/conserves-de-crabe" + }, + { + "products": 1, + "id": "fr:brisures-de-riz", + "name": "Brisures-de-riz", + "url": "https://fr.openfoodfacts.org/categorie/brisures-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:galettes-de-mais", + "products": 1, + "id": "nl:galettes-de-mais", + "name": "nl:Galettes-de-mais" + }, + { + "products": 1, + "id": "fr:goudas-en-tranches", + "name": "Goudas-en-tranches", + "url": "https://fr.openfoodfacts.org/categorie/goudas-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:aliments-et-boissons-a-base-de-vegetaux", + "name": "ro:Aliments-et-boissons-a-base-de-vegetaux", + "id": "ro:aliments-et-boissons-a-base-de-vegetaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/delhaize", + "products": 1, + "name": "Delhaize", + "id": "fr:delhaize" + }, + { + "products": 1, + "id": "en:baguettes-de-pain", + "name": "en:Baguettes-de-pain", + "url": "https://fr.openfoodfacts.org/categorie/en:baguettes-de-pain" + }, + { + "name": "Pates-de-miso", + "id": "fr:pates-de-miso", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-miso" + }, + { + "products": 1, + "name": "Hule-d-olive", + "id": "fr:hule-d-olive", + "url": "https://fr.openfoodfacts.org/categorie/hule-d-olive" + }, + { + "products": 1, + "name": "en:Yaourts-au-crumble", + "id": "en:yaourts-au-crumble", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-au-crumble" + }, + { + "id": "fr:desserts-au-lait-de-chevre", + "name": "Desserts-au-lait-de-chevre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-lait-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pancakes", + "products": 1, + "id": "fr:pancakes", + "name": "Pancakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eau-d-erable", + "id": "fr:eau-d-erable", + "name": "Eau-d-erable", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-deshydratees-tomate-aux-vermicelles", + "products": 1, + "id": "fr:soupes-deshydratees-tomate-aux-vermicelles", + "name": "Soupes-deshydratees-tomate-aux-vermicelles" + }, + { + "products": 1, + "name": "Tranches-de-poitrine", + "id": "fr:tranches-de-poitrine", + "url": "https://fr.openfoodfacts.org/categorie/tranches-de-poitrine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumon-fume-ecosse", + "name": "Saumon-fume-ecosse", + "id": "fr:saumon-fume-ecosse", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sashimis", + "products": 1, + "id": "fr:sashimis", + "name": "Sashimis" + }, + { + "products": 1, + "name": "en:Paves-de-saumon-fume", + "id": "en:paves-de-saumon-fume", + "url": "https://fr.openfoodfacts.org/categorie/en:paves-de-saumon-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:paves-de-saumon", + "products": 1, + "name": "en:Paves-de-saumon", + "id": "en:paves-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-fumes-d-alaska", + "products": 1, + "name": "Saumons-fumes-d-alaska", + "id": "fr:saumons-fumes-d-alaska" + }, + { + "products": 1, + "id": "fr:nappages-au-chocolat", + "name": "Nappages-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/nappages-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-poule-au-pot", + "products": 1, + "name": "Bouillons-de-poule-au-pot", + "id": "fr:bouillons-de-poule-au-pot" + }, + { + "id": "fr:cafe-cappuccino-instantane", + "name": "Cafe-cappuccino-instantane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cafe-cappuccino-instantane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettini-a-la-bolognaise", + "products": 1, + "name": "Spaghettini-a-la-bolognaise", + "id": "fr:spaghettini-a-la-bolognaise" + }, + { + "products": 1, + "id": "fr:plats-a-base-de-biande-porcine", + "name": "Plats-a-base-de-biande-porcine", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-biande-porcine" + }, + { + "products": 1, + "id": "fr:gewurtraminers", + "name": "Gewurtraminers", + "url": "https://fr.openfoodfacts.org/categorie/gewurtraminers" + }, + { + "name": "Sauces-pour-lasagnes", + "id": "fr:sauces-pour-lasagnes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-lasagnes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-de-couscous", + "products": 1, + "name": "Semoules-de-couscous", + "id": "fr:semoules-de-couscous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-mais-aromatisees", + "name": "Farines-de-mais-aromatisees", + "id": "fr:farines-de-mais-aromatisees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-le-basmati-du-penjab", + "products": 1, + "id": "fr:riz-le-basmati-du-penjab", + "name": "Riz-le-basmati-du-penjab" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoule-de-couscous-instantanee", + "name": "Semoule-de-couscous-instantanee", + "id": "fr:semoule-de-couscous-instantanee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-cuisine", + "products": 1, + "name": "Riz-cuisine", + "id": "fr:riz-cuisine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-indica", + "id": "fr:riz-indica", + "name": "Riz-indica", + "products": 1 + }, + { + "name": "Sauces-pour-risottos", + "id": "fr:sauces-pour-risottos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-risottos" + }, + { + "name": "Sauces-pour-risotto", + "id": "fr:sauces-pour-risotto", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-risotto" + }, + { + "id": "fr:couscous-royaux", + "name": "Couscous-royaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/couscous-royaux" + }, + { + "products": 1, + "id": "fr:farfallini", + "name": "Farfallini", + "url": "https://fr.openfoodfacts.org/categorie/farfallini" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-pesto-doux-tomates", + "products": 1, + "name": "Sauce-pesto-doux-tomates", + "id": "fr:sauce-pesto-doux-tomates" + }, + { + "id": "en:cayenne-pepper-sauce", + "name": "en:Cayenne-pepper-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cayenne-pepper-sauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati-complet", + "products": 1, + "id": "fr:riz-basmati-complet", + "name": "Riz-basmati-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pgi-products", + "name": "en:Pgi-products", + "id": "en:pgi-products", + "products": 1 + }, + { + "products": 1, + "id": "de:pinienkerne", + "name": "de:Pinienkerne", + "url": "https://fr.openfoodfacts.org/categorie/de:pinienkerne" + }, + { + "name": "Bebidas-para-tomar-calientes-instantaneas", + "id": "fr:bebidas-para-tomar-calientes-instantaneas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bebidas-para-tomar-calientes-instantaneas" + }, + { + "products": 1, + "name": "Cereales-prepares", + "id": "fr:cereales-prepares", + "url": "https://fr.openfoodfacts.org/categorie/cereales-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-roses", + "products": 1, + "name": "Haricots-roses", + "id": "fr:haricots-roses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-a-oeil-noir", + "name": "Haricots-a-oeil-noir", + "id": "fr:haricots-a-oeil-noir", + "products": 1 + }, + { + "products": 1, + "id": "fr:lentilles-a-poeler", + "name": "Lentilles-a-poeler", + "url": "https://fr.openfoodfacts.org/categorie/lentilles-a-poeler" + }, + { + "id": "fr:creme-au-caramel", + "name": "Creme-au-caramel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-au-caramel" + }, + { + "name": "en:Laits-de-noix-de-coco", + "id": "en:laits-de-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-chocolat-caramel", + "id": "fr:cremes-dessert-chocolat-caramel", + "name": "Cremes-dessert-chocolat-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougat-glace", + "products": 1, + "name": "Nougat-glace", + "id": "fr:nougat-glace" + }, + { + "name": "en:Yaourts-au-bifidus-aromatise", + "id": "en:yaourts-au-bifidus-aromatise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-au-bifidus-aromatise" + }, + { + "products": 1, + "id": "fr:yaourt-aux-fruits-0", + "name": "Yaourt-aux-fruits-0", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-aux-fruits-0" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-pamplemousse", + "products": 1, + "id": "fr:yaourts-au-pamplemousse", + "name": "Yaourts au pamplemousse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-nature-alleges", + "id": "fr:yaourts-nature-alleges", + "name": "Yaourts-nature-alleges", + "products": 1 + }, + { + "products": 1, + "name": "Petits-suisses-pour-bebe", + "id": "fr:petits-suisses-pour-bebe", + "url": "https://fr.openfoodfacts.org/categorie/petits-suisses-pour-bebe" + }, + { + "id": "fr:produit-recolte-par-des-abeilles", + "name": "Produit-recolte-par-des-abeilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-recolte-par-des-abeilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-laitieres-aux-fruits-avec-edulcorant", + "name": "Specialites-laitieres-aux-fruits-avec-edulcorant", + "id": "fr:specialites-laitieres-aux-fruits-avec-edulcorant", + "products": 1 + }, + { + "products": 1, + "id": "fr:specialites-laitieres-aux-fruits", + "name": "Specialites-laitieres-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/specialites-laitieres-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-mixtes", + "products": 1, + "id": "fr:yaourts-aux-fruits-mixtes", + "name": "Yaourts-aux-fruits-mixtes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-laitieres-multi-fruits", + "id": "fr:specialites-laitieres-multi-fruits", + "name": "Specialites-laitieres-multi-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-fruits-rouges", + "name": "Yaourts-sur-lit-de-fruits-rouges", + "id": "fr:yaourts-sur-lit-de-fruits-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-complet-sans-croute", + "products": 1, + "id": "fr:pains-de-mie-complet-sans-croute", + "name": "Pains-de-mie-complet-sans-croute" + }, + { + "products": 1, + "name": "Yaourts-sur-lit-d-ananas", + "id": "fr:yaourts-sur-lit-d-ananas", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-d-ananas" + }, + { + "id": "fr:soupe-en-brique", + "name": "Soupe-en-brique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupe-en-brique" + }, + { + "products": 1, + "name": "de:Compotes-pommes-mangue", + "id": "de:compotes-pommes-mangue", + "url": "https://fr.openfoodfacts.org/categorie/de:compotes-pommes-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-d-erable-biologique", + "products": 1, + "name": "Produits-d-erable-biologique", + "id": "fr:produits-d-erable-biologique" + }, + { + "products": 1, + "id": "es:aliments-pour-bebe", + "name": "es:Aliments-pour-bebe", + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:col-lombarda-encurtida", + "products": 1, + "id": "es:col-lombarda-encurtida", + "name": "es:Col-lombarda-encurtida" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:compotes-a-boire", + "name": "de:Compotes-a-boire", + "id": "de:compotes-a-boire", + "products": 1 + }, + { + "products": 1, + "name": "en:Cremes-vegetales-pour-cuisiner", + "id": "en:cremes-vegetales-pour-cuisiner", + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-vegetales-pour-cuisiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-vegetales", + "name": "en:Cremes-vegetales", + "id": "en:cremes-vegetales", + "products": 1 + }, + { + "id": "de:barres-de-noix-de-cajou", + "name": "de:Barres-de-noix-de-cajou", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-noix-de-cajou" + }, + { + "name": "Ayran", + "id": "en:ayran", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ayran", + "sameAs": [ + "https://www.wikidata.org/wiki/Q192892" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/doogh-and-ayran", + "products": 1, + "name": "Doogh and ayran", + "id": "en:doogh-and-ayran" + }, + { + "id": "fr:saucissons-de-volaille", + "name": "Saucissons-de-volaille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-non-alcoolisees", + "id": "fr:boissons-non-alcoolisees", + "name": "Boissons-non-alcoolisees", + "products": 1 + }, + { + "name": "Produits-de-collection", + "id": "fr:produits-de-collection", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-de-collection" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-roules", + "products": 1, + "id": "fr:gateaux-roules", + "name": "Gateaux-roules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:%D0%B9%D0%BE%D0%B3%D1%83%D1%80%D1%82", + "name": "de:Йогурт", + "id": "de:йогурт", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-natures", + "products": 1, + "name": "de:Yaourts-natures", + "id": "de:yaourts-natures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:sauces-pour-pates", + "name": "it:Sauces-pour-pates", + "id": "it:sauces-pour-pates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:sauces-pesto", + "id": "it:sauces-pesto", + "name": "it:Sauces-pesto", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-pour-marinades", + "products": 1, + "id": "en:sauces-pour-marinades", + "name": "en:Sauces-pour-marinades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-frais", + "id": "fr:produits-frais", + "name": "Produits-frais", + "products": 1 + }, + { + "products": 1, + "id": "en:mottin-charentais", + "name": "en:Mottin-charentais", + "url": "https://fr.openfoodfacts.org/categorie/en:mottin-charentais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-au-citron", + "products": 1, + "id": "fr:thes-verts-au-citron", + "name": "Thes-verts-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-crues", + "products": 1, + "name": "Cremes-crues", + "id": "fr:cremes-crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:croquettes-au-fromage", + "products": 1, + "name": "es:Croquettes-au-fromage", + "id": "es:croquettes-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-braise", + "products": 1, + "id": "fr:pain-braise", + "name": "Pain-braise" + }, + { + "products": 1, + "name": "xx:Frutas-y-verduras-y-sus-productos", + "id": "xx:frutas-y-verduras-y-sus-productos", + "url": "https://fr.openfoodfacts.org/categorie/xx:frutas-y-verduras-y-sus-productos" + }, + { + "id": "de:raviolis-en-conserve", + "name": "de:Raviolis-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:raviolis-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:fresas-congeladas", + "id": "xx:fresas-congeladas", + "name": "xx:Fresas-congeladas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-mungo-a-germer", + "products": 1, + "id": "fr:haricots-mungo-a-germer", + "name": "Haricots-mungo-a-germer" + }, + { + "products": 1, + "name": "xx:Alimentos-y-bebidas-de-origen-vegetal", + "id": "xx:alimentos-y-bebidas-de-origen-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/xx:alimentos-y-bebidas-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:alimentos-de-origen-vegetal", + "id": "xx:alimentos-de-origen-vegetal", + "name": "xx:Alimentos-de-origen-vegetal", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anacardos", + "name": "Anacardos", + "id": "fr:anacardos", + "products": 1 + }, + { + "products": 1, + "id": "fr:rundkornreis", + "name": "Rundkornreis", + "url": "https://fr.openfoodfacts.org/categorie/rundkornreis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:thailand", + "id": "de:thailand", + "name": "de:Thailand", + "products": 1 + }, + { + "products": 1, + "name": "Sans-viande", + "id": "fr:sans-viande", + "url": "https://fr.openfoodfacts.org/categorie/sans-viande" + }, + { + "name": "Torsades-a-la-carbonara", + "id": "fr:torsades-a-la-carbonara", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/torsades-a-la-carbonara" + }, + { + "id": "fr:tofu-lactofermente-a-tartiner", + "name": "Tofu-lactofermente-a-tartiner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tofu-lactofermente-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-maltees", + "products": 1, + "name": "Levures-maltees", + "id": "fr:levures-maltees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheveux-d-ange-semi-complets", + "products": 1, + "name": "Cheveux-d-ange-semi-complets", + "id": "fr:cheveux-d-ange-semi-complets" + }, + { + "products": 1, + "id": "fr:boisson-biologique-a-base-de-riz-aromatisee-a-l-amande", + "name": "Boisson-biologique-a-base-de-riz-aromatisee-a-l-amande", + "url": "https://fr.openfoodfacts.org/categorie/boisson-biologique-a-base-de-riz-aromatisee-a-l-amande" + }, + { + "products": 1, + "id": "en:sandwichs-au-poulet", + "name": "en:Sandwichs-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-poulet" + }, + { + "id": "fr:laits-de-riz-a-la-noisette", + "name": "Laits-de-riz-a-la-noisette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/laits-de-riz-a-la-noisette" + }, + { + "id": "fr:galette-de-riz-souffle", + "name": "Galette-de-riz-souffle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galette-de-riz-souffle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-quiche", + "products": 1, + "id": "fr:preparation-pour-quiche", + "name": "Preparation-pour-quiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cabernet-syrah", + "id": "fr:cabernet-syrah", + "name": "Cabernet-syrah", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-chili", + "products": 1, + "id": "fr:vins-du-chili", + "name": "Vins-du-chili" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeuf-liquide", + "products": 1, + "name": "Oeuf-liquide", + "id": "fr:oeuf-liquide" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chambolle-musigny-les-feusselottes", + "id": "fr:chambolle-musigny-les-feusselottes", + "name": "Chambolle-Musigny Les Feusselottes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raviolini", + "id": "fr:raviolini", + "name": "Raviolini", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-menthe-verte", + "name": "Sirop-de-menthe-verte", + "id": "fr:sirop-de-menthe-verte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-seches", + "id": "fr:levures-seches", + "name": "Levures-seches", + "products": 1 + }, + { + "products": 1, + "name": "Preparat", + "id": "fr:preparat", + "url": "https://fr.openfoodfacts.org/categorie/preparat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ciocolata", + "products": 1, + "name": "Ciocolata", + "id": "fr:ciocolata" + }, + { + "products": 1, + "name": "Nectars-tropicaux", + "id": "fr:nectars-tropicaux", + "url": "https://fr.openfoodfacts.org/categorie/nectars-tropicaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grains-de-cafe-torrefies", + "name": "Grains de café torréfiés", + "id": "en:roasted-coffee-beans", + "products": 1 + }, + { + "id": "fr:cuisse-de-poulet", + "name": "Cuisse-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cuisse-de-poulet" + }, + { + "products": 1, + "name": "Biche", + "id": "fr:biche", + "url": "https://fr.openfoodfacts.org/categorie/biche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-framboise-et-de-violette", + "products": 1, + "name": "Sirop-de-framboise-et-de-violette", + "id": "fr:sirop-de-framboise-et-de-violette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-au-lait-demi-ecreme", + "products": 1, + "name": "Fromage-frais-au-lait-demi-ecreme", + "id": "fr:fromage-frais-au-lait-demi-ecreme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-blanc-0", + "name": "Fromage-blanc-0", + "id": "fr:fromage-blanc-0", + "products": 1 + }, + { + "id": "fr:radis-noirs", + "name": "Radis-noirs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/radis-noirs" + }, + { + "products": 1, + "name": "Pains azymes pilés", + "id": "fr:pains-azymes-piles", + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-piles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures-de-framboises", + "id": "nl:confitures-de-framboises", + "name": "nl:Confitures-de-framboises", + "products": 1 + }, + { + "name": "Pates-de-lentilles", + "id": "fr:pates-de-lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-d-epeautre", + "id": "fr:spaghettis-d-epeautre", + "name": "Spaghettis-d-epeautre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-blancs-a-l-huile-d-olive", + "products": 1, + "name": "Thons-blancs-a-l-huile-d-olive", + "id": "fr:thons-blancs-a-l-huile-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-d-olive-aux-tomates-sechees", + "products": 1, + "id": "fr:sardines-a-l-huile-d-olive-aux-tomates-sechees", + "name": "Sardines-a-l-huile-d-olive-aux-tomates-sechees" + }, + { + "id": "fr:anchois-a-l-huile", + "name": "Anchois-a-l-huile", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/anchois-a-l-huile" + }, + { + "name": "Filets-de-maquereaux-a-l-huile-d-olive-et-aromates", + "id": "fr:filets-de-maquereaux-a-l-huile-d-olive-et-aromates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-l-huile-d-olive-et-aromates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateau-au-fromage", + "id": "fr:gateau-au-fromage", + "name": "Gateau-au-fromage", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chou-cuisine", + "id": "fr:chou-cuisine", + "name": "Chou-cuisine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-artisanales", + "name": "Gaufres-artisanales", + "id": "fr:gaufres-artisanales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-la-creme-de-marrons", + "name": "Desserts-a-la-creme-de-marrons", + "id": "fr:desserts-a-la-creme-de-marrons", + "products": 1 + }, + { + "name": "Sans-huile-de-palme", + "id": "fr:sans-huile-de-palme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sans-huile-de-palme" + }, + { + "id": "fr:cremes-fraiches-fluides", + "name": "Cremes-fraiches-fluides", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-fluides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-marrons", + "name": "Glaces-marrons", + "id": "fr:glaces-marrons", + "products": 1 + }, + { + "name": "Glaces-a-la-violette", + "id": "fr:glaces-a-la-violette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-violette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-vins-rouges-aromatises", + "products": 1, + "id": "fr:vinaigres-de-vins-rouges-aromatises", + "name": "Vinaigres-de-vins-rouges-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-vins-aromatises", + "id": "fr:vinaigres-de-vins-aromatises", + "name": "Vinaigres-de-vins-aromatises", + "products": 1 + }, + { + "products": 1, + "id": "fr:cremes-de-volailles", + "name": "Cremes-de-volailles", + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-volailles" + }, + { + "name": "Confits-de-tomates-sechees", + "id": "fr:confits-de-tomates-sechees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-de-tomates-sechees" + }, + { + "id": "fr:sel-iode", + "name": "Sel-iode", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sel-iode" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fourme-d-ambert", + "products": 1, + "name": "en:Fourme-d-ambert", + "id": "en:fourme-d-ambert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/artichauts-grilles", + "id": "fr:artichauts-grilles", + "name": "Artichauts-grilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-de-nouilles", + "products": 1, + "id": "en:soupes-de-nouilles", + "name": "en:Soupes-de-nouilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:barritas-de-cereales-con-avellanas", + "products": 1, + "id": "es:barritas-de-cereales-con-avellanas", + "name": "es:Barritas-de-cereales-con-avellanas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles-asiatiques", + "products": 1, + "name": "en:Nouilles-asiatiques", + "id": "en:nouilles-asiatiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cuisine-asiatique", + "products": 1, + "name": "en:Cuisine-asiatique", + "id": "en:cuisine-asiatique" + }, + { + "name": "Mousse-au-chocolat-au-lait", + "id": "fr:mousse-au-chocolat-au-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousse-au-chocolat-au-lait" + }, + { + "products": 1, + "name": "Pains-complets-precuits", + "id": "fr:pains-complets-precuits", + "url": "https://fr.openfoodfacts.org/categorie/pains-complets-precuits" + }, + { + "products": 1, + "id": "aa:pains-de-mie-complet", + "name": "aa:Pains-de-mie-complet", + "url": "https://fr.openfoodfacts.org/categorie/aa:pains-de-mie-complet" + }, + { + "id": "aa:pains-de-mie", + "name": "aa:Pains-de-mie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aa:pains-de-mie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aa:pains", + "id": "aa:pains", + "name": "aa:Pains", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aa:cereales-et-pommes-de-terre", + "name": "aa:Cereales-et-pommes-de-terre", + "id": "aa:cereales-et-pommes-de-terre", + "products": 1 + }, + { + "name": "aa:Aliments-et-boissons-a-base-de-vegetaux", + "id": "aa:aliments-et-boissons-a-base-de-vegetaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aa:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "products": 1, + "name": "Desserts-lactes-au-tapioca", + "id": "fr:desserts-lactes-au-tapioca", + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-tapioca" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aa:aliments-d-origine-vegetale", + "products": 1, + "id": "aa:aliments-d-origine-vegetale", + "name": "aa:Aliments-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-aux-oeufs-saveur-vanille", + "name": "Creme-aux-oeufs-saveur-vanille", + "id": "fr:creme-aux-oeufs-saveur-vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwich-bacon-crudites", + "products": 1, + "name": "Sandwich-bacon-crudites", + "id": "fr:sandwich-bacon-crudites" + }, + { + "products": 1, + "id": "fr:ravioli-au-jambon-aux-oeufs-frais", + "name": "Ravioli-au-jambon-aux-oeufs-frais", + "url": "https://fr.openfoodfacts.org/categorie/ravioli-au-jambon-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-aux-trois-fromages", + "products": 1, + "id": "en:pizzas-aux-trois-fromages", + "name": "en:Pizzas-aux-trois-fromages" + }, + { + "id": "fr:pates-fourrrees", + "name": "Pates-fourrrees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-fourrrees" + }, + { + "products": 1, + "name": "Rollmops-au-vinaigre", + "id": "fr:rollmops-au-vinaigre", + "url": "https://fr.openfoodfacts.org/categorie/rollmops-au-vinaigre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amers", + "products": 1, + "name": "Amers", + "id": "fr:amers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marinade-de-calamars", + "name": "Marinade-de-calamars", + "id": "fr:marinade-de-calamars", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-thon", + "id": "fr:eminces-de-thon", + "name": "Eminces-de-thon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rochers-coco", + "products": 1, + "id": "fr:rochers-coco", + "name": "Rochers-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:brownies", + "products": 1, + "name": "es:Brownies", + "id": "es:brownies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cardons-en-conserve", + "name": "Cardons-en-conserve", + "id": "fr:cardons-en-conserve", + "products": 1 + }, + { + "id": "fr:poelees-perigourdines", + "name": "Poelees-perigourdines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poelees-perigourdines" + }, + { + "id": "en:lasagnes-preparees", + "name": "en:Lasagnes-preparees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:lasagnes-preparees" + }, + { + "products": 1, + "id": "fr:pappardelles-aux-fromages", + "name": "Pappardelles-aux-fromages", + "url": "https://fr.openfoodfacts.org/categorie/pappardelles-aux-fromages" + }, + { + "name": "Pommes-d-amour", + "id": "fr:pommes-d-amour", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pommes-d-amour" + }, + { + "name": "en:Poelee-de-saint-jacques", + "id": "en:poelee-de-saint-jacques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:poelee-de-saint-jacques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-prepares-a-rechauffer-a-la-poele", + "products": 1, + "id": "en:plats-prepares-a-rechauffer-a-la-poele", + "name": "en:Plats-prepares-a-rechauffer-a-la-poele" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-mi-fins", + "products": 1, + "id": "fr:cornichons-mi-fins", + "name": "Cornichons-mi-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-glacee-sans-lait", + "products": 1, + "id": "fr:creme-glacee-sans-lait", + "name": "Creme-glacee-sans-lait" + }, + { + "products": 1, + "id": "fr:fromages-de-lactoserum", + "name": "Fromages-de-lactoserum", + "url": "https://fr.openfoodfacts.org/categorie/fromages-de-lactoserum" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aubergines-grillees", + "products": 1, + "name": "Aubergines-grillees", + "id": "fr:aubergines-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-legumes", + "products": 1, + "id": "fr:cakes-aux-legumes", + "name": "Cakes-aux-legumes" + }, + { + "products": 1, + "name": "Escalope-milanaise-aux-tagliatelles", + "id": "fr:escalope-milanaise-aux-tagliatelles", + "url": "https://fr.openfoodfacts.org/categorie/escalope-milanaise-aux-tagliatelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-anglais", + "products": 1, + "name": "Fromages-anglais", + "id": "fr:fromages-anglais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-strasbourgeoise", + "products": 1, + "id": "fr:salade-strasbourgeoise", + "name": "Salade-strasbourgeoise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-desserts", + "products": 1, + "name": "en:Cremes-desserts", + "id": "en:cremes-desserts" + }, + { + "name": "Preparation-pour-cappucino", + "id": "fr:preparation-pour-cappucino", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-cappucino" + }, + { + "products": 1, + "name": "Zure-romen", + "id": "fr:zure-romen", + "url": "https://fr.openfoodfacts.org/categorie/zure-romen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/romen", + "products": 1, + "name": "Romen", + "id": "fr:romen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:touron", + "products": 1, + "name": "es:Touron", + "id": "es:touron" + }, + { + "name": "Yaourts-a-la-grecque-ananas-passion", + "id": "fr:yaourts-a-la-grecque-ananas-passion", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-ananas-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-melanges-ananas-passion", + "products": 1, + "name": "Yaourts-aux-fruits-melanges-ananas-passion", + "id": "fr:yaourts-aux-fruits-melanges-ananas-passion" + }, + { + "products": 1, + "id": "fr:haches-de-poissons", + "name": "Haches-de-poissons", + "url": "https://fr.openfoodfacts.org/categorie/haches-de-poissons" + }, + { + "products": 1, + "id": "en:brioches-pur-beurre", + "name": "en:Brioches-pur-beurre", + "url": "https://fr.openfoodfacts.org/categorie/en:brioches-pur-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:riz-au-lait", + "products": 1, + "name": "en:Riz-au-lait", + "id": "en:riz-au-lait" + }, + { + "name": "Chair-a-saucisses", + "id": "fr:chair-a-saucisses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chair-a-saucisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-au-chocolat", + "name": "Riz-au-lait-au-chocolat", + "id": "fr:riz-au-lait-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-et-fraise", + "products": 1, + "id": "fr:jus-d-orange-et-fraise", + "name": "Jus-d-orange-et-fraise" + }, + { + "products": 1, + "id": "fr:saucisses-a-la-bernoise", + "name": "Saucisses-a-la-bernoise", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-a-la-bernoise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalote-coupee", + "id": "fr:echalote-coupee", + "name": "Echalote-coupee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:ice-tea", + "id": "de:ice-tea", + "name": "de:Ice-tea", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aneth-surgele", + "products": 1, + "name": "Aneth surgelé", + "id": "en:frozen-dill" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-celeris", + "products": 1, + "name": "Purees-de-celeris", + "id": "fr:purees-de-celeris" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserves-de-viande", + "name": "Conserves-de-viande", + "id": "fr:conserves-de-viande", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-l-amande", + "name": "Biscuits-a-l-amande", + "id": "fr:biscuits-a-l-amande", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-gout-vanille-nappes-caramel", + "products": 1, + "name": "Flans-gout-vanille-nappes-caramel", + "id": "fr:flans-gout-vanille-nappes-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-en-gelee", + "products": 1, + "name": "Viandes-en-gelee", + "id": "fr:viandes-en-gelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourte-a-la-parisienne", + "name": "Tourte-a-la-parisienne", + "id": "fr:tourte-a-la-parisienne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourte-champignons-jambon", + "name": "Tourte-champignons-jambon", + "id": "fr:tourte-champignons-jambon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-petillant", + "id": "fr:jus-de-pommes-petillant", + "name": "Jus-de-pommes-petillant", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gateau-marbre-au-chocolat", + "products": 1, + "name": "en:Gateau-marbre-au-chocolat", + "id": "en:gateau-marbre-au-chocolat" + }, + { + "products": 1, + "name": "Fondants-au-chocolats", + "id": "fr:fondants-au-chocolats", + "url": "https://fr.openfoodfacts.org/categorie/fondants-au-chocolats" + }, + { + "products": 1, + "id": "fr:pates-au-thon", + "name": "Pates-au-thon", + "url": "https://fr.openfoodfacts.org/categorie/pates-au-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-figues", + "name": "Pains-aux-figues", + "id": "fr:pains-aux-figues", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aromatisees", + "products": 1, + "name": "Pates-aromatisees", + "id": "fr:pates-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscotte-au-ble-complet", + "name": "Biscotte-au-ble-complet", + "id": "fr:biscotte-au-ble-complet", + "products": 1 + }, + { + "products": 1, + "name": "Geitenkazen", + "id": "fr:geitenkazen", + "url": "https://fr.openfoodfacts.org/categorie/geitenkazen" + }, + { + "products": 1, + "id": "fr:preparation-aux-oranges", + "name": "Preparation-aux-oranges", + "url": "https://fr.openfoodfacts.org/categorie/preparation-aux-oranges" + }, + { + "name": "Pate-d-olive", + "id": "fr:pate-d-olive", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-d-olive" + }, + { + "products": 1, + "id": "fr:crepes-au-jambon-et-fromage", + "name": "Crepes-au-jambon-et-fromage", + "url": "https://fr.openfoodfacts.org/categorie/crepes-au-jambon-et-fromage" + }, + { + "products": 1, + "name": "Lait-caille", + "id": "fr:lait-caille", + "url": "https://fr.openfoodfacts.org/categorie/lait-caille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pasteis", + "products": 1, + "name": "Pasteis", + "id": "fr:pasteis" + }, + { + "products": 1, + "id": "fr:moselle-luxembourgeoise", + "name": "Moselle Luxembourgeoise", + "url": "https://fr.openfoodfacts.org/categorie/moselle-luxembourgeoise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chili-paste", + "name": "Chili-paste", + "id": "fr:chili-paste", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-d-eperlans", + "name": "Oeufs-d-eperlans", + "id": "fr:oeufs-d-eperlans", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:produits-a-tartiner-sales", + "name": "da:Produits-a-tartiner-sales", + "id": "da:produits-a-tartiner-sales", + "products": 1 + }, + { + "products": 1, + "name": "en:Corn-thins", + "id": "en:corn-thins", + "url": "https://fr.openfoodfacts.org/categorie/en:corn-thins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:aufschnitt", + "id": "de:aufschnitt", + "name": "de:Aufschnitt", + "products": 1 + }, + { + "products": 1, + "name": "Yaourt-maigre", + "id": "fr:yaourt-maigre", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-maigre" + }, + { + "name": "Beignets-sucres", + "id": "fr:beignets-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beignets-sucres" + }, + { + "id": "fr:chicken-tikka-masala", + "name": "Chicken-tikka-masala", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chicken-tikka-masala" + }, + { + "id": "de:schaumkusse", + "name": "de:Schaumkusse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:schaumkusse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-pommes", + "name": "Yaourts-aux-pommes", + "id": "fr:yaourts-aux-pommes", + "products": 1 + }, + { + "id": "en:kekse-und-kuchen", + "name": "en:Kekse-und-kuchen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:kekse-und-kuchen" + }, + { + "name": "en:Kekse", + "id": "en:kekse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:kekse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/onglet", + "products": 1, + "id": "fr:onglet", + "name": "Onglet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-a-la-mangue", + "products": 1, + "id": "fr:barres-de-cereales-a-la-mangue", + "name": "Barres-de-cereales-a-la-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-poches-entiers", + "id": "fr:oeufs-poches-entiers", + "name": "Oeufs-poches-entiers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-isotonique", + "products": 1, + "name": "Boissons-isotonique", + "id": "fr:boissons-isotonique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moricettes", + "products": 1, + "id": "fr:moricettes", + "name": "Moricettes" + }, + { + "products": 1, + "name": "Thés Fukuju", + "id": "en:fukuju-teas", + "url": "https://fr.openfoodfacts.org/categorie/thes-fukuju" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-nappees-de-chocolat-au-lait", + "name": "Galettes-de-riz-nappees-de-chocolat-au-lait", + "id": "fr:galettes-de-riz-nappees-de-chocolat-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-pois-chiches", + "products": 1, + "name": "Veloutes-de-pois-chiches", + "id": "fr:veloutes-de-pois-chiches" + }, + { + "products": 1, + "name": "Confitures-de-chataignes-et-clementines", + "id": "fr:confitures-de-chataignes-et-clementines", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-chataignes-et-clementines" + }, + { + "products": 1, + "id": "fr:sauces-tomate-a-la-ricotta", + "name": "Sauces-tomate-a-la-ricotta", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomate-a-la-ricotta" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-cocos-roses", + "id": "fr:haricots-cocos-roses", + "name": "Haricots-cocos-roses", + "products": 1 + }, + { + "name": "Cremes-de-poivrons", + "id": "fr:cremes-de-poivrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-poivrons" + }, + { + "name": "it:Vinaigres-balsamiques-de-modene", + "id": "it:vinaigres-balsamiques-de-modene", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigres-balsamiques-de-modene" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poudres-de-caroube", + "products": 1, + "id": "fr:poudres-de-caroube", + "name": "Poudres-de-caroube" + }, + { + "id": "es:feves-frais-surgeles", + "name": "es:Feves-frais-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:feves-frais-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aguas-minerales", + "id": "fr:aguas-minerales", + "name": "Aguas-minerales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-jaunes", + "products": 1, + "name": "Poivrons jaunes", + "id": "en:yellow-bell-peppers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/minceur", + "id": "fr:minceur", + "name": "Minceur", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaches-tranchees-au-chocolat", + "id": "fr:gaches-tranchees-au-chocolat", + "name": "Gaches-tranchees-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macon-solutre-pouilly", + "name": "Mâcon Solutré Pouilly", + "id": "fr:macon-solutre-pouilly", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartiflettes-aux-moules", + "products": 1, + "name": "Tartiflettes-aux-moules", + "id": "fr:tartiflettes-aux-moules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-roobios", + "name": "Thes-roobios", + "id": "fr:thes-roobios", + "products": 1 + }, + { + "products": 1, + "name": "en:Hazelnut-chocolate", + "id": "en:hazelnut-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/en:hazelnut-chocolate" + }, + { + "id": "fr:safte-auf-konzentratbasis", + "name": "Safte-auf-konzentratbasis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/safte-auf-konzentratbasis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nueces-mondadas", + "id": "fr:nueces-mondadas", + "name": "Nueces-mondadas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nueces", + "id": "fr:nueces", + "name": "Nueces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutos-de-cascara-sin-cascara", + "name": "Frutos-de-cascara-sin-cascara", + "id": "fr:frutos-de-cascara-sin-cascara", + "products": 1 + }, + { + "id": "fr:cavas", + "name": "Cavas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cavas" + }, + { + "name": "xx:Snacks-sucres", + "id": "xx:snacks-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:snacks-sucres" + }, + { + "products": 1, + "id": "fr:cervelles", + "name": "Cervelles", + "url": "https://fr.openfoodfacts.org/categorie/cervelles" + }, + { + "name": "xx:Salmiak", + "id": "xx:salmiak", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:salmiak" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-crus-tranches", + "products": 1, + "name": "Jambons-crus-tranches", + "id": "fr:jambons-crus-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:reglisses-salees", + "products": 1, + "id": "xx:reglisses-salees", + "name": "xx:Reglisses-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ginger-ales", + "products": 1, + "name": "Ginger-ales", + "id": "fr:ginger-ales" + }, + { + "id": "fr:boissons-chocolats", + "name": "Boissons-chocolats", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-chocolats" + }, + { + "products": 1, + "name": "Anchoiade", + "id": "fr:anchoiade", + "url": "https://fr.openfoodfacts.org/categorie/anchoiade" + }, + { + "products": 1, + "id": "fr:gateau-de-noel", + "name": "Gateau-de-noel", + "url": "https://fr.openfoodfacts.org/categorie/gateau-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-bio", + "id": "fr:graines-de-courge-bio", + "name": "Graines-de-courge-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ca:india-pale-ale", + "products": 1, + "name": "ca:India-pale-ale", + "id": "ca:india-pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-de-garde", + "id": "fr:vins-de-garde", + "name": "Vins-de-garde", + "products": 1 + }, + { + "name": "Tartes aux fraises", + "id": "en:strawberry-pies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-surgele", + "products": 1, + "name": "Maïs surgelé", + "id": "en:frozen-corn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-aux-noix", + "id": "fr:pain-aux-noix", + "name": "Pain-aux-noix", + "products": 1 + }, + { + "products": 1, + "name": "Filets-de-lotte", + "id": "fr:filets-de-lotte", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-lotte" + }, + { + "id": "fr:dos-de-colin-lieu", + "name": "Dos-de-colin-lieu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dos-de-colin-lieu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dos-d-eglefin-surgeles", + "name": "Dos-d-eglefin-surgeles", + "id": "fr:dos-d-eglefin-surgeles", + "products": 1 + }, + { + "id": "en:pecan-pies", + "name": "Tartes aux noix de pécan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-noix-de-pecan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-sales", + "name": "Crepes-sales", + "id": "fr:crepes-sales", + "products": 1 + }, + { + "products": 1, + "id": "en:frozen-mixed-tropical-fruits", + "name": "Mélanges de fruits tropicaux surgelés", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-tropicaux-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raviolis-japonais", + "id": "fr:raviolis-japonais", + "name": "Raviolis-japonais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumon-en-conserve-a-l-huile-d-olive", + "name": "Saumon-en-conserve-a-l-huile-d-olive", + "id": "fr:saumon-en-conserve-a-l-huile-d-olive", + "products": 1 + }, + { + "name": "Cuisine-japonaise", + "id": "fr:cuisine-japonaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cuisine-japonaise" + }, + { + "name": "Chocolats-fourres-aux-noisettes", + "id": "fr:chocolats-fourres-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-prefrits", + "id": "fr:legumes-prefrits", + "name": "Legumes-prefrits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-canneles", + "id": "fr:preparations-pour-canneles", + "name": "Preparations-pour-canneles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajine-de-patate-douce-surgelee", + "id": "fr:tajine-de-patate-douce-surgelee", + "name": "Tajine-de-patate-douce-surgelee", + "products": 1 + }, + { + "products": 1, + "id": "fr:legumes-pour-potage", + "name": "Legumes-pour-potage", + "url": "https://fr.openfoodfacts.org/categorie/legumes-pour-potage" + }, + { + "products": 1, + "id": "en:tank-engine-molds", + "name": "en:Tank-engine-molds", + "url": "https://fr.openfoodfacts.org/categorie/en:tank-engine-molds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-frits", + "name": "Produits-frits", + "id": "fr:produits-frits", + "products": 1 + }, + { + "products": 1, + "id": "en:honeys-from-the-alps", + "name": "Miels des Alpes", + "url": "https://fr.openfoodfacts.org/categorie/miels-des-alpes" + }, + { + "products": 1, + "name": "en:Kauwgom", + "id": "en:kauwgom", + "url": "https://fr.openfoodfacts.org/categorie/en:kauwgom" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-calamar", + "products": 1, + "id": "fr:beignets-de-calamar", + "name": "Beignets-de-calamar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merlus", + "products": 1, + "id": "fr:merlus", + "name": "Merlus" + }, + { + "name": "Aiguillettes-de-poulet-aux-epices-tandoori", + "id": "fr:aiguillettes-de-poulet-aux-epices-tandoori", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-poulet-aux-epices-tandoori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/4-grenadins-de-veau-surgeles-igp-label-rouge", + "products": 1, + "name": "4-grenadins-de-veau-surgeles-igp-label-rouge", + "id": "fr:4-grenadins-de-veau-surgeles-igp-label-rouge" + }, + { + "name": "Escalopes-de-veau-hache", + "id": "fr:escalopes-de-veau-hache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/escalopes-de-veau-hache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-porc-francaise-vpf", + "id": "fr:viande-de-porc-francaise-vpf", + "name": "Viande-de-porc-francaise-vpf", + "products": 1 + }, + { + "products": 1, + "id": "fr:tomates-surgelees", + "name": "Tomates-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/tomates-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/reismilch", + "products": 1, + "name": "Reismilch", + "id": "fr:reismilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:foies-gras-de-canard", + "name": "es:Foies-gras-de-canard", + "id": "es:foies-gras-de-canard", + "products": 1 + }, + { + "products": 1, + "id": "fr:plats-aux-legumes", + "name": "Plats-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/plats-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-coquillettes", + "name": "Gratins-de-coquillettes", + "id": "fr:gratins-de-coquillettes", + "products": 1 + }, + { + "name": "Parmentier-au-potiron-et-poulet-grille", + "id": "fr:parmentier-au-potiron-et-poulet-grille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/parmentier-au-potiron-et-poulet-grille" + }, + { + "products": 1, + "name": "Preparations-a-base-de-pomme-de-terre", + "id": "fr:preparations-a-base-de-pomme-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-pomme-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-aux-deux-courgettes-et-pommes-de-terre", + "id": "fr:purees-aux-deux-courgettes-et-pommes-de-terre", + "name": "Purees-aux-deux-courgettes-et-pommes-de-terre", + "products": 1 + }, + { + "id": "de:farines-de-cereales", + "name": "de:Farines-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:farines-de-cereales" + }, + { + "products": 1, + "id": "fr:gratin-de-legume-a-la-provencale", + "name": "Gratin-de-legume-a-la-provencale", + "url": "https://fr.openfoodfacts.org/categorie/gratin-de-legume-a-la-provencale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-saint-jacques-preparees", + "products": 1, + "id": "fr:noix-de-saint-jacques-preparees", + "name": "Noix-de-saint-jacques-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frozen-snacks-aperitifs", + "id": "fr:frozen-snacks-aperitifs", + "name": "Frozen-snacks-aperitifs", + "products": 1 + }, + { + "products": 1, + "name": "Pruneau recouvert de chocolat", + "id": "en:chocolate-covered-prune", + "sameAs": [ + "https://www.wikidata.org/wiki/Q16826630" + ], + "url": "https://fr.openfoodfacts.org/categorie/pruneau-recouvert-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-au-chevre", + "name": "Gnocchis-au-chevre", + "id": "fr:gnocchis-au-chevre", + "products": 1 + }, + { + "name": "Barres-chocolatees-lactees", + "id": "fr:barres-chocolatees-lactees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-lactees" + }, + { + "products": 1, + "id": "fr:entrees-surgelees", + "name": "Entrees-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/entrees-surgelees" + }, + { + "products": 1, + "name": "es:Barre-de-cereales-au-chocolat", + "id": "es:barre-de-cereales-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/es:barre-de-cereales-au-chocolat" + }, + { + "products": 1, + "id": "fr:gnocchis-au-pesto", + "name": "Gnocchis-au-pesto", + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-au-pesto" + }, + { + "id": "fr:empanadas", + "name": "Empanadas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/empanadas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pandas-en-chocolat", + "products": 1, + "name": "Pandas-en-chocolat", + "id": "fr:pandas-en-chocolat" + }, + { + "name": "Cuisine-mexicaine", + "id": "fr:cuisine-mexicaine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cuisine-mexicaine" + }, + { + "id": "fr:soupes-au-homard", + "name": "Soupes-au-homard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-au-homard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourte-canard-cepes-bloc-de-foie-gras-de-canard", + "name": "Tourte-canard-cepes-bloc-de-foie-gras-de-canard", + "id": "fr:tourte-canard-cepes-bloc-de-foie-gras-de-canard", + "products": 1 + }, + { + "products": 1, + "id": "fr:mini-bagels-surgeles", + "name": "Mini-bagels-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/mini-bagels-surgeles" + }, + { + "id": "it:produits-artisanaux", + "name": "it:Produits-artisanaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:produits-artisanaux" + }, + { + "id": "fr:semoule-cuisinee-surgelee", + "name": "Semoule-cuisinee-surgelee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/semoule-cuisinee-surgelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalotes-surgelees", + "id": "fr:echalotes-surgelees", + "name": "Echalotes-surgelees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-banane-plantain", + "name": "Chips-de-banane-plantain", + "id": "fr:chips-de-banane-plantain", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/patisseries-surgelees-a-cuire", + "id": "fr:patisseries-surgelees-a-cuire", + "name": "Patisseries-surgelees-a-cuire", + "products": 1 + }, + { + "products": 1, + "id": "fr:repas", + "name": "Repas", + "url": "https://fr.openfoodfacts.org/categorie/repas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortelini", + "products": 1, + "name": "Tortelini", + "id": "fr:tortelini" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:feuilletes-chevre-epinards", + "products": 1, + "name": "en:Feuilletes-chevre-epinards", + "id": "en:feuilletes-chevre-epinards" + }, + { + "products": 1, + "id": "fr:grisets", + "name": "Grisets", + "url": "https://fr.openfoodfacts.org/categorie/grisets" + }, + { + "products": 1, + "name": "Paniers-feuilletes-fromage-de-chevre", + "id": "fr:paniers-feuilletes-fromage-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes-fromage-de-chevre" + }, + { + "products": 1, + "name": "Mini-feuilletes-aperitifs-surgeles", + "id": "fr:mini-feuilletes-aperitifs-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/mini-feuilletes-aperitifs-surgeles" + }, + { + "name": "Jus-de-batterie", + "id": "fr:jus-de-batterie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-batterie" + }, + { + "id": "fr:loukoum", + "name": "Loukoum", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/loukoum" + }, + { + "products": 1, + "name": "Legumes-cuisines-surgeles", + "id": "fr:legumes-cuisines-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/legumes-cuisines-surgeles" + }, + { + "name": "Pistaches-grillees-salees", + "id": "fr:pistaches-grillees-salees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pistaches-grillees-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-en-brique", + "name": "Soupes-en-brique", + "id": "fr:soupes-en-brique", + "products": 1 + }, + { + "products": 1, + "name": "Aromes-de-rose", + "id": "fr:aromes-de-rose", + "url": "https://fr.openfoodfacts.org/categorie/aromes-de-rose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-superieur-au-lait", + "name": "Chocolat-superieur-au-lait", + "id": "fr:chocolat-superieur-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fliere-qualite", + "products": 1, + "name": "Fliere-qualite", + "id": "fr:fliere-qualite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:bonbons-de-chocolat", + "products": 1, + "name": "ja:Bonbons-de-chocolat", + "id": "ja:bonbons-de-chocolat" + }, + { + "name": "de:Torsades", + "id": "de:torsades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:torsades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pointes-d-asperges", + "id": "fr:pointes-d-asperges", + "name": "Pointes-d-asperges", + "products": 1 + }, + { + "products": 1, + "name": "Biscuits-aux-oeufs", + "id": "fr:biscuits-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bles-dur-precuits", + "products": 1, + "name": "en:Bles-dur-precuits", + "id": "en:bles-dur-precuits" + }, + { + "id": "fr:queues-de-veau", + "name": "Queues-de-veau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/queues-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brocolis-en-conserve", + "name": "Brocolis-en-conserve", + "id": "fr:brocolis-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-l-argousier", + "id": "fr:sorbets-a-l-argousier", + "name": "Sorbets-a-l-argousier", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-bouches-de-normandie-brut", + "products": 1, + "id": "fr:cidres-bouches-de-normandie-brut", + "name": "Cidres-bouches-de-normandie-brut" + }, + { + "id": "fr:porto-ruby", + "name": "Porto Ruby", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/porto-ruby" + }, + { + "products": 1, + "name": "Porto réductifs", + "id": "fr:porto-reductifs", + "url": "https://fr.openfoodfacts.org/categorie/porto-reductifs" + }, + { + "name": "Paves-de-biche", + "id": "fr:paves-de-biche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paves-de-biche" + }, + { + "products": 1, + "name": "Spaghettis-frais", + "id": "fr:spaghettis-frais", + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-frais" + }, + { + "name": "Creme-sucree", + "id": "fr:creme-sucree", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-sucree" + }, + { + "id": "fr:vinaigre-de-vin-bio", + "name": "Vinaigre-de-vin-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigre-de-vin-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits-pour-taboules", + "name": "Kits-pour-taboules", + "id": "fr:kits-pour-taboules", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigre-de-cidre-bio", + "products": 1, + "id": "fr:vinaigre-de-cidre-bio", + "name": "Vinaigre-de-cidre-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-fruit-de-la-passion", + "products": 1, + "name": "Sirops-de-fruit-de-la-passion", + "id": "fr:sirops-de-fruit-de-la-passion" + }, + { + "id": "fr:fromage-frais-allege", + "name": "Fromage-frais-allege", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-allege" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:poitrines-de-porc", + "products": 1, + "id": "en:poitrines-de-porc", + "name": "en:Poitrines-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolate-bell", + "id": "fr:chocolate-bell", + "name": "Chocolate-bell", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-poisson", + "id": "fr:terrine-de-poisson", + "name": "Terrine-de-poisson", + "products": 1 + }, + { + "products": 1, + "name": "it:Aliments-a-base-de-fruits-et-de-legumes", + "id": "it:aliments-a-base-de-fruits-et-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:assaisonnements", + "products": 1, + "id": "de:assaisonnements", + "name": "de:Assaisonnements" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:preparados-para-reposteria", + "products": 1, + "name": "es:Preparados-para-reposteria", + "id": "es:preparados-para-reposteria" + }, + { + "name": "Lirac", + "id": "fr:lirac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lirac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3242328" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:lardons-fumes-de-volaille", + "products": 1, + "name": "en:Lardons-fumes-de-volaille", + "id": "en:lardons-fumes-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ciabatta", + "id": "en:ciabatta", + "name": "en:Ciabatta", + "products": 1 + }, + { + "name": "Pommes-de-terre-categorie-2", + "id": "fr:pommes-de-terre-categorie-2", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-categorie-2" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-artemis", + "products": 1, + "name": "Pommes-de-terre-artemis", + "id": "fr:pommes-de-terre-artemis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectarines-blanche", + "id": "fr:nectarines-blanche", + "name": "Nectarines-blanche", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-au-mais", + "name": "Pain-au-mais", + "id": "fr:pain-au-mais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-au-son", + "id": "fr:pains-au-son", + "name": "Pains-au-son", + "products": 1 + }, + { + "name": "Baguette-cereales", + "id": "fr:baguette-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/baguette-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baguettes-aux-cereales", + "name": "Baguettes-aux-cereales", + "id": "fr:baguettes-aux-cereales", + "products": 1 + }, + { + "id": "fr:carottes-fraiches", + "name": "Carottes-fraiches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carottes-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:flageolets-en-conserve", + "products": 1, + "name": "en:Flageolets-en-conserve", + "id": "en:flageolets-en-conserve" + }, + { + "products": 1, + "id": "fr:tripes-cuisinees", + "name": "Tripes-cuisinees", + "url": "https://fr.openfoodfacts.org/categorie/tripes-cuisinees" + }, + { + "products": 1, + "id": "fr:grignotins", + "name": "Grignotins", + "url": "https://fr.openfoodfacts.org/categorie/grignotins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quart-maroilles", + "products": 1, + "name": "Quart-maroilles", + "id": "fr:quart-maroilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/no:boissons", + "id": "no:boissons", + "name": "no:Boissons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flammekueches-aux-noix-de-st-jacques", + "id": "fr:flammekueches-aux-noix-de-st-jacques", + "name": "Flammekueches-aux-noix-de-st-jacques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crackers-sans-gluten", + "name": "en:Crackers-sans-gluten", + "id": "en:crackers-sans-gluten", + "products": 1 + }, + { + "products": 1, + "name": "Potages-aux-chataignes", + "id": "fr:potages-aux-chataignes", + "url": "https://fr.openfoodfacts.org/categorie/potages-aux-chataignes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-sarrasin", + "id": "fr:creme-de-sarrasin", + "name": "Creme-de-sarrasin", + "products": 1 + }, + { + "name": "Sirops d'orge malté", + "id": "en:barley-malt-syrup", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-orge-malte", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3485291" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chorizos-de-dinde", + "products": 1, + "id": "fr:chorizos-de-dinde", + "name": "Chorizos-de-dinde" + }, + { + "products": 1, + "id": "fr:sodas-a-l-anis", + "name": "Sodas-a-l-anis", + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-l-anis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-fruitiers-pour-bebe", + "products": 1, + "id": "fr:desserts-fruitiers-pour-bebe", + "name": "Desserts-fruitiers-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-a-la-banane", + "name": "Yaourts de soja à la banane", + "id": "en:banana-soy-yogurts", + "products": 1 + }, + { + "products": 1, + "name": "de:Spaghetti-mit-tomatensauce", + "id": "de:spaghetti-mit-tomatensauce", + "url": "https://fr.openfoodfacts.org/categorie/de:spaghetti-mit-tomatensauce" + }, + { + "products": 1, + "name": "Yaourts-de-soja-sur-lit-d-abricot", + "id": "fr:yaourts-de-soja-sur-lit-d-abricot", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-sur-lit-d-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-glacee-bio-au-chocolat", + "products": 1, + "id": "fr:creme-glacee-bio-au-chocolat", + "name": "Creme-glacee-bio-au-chocolat" + }, + { + "id": "fr:bieres-des-flandres", + "name": "Bieres-des-flandres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-des-flandres" + }, + { + "products": 1, + "id": "fr:steaks-vegetales", + "name": "Steaks-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/steaks-vegetales" + }, + { + "products": 1, + "name": "Specialite-a-base-de-soja", + "id": "fr:specialite-a-base-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/specialite-a-base-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-aux-pruneaux", + "products": 1, + "id": "fr:yaourts-de-soja-aux-pruneaux", + "name": "Yaourts-de-soja-aux-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-dinde-eminces", + "id": "fr:filets-de-dinde-eminces", + "name": "Filets-de-dinde-eminces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-pour-pates", + "id": "de:sauces-pour-pates", + "name": "de:Sauces-pour-pates", + "products": 1 + }, + { + "products": 1, + "id": "fr:yaourts-aux-fruits-et-cereales", + "name": "Yaourts-aux-fruits-et-cereales", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-et-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-aux-figues", + "id": "fr:yaourts-de-soja-aux-figues", + "name": "Yaourts-de-soja-aux-figues", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haches-vegetaux", + "products": 1, + "id": "fr:haches-vegetaux", + "name": "Haches-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-aux-fruits-tropicaux", + "name": "Yaourts soja aux fruits tropicaux", + "id": "en:tropical-fruits-soy-yogurts", + "products": 1 + }, + { + "products": 1, + "name": "es:Preparations-pour-desserts-lactes", + "id": "es:preparations-pour-desserts-lactes", + "url": "https://fr.openfoodfacts.org/categorie/es:preparations-pour-desserts-lactes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-bio", + "name": "Yaourts-bio", + "id": "fr:yaourts-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/leerdammer", + "id": "fr:leerdammer", + "name": "Leerdammer", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-en-chocolats", + "name": "Oeufs-en-chocolats", + "id": "fr:oeufs-en-chocolats", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tranchees", + "products": 1, + "name": "Tranchees", + "id": "fr:tranchees" + }, + { + "products": 1, + "name": "Dosettes-de-chocolat-chaud", + "id": "fr:dosettes-de-chocolat-chaud", + "url": "https://fr.openfoodfacts.org/categorie/dosettes-de-chocolat-chaud" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1151015" + ], + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-vivarais", + "products": 1, + "id": "fr:cotes-du-vivarais", + "name": "Côtes du Vivarais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rouge-d-ardeche", + "products": 1, + "id": "fr:vin-rouge-d-ardeche", + "name": "Vin-rouge-d-ardeche" + }, + { + "name": "Fromages-a-pate-molle-a-croute-mixte", + "id": "fr:fromages-a-pate-molle-a-croute-mixte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-molle-a-croute-mixte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miel-de-manuka", + "products": 1, + "id": "fr:miel-de-manuka", + "name": "Miel-de-manuka" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisson-aux-noix", + "products": 1, + "name": "Saucisson-aux-noix", + "id": "fr:saucisson-aux-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bigarreaux-rouges-confits", + "products": 1, + "id": "fr:bigarreaux-rouges-confits", + "name": "Bigarreaux-rouges-confits" + }, + { + "products": 1, + "id": "fr:bigarreaux", + "name": "Bigarreaux", + "url": "https://fr.openfoodfacts.org/categorie/bigarreaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dos-de-colin-d-alaska", + "products": 1, + "name": "Dos-de-colin-d-alaska", + "id": "fr:dos-de-colin-d-alaska" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filet-americain", + "name": "Filet-americain", + "id": "fr:filet-americain", + "products": 1 + }, + { + "id": "fr:yaourts-a-la-praline", + "name": "Yaourts-a-la-praline", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-praline" + }, + { + "name": "Terrine-de-campagne-au-piment-d-espelette", + "id": "fr:terrine-de-campagne-au-piment-d-espelette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-campagne-au-piment-d-espelette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin-blanc", + "products": 1, + "id": "fr:jus-de-raisin-blanc", + "name": "Jus-de-raisin-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/patisserie-au-levain", + "id": "fr:patisserie-au-levain", + "name": "Patisserie-au-levain", + "products": 1 + }, + { + "id": "fr:sirops-de-kiwi-fraise", + "name": "Sirops-de-kiwi-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-kiwi-fraise" + }, + { + "name": "sr:Boissons-gazeuses", + "id": "sr:boissons-gazeuses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sr:boissons-gazeuses" + }, + { + "id": "fr:boisson-sucree-non-alcoolisee", + "name": "Boisson-sucree-non-alcoolisee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-sucree-non-alcoolisee" + }, + { + "products": 1, + "name": "en:Noix-de-coco-seches", + "id": "en:noix-de-coco-seches", + "url": "https://fr.openfoodfacts.org/categorie/en:noix-de-coco-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bottled-drinking-water", + "products": 1, + "id": "en:bottled-drinking-water", + "name": "en:Bottled-drinking-water" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-base-de-frutas", + "id": "fr:sodas-a-base-de-frutas", + "name": "Sodas-a-base-de-frutas", + "products": 1 + }, + { + "products": 1, + "id": "fr:bebidas-de-origen-vegetal", + "name": "Bebidas-de-origen-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/bebidas-de-origen-vegetal" + }, + { + "products": 1, + "name": "Sodas-aux-concentres-de-jus-de-fruit", + "id": "fr:sodas-aux-concentres-de-jus-de-fruit", + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-concentres-de-jus-de-fruit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sodas-a-l-orange-light", + "id": "de:sodas-a-l-orange-light", + "name": "de:Sodas-a-l-orange-light", + "products": 1 + }, + { + "name": "ar:Boissons", + "id": "ar:boissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ar:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nero-d-avola", + "id": "de:nero-d-avola", + "name": "de:Nero-d-avola", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:morues", + "name": "de:Morues", + "id": "de:morues", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chutneys", + "products": 1, + "name": "en:Chutneys", + "id": "en:chutneys" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/uk:snacks-sucres", + "name": "uk:Snacks-sucres", + "id": "uk:snacks-sucres", + "products": 1 + }, + { + "name": "uk:Aliments-d-origine-vegetale", + "id": "uk:aliments-d-origine-vegetale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/uk:aliments-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-a-l-ail", + "products": 1, + "name": "Pain-a-l-ail", + "id": "fr:pain-a-l-ail" + }, + { + "id": "de:frutos-de-cascara-y-derivados", + "name": "de:Frutos-de-cascara-y-derivados", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:frutos-de-cascara-y-derivados" + }, + { + "products": 1, + "id": "de:frutos-de-cascara", + "name": "de:Frutos-de-cascara", + "url": "https://fr.openfoodfacts.org/categorie/de:frutos-de-cascara" + }, + { + "products": 1, + "id": "fr:pommes-de-terre-sautees", + "name": "Pommes-de-terre-sautees", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-sautees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-miels", + "name": "Melanges-de-miels", + "id": "fr:melanges-de-miels", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-sans-alcool-aromatisees", + "products": 1, + "name": "Bieres-sans-alcool-aromatisees", + "id": "fr:bieres-sans-alcool-aromatisees" + }, + { + "products": 1, + "id": "it:biere", + "name": "it:Biere", + "url": "https://fr.openfoodfacts.org/categorie/it:biere" + }, + { + "name": "Biere-blonde-aromatisee-poire", + "id": "fr:biere-blonde-aromatisee-poire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biere-blonde-aromatisee-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entres-froides", + "products": 1, + "name": "Entres-froides", + "id": "fr:entres-froides" + }, + { + "products": 1, + "name": "Poelee-de-legumes-surgelee", + "id": "fr:poelee-de-legumes-surgelee", + "url": "https://fr.openfoodfacts.org/categorie/poelee-de-legumes-surgelee" + }, + { + "name": "Confits-d-aubergines", + "id": "fr:confits-d-aubergines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-d-aubergines" + }, + { + "products": 1, + "name": "Mais-grille-et-sale", + "id": "fr:mais-grille-et-sale", + "url": "https://fr.openfoodfacts.org/categorie/mais-grille-et-sale" + }, + { + "products": 1, + "id": "fr:courgettes-en-conserve", + "name": "Courgettes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:farines-d-epeautre", + "products": 1, + "id": "de:farines-d-epeautre", + "name": "de:Farines-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-melangees", + "products": 1, + "name": "Salades-melangees", + "id": "fr:salades-melangees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-flageolets-cuisines", + "name": "Haricots-flageolets-cuisines", + "id": "fr:haricots-flageolets-cuisines", + "products": 1 + }, + { + "products": 1, + "id": "fr:poelees-rustiques", + "name": "Poelees-rustiques", + "url": "https://fr.openfoodfacts.org/categorie/poelees-rustiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:%D0%BC%D0%B0%D0%BA%D0%B0%D1%80%D0%BE%D0%BD%D0%BD%D1%8B%D0%B5-%D0%B8%D0%B7%D0%B4%D0%B5%D0%BB%D0%B8%D1%8F-%D1%81%D0%BF%D0%B0%D0%B3%D0%B5%D1%82%D1%82%D0%B8-%D0%B3%D1%80%D1%83%D0%BF%D0%BF%D0%B0-%D0%B0-%D0%B2%D1%8B%D1%81%D1%88%D0%B8%D0%B9-%D1%81%D0%BE%D1%80%D1%82", + "name": "it:Макаронные-изделия-спагетти-группа-а-высший-сорт", + "id": "it:макаронные-изделия-спагетти-группа-а-высший-сорт", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparations-de-viande-porcine", + "name": "Preparations-de-viande-porcine", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-porcine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frozen-spinach-leaves", + "products": 1, + "name": "Frozen spinach leaves", + "id": "en:frozen-spinach-leaves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:salat", + "products": 1, + "name": "de:Salat", + "id": "de:salat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/alfajores", + "sameAs": [ + "https://www.wikidata.org/wiki/Q938682" + ], + "products": 1, + "name": "Alfajores", + "id": "en:alfajores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisine-chinoise", + "products": 1, + "id": "fr:cuisine-chinoise", + "name": "Cuisine-chinoise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pettis-fours-surgeles", + "id": "fr:pettis-fours-surgeles", + "name": "Pettis-fours-surgeles", + "products": 1 + }, + { + "name": "Redbull", + "id": "fr:redbull", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/redbull" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricot-rouge-du-japon", + "products": 1, + "id": "fr:haricot-rouge-du-japon", + "name": "Haricot-rouge-du-japon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:charcuteries-vegetariennes", + "id": "de:charcuteries-vegetariennes", + "name": "de:Charcuteries-vegetariennes", + "products": 1 + }, + { + "id": "fr:levain", + "name": "Levain", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/levain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-porcelet", + "products": 1, + "name": "Beignets-de-porcelet", + "id": "fr:beignets-de-porcelet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/millet-jaune", + "id": "fr:millet-jaune", + "name": "Millet-jaune", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-tete", + "name": "en:Pates-de-tete", + "id": "en:pates-de-tete", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pate-de-tete-persille", + "products": 1, + "id": "en:pate-de-tete-persille", + "name": "en:Pate-de-tete-persille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:frutas-del-bosque-congeladas", + "products": 1, + "name": "xx:Frutas-del-bosque-congeladas", + "id": "xx:frutas-del-bosque-congeladas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tetes-de-porc", + "name": "Tetes-de-porc", + "id": "fr:tetes-de-porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoules-d-orge", + "products": 1, + "id": "fr:semoules-d-orge", + "name": "Semoules-d-orge" + }, + { + "products": 1, + "id": "fr:puy-de-dome", + "name": "Puy de Dôme", + "url": "https://fr.openfoodfacts.org/categorie/puy-de-dome", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3411072" + ] + }, + { + "name": "Chocolats-au-lait-fourres-a-la-noix-de-coco", + "id": "fr:chocolats-au-lait-fourres-a-la-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-a-la-noix-de-coco" + }, + { + "id": "fr:bourgogne-clairet", + "name": "Bourgogne Clairet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-clairet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambons-blancs", + "products": 1, + "id": "en:jambons-blancs", + "name": "en:Jambons-blancs" + }, + { + "products": 1, + "id": "en:sels-naturels", + "name": "en:Sels-naturels", + "url": "https://fr.openfoodfacts.org/categorie/en:sels-naturels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lingots-du-nord", + "name": "Lingots-du-nord", + "id": "fr:lingots-du-nord", + "products": 1 + }, + { + "products": 1, + "name": "Pates-lorrains", + "id": "fr:pates-lorrains", + "url": "https://fr.openfoodfacts.org/categorie/pates-lorrains" + }, + { + "products": 1, + "id": "fr:kiwis-de-l-adour", + "name": "Kiwis-de-l-adour", + "url": "https://fr.openfoodfacts.org/categorie/kiwis-de-l-adour" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-marrons", + "name": "Gateaux-aux-marrons", + "id": "fr:gateaux-aux-marrons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comme-un-fromage", + "name": "Comme-un-fromage", + "id": "fr:comme-un-fromage", + "products": 1 + }, + { + "products": 1, + "name": "Pates-aux-piments", + "id": "fr:pates-aux-piments", + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-piments" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:sodas-au-gingembre", + "id": "sv:sodas-au-gingembre", + "name": "sv:Sodas-au-gingembre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cookies-au-chocolat", + "id": "es:cookies-au-chocolat", + "name": "es:Cookies-au-chocolat", + "products": 1 + }, + { + "id": "fr:alsace-grand-cru", + "name": "Alsace Grand Cru", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q1596430" + ], + "url": "https://fr.openfoodfacts.org/categorie/alsace-grand-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/harengs-doux-en-filets", + "name": "Harengs-doux-en-filets", + "id": "fr:harengs-doux-en-filets", + "products": 1 + }, + { + "products": 1, + "name": "Harengs-doux", + "id": "fr:harengs-doux", + "url": "https://fr.openfoodfacts.org/categorie/harengs-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parmentiers-de-saumon", + "id": "fr:parmentiers-de-saumon", + "name": "Parmentiers-de-saumon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/supplements", + "products": 1, + "name": "Supplements", + "id": "fr:supplements" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-de-framboise-et-de-cranberry", + "products": 1, + "id": "fr:sirop-de-framboise-et-de-cranberry", + "name": "Sirop-de-framboise-et-de-cranberry" + }, + { + "name": "Saumons-cuisines", + "id": "fr:saumons-cuisines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saumons-cuisines" + }, + { + "products": 1, + "id": "en:cranberry-drink", + "name": "en:Cranberry-drink", + "url": "https://fr.openfoodfacts.org/categorie/en:cranberry-drink" + }, + { + "id": "ro:chocolats", + "name": "ro:Chocolats", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:chocolats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poires-confites", + "name": "Poires-confites", + "id": "fr:poires-confites", + "products": 1 + }, + { + "id": "fr:gouters-individuels", + "name": "Gouters-individuels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gouters-individuels" + }, + { + "products": 1, + "name": "nl:Eaux-minerales", + "id": "nl:eaux-minerales", + "url": "https://fr.openfoodfacts.org/categorie/nl:eaux-minerales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:topping", + "products": 1, + "name": "de:Topping", + "id": "de:topping" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chilli-con-carne", + "products": 1, + "id": "en:chilli-con-carne", + "name": "en:Chilli-con-carne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:raviolis-aux-crevettes", + "name": "en:Raviolis-aux-crevettes", + "id": "en:raviolis-aux-crevettes", + "products": 1 + }, + { + "products": 1, + "name": "en:Gyozas", + "id": "en:gyozas", + "url": "https://fr.openfoodfacts.org/categorie/en:gyozas" + }, + { + "id": "de:riz-au-lait", + "name": "de:Riz-au-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:riz-au-lait" + }, + { + "id": "fr:pains-azymes-extra-fins", + "name": "Pains azymes extra fins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-extra-fins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fumets-de-poissons", + "id": "fr:fumets-de-poissons", + "name": "Fumets-de-poissons", + "products": 1 + }, + { + "products": 1, + "name": "en:Haggis", + "id": "en:haggis", + "url": "https://fr.openfoodfacts.org/categorie/en:haggis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:malt-vinegar", + "name": "en:Malt-vinegar", + "id": "en:malt-vinegar", + "products": 1 + }, + { + "products": 1, + "id": "ru:шоколад-молочный-с-фундуком-и-изюмом", + "name": "ru:Шоколад-молочный-с-фундуком-и-изюмом", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D1%8B%D0%B9-%D1%81-%D1%84%D1%83%D0%BD%D0%B4%D1%83%D0%BA%D0%BE%D0%BC-%D0%B8-%D0%B8%D0%B7%D1%8E%D0%BC%D0%BE%D0%BC" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:%D0%BF%D0%B8%D0%B2%D0%BE", + "products": 1, + "name": "de:Пиво", + "id": "de:пиво" + }, + { + "name": "ru:Vodkas-russes", + "id": "ru:vodkas-russes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:vodkas-russes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:eaux-de-vie", + "products": 1, + "name": "ru:Eaux-de-vie", + "id": "ru:eaux-de-vie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fortune-cookies", + "id": "fr:fortune-cookies", + "name": "Fortune-cookies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-dessert", + "products": 1, + "name": "Sauce-dessert", + "id": "fr:sauce-dessert" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2511331" + ], + "url": "https://fr.openfoodfacts.org/categorie/tula-gingerbread", + "products": 1, + "name": "Tula gingerbread", + "id": "en:tula-gingerbread" + }, + { + "products": 1, + "name": "ru:Подсолнечные-семечки-жареные-солёные", + "id": "ru:подсолнечные-семечки-жареные-солёные", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BF%D0%BE%D0%B4%D1%81%D0%BE%D0%BB%D0%BD%D0%B5%D1%87%D0%BD%D1%8B%D0%B5-%D1%81%D0%B5%D0%BC%D0%B5%D1%87%D0%BA%D0%B8-%D0%B6%D0%B0%D1%80%D0%B5%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE%D0%BB%D1%91%D0%BD%D1%8B%D0%B5" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-decortiquees-grillees", + "name": "Graines de tournesol décortiquées grillées", + "id": "en:roasted-shelled-sunflower-seeds", + "products": 1 + }, + { + "products": 1, + "name": "ru:Сухарики-ржаные-со-вкусом-сыра", + "id": "ru:сухарики-ржаные-со-вкусом-сыра", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D1%81%D1%8B%D1%80%D0%B0" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:brotchips-mit-kase-aroma", + "products": 1, + "id": "de:brotchips-mit-kase-aroma", + "name": "de:Brotchips-mit-kase-aroma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:plats-a-base-de-crevettes", + "products": 1, + "id": "en:plats-a-base-de-crevettes", + "name": "en:Plats-a-base-de-crevettes" + }, + { + "id": "ru:сухарики-ржаные-со-вкусом-холодца-с-хреном", + "name": "ru:Сухарики-ржаные-со-вкусом-холодца-с-хреном", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D1%85%D0%BE%D0%BB%D0%BE%D0%B4%D1%86%D0%B0-%D1%81-%D1%85%D1%80%D0%B5%D0%BD%D0%BE%D0%BC" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D0%B2%D0%B5%D1%82%D1%87%D0%B8%D0%BD%D1%8B-%D1%81-%D1%81%D1%8B%D1%80%D0%BE%D0%BC", + "products": 1, + "name": "ru:Сухарики-ржаные-со-вкусом-ветчины-с-сыром", + "id": "ru:сухарики-ржаные-со-вкусом-ветчины-с-сыром" + }, + { + "products": 1, + "id": "ru:сухарики-пшеничные-со-вкусом-бекона", + "name": "ru:Сухарики-пшеничные-со-вкусом-бекона", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D0%BF%D1%88%D0%B5%D0%BD%D0%B8%D1%87%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D0%B1%D0%B5%D0%BA%D0%BE%D0%BD%D0%B0" + }, + { + "products": 1, + "name": "Muscat de Frontignan", + "id": "fr:muscat-de-frontignan", + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-frontignan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1954036" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%B3%D0%BE%D1%80%D1%8C%D0%BA%D0%B8%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4-%D1%81-%D0%BC%D0%B8%D0%BD%D0%B4%D0%B0%D0%BB%D1%91%D0%BC-75-%D0%BA%D0%B0%D0%BA%D0%B0%D0%BE", + "products": 1, + "id": "ru:горький-шоколад-с-миндалём-75-какао", + "name": "ru:Горький-шоколад-с-миндалём-75-какао" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:viandes-en-conserve", + "id": "it:viandes-en-conserve", + "name": "it:Viandes-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%B3%D0%BE%D1%80%D1%8C%D0%BA%D0%B8%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4-%D1%81-%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8", + "products": 1, + "name": "ru:Горький-шоколад-с-добавлениями", + "id": "ru:горький-шоколад-с-добавлениями" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chocolat-noir-aux-amandes-75-cacao", + "products": 1, + "id": "ru:chocolat-noir-aux-amandes-75-cacao", + "name": "ru:Chocolat-noir-aux-amandes-75-cacao" + }, + { + "id": "es:produits-fermentes", + "name": "es:Produits-fermentes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:produits-fermentes" + }, + { + "products": 1, + "id": "en:fruit-and-nut-muesli-bar", + "name": "en:Fruit-and-nut-muesli-bar", + "url": "https://fr.openfoodfacts.org/categorie/en:fruit-and-nut-muesli-bar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tortitas-de-cereales", + "products": 1, + "name": "en:Tortitas-de-cereales", + "id": "en:tortitas-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:madeleines-a-la-framboise", + "name": "en:Madeleines-a-la-framboise", + "id": "en:madeleines-a-la-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-semoule-de-riz", + "products": 1, + "id": "fr:gateaux-de-semoule-de-riz", + "name": "Gateaux-de-semoule-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tortitas-de-arroz", + "id": "en:tortitas-de-arroz", + "name": "en:Tortitas-de-arroz", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-son-d-avoine", + "id": "fr:galettes-de-son-d-avoine", + "name": "Galettes-de-son-d-avoine", + "products": 1 + }, + { + "id": "en:filets-de-poissons", + "name": "en:Filets-de-poissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:filets-de-poissons" + }, + { + "products": 1, + "name": "Cumberland-sausages", + "id": "fr:cumberland-sausages", + "url": "https://fr.openfoodfacts.org/categorie/cumberland-sausages" + }, + { + "products": 1, + "id": "it:frollini-al-cioccolato", + "name": "it:Frollini-al-cioccolato", + "url": "https://fr.openfoodfacts.org/categorie/it:frollini-al-cioccolato" + }, + { + "products": 1, + "name": "es:Chocolate-con-leche-con-avellanas-gianduia", + "id": "es:chocolate-con-leche-con-avellanas-gianduia", + "url": "https://fr.openfoodfacts.org/categorie/es:chocolate-con-leche-con-avellanas-gianduia" + }, + { + "id": "it:jus-et-nectars-de-fruits", + "name": "it:Jus-et-nectars-de-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:jus-et-nectars-de-fruits" + }, + { + "name": "it:Jus-et-nectars", + "id": "it:jus-et-nectars", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:jus-et-nectars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:jus-de-pomme-a-base-de-concentre", + "products": 1, + "id": "it:jus-de-pomme-a-base-de-concentre", + "name": "it:Jus-de-pomme-a-base-de-concentre" + }, + { + "name": "it:Jus-de-pomme", + "id": "it:jus-de-pomme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:jus-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:jus-de-fruits", + "products": 1, + "id": "it:jus-de-fruits", + "name": "it:Jus-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-aux-fruits", + "name": "it:Boissons-aux-fruits", + "id": "it:boissons-aux-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orecchiettes", + "products": 1, + "id": "fr:orecchiettes", + "name": "Orecchiettes" + }, + { + "name": "Legumes-aperitif", + "id": "fr:legumes-aperitif", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/legumes-aperitif" + }, + { + "id": "fr:orechiette", + "name": "Orechiette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/orechiette" + }, + { + "products": 1, + "id": "fr:penne-lisce", + "name": "Penne-lisce", + "url": "https://fr.openfoodfacts.org/categorie/penne-lisce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-au-caramel", + "products": 1, + "id": "fr:barres-chocolatees-au-caramel", + "name": "Barres-chocolatees-au-caramel" + }, + { + "id": "it:vino-rosso", + "name": "it:Vino-rosso", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:vino-rosso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vini", + "products": 1, + "name": "Vini", + "id": "fr:vini" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emilia", + "id": "fr:emilia", + "name": "Emilia", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bevande-alcoliche", + "products": 1, + "name": "Bevande-alcoliche", + "id": "fr:bevande-alcoliche" + }, + { + "name": "Bevande", + "id": "fr:bevande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bevande" + }, + { + "name": "Parfaits", + "id": "fr:parfaits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/parfaits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:fromages-pasteurises", + "name": "it:Fromages-pasteurises", + "id": "it:fromages-pasteurises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:fromages-au-lait-de-bufflonne", + "name": "it:Fromages-au-lait-de-bufflonne", + "id": "it:fromages-au-lait-de-bufflonne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aop", + "products": 1, + "name": "Aop", + "id": "fr:aop" + }, + { + "products": 1, + "name": "it:Fromages", + "id": "it:fromages", + "url": "https://fr.openfoodfacts.org/categorie/it:fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:confitures-de-fruits-rouges", + "id": "it:confitures-de-fruits-rouges", + "name": "it:Confitures-de-fruits-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/souces-pour-pates", + "products": 1, + "id": "fr:souces-pour-pates", + "name": "Souces-pour-pates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-aux-poivrons-et-aubergines", + "name": "Sauce-aux-poivrons-et-aubergines", + "id": "fr:sauce-aux-poivrons-et-aubergines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-sale", + "products": 1, + "id": "fr:sucre-sale", + "name": "Sucre-sale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-pesto", + "products": 1, + "id": "en:sauces-pesto", + "name": "en:Sauces-pesto" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-canne", + "products": 1, + "id": "fr:sirops-de-canne", + "name": "Sirops-de-canne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-en-poudre", + "id": "it:chocolats-en-poudre", + "name": "it:Chocolats-en-poudre", + "products": 1 + }, + { + "name": "it:Boissons-chaudes-instantanees", + "id": "it:boissons-chaudes-instantanees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-chaudes-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-chaudes", + "products": 1, + "name": "it:Boissons-chaudes", + "id": "it:boissons-chaudes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:salmone", + "name": "it:Salmone", + "id": "it:salmone", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserves-de-sardines", + "products": 1, + "id": "fr:conserves-de-sardines", + "name": "Conserves-de-sardines" + }, + { + "id": "fr:bouchees-de-chocolats", + "name": "Bouchees-de-chocolats", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bouchees-de-chocolats" + }, + { + "id": "fr:huiles-vierges-de-noix-de-coco", + "name": "Huiles-vierges-de-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierges-de-noix-de-coco" + }, + { + "id": "it:champignons-et-produits-derives", + "name": "it:Champignons-et-produits-derives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:champignons-et-produits-derives" + }, + { + "products": 1, + "name": "Fromage-rape-emmental", + "id": "fr:fromage-rape-emmental", + "url": "https://fr.openfoodfacts.org/categorie/fromage-rape-emmental" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:champignons", + "name": "it:Champignons", + "id": "it:champignons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-a-base-de-plantes-frais", + "products": 1, + "name": "it:Aliments-a-base-de-plantes-frais", + "id": "it:aliments-a-base-de-plantes-frais" + }, + { + "products": 1, + "name": "Kakis", + "id": "en:kakis", + "url": "https://fr.openfoodfacts.org/categorie/kakis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:cioccolato", + "products": 1, + "id": "it:cioccolato", + "name": "it:Cioccolato" + }, + { + "name": "en:Petits-sales", + "id": "en:petits-sales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:petits-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gressins-sucres", + "id": "fr:gressins-sucres", + "name": "Gressins-sucres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:chips-de-pommes-de-terre", + "id": "es:chips-de-pommes-de-terre", + "name": "es:Chips-de-pommes-de-terre", + "products": 1 + }, + { + "products": 1, + "id": "it:snacks", + "name": "it:Snacks", + "url": "https://fr.openfoodfacts.org/categorie/it:snacks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:patatine-fritte", + "products": 1, + "name": "it:Patatine-fritte", + "id": "it:patatine-fritte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-fourres", + "products": 1, + "id": "fr:bonbons-fourres", + "name": "Bonbons-fourres" + }, + { + "products": 1, + "id": "fr:bonbons-assortiments", + "name": "Bonbons-assortiments", + "url": "https://fr.openfoodfacts.org/categorie/bonbons-assortiments" + }, + { + "name": "de:Pulpes-de-tomates", + "id": "de:pulpes-de-tomates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pulpes-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oil-sprays", + "products": 1, + "name": "en:Oil-sprays", + "id": "en:oil-sprays" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tubercule", + "name": "Tubercule", + "id": "fr:tubercule", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cappelletti", + "id": "en:cappelletti", + "name": "en:Cappelletti", + "products": 1 + }, + { + "products": 1, + "name": "Confiserie-sans-sucre", + "id": "fr:confiserie-sans-sucre", + "url": "https://fr.openfoodfacts.org/categorie/confiserie-sans-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:gateaux-au-chocolat", + "products": 1, + "id": "it:gateaux-au-chocolat", + "name": "it:Gateaux-au-chocolat" + }, + { + "products": 1, + "name": "es:Confiseries-chocolatees", + "id": "es:confiseries-chocolatees", + "url": "https://fr.openfoodfacts.org/categorie/es:confiseries-chocolatees" + }, + { + "name": "nl:Kruidenmix", + "id": "nl:kruidenmix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:kruidenmix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cerises-enrobees-au-chocolat", + "id": "es:cerises-enrobees-au-chocolat", + "name": "es:Cerises-enrobees-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bonbons-de-chocolat-fourres-cerise-et-liqueur", + "products": 1, + "name": "es:Bonbons-de-chocolat-fourres-cerise-et-liqueur", + "id": "es:bonbons-de-chocolat-fourres-cerise-et-liqueur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pates", + "id": "it:pates", + "name": "it:Pates", + "products": 1 + }, + { + "products": 1, + "name": "en:Compotes-pommes-coing", + "id": "en:compotes-pommes-coing", + "url": "https://fr.openfoodfacts.org/categorie/en:compotes-pommes-coing" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:fromage-frais", + "products": 1, + "id": "it:fromage-frais", + "name": "it:Fromage-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-tomate", + "sameAs": [ + "https://www.wikidata.org/wiki/Q40867671" + ], + "products": 1, + "id": "en:tomato-vinegars", + "name": "Vinaigres de tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rice-tortillas", + "id": "en:rice-tortillas", + "name": "en:Rice-tortillas", + "products": 1 + }, + { + "products": 1, + "name": "de:Porto-rouges", + "id": "de:porto-rouges", + "url": "https://fr.openfoodfacts.org/categorie/de:porto-rouges" + }, + { + "id": "fr:marrons-glaces-entiers", + "name": "Marrons-glaces-entiers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marrons-glaces-entiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-petit-beurre-sans-gluten", + "name": "Biscuits-petit-beurre-sans-gluten", + "id": "fr:biscuits-petit-beurre-sans-gluten", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pate-sablee", + "id": "fr:preparation-pour-pate-sablee", + "name": "Preparation-pour-pate-sablee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pandoros", + "name": "it:Pandoros", + "id": "it:pandoros", + "products": 1 + }, + { + "name": "it:Yaourts-aux-fruits", + "id": "it:yaourts-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:yaourts-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-fermentes", + "products": 1, + "id": "it:produits-fermentes", + "name": "it:Produits-fermentes" + }, + { + "products": 1, + "id": "fr:yaourts-bulgares", + "name": "Yaourts-bulgares", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-bulgares" + }, + { + "products": 1, + "id": "it:yaourts-aromatises", + "name": "it:Yaourts-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/it:yaourts-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:creme-caramel", + "products": 1, + "name": "it:Creme-caramel", + "id": "it:creme-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/financiers-aux-framboises", + "id": "fr:financiers-aux-framboises", + "name": "Financiers-aux-framboises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-rotis", + "name": "Jambons-rotis", + "id": "fr:jambons-rotis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grenade-bio", + "name": "Grenade-bio", + "id": "fr:grenade-bio", + "products": 1 + }, + { + "products": 1, + "id": "fr:jambons-secs-italiens", + "name": "Jambons-secs-italiens", + "url": "https://fr.openfoodfacts.org/categorie/jambons-secs-italiens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales-gazefiee", + "name": "Eaux-minerales-gazefiee", + "id": "fr:eaux-minerales-gazefiee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-a-diluer", + "id": "en:sirops-a-diluer", + "name": "en:Sirops-a-diluer", + "products": 1 + }, + { + "id": "it:aperitifs-sale", + "name": "it:Aperitifs-sale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:aperitifs-sale" + }, + { + "name": "Vinaigres-a-la-figue", + "id": "fr:vinaigres-a-la-figue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-a-la-figue" + }, + { + "products": 1, + "id": "fr:riz-special-salades", + "name": "Riz-special-salades", + "url": "https://fr.openfoodfacts.org/categorie/riz-special-salades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-canneberge", + "products": 1, + "name": "Sirops-de-canneberge", + "id": "fr:sirops-de-canneberge" + }, + { + "products": 1, + "id": "en:tripel", + "name": "en:Tripel", + "url": "https://fr.openfoodfacts.org/categorie/en:tripel" + }, + { + "id": "de:saucisses-de-volaille", + "name": "de:Saucisses-de-volaille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:saucisses-de-volaille" + }, + { + "name": "Genoise-gout-cacao", + "id": "fr:genoise-gout-cacao", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/genoise-gout-cacao" + }, + { + "products": 1, + "name": "Cibi-e-bevande-a-base-vegetale", + "id": "fr:cibi-e-bevande-a-base-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/cibi-e-bevande-a-base-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-d-epeautre-t70", + "id": "fr:farines-d-epeautre-t70", + "name": "Farines-d-epeautre-t70", + "products": 1 + }, + { + "id": "fr:cibi-a-base-vegetale", + "name": "Cibi-a-base-vegetale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cibi-a-base-vegetale" + }, + { + "products": 1, + "name": "Cereali-e-patate", + "id": "fr:cereali-e-patate", + "url": "https://fr.openfoodfacts.org/categorie/cereali-e-patate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:charcuteries-italiennes", + "name": "it:Charcuteries-italiennes", + "id": "it:charcuteries-italiennes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vollkorn", + "products": 1, + "name": "de:Vollkorn", + "id": "de:vollkorn" + }, + { + "products": 1, + "id": "no:boissons-sucrees", + "name": "no:Boissons-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/no:boissons-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-a-la-vanille", + "products": 1, + "id": "it:biscuits-a-la-vanille", + "name": "it:Biscuits-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:biscuits-fourres", + "id": "it:biscuits-fourres", + "name": "it:Biscuits-fourres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-framboise-rhubarbe", + "id": "fr:yaourt-framboise-rhubarbe", + "name": "Yaourt-framboise-rhubarbe", + "products": 1 + }, + { + "products": 1, + "id": "es:aliments-a-base-de-plantes-seches", + "name": "es:Aliments-a-base-de-plantes-seches", + "url": "https://fr.openfoodfacts.org/categorie/es:aliments-a-base-de-plantes-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ailes-de-poulet-au-paprika", + "products": 1, + "name": "Ailes-de-poulet-au-paprika", + "id": "fr:ailes-de-poulet-au-paprika" + }, + { + "products": 1, + "name": "Asperges-blanches-fraiches", + "id": "fr:asperges-blanches-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/asperges-blanches-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-de-le-cerfeuil-commun", + "sameAs": [ + "https://www.wikidata.org/wiki/Q218462" + ], + "id": "en:garden-chervil-products", + "name": "Produits de le cerfeuil commun", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/provolones-piquants", + "name": "Provolones-piquants", + "id": "fr:provolones-piquants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pruneaux-au-lard-fume", + "name": "Pruneaux-au-lard-fume", + "id": "fr:pruneaux-au-lard-fume", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:huevos", + "name": "es:Huevos", + "id": "es:huevos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:oeufs-durs", + "products": 1, + "name": "es:Oeufs-durs", + "id": "es:oeufs-durs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:miels-liquides", + "products": 1, + "name": "es:Miels-liquides", + "id": "es:miels-liquides" + }, + { + "products": 1, + "id": "es:miels-espagnols", + "name": "es:Miels-espagnols", + "url": "https://fr.openfoodfacts.org/categorie/es:miels-espagnols" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:miels-de-fleurs", + "products": 1, + "id": "es:miels-de-fleurs", + "name": "es:Miels-de-fleurs" + }, + { + "name": "es:Gateaux", + "id": "es:gateaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:gateaux" + }, + { + "products": 1, + "id": "es:tortas-cencenas", + "name": "es:Tortas-cencenas", + "url": "https://fr.openfoodfacts.org/categorie/es:tortas-cencenas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-sucrees", + "products": 1, + "id": "it:boissons-sucrees", + "name": "it:Boissons-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-aux-cacahuetes", + "id": "fr:nougats-aux-cacahuetes", + "name": "Nougats-aux-cacahuetes", + "products": 1 + }, + { + "id": "es:purees-d-oleagineux", + "name": "es:Purees-d-oleagineux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:purees-d-oleagineux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:beurres-de-fruits-a-coques", + "products": 1, + "name": "es:Beurres-de-fruits-a-coques", + "id": "es:beurres-de-fruits-a-coques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dried-fig-cakes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3817399" + ], + "products": 1, + "id": "en:dried-fig-cakes", + "name": "Dried fig cakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:horchatas", + "products": 1, + "id": "es:horchatas", + "name": "es:Horchatas" + }, + { + "products": 1, + "name": "es:Chufa-de-valencia", + "id": "es:chufa-de-valencia", + "url": "https://fr.openfoodfacts.org/categorie/es:chufa-de-valencia" + }, + { + "id": "fr:sucres-non-raffines", + "name": "Sucres-non-raffines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucres-non-raffines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:postres-de-almendra", + "products": 1, + "name": "es:Postres-de-almendra", + "id": "es:postres-de-almendra" + }, + { + "id": "es:confitures-d-abricot", + "name": "es:Confitures-d-abricot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-d-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-de-fruits-rouges", + "products": 1, + "name": "es:Confitures-de-fruits-rouges", + "id": "es:confitures-de-fruits-rouges" + }, + { + "products": 1, + "name": "es:Pan-especial-integral", + "id": "es:pan-especial-integral", + "url": "https://fr.openfoodfacts.org/categorie/es:pan-especial-integral" + }, + { + "products": 1, + "name": "en:Blancs-de-dinde", + "id": "en:blancs-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/en:blancs-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pains-complets", + "products": 1, + "id": "es:pains-complets", + "name": "es:Pains-complets" + }, + { + "id": "es:sodas-a-base-de-limon-sin-gas", + "name": "es:Sodas-a-base-de-limon-sin-gas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:sodas-a-base-de-limon-sin-gas" + }, + { + "products": 1, + "name": "Preparations-pour-cremes", + "id": "fr:preparations-pour-cremes", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cremes" + }, + { + "name": "Boissons végétales de soja avec du café", + "id": "en:coffee-soy-milks", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-soja-avec-du-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-l-orange", + "products": 1, + "id": "fr:desserts-a-l-orange", + "name": "Desserts-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:eaux-de-sources", + "products": 1, + "id": "es:eaux-de-sources", + "name": "es:Eaux-de-sources" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pimenton-dulce", + "id": "es:pimenton-dulce", + "name": "es:Pimenton-dulce", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sardines-en-conserve", + "products": 1, + "name": "es:Sardines-en-conserve", + "id": "es:sardines-en-conserve" + }, + { + "products": 1, + "name": "es:Galletas-de-tipo-maria", + "id": "es:galletas-de-tipo-maria", + "url": "https://fr.openfoodfacts.org/categorie/es:galletas-de-tipo-maria" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:peches-au-sirop", + "products": 1, + "id": "es:peches-au-sirop", + "name": "es:Peches-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-en-conserve", + "products": 1, + "id": "es:fruits-en-conserve", + "name": "es:Fruits-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/placas-de-trigo-duro-para-lasana", + "products": 1, + "name": "Placas-de-trigo-duro-para-lasana", + "id": "fr:placas-de-trigo-duro-para-lasana" + }, + { + "products": 1, + "id": "fr:paves-de-saumon-fume", + "name": "Paves-de-saumon-fume", + "url": "https://fr.openfoodfacts.org/categorie/paves-de-saumon-fume" + }, + { + "products": 1, + "name": "Pastas-alimenticias", + "id": "fr:pastas-alimenticias", + "url": "https://fr.openfoodfacts.org/categorie/pastas-alimenticias" + }, + { + "products": 1, + "id": "fr:mais-frit", + "name": "Mais-frit", + "url": "https://fr.openfoodfacts.org/categorie/mais-frit" + }, + { + "products": 1, + "id": "en:chocolates-negros-a-la-taza", + "name": "en:Chocolates-negros-a-la-taza", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolates-negros-a-la-taza" + }, + { + "name": "Farines de froment T55", + "id": "en:white-common-wheat-flours", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-froment-t55" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pure-de-patatas", + "id": "es:pure-de-patatas", + "name": "es:Pure-de-patatas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-saveur-pistache", + "id": "fr:desserts-saveur-pistache", + "name": "Desserts-saveur-pistache", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-bechamel-vegetales-a-base-de-riz", + "products": 1, + "name": "Sauces béchamel végétales à base de riz", + "id": "en:rice-based-bechamel-sauces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-bechamel-vegetales", + "products": 1, + "id": "en:plant-based-bechamel-sauces", + "name": "Sauces béchamel végétales" + }, + { + "products": 1, + "name": "es:Semillas-de-sesamo-peladas", + "id": "es:semillas-de-sesamo-peladas", + "url": "https://fr.openfoodfacts.org/categorie/es:semillas-de-sesamo-peladas" + }, + { + "name": "en:Biona-wind-mill-organic-ltd", + "id": "en:biona-wind-mill-organic-ltd", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:biona-wind-mill-organic-ltd" + }, + { + "products": 1, + "name": "es:Laits-de-legumineuses", + "id": "es:laits-de-legumineuses", + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-legumineuses" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q10357458" + ], + "url": "https://fr.openfoodfacts.org/categorie/panela", + "name": "Panela", + "id": "en:panela", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-au-chocolat-noir", + "products": 1, + "name": "es:Biscuits-au-chocolat-noir", + "id": "es:biscuits-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-chinoise", + "name": "Salade-chinoise", + "id": "fr:salade-chinoise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fonds-d-artichauts", + "name": "en:Fonds-d-artichauts", + "id": "en:fonds-d-artichauts", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mato", + "products": 1, + "name": "Mato", + "id": "fr:mato" + }, + { + "id": "es:bouillons-de-legumes-deshydrates", + "name": "es:Bouillons-de-legumes-deshydrates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:bouillons-de-legumes-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bouillons-de-legumes", + "products": 1, + "id": "es:bouillons-de-legumes", + "name": "es:Bouillons-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:lasagnes-a-garnir", + "id": "ru:lasagnes-a-garnir", + "name": "ru:Lasagnes-a-garnir", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-a-tartiner-sales", + "name": "es:Produits-a-tartiner-sales", + "id": "es:produits-a-tartiner-sales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:matieres-grasses-a-tartiner", + "products": 1, + "id": "es:matieres-grasses-a-tartiner", + "name": "es:Matieres-grasses-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:frambuesas-en-almibar", + "products": 1, + "name": "es:Frambuesas-en-almibar", + "id": "es:frambuesas-en-almibar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:nectars-de-citron", + "id": "es:nectars-de-citron", + "name": "es:Nectars-de-citron", + "products": 1 + }, + { + "id": "en:refrigerated-squeezed-pineapple-juices", + "name": "Jus d'ananas frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas-frais" + }, + { + "products": 1, + "name": "Single-malt", + "id": "fr:single-malt", + "url": "https://fr.openfoodfacts.org/categorie/single-malt" + }, + { + "name": "Fars-aux-pruneaux", + "id": "fr:fars-aux-pruneaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fars-aux-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:kits", + "products": 1, + "id": "en:kits", + "name": "en:Kits" + }, + { + "products": 1, + "id": "fr:specialite-froagere", + "name": "Specialite-froagere", + "url": "https://fr.openfoodfacts.org/categorie/specialite-froagere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit-pour-enchiladas", + "products": 1, + "name": "Kit-pour-enchiladas", + "id": "fr:kit-pour-enchiladas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:banana-flavour-mix-and-added-vitamins-and-minerals-for-milk", + "products": 1, + "name": "en:Banana-flavour-mix-and-added-vitamins-and-minerals-for-milk", + "id": "en:banana-flavour-mix-and-added-vitamins-and-minerals-for-milk" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/backpulver", + "products": 1, + "id": "fr:backpulver", + "name": "Backpulver" + }, + { + "id": "es:lentejas-con-verduras-en-conserva", + "name": "es:Lentejas-con-verduras-en-conserva", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:lentejas-con-verduras-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:lentejas-con-verduras", + "products": 1, + "name": "es:Lentejas-con-verduras", + "id": "es:lentejas-con-verduras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-escabeche", + "products": 1, + "id": "fr:sardines-a-l-escabeche", + "name": "Sardines-a-l-escabeche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/patates-braves", + "products": 1, + "id": "fr:patates-braves", + "name": "Patates-braves" + }, + { + "id": "de:fruchtriegel", + "name": "de:Fruchtriegel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fruchtriegel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-a-teneur-reduite-en-lactose", + "products": 1, + "id": "es:laits-a-teneur-reduite-en-lactose", + "name": "es:Laits-a-teneur-reduite-en-lactose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-salees", + "name": "Eaux-salees", + "id": "fr:eaux-salees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mais-en-conserve", + "products": 1, + "name": "es:Mais-en-conserve", + "id": "es:mais-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:maiz-dulce-cocido-en-mazorca", + "id": "es:maiz-dulce-cocido-en-mazorca", + "name": "es:Maiz-dulce-cocido-en-mazorca", + "products": 1 + }, + { + "products": 1, + "id": "fr:yaourt-avec-morceaux", + "name": "Yaourt-avec-morceaux", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-avec-morceaux" + }, + { + "name": "es:Cereales-en-conserve", + "id": "es:cereales-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:cereales-en-conserve" + }, + { + "name": "Cellophane noodles", + "id": "en:cellophane-noodles", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q840448" + ], + "url": "https://fr.openfoodfacts.org/categorie/cellophane-noodles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:pate-de-porc", + "products": 1, + "name": "ro:Pate-de-porc", + "id": "ro:pate-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pitted-marinated-green-olives", + "products": 1, + "name": "Pitted marinated green olives", + "id": "en:pitted-marinated-green-olives" + }, + { + "products": 1, + "id": "fr:tartines-salees", + "name": "Tartines-salees", + "url": "https://fr.openfoodfacts.org/categorie/tartines-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-mure", + "name": "Glaces-a-la-mure", + "id": "fr:glaces-a-la-mure", + "products": 1 + }, + { + "products": 1, + "name": "Glaces-cognac-raisin", + "id": "fr:glaces-cognac-raisin", + "url": "https://fr.openfoodfacts.org/categorie/glaces-cognac-raisin" + }, + { + "products": 1, + "name": "Batonnets-de-glace-a-l-eau", + "id": "fr:batonnets-de-glace-a-l-eau", + "url": "https://fr.openfoodfacts.org/categorie/batonnets-de-glace-a-l-eau" + }, + { + "name": "Saumons-crus", + "id": "fr:saumons-crus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saumons-crus" + }, + { + "name": "Canards-a-foie-gras", + "id": "fr:canards-a-foie-gras", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/canards-a-foie-gras" + }, + { + "products": 1, + "id": "fr:cotes-du-rhone-villages-plan-de-dieu", + "name": "Cotes-du-rhone-villages-plan-de-dieu", + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-villages-plan-de-dieu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-en-tranches", + "products": 1, + "name": "Saucissons-en-tranches", + "id": "fr:saucissons-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-en-vrac", + "products": 1, + "id": "fr:thes-en-vrac", + "name": "Thes-en-vrac" + }, + { + "id": "fr:pink-lady", + "name": "Pink-lady", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pink-lady" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:laits-uht", + "products": 1, + "name": "pt:Laits-uht", + "id": "pt:laits-uht" + }, + { + "products": 1, + "id": "ca:bieres", + "name": "ca:Bieres", + "url": "https://fr.openfoodfacts.org/categorie/ca:bieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rouge-bonnezaux-bio", + "id": "fr:vin-rouge-bonnezaux-bio", + "name": "Vin-rouge-bonnezaux-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nueces-de-brasil", + "products": 1, + "name": "de:Nueces-de-brasil", + "id": "de:nueces-de-brasil" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bananes-frites", + "id": "fr:bananes-frites", + "name": "Bananes-frites", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-macadamia-decortiquees", + "products": 1, + "id": "en:shelled-macadamia-nuts", + "name": "Noix de Macadamia décortiquées" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-du-quercy", + "products": 1, + "name": "Pates-du-quercy", + "id": "fr:pates-du-quercy" + }, + { + "name": "Igp-pays-d-oc", + "id": "fr:igp-pays-d-oc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/igp-pays-d-oc" + }, + { + "products": 1, + "id": "fr:energisants", + "name": "Energisants", + "url": "https://fr.openfoodfacts.org/categorie/energisants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gel-energetique", + "id": "fr:gel-energetique", + "name": "Gel-energetique", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sobas", + "name": "Sobas", + "id": "fr:sobas", + "products": 1 + }, + { + "id": "fr:cremes-de-gruyeres", + "name": "Cremes-de-gruyeres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-gruyeres" + }, + { + "products": 1, + "id": "fr:gelees-de-grenade", + "name": "Gelees-de-grenade", + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-grenade" + }, + { + "name": "Thes-en-feuilles", + "id": "fr:thes-en-feuilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-en-feuilles" + }, + { + "products": 1, + "id": "fr:barres-de-cereales-aux-fruits-rouges", + "name": "Barres-de-cereales-aux-fruits-rouges", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-fruits-rouges" + }, + { + "products": 1, + "id": "fr:galettes-au-son-d-avoine-finement-salees-bio", + "name": "Galettes-au-son-d-avoine-finement-salees-bio", + "url": "https://fr.openfoodfacts.org/categorie/galettes-au-son-d-avoine-finement-salees-bio" + }, + { + "products": 1, + "id": "fr:soupes-de-courges", + "name": "Soupes-de-courges", + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-courges" + }, + { + "products": 1, + "name": "Melanges-de-fromages", + "id": "fr:melanges-de-fromages", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-repas", + "name": "Salade-repas", + "id": "fr:salade-repas", + "products": 1 + }, + { + "products": 1, + "id": "es:yogur-al-estilo-griego", + "name": "es:Yogur-al-estilo-griego", + "url": "https://fr.openfoodfacts.org/categorie/es:yogur-al-estilo-griego" + }, + { + "name": "Riz-basmati-bio-et-ethiquable", + "id": "fr:riz-basmati-bio-et-ethiquable", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati-bio-et-ethiquable" + }, + { + "products": 1, + "name": "The-vert-de-ceylan", + "id": "fr:the-vert-de-ceylan", + "url": "https://fr.openfoodfacts.org/categorie/the-vert-de-ceylan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-grains", + "products": 1, + "id": "fr:cafe-grains", + "name": "Cafe-grains" + }, + { + "name": "en:Sans-lactose", + "id": "en:sans-lactose", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sans-lactose" + }, + { + "name": "Purees-de-pistache", + "id": "fr:purees-de-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-chinois", + "id": "en:chinese-nougats", + "name": "Nougats chinois", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-de-noix-de-coco", + "products": 1, + "name": "Yaourts-au-lait-de-noix-de-coco", + "id": "fr:yaourts-au-lait-de-noix-de-coco" + }, + { + "name": "Portes-de-mediterranee", + "id": "fr:portes-de-mediterranee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/portes-de-mediterranee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiture-de-baobab", + "name": "Confiture-de-baobab", + "id": "fr:confiture-de-baobab", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:barre-chocolatees-au-lait", + "products": 1, + "id": "de:barre-chocolatees-au-lait", + "name": "de:Barre-chocolatees-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glutamates", + "products": 1, + "name": "Glutamates", + "id": "fr:glutamates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-canard-aux-trompettes-et-au-foie-gras", + "products": 1, + "name": "Pate-de-canard-aux-trompettes-et-au-foie-gras", + "id": "fr:pate-de-canard-aux-trompettes-et-au-foie-gras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanc-de-poulet-halal", + "name": "Blanc-de-poulet-halal", + "id": "fr:blanc-de-poulet-halal", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-poivrons-a-la-ricotta", + "id": "fr:creme-de-poivrons-a-la-ricotta", + "name": "Creme-de-poivrons-a-la-ricotta", + "products": 1 + }, + { + "name": "Creme-de-poivrons", + "id": "fr:creme-de-poivrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-de-poivrons" + }, + { + "products": 1, + "name": "Piperade-au-chorizo", + "id": "fr:piperade-au-chorizo", + "url": "https://fr.openfoodfacts.org/categorie/piperade-au-chorizo" + }, + { + "id": "en:sirops-de-cereales", + "name": "en:Sirops-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/piperade", + "products": 1, + "name": "Piperade", + "id": "fr:piperade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caviar-de-tomates-sechees", + "name": "Caviar-de-tomates-sechees", + "id": "fr:caviar-de-tomates-sechees", + "products": 1 + }, + { + "products": 1, + "id": "fr:boeuf-stroganoff", + "name": "Boeuf-stroganoff", + "url": "https://fr.openfoodfacts.org/categorie/boeuf-stroganoff" + }, + { + "products": 1, + "id": "fr:cremes-desserts-pralinees", + "name": "Cremes-desserts-pralinees", + "url": "https://fr.openfoodfacts.org/categorie/cremes-desserts-pralinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-cristallise", + "products": 1, + "id": "fr:sucre-cristallise", + "name": "Sucre-cristallise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gouters-pour-enfants", + "products": 1, + "id": "fr:gouters-pour-enfants", + "name": "Gouters-pour-enfants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:terre-di-chieti", + "products": 1, + "name": "it:Terre di Chieti", + "id": "it:terre-di-chieti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-semoule-nappage-chocolat", + "id": "fr:gateaux-de-semoule-nappage-chocolat", + "name": "Gateaux-de-semoule-nappage-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/stracciatella", + "products": 1, + "id": "fr:stracciatella", + "name": "Stracciatella" + }, + { + "name": "es:Baklava", + "id": "es:baklava", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:baklava" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:protein-powder-drink-mix", + "products": 1, + "id": "en:protein-powder-drink-mix", + "name": "en:Protein-powder-drink-mix" + }, + { + "products": 1, + "name": "es:Getreide-und-getreideprodukte", + "id": "es:getreide-und-getreideprodukte", + "url": "https://fr.openfoodfacts.org/categorie/es:getreide-und-getreideprodukte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-porter", + "products": 1, + "name": "Bieres-porter", + "id": "fr:bieres-porter" + }, + { + "name": "Bieres-britanniques", + "id": "fr:bieres-britanniques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-britanniques" + }, + { + "name": "en:Feuilletes", + "id": "en:feuilletes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:feuilletes" + }, + { + "products": 1, + "name": "en:Dried-mango", + "id": "en:dried-mango", + "url": "https://fr.openfoodfacts.org/categorie/en:dried-mango" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomatenmark", + "products": 1, + "id": "fr:tomatenmark", + "name": "Tomatenmark" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-kalamata", + "id": "fr:olives-kalamata", + "name": "Olives-kalamata", + "products": 1 + }, + { + "name": "Snoep", + "id": "fr:snoep", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/snoep" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-base-d-insectes", + "id": "fr:produits-a-base-d-insectes", + "name": "Produits-a-base-d-insectes", + "products": 1 + }, + { + "id": "en:purees-de-noix-de-cajou", + "name": "en:Purees-de-noix-de-cajou", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:purees-de-noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/concasses-de-tomates", + "name": "Concasses-de-tomates", + "id": "fr:concasses-de-tomates", + "products": 1 + }, + { + "products": 1, + "id": "fr:eau-de-fleurs-d-oranger", + "name": "Eau-de-fleurs-d-oranger", + "url": "https://fr.openfoodfacts.org/categorie/eau-de-fleurs-d-oranger" + }, + { + "name": "Muscat-de-samos", + "id": "fr:muscat-de-samos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-samos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:barre-chocolatee", + "products": 1, + "name": "xx:Barre-chocolatee", + "id": "xx:barre-chocolatee" + }, + { + "products": 1, + "name": "en:Harengs", + "id": "en:harengs", + "url": "https://fr.openfoodfacts.org/categorie/en:harengs" + }, + { + "products": 1, + "id": "fr:chips-en-patat", + "name": "Chips-en-patat", + "url": "https://fr.openfoodfacts.org/categorie/chips-en-patat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/draineur", + "products": 1, + "id": "fr:draineur", + "name": "Draineur" + }, + { + "id": "fr:aardappelchips", + "name": "Aardappelchips", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aardappelchips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/celeri-moulu", + "products": 1, + "id": "fr:celeri-moulu", + "name": "Celeri-moulu" + }, + { + "name": "en:Estragon", + "id": "en:estragon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:estragon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalote-deshydratee", + "products": 1, + "name": "Echalote-deshydratee", + "id": "fr:echalote-deshydratee" + }, + { + "name": "Infusions-trois-gingembres", + "id": "fr:infusions-trois-gingembres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/infusions-trois-gingembres" + }, + { + "id": "fr:quatre-epices", + "name": "Quatre-epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quatre-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laurier-fraiche", + "products": 1, + "id": "fr:laurier-fraiche", + "name": "Laurier-fraiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tapioca-en-grains", + "name": "Tapioca-en-grains", + "id": "fr:tapioca-en-grains", + "products": 1 + }, + { + "products": 1, + "id": "fr:sorbets-plein-fruit", + "name": "Sorbets-plein-fruit", + "url": "https://fr.openfoodfacts.org/categorie/sorbets-plein-fruit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/patissons-au-vinaigre", + "products": 1, + "name": "Patissons-au-vinaigre", + "id": "fr:patissons-au-vinaigre" + }, + { + "products": 1, + "id": "fr:yogures-vegetales", + "name": "Yogures-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/yogures-vegetales" + }, + { + "name": "Galichons", + "id": "fr:galichons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galichons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/agneaux-en-chocolat", + "products": 1, + "name": "Agneaux-en-chocolat", + "id": "fr:agneaux-en-chocolat" + }, + { + "products": 1, + "id": "fr:sauce-nems", + "name": "Sauce-nems", + "url": "https://fr.openfoodfacts.org/categorie/sauce-nems" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/metal", + "products": 1, + "id": "fr:metal", + "name": "Metal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-cuits-a-l-etouffee", + "products": 1, + "name": "Jambons-cuits-a-l-etouffee", + "id": "fr:jambons-cuits-a-l-etouffee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-en-sauce", + "id": "fr:thons-en-sauce", + "name": "Thons-en-sauce", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-au-naturel", + "products": 1, + "name": "Maquereaux-au-naturel", + "id": "fr:maquereaux-au-naturel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-et-au-poivre", + "products": 1, + "id": "fr:sardines-a-l-huile-et-au-poivre", + "name": "Sardines-a-l-huile-et-au-poivre" + }, + { + "id": "nl:gebakjes", + "name": "nl:Gebakjes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:gebakjes" + }, + { + "name": "en:Poivre-noir", + "id": "en:poivre-noir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:poivre-noir" + }, + { + "products": 1, + "name": "Filets d'anchois marinés au citron confit", + "id": "fr:filets-d-anchois-marines-au-citron-confit", + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-marines-au-citron-confit" + }, + { + "products": 1, + "id": "fr:aides-desserts", + "name": "Aides-desserts", + "url": "https://fr.openfoodfacts.org/categorie/aides-desserts" + }, + { + "products": 1, + "name": "Nectars de myrtilles", + "id": "en:blueberry-nectars", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-myrtilles" + }, + { + "products": 1, + "id": "fr:melanges-de-chocolats", + "name": "Melanges-de-chocolats", + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-chocolats" + }, + { + "products": 1, + "name": "en:Coriandre", + "id": "en:coriandre", + "url": "https://fr.openfoodfacts.org/categorie/en:coriandre" + }, + { + "products": 1, + "id": "fr:muscadet-coteaux-de-la-loire-val-de-loire", + "name": "Muscadet-Coteaux de la Loire Val de Loire", + "url": "https://fr.openfoodfacts.org/categorie/muscadet-coteaux-de-la-loire-val-de-loire" + }, + { + "products": 1, + "name": "Aide-a-la-perte-de-poids", + "id": "fr:aide-a-la-perte-de-poids", + "url": "https://fr.openfoodfacts.org/categorie/aide-a-la-perte-de-poids" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vitamines-et-mineraux", + "products": 1, + "id": "fr:vitamines-et-mineraux", + "name": "Vitamines-et-mineraux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dispositifs-medicaux", + "id": "fr:dispositifs-medicaux", + "name": "Dispositifs-medicaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:chinese-wines", + "products": 1, + "id": "zh:chinese-wines", + "name": "zh:Chinese-wines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-a-garnir", + "id": "fr:pains-a-garnir", + "name": "Pains-a-garnir", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:produits-deshydrates", + "products": 1, + "name": "zh:Produits-deshydrates", + "id": "zh:produits-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mondeuse", + "products": 1, + "id": "fr:mondeuse", + "name": "Mondeuse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:plats-prepares-deshydrates", + "products": 1, + "name": "zh:Plats-prepares-deshydrates", + "id": "zh:plats-prepares-deshydrates" + }, + { + "products": 1, + "id": "zh:plats-prepares", + "name": "zh:Plats-prepares", + "url": "https://fr.openfoodfacts.org/categorie/zh:plats-prepares" + }, + { + "products": 1, + "name": "Shimeji-blanco", + "id": "fr:shimeji-blanco", + "url": "https://fr.openfoodfacts.org/categorie/shimeji-blanco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/setas-y-sus-productos", + "products": 1, + "id": "fr:setas-y-sus-productos", + "name": "Setas-y-sus-productos" + }, + { + "products": 1, + "id": "fr:setas", + "name": "Setas", + "url": "https://fr.openfoodfacts.org/categorie/setas" + }, + { + "name": "en:Pains-de-mie-aux-cereales", + "id": "en:pains-de-mie-aux-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pains-de-mie-aux-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-de-vie", + "name": "de:Eaux-de-vie", + "id": "de:eaux-de-vie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerezas-recubiertas-de-chocolate", + "name": "Cerezas-recubiertas-de-chocolate", + "id": "fr:cerezas-recubiertas-de-chocolate", + "products": 1 + }, + { + "id": "de:bourbons", + "name": "de:Bourbons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:bourbons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:epicerie", + "products": 1, + "id": "ro:epicerie", + "name": "ro:Epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:alkoholisch", + "products": 1, + "id": "de:alkoholisch", + "name": "de:Alkoholisch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:alcools-forts", + "name": "de:Alcools-forts", + "id": "de:alcools-forts", + "products": 1 + }, + { + "products": 1, + "name": "English-bitter", + "id": "fr:english-bitter", + "url": "https://fr.openfoodfacts.org/categorie/english-bitter" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:farines-de-seigle", + "products": 1, + "id": "en:farines-de-seigle", + "name": "en:Farines-de-seigle" + }, + { + "id": "de:pates-de-curry", + "name": "de:Pates-de-curry", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-de-curry" + }, + { + "products": 1, + "id": "en:curcuma", + "name": "en:Curcuma", + "url": "https://fr.openfoodfacts.org/categorie/en:curcuma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-fruits-a-coques", + "products": 1, + "id": "fr:melanges-de-fruits-a-coques", + "name": "Melanges-de-fruits-a-coques" + }, + { + "name": "ca:Boissons", + "id": "ca:boissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ca:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-de-degustation", + "name": "Cidres-de-degustation", + "id": "fr:cidres-de-degustation", + "products": 1 + }, + { + "products": 1, + "id": "fr:sesame-complet", + "name": "Sesame-complet", + "url": "https://fr.openfoodfacts.org/categorie/sesame-complet" + }, + { + "products": 1, + "id": "ro:chips-et-frites", + "name": "ro:Chips-et-frites", + "url": "https://fr.openfoodfacts.org/categorie/ro:chips-et-frites" + }, + { + "id": "en:coteaux-d-aix-en-provence", + "name": "en:Coteaux-d-aix-en-provence", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:coteaux-d-aix-en-provence" + }, + { + "name": "en:Dr-pepper-soft-drink", + "id": "en:dr-pepper-soft-drink", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:dr-pepper-soft-drink" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cookies-au-chocolat-noir", + "products": 1, + "id": "en:cookies-au-chocolat-noir", + "name": "en:Cookies-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crunchy-peanut-butter", + "name": "en:Crunchy-peanut-butter", + "id": "en:crunchy-peanut-butter", + "products": 1 + }, + { + "id": "fr:brique", + "name": "Brique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/brique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kit-indien", + "products": 1, + "id": "fr:kit-indien", + "name": "Kit-indien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mais", + "id": "en:mais", + "name": "en:Mais", + "products": 1 + }, + { + "id": "fr:chappatis", + "name": "Chappatis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chappatis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-barbecue-a-la-chinoise", + "products": 1, + "name": "Sauce-barbecue-a-la-chinoise", + "id": "fr:sauce-barbecue-a-la-chinoise" + }, + { + "name": "Tartines-croustillantes-au-sesame", + "id": "fr:tartines-croustillantes-au-sesame", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartines-croustillantes-au-sesame" + }, + { + "products": 1, + "id": "fr:the-vert-jasmin", + "name": "The-vert-jasmin", + "url": "https://fr.openfoodfacts.org/categorie/the-vert-jasmin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hot-beef-curry", + "products": 1, + "id": "fr:hot-beef-curry", + "name": "Hot-beef-curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tartines-craquantes", + "id": "en:tartines-craquantes", + "name": "en:Tartines-craquantes", + "products": 1 + }, + { + "products": 1, + "id": "fr:boisson-concentree-a-diluer", + "name": "Boisson-concentree-a-diluer", + "url": "https://fr.openfoodfacts.org/categorie/boisson-concentree-a-diluer" + }, + { + "products": 1, + "name": "en:Cafes-instantanes", + "id": "en:cafes-instantanes", + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-instantanes" + }, + { + "products": 1, + "name": "Pave-de-boeuf", + "id": "fr:pave-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/pave-de-boeuf" + }, + { + "products": 1, + "id": "fr:saumon-fume-en-tranches", + "name": "Saumon-fume-en-tranches", + "url": "https://fr.openfoodfacts.org/categorie/saumon-fume-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratin-dauphinois-aux-champignons", + "products": 1, + "name": "Gratin-dauphinois-aux-champignons", + "id": "fr:gratin-dauphinois-aux-champignons" + }, + { + "products": 1, + "id": "fr:tabliers-de-sapeur", + "name": "Tabliers-de-sapeur", + "url": "https://fr.openfoodfacts.org/categorie/tabliers-de-sapeur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coeur-de-porc", + "name": "Cœur de porc", + "id": "en:pig-heart", + "products": 1 + }, + { + "id": "fr:carres-d-aurillac", + "name": "Carrés d'Aurillac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carres-d-aurillac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2940381" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roti-de-porc-a-cuire", + "products": 1, + "name": "Roti-de-porc-a-cuire", + "id": "fr:roti-de-porc-a-cuire" + }, + { + "name": "Chocolats-noirs-a-la-fraise", + "id": "fr:chocolats-noirs-a-la-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-jaune-fermier-du-gers", + "id": "fr:filets-de-poulet-jaune-fermier-du-gers", + "name": "Filets-de-poulet-jaune-fermier-du-gers", + "products": 1 + }, + { + "products": 1, + "name": "Buches-de-chevre", + "id": "fr:buches-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/buches-de-chevre" + }, + { + "products": 1, + "id": "nl:tuiles-salees", + "name": "nl:Tuiles-salees", + "url": "https://fr.openfoodfacts.org/categorie/nl:tuiles-salees" + }, + { + "id": "fr:feijoada", + "name": "Feijoada", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feijoada" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-pamplemousse-rose", + "name": "Nectars-de-pamplemousse-rose", + "id": "fr:nectars-de-pamplemousse-rose", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-figues", + "id": "fr:chocolats-au-lait-aux-figues", + "name": "Chocolats-au-lait-aux-figues", + "products": 1 + }, + { + "name": "Rognon-de-boeuf", + "id": "fr:rognon-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rognon-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-cuit-superieur", + "id": "fr:jambon-cuit-superieur", + "name": "Jambon-cuit-superieur", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-de-riz", + "products": 1, + "id": "fr:levures-de-riz", + "name": "Levures-de-riz" + }, + { + "products": 1, + "id": "ar:tahina", + "name": "ar:Tahina", + "url": "https://fr.openfoodfacts.org/categorie/ar:tahina" + }, + { + "products": 1, + "id": "ar:hummos", + "name": "ar:Hummos", + "url": "https://fr.openfoodfacts.org/categorie/ar:hummos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sels-naturels", + "name": "es:Sels-naturels", + "id": "es:sels-naturels", + "products": 1 + }, + { + "name": "es:Sels", + "id": "es:sels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:sels" + }, + { + "products": 1, + "name": "Rhum-traditionnel", + "id": "fr:rhum-traditionnel", + "url": "https://fr.openfoodfacts.org/categorie/rhum-traditionnel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ratatouille", + "id": "en:ratatouille", + "name": "en:Ratatouille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:agua-mineral-natural", + "name": "es:Agua-mineral-natural", + "id": "es:agua-mineral-natural", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paella-fruits-de-mer", + "id": "fr:paella-fruits-de-mer", + "name": "Paella-fruits-de-mer", + "products": 1 + }, + { + "id": "fr:beignets-de-volaille", + "name": "Beignets-de-volaille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beignets-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-cerise", + "id": "fr:yaourts-sur-lit-de-cerise", + "name": "Yaourts-sur-lit-de-cerise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-a-garnir", + "products": 1, + "id": "fr:galettes-a-garnir", + "name": "Galettes-a-garnir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-a-teneur-reduite-en-lactose", + "id": "en:laits-a-teneur-reduite-en-lactose", + "name": "en:Laits-a-teneur-reduite-en-lactose", + "products": 1 + }, + { + "products": 1, + "id": "en:asperges-en-conserve", + "name": "en:Asperges-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/en:asperges-en-conserve" + }, + { + "id": "en:pizzas-margherita", + "name": "en:Pizzas-margherita", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-margherita" + }, + { + "products": 1, + "name": "Sole", + "id": "fr:sole", + "url": "https://fr.openfoodfacts.org/categorie/sole" + }, + { + "products": 1, + "id": "fr:castor-sugar", + "name": "Castor-sugar", + "url": "https://fr.openfoodfacts.org/categorie/castor-sugar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chicken-laksa", + "products": 1, + "name": "Chicken-laksa", + "id": "fr:chicken-laksa" + }, + { + "name": "Reblochons-fruitiers", + "id": "fr:reblochons-fruitiers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/reblochons-fruitiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-carottes", + "products": 1, + "name": "Chips-de-carottes", + "id": "fr:chips-de-carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hass-avocados", + "products": 1, + "id": "fr:hass-avocados", + "name": "Hass-avocados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aperitifs-sans-alcool", + "products": 1, + "name": "Aperitifs-sans-alcool", + "id": "fr:aperitifs-sans-alcool" + }, + { + "name": "Preparations-pour-omelettes", + "id": "fr:preparations-pour-omelettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-omelettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/proteine", + "name": "Proteine", + "id": "fr:proteine", + "products": 1 + }, + { + "products": 1, + "id": "fr:penne-regina", + "name": "Penne-regina", + "url": "https://fr.openfoodfacts.org/categorie/penne-regina" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q699382" + ], + "url": "https://fr.openfoodfacts.org/categorie/sauces-vertes", + "id": "en:green-sauces", + "name": "Sauces vertes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gaufres-fourrees", + "id": "de:gaufres-fourrees", + "name": "de:Gaufres-fourrees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corn-mushrooms", + "products": 1, + "id": "fr:corn-mushrooms", + "name": "Corn-mushrooms" + }, + { + "products": 1, + "id": "fr:jus-mul", + "name": "Jus-mul", + "url": "https://fr.openfoodfacts.org/categorie/jus-mul" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-energisantes-light", + "products": 1, + "id": "fr:boissons-energisantes-light", + "name": "Boissons-energisantes-light" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-energetiques", + "name": "Barres-energetiques", + "id": "fr:barres-energetiques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:biscuits-et-gateaux", + "products": 1, + "id": "da:biscuits-et-gateaux", + "name": "da:Biscuits-et-gateaux" + }, + { + "name": "Sorbet-a-la-bergamote", + "id": "fr:sorbet-a-la-bergamote", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sorbet-a-la-bergamote" + }, + { + "id": "fr:criques", + "name": "Criques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/criques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gardianes-de-taureaux", + "name": "Gardianes-de-taureaux", + "id": "fr:gardianes-de-taureaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nectars-de-fruits", + "name": "de:Nectars-de-fruits", + "id": "de:nectars-de-fruits", + "products": 1 + }, + { + "name": "en:Bouillies", + "id": "en:bouillies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bouillies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-prepares-a-rechauffer-au-micro-ondes", + "products": 1, + "name": "it:Plats-prepares-a-rechauffer-au-micro-ondes", + "id": "it:plats-prepares-a-rechauffer-au-micro-ondes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chantilly-chocolat-et-cerises-amarena", + "products": 1, + "name": "en:Chantilly-chocolat-et-cerises-amarena", + "id": "en:chantilly-chocolat-et-cerises-amarena" + }, + { + "products": 1, + "name": "Chorizos-doux", + "id": "fr:chorizos-doux", + "url": "https://fr.openfoodfacts.org/categorie/chorizos-doux" + }, + { + "id": "en:olives-denoyautees", + "name": "en:Olives-denoyautees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:olives-denoyautees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-caille-aux-cepes", + "name": "Terrine-de-caille-aux-cepes", + "id": "fr:terrine-de-caille-aux-cepes", + "products": 1 + }, + { + "products": 1, + "id": "en:vins-francais", + "name": "en:Vins-francais", + "url": "https://fr.openfoodfacts.org/categorie/en:vins-francais" + }, + { + "name": "Foies-d-agneau", + "id": "fr:foies-d-agneau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/foies-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poudres-de-maca", + "id": "fr:poudres-de-maca", + "name": "Poudres-de-maca", + "products": 1 + }, + { + "products": 1, + "name": "Filets-de-morue-salee", + "id": "fr:filets-de-morue-salee", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-morue-salee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-entier-pruneaux", + "products": 1, + "name": "Yaourts-au-lait-entier-pruneaux", + "id": "fr:yaourts-au-lait-entier-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chevre-chaud-pane", + "id": "fr:chevre-chaud-pane", + "name": "Chevre-chaud-pane", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/son-d-avoine-bio", + "products": 1, + "id": "fr:son-d-avoine-bio", + "name": "Son-d-avoine-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sculptures-en-chocolat", + "id": "en:sculptures-en-chocolat", + "name": "en:Sculptures-en-chocolat", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparations-pour-vin-chaud", + "name": "Preparations-pour-vin-chaud", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-vin-chaud" + }, + { + "id": "fr:jambons-des-pyrenees", + "name": "Jambons-des-pyrenees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambons-des-pyrenees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusion-fenouil", + "id": "fr:infusion-fenouil", + "name": "Infusion-fenouil", + "products": 1 + }, + { + "products": 1, + "name": "es:Poivrons-en-conserve", + "id": "es:poivrons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:poivrons-en-conserve" + }, + { + "name": "Purées de courgettes", + "id": "en:mashed-zucchini", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-courgettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ecrase-de-pomme-de-terre", + "id": "fr:ecrase-de-pomme-de-terre", + "name": "Ecrase-de-pomme-de-terre", + "products": 1 + }, + { + "products": 1, + "name": "it:Creme", + "id": "it:creme", + "url": "https://fr.openfoodfacts.org/categorie/it:creme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-daurade", + "products": 1, + "id": "fr:filets-de-daurade", + "name": "Filets-de-daurade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gambas-crus", + "products": 1, + "name": "Gambas-crus", + "id": "fr:gambas-crus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-nougat", + "products": 1, + "id": "fr:chocolats-au-nougat", + "name": "Chocolats-au-nougat" + }, + { + "products": 1, + "name": "Pains-perdus", + "id": "fr:pains-perdus", + "url": "https://fr.openfoodfacts.org/categorie/pains-perdus" + }, + { + "products": 1, + "name": "Crevettes-tropicales", + "id": "fr:crevettes-tropicales", + "url": "https://fr.openfoodfacts.org/categorie/crevettes-tropicales" + }, + { + "products": 1, + "name": "Raisins-blonds", + "id": "fr:raisins-blonds", + "url": "https://fr.openfoodfacts.org/categorie/raisins-blonds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roestis", + "products": 1, + "id": "fr:roestis", + "name": "Roestis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-pour-pop-corn", + "id": "fr:mais-pour-pop-corn", + "name": "Mais-pour-pop-corn", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-composees", + "name": "Salades-composees", + "id": "fr:salades-composees", + "products": 1 + }, + { + "products": 1, + "id": "fr:fromages-briques", + "name": "Fromages-briques", + "url": "https://fr.openfoodfacts.org/categorie/fromages-briques" + }, + { + "id": "fr:rochers-au-lait", + "name": "Rochers-au-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rochers-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jarrets-aux-lentilles", + "id": "fr:jarrets-aux-lentilles", + "name": "Jarrets-aux-lentilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/briques-au-lait-de-vache", + "products": 1, + "name": "Briques-au-lait-de-vache", + "id": "fr:briques-au-lait-de-vache" + }, + { + "id": "fr:muesli-croustillant-pomme-cannelle-bio", + "name": "Muesli-croustillant-pomme-cannelle-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/muesli-croustillant-pomme-cannelle-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sarrasin-souffle", + "products": 1, + "id": "fr:sarrasin-souffle", + "name": "Sarrasin-souffle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flakes-d-epeautre-bio", + "products": 1, + "name": "Flakes-d-epeautre-bio", + "id": "fr:flakes-d-epeautre-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:coeurs-de-palmier", + "products": 1, + "id": "en:coeurs-de-palmier", + "name": "en:Coeurs-de-palmier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:blancs-de-poulet", + "id": "de:blancs-de-poulet", + "name": "de:Blancs-de-poulet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-goyavier", + "name": "Nectars-de-goyavier", + "id": "fr:nectars-de-goyavier", + "products": 1 + }, + { + "products": 1, + "id": "fr:tommes-noires", + "name": "Tommes-noires", + "url": "https://fr.openfoodfacts.org/categorie/tommes-noires" + }, + { + "products": 1, + "name": "Sirops-de-verveine", + "id": "fr:sirops-de-verveine", + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-verveine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-deshydratees", + "name": "en:Sauces-deshydratees", + "id": "en:sauces-deshydratees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruitbars", + "products": 1, + "id": "fr:fruitbars", + "name": "Fruitbars" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pangas", + "id": "fr:pangas", + "name": "Pangas", + "products": 1 + }, + { + "products": 1, + "name": "Chocolats-au-lait-au-sel-de-guerande", + "id": "fr:chocolats-au-lait-au-sel-de-guerande", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-sel-de-guerande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-au-noix", + "id": "fr:pains-au-noix", + "name": "Pains-au-noix", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/palets-normands", + "products": 1, + "id": "fr:palets-normands", + "name": "Palets-normands" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paves-de-truite-bio", + "products": 1, + "name": "Paves-de-truite-bio", + "id": "fr:paves-de-truite-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/truite-fumees-d-elevage", + "id": "fr:truite-fumees-d-elevage", + "name": "Truite-fumees-d-elevage", + "products": 1 + }, + { + "name": "Comté Tolosan", + "id": "fr:comte-tolosan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/comte-tolosan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2991076" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tisanes-reglisse-menthe", + "id": "fr:tisanes-reglisse-menthe", + "name": "Tisanes-reglisse-menthe", + "products": 1 + }, + { + "id": "fr:bourraches", + "name": "Bourraches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bourraches" + }, + { + "id": "sv:desserts-vegetaliens", + "name": "sv:Desserts-vegetaliens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:desserts-vegetaliens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-pain", + "name": "Pates-a-pain", + "id": "fr:pates-a-pain", + "products": 1 + }, + { + "products": 1, + "id": "fr:kits-pizzas", + "name": "Kits-pizzas", + "url": "https://fr.openfoodfacts.org/categorie/kits-pizzas" + }, + { + "id": "fr:fletan-fume", + "name": "Fletan-fume", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fletan-fume" + }, + { + "products": 1, + "name": "Puree-de-sesame-blanc-pele", + "id": "fr:puree-de-sesame-blanc-pele", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-sesame-blanc-pele" + }, + { + "products": 1, + "name": "Savennières", + "id": "fr:savennieres", + "url": "https://fr.openfoodfacts.org/categorie/savennieres" + }, + { + "products": 1, + "name": "Riz-long-parfume", + "id": "fr:riz-long-parfume", + "url": "https://fr.openfoodfacts.org/categorie/riz-long-parfume" + }, + { + "products": 1, + "id": "fr:beignets-sales", + "name": "Beignets-sales", + "url": "https://fr.openfoodfacts.org/categorie/beignets-sales" + }, + { + "products": 1, + "name": "C-est-une-aide-a-la-cuisine-pour-les-vegans", + "id": "fr:c-est-une-aide-a-la-cuisine-pour-les-vegans", + "url": "https://fr.openfoodfacts.org/categorie/c-est-une-aide-a-la-cuisine-pour-les-vegans" + }, + { + "name": "Financiers-au-citron", + "id": "fr:financiers-au-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/financiers-au-citron" + }, + { + "products": 1, + "name": "en:Lachs", + "id": "en:lachs", + "url": "https://fr.openfoodfacts.org/categorie/en:lachs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-aperitif", + "id": "fr:melange-aperitif", + "name": "Melange-aperitif", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caroubes", + "products": 1, + "name": "Caroubes", + "id": "fr:caroubes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/butter-chicken", + "id": "fr:butter-chicken", + "name": "Butter-chicken", + "products": 1 + }, + { + "products": 1, + "name": "Sauerrahm", + "id": "fr:sauerrahm", + "url": "https://fr.openfoodfacts.org/categorie/sauerrahm" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oursons", + "products": 1, + "name": "Oursons", + "id": "fr:oursons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-en-poudre", + "products": 1, + "id": "fr:preparations-en-poudre", + "name": "Preparations-en-poudre" + }, + { + "name": "Kvass", + "id": "en:kvass", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/kvass", + "sameAs": [ + "https://www.wikidata.org/wiki/Q173773" + ] + }, + { + "id": "ru:сухарики-ржаные-со-вкусом-чёрной-икры", + "name": "ru:Сухарики-ржаные-со-вкусом-чёрной-икры", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D1%87%D1%91%D1%80%D0%BD%D0%BE%D0%B9-%D0%B8%D0%BA%D1%80%D1%8B" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:black-bread-croutons-with-caviar-flavour", + "id": "en:black-bread-croutons-with-caviar-flavour", + "name": "en:Black-bread-croutons-with-caviar-flavour", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D0%B8%D0%B7-%D1%87%D1%91%D1%80%D0%BD%D0%BE%D0%B3%D0%BE-%D1%85%D0%BB%D0%B5%D0%B1%D0%B0-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D0%BA%D1%80%D0%B0%D1%81%D0%BD%D0%BE%D0%B9-%D0%B8%D0%BA%D1%80%D1%8B", + "id": "en:сухарики-из-чёрного-хлеба-со-вкусом-красной-икры", + "name": "en:Сухарики-из-чёрного-хлеба-со-вкусом-красной-икры", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orecchiette", + "products": 1, + "name": "Orecchiette", + "id": "fr:orecchiette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:schwarzbrotcroutons-mit-lachskaviargeschmack", + "products": 1, + "id": "en:schwarzbrotcroutons-mit-lachskaviargeschmack", + "name": "en:Schwarzbrotcroutons-mit-lachskaviargeschmack" + }, + { + "id": "en:сухарики-из-чёрного-хлеба-с-ароматом-краба", + "name": "en:Сухарики-из-чёрного-хлеба-с-ароматом-краба", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D0%B8%D0%B7-%D1%87%D1%91%D1%80%D0%BD%D0%BE%D0%B3%D0%BE-%D1%85%D0%BB%D0%B5%D0%B1%D0%B0-%D1%81-%D0%B0%D1%80%D0%BE%D0%BC%D0%B0%D1%82%D0%BE%D0%BC-%D0%BA%D1%80%D0%B0%D0%B1%D0%B0" + }, + { + "id": "en:noix-de-cajou-salees", + "name": "en:Noix-de-cajou-salees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:noix-de-cajou-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-avec-des-morceaux", + "id": "fr:yaourts-aux-fruits-avec-des-morceaux", + "name": "Yaourts-aux-fruits-avec-des-morceaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-au-bifidus", + "products": 1, + "name": "Desserts-lactes-au-bifidus", + "id": "fr:desserts-lactes-au-bifidus" + }, + { + "name": "Dessert-lactes-natures-sucres", + "id": "fr:dessert-lactes-natures-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-lactes-natures-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:chocolats-noirs-extra-fin", + "name": "es:Chocolats-noirs-extra-fin", + "id": "es:chocolats-noirs-extra-fin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-boire-gout-fraise", + "name": "en:Yaourts-a-boire-gout-fraise", + "id": "en:yaourts-a-boire-gout-fraise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BF%D0%B8%D0%B2%D0%BE-%D1%82%D1%91%D0%BC%D0%BD%D0%BE%D0%B5-%D0%BF%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%B8%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B5-%D1%84%D0%B8%D0%BB%D1%8C%D1%82%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B5", + "products": 1, + "id": "ru:пиво-тёмное-пастеризованное-фильтрованное", + "name": "ru:Пиво-тёмное-пастеризованное-фильтрованное" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cabillaud-surgele", + "name": "Cabillaud-surgele", + "id": "fr:cabillaud-surgele", + "products": 1 + }, + { + "products": 1, + "name": "de:Rosmarillen-konfiture", + "id": "de:rosmarillen-konfiture", + "url": "https://fr.openfoodfacts.org/categorie/de:rosmarillen-konfiture" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-de-france", + "products": 1, + "id": "fr:vin-de-france", + "name": "Vin-de-france" + }, + { + "name": "Cotes-de-gascogne-blanc", + "id": "fr:cotes-de-gascogne-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-gascogne-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-au-citron", + "name": "Crepes-fourrees-au-citron", + "id": "fr:crepes-fourrees-au-citron", + "products": 1 + }, + { + "name": "Moules-farcies", + "id": "fr:moules-farcies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moules-farcies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-sucrants", + "products": 1, + "name": "Produits-sucrants", + "id": "fr:produits-sucrants" + }, + { + "products": 1, + "name": "Champignons-de-paris-bruns", + "id": "fr:champignons-de-paris-bruns", + "url": "https://fr.openfoodfacts.org/categorie/champignons-de-paris-bruns" + }, + { + "name": "en:Sandwich", + "id": "en:sandwich", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sandwich" + }, + { + "products": 1, + "id": "fr:feuilletes-fruits-de-mer", + "name": "Feuilletes-fruits-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-fruits-de-mer" + }, + { + "id": "fr:feuilletes-jambon-champignon", + "name": "Feuilletes-jambon-champignon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-jambon-champignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cabillaud-en-conserve", + "name": "Cabillaud-en-conserve", + "id": "fr:cabillaud-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chair-de-crabe", + "id": "fr:chair-de-crabe", + "name": "Chair-de-crabe", + "products": 1 + }, + { + "products": 1, + "id": "fr:thon-aux-epices", + "name": "Thon-aux-epices", + "url": "https://fr.openfoodfacts.org/categorie/thon-aux-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-completes", + "products": 1, + "id": "fr:farines-completes", + "name": "Farines-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-galante", + "id": "fr:pommes-de-terre-galante", + "name": "Pommes-de-terre-galante", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-cerf", + "name": "Viandes-de-cerf", + "id": "fr:viandes-de-cerf", + "products": 1 + }, + { + "products": 1, + "name": "en:Assortiment-de-fromages", + "id": "en:assortiment-de-fromages", + "url": "https://fr.openfoodfacts.org/categorie/en:assortiment-de-fromages" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q232755" + ], + "url": "https://fr.openfoodfacts.org/categorie/pitayas", + "name": "Pitayas", + "id": "en:pitayas", + "products": 1 + }, + { + "id": "fr:fromages-a-la-ciboulette", + "name": "Fromages-a-la-ciboulette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-la-ciboulette" + }, + { + "products": 1, + "id": "fr:poivre-sauvage-de-madagascar", + "name": "Poivre-sauvage-de-madagascar", + "url": "https://fr.openfoodfacts.org/categorie/poivre-sauvage-de-madagascar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:wasabi", + "name": "ja:Wasabi", + "id": "ja:wasabi", + "products": 1 + }, + { + "name": "Persil-lyophilise", + "id": "fr:persil-lyophilise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/persil-lyophilise" + }, + { + "products": 1, + "name": "ja:Epicerie", + "id": "ja:epicerie", + "url": "https://fr.openfoodfacts.org/categorie/ja:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-en-grain", + "id": "fr:cafe-en-grain", + "name": "Cafe-en-grain", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-anisade", + "products": 1, + "id": "fr:sirops-d-anisade", + "name": "Sirops-d-anisade" + }, + { + "id": "en:puffed-khorasan-wheat", + "name": "Blé de Khorasan soufflé", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ble-de-khorasan-souffle" + }, + { + "name": "Choux-blancs", + "id": "fr:choux-blancs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/choux-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/reglisses-sales", + "id": "fr:reglisses-sales", + "name": "Reglisses-sales", + "products": 1 + }, + { + "products": 1, + "id": "en:frozen-pineapples", + "name": "Ananas surgelés", + "url": "https://fr.openfoodfacts.org/categorie/ananas-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-bruts-roses", + "name": "Champagnes-bruts-roses", + "id": "fr:champagnes-bruts-roses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pur-malt", + "name": "Pur-malt", + "id": "fr:pur-malt", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-pour-soupes", + "products": 1, + "id": "fr:pates-pour-soupes", + "name": "Pates-pour-soupes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cerfeuil", + "name": "Cerfeuil", + "id": "fr:cerfeuil", + "products": 1 + }, + { + "products": 1, + "id": "fr:miels-bio", + "name": "Miels-bio", + "url": "https://fr.openfoodfacts.org/categorie/miels-bio" + }, + { + "id": "fr:aoc-saumur-blanc", + "name": "Aoc-saumur-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aoc-saumur-blanc" + }, + { + "name": "Rully-1er-cru-les-cloux", + "id": "fr:rully-1er-cru-les-cloux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rully-1er-cru-les-cloux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucres-aromatises", + "name": "Sucres-aromatises", + "id": "fr:sucres-aromatises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:asperges-blanches", + "name": "en:Asperges-blanches", + "id": "en:asperges-blanches", + "products": 1 + }, + { + "id": "fr:pates-de-manioc", + "name": "Pates-de-manioc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-manioc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kasekuchen", + "name": "Kasekuchen", + "id": "fr:kasekuchen", + "products": 1 + }, + { + "products": 1, + "name": "it:Potages", + "id": "it:potages", + "url": "https://fr.openfoodfacts.org/categorie/it:potages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-dips", + "products": 1, + "name": "Sauces-a-dips", + "id": "fr:sauces-a-dips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/belgian-strong-ale", + "name": "Belgian-strong-ale", + "id": "fr:belgian-strong-ale", + "products": 1 + }, + { + "name": "Pour-plats-chinois", + "id": "fr:pour-plats-chinois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pour-plats-chinois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-chinois", + "products": 1, + "id": "fr:legumes-chinois", + "name": "Legumes-chinois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pulpes-d-ail", + "name": "Pulpes-d-ail", + "id": "fr:pulpes-d-ail", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macon-village-chardonnay", + "products": 1, + "name": "Macon-village-chardonnay", + "id": "fr:macon-village-chardonnay" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-legumes-pour-bebe", + "products": 1, + "id": "fr:puree-de-legumes-pour-bebe", + "name": "Puree-de-legumes-pour-bebe" + }, + { + "products": 1, + "name": "Pains-au-chocolat-a-cuire", + "id": "fr:pains-au-chocolat-a-cuire", + "url": "https://fr.openfoodfacts.org/categorie/pains-au-chocolat-a-cuire" + }, + { + "products": 1, + "name": "Hache-de-porc", + "id": "fr:hache-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/hache-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pineaux", + "id": "fr:pineaux", + "name": "Pineaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-en-vente-en-boulangerie", + "products": 1, + "name": "Biscottes-en-vente-en-boulangerie", + "id": "fr:biscottes-en-vente-en-boulangerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/meursault", + "sameAs": [ + "https://www.wikidata.org/wiki/Q7889954" + ], + "id": "fr:meursault", + "name": "Meursault", + "products": 1 + }, + { + "name": "Foies-gras-d-oies-cuits", + "id": "fr:foies-gras-d-oies-cuits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-d-oies-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:biscuits-et-gateaux", + "products": 1, + "name": "sr:Biscuits-et-gateaux", + "id": "sr:biscuits-et-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-vendus-dans-les-annees-1950", + "name": "Produits vendus dans les années 1950", + "id": "en:products-sold-in-the-1950s", + "products": 1 + }, + { + "products": 1, + "id": "fr:sauces-chocolat", + "name": "Sauces-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/sauces-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:%D1%82%D0%B0%D1%80%D1%85%D1%83%D0%BD", + "id": "de:тархун", + "name": "de:Тархун", + "products": 1 + }, + { + "name": "Ailes-de-poulet-epicees", + "id": "fr:ailes-de-poulet-epicees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ailes-de-poulet-epicees" + }, + { + "products": 1, + "name": "Les-marconnets", + "id": "fr:les-marconnets", + "url": "https://fr.openfoodfacts.org/categorie/les-marconnets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-eclairs", + "products": 1, + "name": "Mini-eclairs", + "id": "fr:mini-eclairs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-pesto-mozzarella", + "id": "fr:ravioli-pesto-mozzarella", + "name": "Ravioli-pesto-mozzarella", + "products": 1 + }, + { + "id": "fr:saucisson-pur-porc", + "name": "Saucisson-pur-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucisson-pur-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscat-sec", + "products": 1, + "id": "fr:muscat-sec", + "name": "Muscat-sec" + }, + { + "products": 1, + "name": "Chocolats-noirs-aux-fruits-a-coque", + "id": "fr:chocolats-noirs-aux-fruits-a-coque", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-fruits-a-coque" + }, + { + "name": "Pate-gascon-a-l-armagnac", + "id": "fr:pate-gascon-a-l-armagnac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-gascon-a-l-armagnac" + }, + { + "products": 1, + "id": "fr:des-d-epaule", + "name": "Des-d-epaule", + "url": "https://fr.openfoodfacts.org/categorie/des-d-epaule" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-au-ble-complet", + "name": "Biscottes-au-ble-complet", + "id": "fr:biscottes-au-ble-complet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-aux-legumes", + "products": 1, + "id": "de:boissons-aux-legumes", + "name": "de:Boissons-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-abricot-fraise-framboise-peche-poire", + "products": 1, + "id": "fr:fromages-frais-abricot-fraise-framboise-peche-poire", + "name": "Fromages-frais-abricot-fraise-framboise-peche-poire" + }, + { + "id": "fr:substituts-de-sel", + "name": "Substituts-de-sel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/substituts-de-sel" + }, + { + "name": "es:Poelees", + "id": "es:poelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:poelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-combavas", + "products": 1, + "name": "Confitures-de-combavas", + "id": "fr:confitures-de-combavas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulghours-de-riz", + "id": "fr:boulghours-de-riz", + "name": "Boulghours-de-riz", + "products": 1 + }, + { + "name": "de:Scokocreme", + "id": "de:scokocreme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:scokocreme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-amandier", + "id": "fr:miels-d-amandier", + "name": "Miels-d-amandier", + "products": 1 + }, + { + "name": "it:Fruits-et-produits-derives", + "id": "it:fruits-et-produits-derives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:fruits-et-produits-derives" + }, + { + "products": 1, + "id": "fr:gourdes-de-compote-de-pomme", + "name": "Gourdes-de-compote-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/gourdes-de-compote-de-pomme" + }, + { + "products": 1, + "id": "fr:mona-lisa-potatoes", + "name": "Mona-lisa-potatoes", + "url": "https://fr.openfoodfacts.org/categorie/mona-lisa-potatoes" + }, + { + "products": 1, + "name": "it:Susswaren", + "id": "it:susswaren", + "url": "https://fr.openfoodfacts.org/categorie/it:susswaren" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-forestieres", + "name": "Mousses-forestieres", + "id": "fr:mousses-forestieres", + "products": 1 + }, + { + "products": 1, + "name": "en:Huiles-de-lin", + "id": "en:huiles-de-lin", + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-de-lin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/limonade-bio", + "products": 1, + "name": "Limonade-bio", + "id": "fr:limonade-bio" + }, + { + "products": 1, + "name": "en:Vins-roses", + "id": "en:vins-roses", + "url": "https://fr.openfoodfacts.org/categorie/en:vins-roses" + }, + { + "name": "Ananas-victoria", + "id": "fr:ananas-victoria", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ananas-victoria" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spirales-semi-completes", + "products": 1, + "id": "fr:spirales-semi-completes", + "name": "Spirales-semi-completes" + }, + { + "products": 1, + "name": "Yaourts-avec-morceaux-de-fruits", + "id": "fr:yaourts-avec-morceaux-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-avec-morceaux-de-fruits" + }, + { + "name": "ru:Conservas", + "id": "ru:conservas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:conservas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confiseries-de-france", + "id": "en:confiseries-de-france", + "name": "en:Confiseries-de-france", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-caramels", + "products": 1, + "name": "Assortiments-de-caramels", + "id": "fr:assortiments-de-caramels" + }, + { + "name": "sv:Lasagnes-a-la-bolognaise", + "id": "sv:lasagnes-a-la-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:lasagnes-a-la-bolognaise" + }, + { + "id": "en:wines-from-hungary", + "name": "Vins de Hongrie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-hongrie" + }, + { + "id": "fr:quenelles-financieres", + "name": "Quenelles-financieres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-financieres" + }, + { + "products": 1, + "name": "Crepes-salees-fourrees-jambon-champignons-emmental", + "id": "fr:crepes-salees-fourrees-jambon-champignons-emmental", + "url": "https://fr.openfoodfacts.org/categorie/crepes-salees-fourrees-jambon-champignons-emmental" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-extra-fin", + "id": "fr:chocolats-noirs-extra-fin", + "name": "Chocolats-noirs-extra-fin", + "products": 1 + }, + { + "products": 1, + "id": "en:boisson", + "name": "en:Boisson", + "url": "https://fr.openfoodfacts.org/categorie/en:boisson" + }, + { + "products": 1, + "id": "fr:cervelles-de-porc", + "name": "Cervelles-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/cervelles-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arbois-pupillin-mousseux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2859682" + ], + "name": "Arbois Pupillin mousseux", + "id": "fr:arbois-pupillin-mousseux", + "products": 1 + }, + { + "id": "en:yaourts-brasses-a-la-myrtille", + "name": "en:Yaourts-brasses-a-la-myrtille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-brasses-a-la-myrtille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plateau-exotique", + "products": 1, + "id": "fr:plateau-exotique", + "name": "Plateau-exotique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rice-cake", + "products": 1, + "name": "en:Rice-cake", + "id": "en:rice-cake" + }, + { + "id": "de:шоколад-с-миндалём", + "name": "de:Шоколад-с-миндалём", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4-%D1%81-%D0%BC%D0%B8%D0%BD%D0%B4%D0%B0%D0%BB%D1%91%D0%BC" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morilles-sechees", + "id": "fr:morilles-sechees", + "name": "Morilles-sechees", + "products": 1 + }, + { + "products": 1, + "name": "de:Nudelsuppe", + "id": "de:nudelsuppe", + "url": "https://fr.openfoodfacts.org/categorie/de:nudelsuppe" + }, + { + "id": "fr:lait-en-poudre-pour-bebe", + "name": "Lait-en-poudre-pour-bebe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lait-en-poudre-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:blanquettes-de-canard", + "id": "en:blanquettes-de-canard", + "name": "en:Blanquettes-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:witte-wijnen-uit-frankrijk", + "name": "nl:Witte-wijnen-uit-frankrijk", + "id": "nl:witte-wijnen-uit-frankrijk", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:yaourts-au-lait-de-brebis", + "name": "pt:Yaourts-au-lait-de-brebis", + "id": "pt:yaourts-au-lait-de-brebis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanquette-de-canard-a-la-creme-fraiche", + "products": 1, + "id": "en:blanquette-of-duck-with-fresh-cream", + "name": "Blanquette de canard à la crème fraiche" + }, + { + "id": "de:legumes-secs", + "name": "de:Legumes-secs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-secs" + }, + { + "products": 1, + "id": "fr:cocos", + "name": "Cocos", + "url": "https://fr.openfoodfacts.org/categorie/cocos" + }, + { + "products": 1, + "id": "en:frutos-de-cascara", + "name": "en:Frutos-de-cascara", + "url": "https://fr.openfoodfacts.org/categorie/en:frutos-de-cascara" + }, + { + "products": 1, + "id": "en:cereales", + "name": "en:Cereales", + "url": "https://fr.openfoodfacts.org/categorie/en:cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-farcis-au-thon", + "id": "fr:poivrons-farcis-au-thon", + "name": "Poivrons-farcis-au-thon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/premier-prix", + "name": "Premier-prix", + "id": "fr:premier-prix", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mejillones-en-escabeche", + "name": "es:Mejillones-en-escabeche", + "id": "es:mejillones-en-escabeche", + "products": 1 + }, + { + "products": 1, + "name": "Alpilles", + "id": "fr:alpilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2840061" + ], + "url": "https://fr.openfoodfacts.org/categorie/alpilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-aux-fruits", + "id": "fr:preparation-aux-fruits", + "name": "Preparation-aux-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-fruits-rouges-light", + "products": 1, + "id": "fr:sodas-aux-fruits-rouges-light", + "name": "Sodas-aux-fruits-rouges-light" + }, + { + "name": "xx:Tortiglioni", + "id": "xx:tortiglioni", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:tortiglioni" + }, + { + "products": 1, + "name": "Beurres-a-l-ail", + "id": "fr:beurres-a-l-ail", + "url": "https://fr.openfoodfacts.org/categorie/beurres-a-l-ail" + }, + { + "name": "Senfe", + "id": "fr:senfe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/senfe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-champignons", + "products": 1, + "id": "fr:eminces-de-champignons", + "name": "Eminces-de-champignons" + }, + { + "products": 1, + "id": "en:by-appointment-to-her-majesty-queen-elizabeth-ii", + "name": "en:By-appointment-to-her-majesty-queen-elizabeth-ii", + "url": "https://fr.openfoodfacts.org/categorie/en:by-appointment-to-her-majesty-queen-elizabeth-ii" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ratatouille-a-la-provencale", + "products": 1, + "name": "Ratatouille-a-la-provencale", + "id": "fr:ratatouille-a-la-provencale" + }, + { + "products": 1, + "id": "fr:macarons-aux-amandes", + "name": "Macarons-aux-amandes", + "url": "https://fr.openfoodfacts.org/categorie/macarons-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-noirs-aromatises", + "products": 1, + "id": "en:thes-noirs-aromatises", + "name": "en:Thes-noirs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gedroogd-fruit", + "products": 1, + "name": "Gedroogd-fruit", + "id": "fr:gedroogd-fruit" + }, + { + "products": 1, + "id": "fr:pizzas-au-bacon", + "name": "Pizzas-au-bacon", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-au-bacon" + }, + { + "name": "The-vert-nature", + "id": "fr:the-vert-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/the-vert-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-cervelas", + "name": "Salades-de-cervelas", + "id": "fr:salades-de-cervelas", + "products": 1 + }, + { + "id": "fr:noix-de-pecan-grillees", + "name": "Noix-de-pecan-grillees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/noix-de-pecan-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saint-marcellin", + "name": "de:Saint-marcellin", + "id": "de:saint-marcellin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:orzo-solubile", + "products": 1, + "name": "it:Orzo-solubile", + "id": "it:orzo-solubile" + }, + { + "name": "en:Frutos-de-cascara-y-derivados", + "id": "en:frutos-de-cascara-y-derivados", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:frutos-de-cascara-y-derivados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/margalets", + "products": 1, + "name": "Margalets", + "id": "fr:margalets" + }, + { + "name": "Ragout-de-boeuf", + "id": "fr:ragout-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ragout-de-boeuf" + }, + { + "products": 1, + "id": "en:fromages-de-vache", + "name": "en:Fromages-de-vache", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-de-vache" + }, + { + "name": "Dessrt", + "id": "fr:dessrt", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessrt" + }, + { + "name": "es:Huevas-de-cabella-en-aceite-de-girasol", + "id": "es:huevas-de-cabella-en-aceite-de-girasol", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:huevas-de-cabella-en-aceite-de-girasol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anchois-en-saumure", + "products": 1, + "id": "fr:anchois-en-saumure", + "name": "Anchois-en-saumure" + }, + { + "id": "es:confiseries-de-noel", + "name": "es:Confiseries-de-noel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:confiseries-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-tofou", + "products": 1, + "name": "Galettes-de-tofou", + "id": "fr:galettes-de-tofou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-vert-earl-grey-bio-ethiquable", + "products": 1, + "id": "fr:the-vert-earl-grey-bio-ethiquable", + "name": "The-vert-earl-grey-bio-ethiquable" + }, + { + "products": 1, + "id": "fr:chocolats-fourres-au-cognac", + "name": "Chocolats-fourres-au-cognac", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-cognac" + }, + { + "name": "The-earl-grey", + "id": "fr:the-earl-grey", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/the-earl-grey" + }, + { + "name": "Olives-vertes-farcie-a-la-pate-d-anchois", + "id": "fr:olives-vertes-farcie-a-la-pate-d-anchois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-farcie-a-la-pate-d-anchois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-jus-d-orange-et-de-soja", + "products": 1, + "id": "en:orange-juice-and-soy-drinks", + "name": "Boissons à base de jus d'orange et de soja" + }, + { + "products": 1, + "name": "Turron-de-alicante", + "id": "fr:turron-de-alicante", + "url": "https://fr.openfoodfacts.org/categorie/turron-de-alicante" + }, + { + "products": 1, + "name": "Soda-aux-agrumes", + "id": "fr:soda-aux-agrumes", + "url": "https://fr.openfoodfacts.org/categorie/soda-aux-agrumes" + }, + { + "id": "en:yaourts-vanille", + "name": "en:Yaourts-vanille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eau-minerale-naturelle-gazeifiee", + "products": 1, + "id": "fr:eau-minerale-naturelle-gazeifiee", + "name": "Eau-minerale-naturelle-gazeifiee" + }, + { + "products": 1, + "id": "en:cornichons-au-vinaigre-pasteurises", + "name": "en:Cornichons-au-vinaigre-pasteurises", + "url": "https://fr.openfoodfacts.org/categorie/en:cornichons-au-vinaigre-pasteurises" + }, + { + "id": "fr:tartes-au-citron-vert", + "name": "Tartes-au-citron-vert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-citron-vert" + }, + { + "products": 1, + "name": "Nougat-au-sesame", + "id": "fr:nougat-au-sesame", + "url": "https://fr.openfoodfacts.org/categorie/nougat-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epinard-en-bocal", + "products": 1, + "name": "Epinard-en-bocal", + "id": "fr:epinard-en-bocal" + }, + { + "products": 1, + "id": "fr:pate-imperial", + "name": "Pate-imperial", + "url": "https://fr.openfoodfacts.org/categorie/pate-imperial" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-pomme-de-terre", + "name": "Flocons-de-pomme-de-terre", + "id": "fr:flocons-de-pomme-de-terre", + "products": 1 + }, + { + "products": 1, + "id": "fr:doubles-concentres-de-tomates", + "name": "Doubles-concentres-de-tomates", + "url": "https://fr.openfoodfacts.org/categorie/doubles-concentres-de-tomates" + }, + { + "products": 1, + "name": "Foies-d-agneaux", + "id": "fr:foies-d-agneaux", + "url": "https://fr.openfoodfacts.org/categorie/foies-d-agneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/longanes-au-sirop", + "products": 1, + "name": "Longanes-au-sirop", + "id": "fr:longanes-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coco-de-paimpol", + "id": "fr:coco-de-paimpol", + "name": "Coco-de-paimpol", + "products": 1 + }, + { + "name": "Farines-panifiables", + "id": "fr:farines-panifiables", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-panifiables" + }, + { + "products": 1, + "id": "fr:oeufs-roux", + "name": "Oeufs-roux", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-roux" + }, + { + "id": "en:yaourts-a-l-abricot", + "name": "en:Yaourts-a-l-abricot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viatmine-c-en-comprimes", + "products": 1, + "id": "fr:viatmine-c-en-comprimes", + "name": "Viatmine-c-en-comprimes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-oignons", + "products": 1, + "name": "Sauces-aux-oignons", + "id": "fr:sauces-aux-oignons" + }, + { + "id": "de:pates-de-curry-verte", + "name": "de:Pates-de-curry-verte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-de-curry-verte" + }, + { + "products": 1, + "id": "ru:milchschokolade", + "name": "ru:Milchschokolade", + "url": "https://fr.openfoodfacts.org/categorie/ru:milchschokolade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girandole-torsades", + "id": "fr:girandole-torsades", + "name": "Girandole-torsades", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-speck", + "products": 1, + "id": "fr:jambons-speck", + "name": "Jambons-speck" + }, + { + "products": 1, + "name": "Jus-d-aloe-vera", + "id": "fr:jus-d-aloe-vera", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-aloe-vera" + }, + { + "products": 1, + "name": "Calmars-en-conserves", + "id": "fr:calmars-en-conserves", + "url": "https://fr.openfoodfacts.org/categorie/calmars-en-conserves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-riz-soja-et-lentilles-bio", + "products": 1, + "id": "fr:melange-de-riz-soja-et-lentilles-bio", + "name": "Melange-de-riz-soja-et-lentilles-bio" + }, + { + "products": 1, + "name": "Mais-en-epis", + "id": "fr:mais-en-epis", + "url": "https://fr.openfoodfacts.org/categorie/mais-en-epis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-d-argan-grille-bio", + "products": 1, + "name": "Huile-d-argan-grille-bio", + "id": "fr:huile-d-argan-grille-bio" + }, + { + "id": "fr:chocolast-blancs-aux-noisettes", + "name": "Chocolast-blancs-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolast-blancs-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schapenyoghurts", + "name": "Schapenyoghurts", + "id": "fr:schapenyoghurts", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/substitution-de-repas", + "products": 1, + "id": "fr:substitution-de-repas", + "name": "Substitution-de-repas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-bomba", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5706296" + ], + "id": "en:bomba-rices", + "name": "Riz Bomba", + "products": 1 + }, + { + "name": "Sauce-sucree", + "id": "fr:sauce-sucree", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-sucree" + }, + { + "products": 1, + "name": "en:Grains-soufflees", + "id": "en:grains-soufflees", + "url": "https://fr.openfoodfacts.org/categorie/en:grains-soufflees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-soufflees", + "id": "en:cereales-soufflees", + "name": "en:Cereales-soufflees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:avoine-souffle", + "id": "en:avoine-souffle", + "name": "en:Avoine-souffle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-en-dosette", + "products": 1, + "id": "fr:thes-en-dosette", + "name": "Thes-en-dosette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/volle-slagromen", + "name": "Volle-slagromen", + "id": "fr:volle-slagromen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:plats-prepares", + "name": "ru:Plats-prepares", + "id": "ru:plats-prepares", + "products": 1 + }, + { + "name": "Filet-de-porc-seche", + "id": "fr:filet-de-porc-seche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-de-porc-seche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eclairs", + "products": 1, + "id": "en:eclairs", + "name": "en:Eclairs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bourbon-biscuits", + "id": "en:bourbon-biscuits", + "name": "en:Bourbon-biscuits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-aux-champignons", + "products": 1, + "name": "en:Sauces-aux-champignons", + "id": "en:sauces-aux-champignons" + }, + { + "products": 1, + "id": "fr:lapins-chasseurs", + "name": "Lapins-chasseurs", + "url": "https://fr.openfoodfacts.org/categorie/lapins-chasseurs" + }, + { + "id": "es:fruits-enrobes-au-chocolat", + "name": "es:Fruits-enrobes-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-enrobes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vinaigres-balsamiques-de-modene", + "name": "de:Vinaigres-balsamiques-de-modene", + "id": "de:vinaigres-balsamiques-de-modene", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-cabillaud-facon-meuniere", + "name": "Filets-de-cabillaud-facon-meuniere", + "id": "fr:filets-de-cabillaud-facon-meuniere", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:%D1%87%D0%B0%D0%B9-%D1%87%D1%91%D1%80%D0%BD%D1%8B%D0%B9-%D0%B1%D0%B0%D0%B9%D1%85%D0%BE%D0%B2%D1%8B%D0%B9-%D0%BC%D0%B5%D0%BB%D0%BA%D0%BE%D0%BB%D0%B8%D1%81%D1%82%D0%BE%D0%B2%D0%BE%D0%B9", + "products": 1, + "id": "en:чай-чёрный-байховый-мелколистовой", + "name": "en:Чай-чёрный-байховый-мелколистовой" + }, + { + "products": 1, + "id": "he:aliments-d-origine-vegetale", + "name": "he:Aliments-d-origine-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/he:aliments-d-origine-vegetale" + }, + { + "id": "it:alcool", + "name": "it:Alcool", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:alcool" + }, + { + "name": "Thes-noirs-aromatises-a-la-bergamote", + "id": "fr:thes-noirs-aromatises-a-la-bergamote", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-aromatises-a-la-bergamote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:eaux-de-vie", + "id": "pl:eaux-de-vie", + "name": "pl:Eaux-de-vie", + "products": 1 + }, + { + "products": 1, + "id": "en:lardons-natures", + "name": "en:Lardons-natures", + "url": "https://fr.openfoodfacts.org/categorie/en:lardons-natures" + }, + { + "products": 1, + "id": "fr:filets-de-poulets-rotis", + "name": "Filets-de-poulets-rotis", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulets-rotis" + }, + { + "id": "pl:boissons-alcoolisees", + "name": "pl:Boissons-alcoolisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-alcoolisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-aux-oignons", + "name": "Boudins-aux-oignons", + "id": "fr:boudins-aux-oignons", + "products": 1 + }, + { + "id": "fr:vessie-de-poisson-frit", + "name": "Vessie-de-poisson-frit", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vessie-de-poisson-frit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pieds-de-veau", + "products": 1, + "name": "Pieds-de-veau", + "id": "fr:pieds-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/persil-lyophilisee", + "id": "en:lyophilized-parsley", + "name": "Persil lyophilisée", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:alcools-forts", + "products": 1, + "name": "pl:Alcools-forts", + "id": "pl:alcools-forts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biere-britanniques", + "id": "en:biere-britanniques", + "name": "en:Biere-britanniques", + "products": 1 + }, + { + "products": 1, + "id": "es:bayas-de-goji-deshidratadas", + "name": "es:Bayas-de-goji-deshidratadas", + "url": "https://fr.openfoodfacts.org/categorie/es:bayas-de-goji-deshidratadas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pintade-aux-speculoos", + "products": 1, + "name": "Pintade-aux-speculoos", + "id": "fr:pintade-aux-speculoos" + }, + { + "products": 1, + "name": "pl:Salad-cream", + "id": "pl:salad-cream", + "url": "https://fr.openfoodfacts.org/categorie/pl:salad-cream" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-issus-de-l-agriculture-biologique", + "products": 1, + "id": "fr:produits-issus-de-l-agriculture-biologique", + "name": "Produits-issus-de-l-agriculture-biologique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-de-langoustines", + "products": 1, + "name": "Mousse-de-langoustines", + "id": "fr:mousse-de-langoustines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardellenfilets", + "id": "fr:sardellenfilets", + "name": "Sardellenfilets", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:bigos", + "id": "pl:bigos", + "name": "pl:Bigos", + "products": 1 + }, + { + "id": "de:glaces-au-soja", + "name": "de:Glaces-au-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:glaces-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-canard", + "products": 1, + "name": "Lardons-de-canard", + "id": "fr:lardons-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:sprats", + "products": 1, + "id": "pl:sprats", + "name": "pl:Sprats" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:steinofenpizza", + "products": 1, + "id": "de:steinofenpizza", + "name": "de:Steinofenpizza" + }, + { + "id": "fr:palmiers-au-fromage", + "name": "Palmiers-au-fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/palmiers-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:fromage", + "id": "pl:fromage", + "name": "pl:Fromage", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/merguez-veritable", + "name": "Merguez-veritable", + "id": "fr:merguez-veritable", + "products": 1 + }, + { + "products": 1, + "id": "fr:gesiers-de-volaille-eminces", + "name": "Gesiers-de-volaille-eminces", + "url": "https://fr.openfoodfacts.org/categorie/gesiers-de-volaille-eminces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:french-red-wine", + "id": "en:french-red-wine", + "name": "en:French-red-wine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-a-la-grecque-sur-lit-d-abricot", + "id": "fr:yaourt-a-la-grecque-sur-lit-d-abricot", + "name": "Yaourt-a-la-grecque-sur-lit-d-abricot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:eau-aromatisee", + "products": 1, + "name": "en:Eau-aromatisee", + "id": "en:eau-aromatisee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:snacks-sucres", + "products": 1, + "id": "ar:snacks-sucres", + "name": "ar:Snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-granny-smith", + "products": 1, + "id": "fr:jus-de-pommes-granny-smith", + "name": "Jus-de-pommes-granny-smith" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:gaufrettes", + "products": 1, + "name": "ar:Gaufrettes", + "id": "ar:gaufrettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:cereales-et-derives", + "name": "pt:Cereales-et-derives", + "id": "pt:cereales-et-derives", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartare-d-algues", + "name": "Tartare-d-algues", + "id": "fr:tartare-d-algues", + "products": 1 + }, + { + "id": "ar:gaufres", + "name": "ar:Gaufres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ar:gaufres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:biscuits-et-gateaux", + "products": 1, + "name": "ar:Biscuits-et-gateaux", + "id": "ar:biscuits-et-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crabes-farcis", + "id": "fr:crabes-farcis", + "name": "Crabes-farcis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sambal-oelek", + "products": 1, + "name": "Sambal-oelek", + "id": "fr:sambal-oelek" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-madarines", + "name": "Confitures-de-madarines", + "id": "fr:confitures-de-madarines", + "products": 1 + }, + { + "name": "Plats-a-base-de-produits-de-la-mer", + "id": "fr:plats-a-base-de-produits-de-la-mer", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-produits-de-la-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-chips", + "name": "Mais-chips", + "id": "fr:mais-chips", + "products": 1 + }, + { + "name": "Santenay", + "id": "fr:santenay", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/santenay", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3472815" + ] + }, + { + "name": "Produit-congele", + "id": "fr:produit-congele", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-congele" + }, + { + "products": 1, + "id": "zh:preparations-culinaires", + "name": "zh:Preparations-culinaires", + "url": "https://fr.openfoodfacts.org/categorie/zh:preparations-culinaires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-rouges", + "id": "fr:oignons-rouges", + "name": "Oignons-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crumble-aux-fruits-rouges", + "name": "Crumble-aux-fruits-rouges", + "id": "fr:crumble-aux-fruits-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:bebidas-soluveis", + "id": "pt:bebidas-soluveis", + "name": "pt:Bebidas-soluveis", + "products": 1 + }, + { + "products": 1, + "id": "fr:plats-prepares-aux-endives", + "name": "Plats-prepares-aux-endives", + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-aux-endives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuiti-cu-crema", + "products": 1, + "id": "fr:biscuiti-cu-crema", + "name": "Biscuiti-cu-crema" + }, + { + "products": 1, + "name": "Mini-choux", + "id": "fr:mini-choux", + "url": "https://fr.openfoodfacts.org/categorie/mini-choux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:biscuits-aperitifs", + "products": 1, + "name": "ro:Biscuits-aperitifs", + "id": "ro:biscuits-aperitifs" + }, + { + "products": 1, + "id": "fr:plat-cuisine-au-rayon-frais", + "name": "Plat-cuisine-au-rayon-frais", + "url": "https://fr.openfoodfacts.org/categorie/plat-cuisine-au-rayon-frais" + }, + { + "products": 1, + "id": "en:milchersatz", + "name": "en:Milchersatz", + "url": "https://fr.openfoodfacts.org/categorie/en:milchersatz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rosette-bio", + "products": 1, + "id": "fr:rosette-bio", + "name": "Rosette-bio" + }, + { + "products": 1, + "id": "en:nussriegel", + "name": "en:Nussriegel", + "url": "https://fr.openfoodfacts.org/categorie/en:nussriegel" + }, + { + "name": "Fondue-aux-3-fromages", + "id": "fr:fondue-aux-3-fromages", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fondue-aux-3-fromages" + }, + { + "products": 1, + "name": "Miel-d-oranger-bio", + "id": "fr:miel-d-oranger-bio", + "url": "https://fr.openfoodfacts.org/categorie/miel-d-oranger-bio" + }, + { + "products": 1, + "id": "sr:sodas-au-cola", + "name": "sr:Sodas-au-cola", + "url": "https://fr.openfoodfacts.org/categorie/sr:sodas-au-cola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-saveur-vinaigre", + "id": "fr:chips-saveur-vinaigre", + "name": "Chips-saveur-vinaigre", + "products": 1 + }, + { + "name": "Sorbets-a-la-peche-de-vigne", + "id": "fr:sorbets-a-la-peche-de-vigne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-a-la-peche-de-vigne" + }, + { + "products": 1, + "id": "fr:salami-de-volaille", + "name": "Salami-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/salami-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:non-alcoholic-soft-drink", + "products": 1, + "name": "en:Non-alcoholic-soft-drink", + "id": "en:non-alcoholic-soft-drink" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/habanero", + "id": "fr:habanero", + "name": "Habanero", + "products": 1 + }, + { + "name": "Projet-archeologie", + "id": "fr:projet-archeologie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/projet-archeologie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-isotoniques", + "id": "en:boissons-isotoniques", + "name": "en:Boissons-isotoniques", + "products": 1 + }, + { + "products": 1, + "name": "Jus-d-ananas-100-pur-jus", + "id": "fr:jus-d-ananas-100-pur-jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-ananas-100-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-de-foie-gras-d-oie", + "id": "fr:mousse-de-foie-gras-d-oie", + "name": "Mousse-de-foie-gras-d-oie", + "products": 1 + }, + { + "products": 1, + "id": "fr:cremes-de-tomates-sechees", + "name": "Cremes-de-tomates-sechees", + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-tomates-sechees" + }, + { + "products": 1, + "id": "fr:beurres-aux-algues", + "name": "Beurres-aux-algues", + "url": "https://fr.openfoodfacts.org/categorie/beurres-aux-algues" + }, + { + "products": 1, + "name": "Soja-jaune-en-grain", + "id": "fr:soja-jaune-en-grain", + "url": "https://fr.openfoodfacts.org/categorie/soja-jaune-en-grain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-au-poivre", + "products": 1, + "name": "Filets-de-maquereaux-au-poivre", + "id": "fr:filets-de-maquereaux-au-poivre" + }, + { + "products": 1, + "id": "fr:poireaux-eminces", + "name": "Poireaux-eminces", + "url": "https://fr.openfoodfacts.org/categorie/poireaux-eminces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boulettes-de-poulet", + "products": 1, + "id": "fr:boulettes-de-poulet", + "name": "Boulettes-de-poulet" + }, + { + "id": "fr:steaks-de-boeuf-frais", + "name": "Steaks-de-boeuf-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-boeuf-frais" + }, + { + "products": 1, + "id": "fr:cervelle-de-veau", + "name": "Cervelle-de-veau", + "url": "https://fr.openfoodfacts.org/categorie/cervelle-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-sans-lactose", + "id": "fr:biscuits-sans-lactose", + "name": "Biscuits-sans-lactose", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-au-poulet-surgelees", + "name": "Pates-au-poulet-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/pates-au-poulet-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-cuissons", + "products": 1, + "name": "Jus-de-cuissons", + "id": "fr:jus-de-cuissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:poivrons", + "products": 1, + "name": "en:Poivrons", + "id": "en:poivrons" + }, + { + "id": "fr:saint-veran", + "name": "Saint-Véran", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saint-veran", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3463561" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:instant-teegetrank", + "products": 1, + "id": "de:instant-teegetrank", + "name": "de:Instant-teegetrank" + }, + { + "name": "Smeerbare-vetten", + "id": "fr:smeerbare-vetten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/smeerbare-vetten" + }, + { + "products": 1, + "name": "Souffles", + "id": "fr:souffles", + "url": "https://fr.openfoodfacts.org/categorie/souffles" + }, + { + "products": 1, + "id": "fr:vollkornbrot-mini-toasts-pain-de-seigle-complet", + "name": "Vollkornbrot-mini-toasts-pain-de-seigle-complet", + "url": "https://fr.openfoodfacts.org/categorie/vollkornbrot-mini-toasts-pain-de-seigle-complet" + }, + { + "id": "fr:pak-choi", + "name": "Pak-choi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pak-choi" + }, + { + "name": "Lingots", + "id": "fr:lingots", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lingots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-pour-bebe", + "id": "en:laits-pour-bebe", + "name": "en:Laits-pour-bebe", + "products": 1 + }, + { + "id": "fr:bison", + "name": "Bison", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bison" + }, + { + "products": 1, + "id": "fr:barres-marbrees", + "name": "Barres-marbrees", + "url": "https://fr.openfoodfacts.org/categorie/barres-marbrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-daim", + "products": 1, + "name": "Viandes-de-daim", + "id": "fr:viandes-de-daim" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-lait-entier", + "products": 1, + "name": "Fromages-au-lait-entier", + "id": "fr:fromages-au-lait-entier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:succedanes-du-sucre", + "id": "pl:succedanes-du-sucre", + "name": "pl:Succedanes-du-sucre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dromadaire", + "products": 1, + "id": "en:dromedary", + "name": "Dromadaire" + }, + { + "name": "Petits-fromages-frais-de-chevre-nature-bio", + "id": "fr:petits-fromages-frais-de-chevre-nature-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/petits-fromages-frais-de-chevre-nature-bio" + }, + { + "products": 1, + "id": "fr:riz-long-blanc-camargue", + "name": "Riz-long-blanc-camargue", + "url": "https://fr.openfoodfacts.org/categorie/riz-long-blanc-camargue" + }, + { + "id": "fr:bourgogne-pinot-noir", + "name": "Bourgogne-pinot-noir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-pinot-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbon-drageifie", + "name": "Bonbon-drageifie", + "id": "fr:bonbon-drageifie", + "products": 1 + }, + { + "products": 1, + "id": "it:passata-di-pomodoro", + "name": "it:Passata-di-pomodoro", + "url": "https://fr.openfoodfacts.org/categorie/it:passata-di-pomodoro" + }, + { + "products": 1, + "name": "Sauces-puttanesca", + "id": "fr:sauces-puttanesca", + "url": "https://fr.openfoodfacts.org/categorie/sauces-puttanesca" + }, + { + "id": "fr:formaggio-a-pasta-filata", + "name": "Formaggio-a-pasta-filata", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/formaggio-a-pasta-filata" + }, + { + "products": 1, + "name": "en:Kangaroo-steak", + "id": "en:kangaroo-steak", + "url": "https://fr.openfoodfacts.org/categorie/en:kangaroo-steak" + }, + { + "name": "de:Chocolats-au-lait-fourres", + "id": "de:chocolats-au-lait-fourres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chocolats-au-lait-fourres" + }, + { + "products": 1, + "id": "it:funghetti", + "name": "it:Funghetti", + "url": "https://fr.openfoodfacts.org/categorie/it:funghetti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pecharmant", + "products": 1, + "name": "Pécharmant", + "id": "fr:pecharmant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-frais", + "products": 1, + "name": "de:Legumes-frais", + "id": "de:legumes-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/waffeln", + "products": 1, + "id": "fr:waffeln", + "name": "Waffeln" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-bio", + "products": 1, + "id": "fr:biscuits-bio", + "name": "Biscuits-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:miels-de-fleurs", + "products": 1, + "name": "de:Miels-de-fleurs", + "id": "de:miels-de-fleurs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barre-fruitee", + "id": "fr:barre-fruitee", + "name": "Barre-fruitee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutarde-en-grain", + "products": 1, + "name": "Moutarde-en-grain", + "id": "fr:moutarde-en-grain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vanilla-oat-milks", + "name": "Vanilla-oat-milks", + "id": "fr:vanilla-oat-milks", + "products": 1 + }, + { + "id": "fr:pierrevert", + "name": "Pierrevert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pierrevert" + }, + { + "id": "fr:christollen", + "name": "Christollen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/christollen" + }, + { + "id": "fr:saucisse-de-l-ardeche", + "name": "Saucisse-de-l-ardeche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucisse-de-l-ardeche" + }, + { + "name": "Moutarde-mi-forte", + "id": "fr:moutarde-mi-forte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutarde-mi-forte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-au-vinaigre", + "products": 1, + "id": "fr:legumes-au-vinaigre", + "name": "Legumes-au-vinaigre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tonic-sans-sucres-sans-aspartame", + "name": "Tonic-sans-sucres-sans-aspartame", + "id": "fr:tonic-sans-sucres-sans-aspartame", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-cereales", + "products": 1, + "id": "en:laits-de-cereales", + "name": "en:Laits-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-a-l-avoine-biologique", + "id": "fr:creme-a-l-avoine-biologique", + "name": "Creme-a-l-avoine-biologique", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:decorations-alimentaires", + "products": 1, + "name": "en:Decorations-alimentaires", + "id": "en:decorations-alimentaires" + }, + { + "products": 1, + "id": "fr:puree-de-pois", + "name": "Puree-de-pois", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-secs-enrobes-de-chocolat", + "sameAs": [ + "https://www.wikidata.org/wiki/Q5103586" + ], + "name": "Raisins secs enrobés de chocolat", + "id": "en:chocolate-covered-raisins", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haddocks", + "products": 1, + "name": "Haddocks", + "id": "fr:haddocks" + }, + { + "products": 1, + "id": "fr:preparations-pour-tabloules", + "name": "Preparations-pour-tabloules", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-tabloules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:refrigeres", + "id": "de:refrigeres", + "name": "de:Refrigeres", + "products": 1 + }, + { + "products": 1, + "id": "fr:nonnettes-au-chocolat", + "name": "Nonnettes-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-au-chocolat" + }, + { + "products": 1, + "id": "fr:escargots-frais", + "name": "Escargots-frais", + "url": "https://fr.openfoodfacts.org/categorie/escargots-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-secs-gourmands-lentilles-ble-pois-casses", + "id": "fr:legumes-secs-gourmands-lentilles-ble-pois-casses", + "name": "Legumes-secs-gourmands-lentilles-ble-pois-casses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ab-8-monat", + "id": "fr:ab-8-monat", + "name": "Ab-8-monat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-groseilles", + "name": "Marmelades-de-groseilles", + "id": "fr:marmelades-de-groseilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajine-de-patate-douce", + "products": 1, + "id": "fr:tajine-de-patate-douce", + "name": "Tajine-de-patate-douce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vinegar-spray", + "products": 1, + "id": "en:vinegar-spray", + "name": "en:Vinegar-spray" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:bieres-mexicaines", + "id": "es:bieres-mexicaines", + "name": "es:Bieres-mexicaines", + "products": 1 + }, + { + "id": "fr:mousses-de-canard-au-sauternes", + "name": "Mousses-de-canard-au-sauternes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-canard-au-sauternes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/myrtilles-au-sirop", + "products": 1, + "name": "Myrtilles-au-sirop", + "id": "fr:myrtilles-au-sirop" + }, + { + "name": "es:Trappist-beers", + "id": "es:trappist-beers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:trappist-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/belgian-ale", + "id": "fr:belgian-ale", + "name": "Belgian-ale", + "products": 1 + }, + { + "id": "de:sandwichs-garnis-de-charcuteries", + "name": "de:Sandwichs-garnis-de-charcuteries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sandwichs-garnis-de-charcuteries" + }, + { + "products": 1, + "name": "Sauce-a-l-ananas", + "id": "fr:sauce-a-l-ananas", + "url": "https://fr.openfoodfacts.org/categorie/sauce-a-l-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-lyophilises", + "products": 1, + "id": "fr:plats-prepares-lyophilises", + "name": "Plats-prepares-lyophilises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ails-au-vinaigre", + "name": "Ails-au-vinaigre", + "id": "fr:ails-au-vinaigre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-blanc-du-surinam", + "id": "fr:riz-blanc-du-surinam", + "name": "Riz-blanc-du-surinam", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lasagnes-poulet-champignons", + "name": "Lasagnes-poulet-champignons", + "id": "fr:lasagnes-poulet-champignons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins-italiens", + "id": "de:vins-italiens", + "name": "de:Vins-italiens", + "products": 1 + }, + { + "products": 1, + "name": "Dosettes", + "id": "fr:dosettes", + "url": "https://fr.openfoodfacts.org/categorie/dosettes" + }, + { + "products": 1, + "id": "fr:barres-energisantes", + "name": "Barres-energisantes", + "url": "https://fr.openfoodfacts.org/categorie/barres-energisantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquelets", + "id": "fr:coquelets", + "name": "Coquelets", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:torsades", + "products": 1, + "name": "en:Torsades", + "id": "en:torsades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orangettes-enrobees-de-chocolat", + "id": "fr:orangettes-enrobees-de-chocolat", + "name": "Orangettes-enrobees-de-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-en-quartiers", + "name": "Tomates-en-quartiers", + "id": "fr:tomates-en-quartiers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colas-regionaux", + "name": "Colas-regionaux", + "id": "fr:colas-regionaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tortilla-wraps", + "products": 1, + "id": "en:tortilla-wraps", + "name": "en:Tortilla-wraps" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-refrigeres", + "id": "fr:jus-de-fruits-refrigeres", + "name": "Jus-de-fruits-refrigeres", + "products": 1 + }, + { + "id": "xx:wasser", + "name": "xx:Wasser", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:wasser" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/smoothies-100-fruits", + "name": "Smoothies-100-fruits", + "id": "fr:smoothies-100-fruits", + "products": 1 + }, + { + "name": "Marmelades-de-pommes", + "id": "fr:marmelades-de-pommes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes-pour-infusions", + "products": 1, + "name": "Plantes-pour-infusions", + "id": "fr:plantes-pour-infusions" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-blancs-au-foie-gras-de-canard", + "products": 1, + "id": "fr:boudins-blancs-au-foie-gras-de-canard", + "name": "Boudins-blancs-au-foie-gras-de-canard" + }, + { + "products": 1, + "name": "Abricots-demi-fruits-au-sirop", + "id": "fr:abricots-demi-fruits-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/abricots-demi-fruits-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-aux-quatre-fromages", + "products": 1, + "id": "en:pizzas-aux-quatre-fromages", + "name": "en:Pizzas-aux-quatre-fromages" + }, + { + "products": 1, + "id": "fr:noix-de-grenoble", + "name": "Noix-de-grenoble", + "url": "https://fr.openfoodfacts.org/categorie/noix-de-grenoble" + }, + { + "name": "Zoete-drop", + "id": "fr:zoete-drop", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/zoete-drop" + }, + { + "name": "Non alimentaire", + "id": "en:non-food-products", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/non-alimentaire" + }, + { + "id": "fr:matiere-grasse-vegetale-a-tartiner", + "name": "Matiere-grasse-vegetale-a-tartiner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/matiere-grasse-vegetale-a-tartiner" + }, + { + "name": "Rillettes-de-maquereau-a-la-creole", + "id": "fr:rillettes-de-maquereau-a-la-creole", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-maquereau-a-la-creole" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiture-extra", + "id": "fr:confiture-extra", + "name": "Confiture-extra", + "products": 1 + }, + { + "products": 1, + "id": "fr:pale-beer", + "name": "Pale-beer", + "url": "https://fr.openfoodfacts.org/categorie/pale-beer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-fine", + "products": 1, + "id": "fr:soupes-fine", + "name": "Soupes-fine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-de-jambon", + "id": "fr:saucisse-de-jambon", + "name": "Saucisse-de-jambon", + "products": 1 + }, + { + "name": "ru:Сухарики-пшеничные", + "id": "ru:сухарики-пшеничные", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D0%BF%D1%88%D0%B5%D0%BD%D0%B8%D1%87%D0%BD%D1%8B%D0%B5" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paillassons-de-legumes", + "products": 1, + "id": "fr:paillassons-de-legumes", + "name": "Paillassons-de-legumes" + }, + { + "name": "en:Indian-pale-ale", + "id": "en:indian-pale-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:indian-pale-ale" + }, + { + "id": "de:meerrettich", + "name": "de:Meerrettich", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:meerrettich" + }, + { + "products": 1, + "name": "Spirales-completes-au-ble-khorasan", + "id": "fr:spirales-completes-au-ble-khorasan", + "url": "https://fr.openfoodfacts.org/categorie/spirales-completes-au-ble-khorasan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maise", + "name": "Maise", + "id": "fr:maise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/peperkorrels", + "name": "Peperkorrels", + "id": "fr:peperkorrels", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-blondes", + "name": "nl:Bieres-blondes", + "id": "nl:bieres-blondes", + "products": 1 + }, + { + "products": 1, + "id": "es:olives-noires-entieres", + "name": "es:Olives-noires-entieres", + "url": "https://fr.openfoodfacts.org/categorie/es:olives-noires-entieres" + }, + { + "products": 1, + "id": "en:milchprodukte", + "name": "en:Milchprodukte", + "url": "https://fr.openfoodfacts.org/categorie/en:milchprodukte" + }, + { + "id": "en:chocolats-suisses", + "name": "en:Chocolats-suisses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-suisses" + }, + { + "name": "en:Joghurt", + "id": "en:joghurt", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:joghurt" + }, + { + "name": "en:Thes-noirs", + "id": "en:thes-noirs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:thes-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-vegetaliens", + "products": 1, + "name": "en:Desserts-vegetaliens", + "id": "en:desserts-vegetaliens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:farfalles", + "id": "de:farfalles", + "name": "de:Farfalles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:huiles-d-olive", + "id": "it:huiles-d-olive", + "name": "it:Huiles-d-olive", + "products": 1 + }, + { + "id": "fr:chablis-grand-cru", + "name": "Chablis grand cru", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2947280" + ], + "url": "https://fr.openfoodfacts.org/categorie/chablis-grand-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-au-soja", + "products": 1, + "name": "en:Desserts-au-soja", + "id": "en:desserts-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cakes-sales", + "id": "fr:preparations-pour-cakes-sales", + "name": "Preparations-pour-cakes-sales", + "products": 1 + }, + { + "name": "de:Filets-de-harengs", + "id": "de:filets-de-harengs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:filets-de-harengs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ko:pates-de-piment", + "name": "ko:Pates-de-piment", + "id": "ko:pates-de-piment", + "products": 1 + }, + { + "products": 1, + "name": "Sojajoghurt", + "id": "fr:sojajoghurt", + "url": "https://fr.openfoodfacts.org/categorie/sojajoghurt" + }, + { + "products": 1, + "id": "fr:produits-fermentees", + "name": "Produits-fermentees", + "url": "https://fr.openfoodfacts.org/categorie/produits-fermentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:bevande-vegetali", + "id": "it:bevande-vegetali", + "name": "it:Bevande-vegetali", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-l-abricot", + "id": "fr:biscuits-a-l-abricot", + "name": "Biscuits-a-l-abricot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-de-noix-de-coco-et-d-amande", + "id": "fr:lait-de-noix-de-coco-et-d-amande", + "name": "Lait-de-noix-de-coco-et-d-amande", + "products": 1 + }, + { + "id": "fr:feuillantines", + "name": "Feuillantines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feuillantines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:broodstrooisels", + "products": 1, + "name": "nl:Broodstrooisels", + "id": "nl:broodstrooisels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-de-canard", + "id": "fr:plats-a-base-de-viande-de-canard", + "name": "Plats-a-base-de-viande-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-galettes-vegetales", + "products": 1, + "id": "fr:preparations-pour-galettes-vegetales", + "name": "Preparations-pour-galettes-vegetales" + }, + { + "products": 1, + "id": "fr:nuggets-de-saumon", + "name": "Nuggets-de-saumon", + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-saumon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:crostini-di-pane-nero-con-gusto-di-caviale", + "name": "it:Crostini-di-pane-nero-con-gusto-di-caviale", + "id": "it:crostini-di-pane-nero-con-gusto-di-caviale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pauillac", + "sameAs": [ + "https://www.wikidata.org/wiki/Q770230" + ], + "products": 1, + "name": "Pauillac", + "id": "fr:pauillac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-riz", + "name": "Cremes-de-riz", + "id": "fr:cremes-de-riz", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-instantanees-pour-boissons", + "products": 1, + "name": "Preparations-instantanees-pour-boissons", + "id": "fr:preparations-instantanees-pour-boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-en-sucre", + "id": "fr:vermicelles-en-sucre", + "name": "Vermicelles-en-sucre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-cakes-aux-figues-bio", + "name": "Mini-cakes-aux-figues-bio", + "id": "fr:mini-cakes-aux-figues-bio", + "products": 1 + }, + { + "products": 1, + "name": "Anneaux-de-calmar", + "id": "fr:anneaux-de-calmar", + "url": "https://fr.openfoodfacts.org/categorie/anneaux-de-calmar" + }, + { + "name": "en:Postres-de-soja", + "id": "en:postres-de-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:postres-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-fruits-a-tartiner", + "products": 1, + "id": "fr:pate-de-fruits-a-tartiner", + "name": "Pate-de-fruits-a-tartiner" + }, + { + "id": "fr:tomates-a-l-huile", + "name": "Tomates-a-l-huile", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tomates-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-fourrees", + "id": "fr:barres-fourrees", + "name": "Barres-fourrees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specerijen", + "products": 1, + "id": "fr:specerijen", + "name": "Specerijen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orge", + "name": "Jus-d-orge", + "id": "fr:jus-d-orge", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/queue-de-langouste", + "id": "fr:queue-de-langouste", + "name": "Queue-de-langouste", + "products": 1 + }, + { + "products": 1, + "name": "en:Pates-charcutiers", + "id": "en:pates-charcutiers", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-charcutiers" + }, + { + "id": "nb:snacks-sucres", + "name": "nb:Snacks-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nb:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-extra-fin", + "name": "Chocolat-extra-fin", + "id": "fr:chocolat-extra-fin", + "products": 1 + }, + { + "products": 1, + "name": "es:Miels-de-lavande", + "id": "es:miels-de-lavande", + "url": "https://fr.openfoodfacts.org/categorie/es:miels-de-lavande" + }, + { + "products": 1, + "id": "fr:espadon", + "name": "Espadon", + "url": "https://fr.openfoodfacts.org/categorie/espadon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:confiseries", + "id": "xx:confiseries", + "name": "xx:Confiseries", + "products": 1 + }, + { + "products": 1, + "id": "fr:cheddar-chive-crisps", + "name": "Cheddar-chive-crisps", + "url": "https://fr.openfoodfacts.org/categorie/cheddar-chive-crisps" + }, + { + "products": 1, + "id": "fr:avoine-complet", + "name": "Avoine-complet", + "url": "https://fr.openfoodfacts.org/categorie/avoine-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-preparer", + "products": 1, + "name": "Desserts-a-preparer", + "id": "fr:desserts-a-preparer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-d-angole-verts-en-conserve", + "products": 1, + "name": "Pois d'Angole verts en conserve", + "id": "en:canned-green-pigeon-peas" + }, + { + "products": 1, + "id": "fr:marinade", + "name": "Marinade", + "url": "https://fr.openfoodfacts.org/categorie/marinade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-au-paprika", + "products": 1, + "name": "Saucissons-au-paprika", + "id": "fr:saucissons-au-paprika" + }, + { + "name": "Igp-sable-de-camargue", + "id": "fr:igp-sable-de-camargue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/igp-sable-de-camargue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-lactes-a-la-vanille", + "name": "en:Desserts-lactes-a-la-vanille", + "id": "en:desserts-lactes-a-la-vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fromages-de-chevre", + "name": "es:Fromages-de-chevre", + "id": "es:fromages-de-chevre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hareng-marine-a-l-aneth", + "products": 1, + "id": "fr:hareng-marine-a-l-aneth", + "name": "Hareng-marine-a-l-aneth" + }, + { + "name": "Gateaux-a-la-noix-de-coco", + "id": "fr:gateaux-a-la-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-a-la-noix-de-coco" + }, + { + "products": 1, + "id": "fr:jus-de-tomates-sale", + "name": "Jus-de-tomates-sale", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-tomates-sale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ciboulette-seche-moulue", + "name": "Ciboulette sèche moulue", + "id": "en:ground-dried-chives", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/duo-d-olives-a-la-toscane", + "products": 1, + "name": "Duo-d-olives-a-la-toscane", + "id": "fr:duo-d-olives-a-la-toscane" + }, + { + "id": "de:backmischung", + "name": "de:Backmischung", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:backmischung" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-fraise-groseille", + "products": 1, + "id": "fr:compotes-fraise-groseille", + "name": "Compotes fraise groseille" + }, + { + "products": 1, + "id": "nl:laits-demi-ecremes", + "name": "nl:Laits-demi-ecremes", + "url": "https://fr.openfoodfacts.org/categorie/nl:laits-demi-ecremes" + }, + { + "name": "pt:Laits-demi-ecremes", + "id": "pt:laits-demi-ecremes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:laits-demi-ecremes" + }, + { + "id": "fr:sodas-ai-gingembre", + "name": "Sodas-ai-gingembre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sodas-ai-gingembre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-completes-au-ble-khorasan", + "id": "fr:penne-completes-au-ble-khorasan", + "name": "Penne-completes-au-ble-khorasan", + "products": 1 + }, + { + "products": 1, + "name": "Filets-de-truites", + "id": "fr:filets-de-truites", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-truites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-gibiers-de-chasse", + "name": "Rillettes de gibiers de chasse", + "id": "fr:rillettes-de-gibiers-de-chasse", + "products": 1 + }, + { + "products": 1, + "id": "fr:gaufres-sucrees", + "name": "Gaufres-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/gaufres-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiserie-assorties", + "products": 1, + "id": "fr:confiserie-assorties", + "name": "Confiserie-assorties" + }, + { + "products": 1, + "id": "fr:riz-rond-complet", + "name": "Riz-rond-complet", + "url": "https://fr.openfoodfacts.org/categorie/riz-rond-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-royales-bami-goreng", + "id": "fr:nouilles-royales-bami-goreng", + "name": "Nouilles-royales-bami-goreng", + "products": 1 + }, + { + "id": "fr:barres-de-regime", + "name": "Barres-de-regime", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/barres-de-regime" + }, + { + "products": 1, + "name": "Muffins à la banane", + "id": "en:banana-muffins", + "url": "https://fr.openfoodfacts.org/categorie/muffins-a-la-banane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-cranberry", + "products": 1, + "name": "Nectars-de-cranberry", + "id": "fr:nectars-de-cranberry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/uk:graines-de-tournesol-et-derives", + "products": 1, + "id": "uk:graines-de-tournesol-et-derives", + "name": "uk:Graines-de-tournesol-et-derives" + }, + { + "products": 1, + "name": "Curry-doux", + "id": "fr:curry-doux", + "url": "https://fr.openfoodfacts.org/categorie/curry-doux" + }, + { + "products": 1, + "id": "it:vinaigres-de-vin", + "name": "it:Vinaigres-de-vin", + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigres-de-vin" + }, + { + "name": "en:Lasagnes-a-la-bolognaise", + "id": "en:lasagnes-a-la-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:lasagnes-a-la-bolognaise" + }, + { + "name": "Boyaux-de-porc", + "id": "fr:boyaux-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boyaux-de-porc" + }, + { + "products": 1, + "name": "it:Nero-d-avola", + "id": "it:nero-d-avola", + "url": "https://fr.openfoodfacts.org/categorie/it:nero-d-avola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-corses", + "id": "fr:charcuteries-corses", + "name": "Charcuteries-corses", + "products": 1 + }, + { + "name": "Yaourts-au-lait-de-vache", + "id": "fr:yaourts-au-lait-de-vache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-de-vache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-enrobes-au-chocolat", + "id": "en:fruits-enrobes-au-chocolat", + "name": "en:Fruits-enrobes-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-l-orange", + "products": 1, + "name": "Biscuits-a-l-orange", + "id": "fr:biscuits-a-l-orange" + }, + { + "products": 1, + "name": "nl:Gehaktkruiden", + "id": "nl:gehaktkruiden", + "url": "https://fr.openfoodfacts.org/categorie/nl:gehaktkruiden" + }, + { + "products": 1, + "name": "de:Haferkleie-mit-keim", + "id": "de:haferkleie-mit-keim", + "url": "https://fr.openfoodfacts.org/categorie/de:haferkleie-mit-keim" + }, + { + "name": "Pates-a-colombo", + "id": "fr:pates-a-colombo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-colombo" + }, + { + "id": "es:laits-de-cereales", + "name": "es:Laits-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ribs", + "products": 1, + "name": "Ribs", + "id": "fr:ribs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-campagne-bio", + "id": "fr:terrines-de-campagne-bio", + "name": "Terrines-de-campagne-bio", + "products": 1 + }, + { + "id": "fr:mueslis-au-chocolat-noir", + "name": "Mueslis-au-chocolat-noir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mueslis-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kaubonbon", + "id": "fr:kaubonbon", + "name": "Kaubonbon", + "products": 1 + }, + { + "name": "Sauce-piment", + "id": "fr:sauce-piment", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-piment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aop-cotes-d-auvergne", + "products": 1, + "id": "fr:aop-cotes-d-auvergne", + "name": "Aop-cotes-d-auvergne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dessert-patisserie", + "id": "fr:dessert-patisserie", + "name": "Dessert-patisserie", + "products": 1 + }, + { + "products": 1, + "name": "es:Sardines-a-l-huile-de-tournesol", + "id": "es:sardines-a-l-huile-de-tournesol", + "url": "https://fr.openfoodfacts.org/categorie/es:sardines-a-l-huile-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ethiquable", + "id": "fr:ethiquable", + "name": "Ethiquable", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-au-soja-aromatise", + "name": "Yaourt-au-soja-aromatise", + "id": "fr:yaourt-au-soja-aromatise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-de-haute-fermentation", + "name": "nl:Bieres-de-haute-fermentation", + "id": "nl:bieres-de-haute-fermentation", + "products": 1 + }, + { + "products": 1, + "name": "Panes-planos", + "id": "fr:panes-planos", + "url": "https://fr.openfoodfacts.org/categorie/panes-planos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:snacks-dulces", + "name": "de:Snacks-dulces", + "id": "de:snacks-dulces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/burgers-surgeles", + "id": "fr:burgers-surgeles", + "name": "Burgers-surgeles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petites-tartines-legeres-et-craquantes", + "id": "fr:petites-tartines-legeres-et-craquantes", + "name": "Petites-tartines-legeres-et-craquantes", + "products": 1 + }, + { + "name": "es:Plastique", + "id": "es:plastique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:plastique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:granites", + "products": 1, + "name": "pt:Granites", + "id": "pt:granites" + }, + { + "products": 1, + "name": "en:Yogurt-drink", + "id": "en:yogurt-drink", + "url": "https://fr.openfoodfacts.org/categorie/en:yogurt-drink" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-aux-plantes", + "products": 1, + "name": "Boissons-aux-plantes", + "id": "fr:boissons-aux-plantes" + }, + { + "name": "de:Tomates-sechees", + "id": "de:tomates-sechees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:tomates-sechees" + }, + { + "products": 1, + "name": "xx:Gartenbohnen", + "id": "xx:gartenbohnen", + "url": "https://fr.openfoodfacts.org/categorie/xx:gartenbohnen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pizza-schinken-champignon", + "products": 1, + "name": "de:Pizza-schinken-champignon", + "id": "de:pizza-schinken-champignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cantals-jeune", + "products": 1, + "name": "Cantals-jeune", + "id": "fr:cantals-jeune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/decoupe-de-poulet", + "products": 1, + "id": "fr:decoupe-de-poulet", + "name": "Decoupe-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-ulmo", + "name": "Miels d'ulmo", + "id": "fr:miels-d-ulmo", + "products": 1 + }, + { + "products": 1, + "name": "Truffes-aux-ecorces-d-oranges-confites", + "id": "fr:truffes-aux-ecorces-d-oranges-confites", + "url": "https://fr.openfoodfacts.org/categorie/truffes-aux-ecorces-d-oranges-confites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yogures-vegetales", + "products": 1, + "name": "en:Yogures-vegetales", + "id": "en:yogures-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/babynahrung", + "id": "fr:babynahrung", + "name": "Babynahrung", + "products": 1 + }, + { + "name": "Noisettes-sucrees", + "id": "fr:noisettes-sucrees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/noisettes-sucrees" + }, + { + "id": "fr:filet-de-bacon", + "name": "Filet-de-bacon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-de-bacon" + }, + { + "id": "fr:confitures-de-fraises-et-rhubarbe", + "name": "Confitures-de-fraises-et-rhubarbe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fraises-et-rhubarbe" + }, + { + "products": 1, + "id": "fr:vaucluse", + "name": "Vaucluse", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3555049" + ], + "url": "https://fr.openfoodfacts.org/categorie/vaucluse" + }, + { + "products": 1, + "name": "en:Golonka-staropolska", + "id": "en:golonka-staropolska", + "url": "https://fr.openfoodfacts.org/categorie/en:golonka-staropolska" + }, + { + "id": "fr:terrines-d-aubergine", + "name": "Terrines-d-aubergine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrines-d-aubergine" + }, + { + "products": 1, + "id": "fr:soja-a-tartiner", + "name": "Soja-a-tartiner", + "url": "https://fr.openfoodfacts.org/categorie/soja-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/serac", + "products": 1, + "id": "fr:serac", + "name": "Serac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:artichauds", + "id": "it:artichauds", + "name": "it:Artichauds", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:chocolats-au-lait", + "name": "nl:Chocolats-au-lait", + "id": "nl:chocolats-au-lait", + "products": 1 + }, + { + "id": "fr:hafermilch", + "name": "Hafermilch", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/hafermilch" + }, + { + "products": 1, + "id": "sr:sauces-tomate", + "name": "sr:Sauces-tomate", + "url": "https://fr.openfoodfacts.org/categorie/sr:sauces-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compote-nature", + "name": "Compote-nature", + "id": "fr:compote-nature", + "products": 1 + }, + { + "name": "Plats-prepares-a-poeler", + "id": "fr:plats-prepares-a-poeler", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-poeler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chicken-tikka-masala-and-pilau-rice", + "id": "fr:chicken-tikka-masala-and-pilau-rice", + "name": "Chicken-tikka-masala-and-pilau-rice", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:lentilles-vertes-du-puy", + "name": "en:Lentilles-vertes-du-puy", + "id": "en:lentilles-vertes-du-puy", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sirops-d-erable", + "products": 1, + "name": "es:Sirops-d-erable", + "id": "es:sirops-d-erable" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnudi", + "id": "fr:gnudi", + "name": "Gnudi", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/almidon-de-maiz", + "name": "Almidon-de-maiz", + "id": "fr:almidon-de-maiz", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pancakes-aux-oeufs-frais", + "products": 1, + "name": "Pancakes-aux-oeufs-frais", + "id": "fr:pancakes-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:brotchips-mit-bacon-aroma", + "products": 1, + "name": "de:Brotchips-mit-bacon-aroma", + "id": "de:brotchips-mit-bacon-aroma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:medaillons", + "id": "en:medaillons", + "name": "en:Medaillons", + "products": 1 + }, + { + "products": 1, + "name": "en:Yaourts-au-bifidus", + "id": "en:yaourts-au-bifidus", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-au-bifidus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crus-bourgeois", + "id": "fr:crus-bourgeois", + "name": "Crus-bourgeois", + "products": 1 + }, + { + "products": 1, + "id": "fr:lait-de-croissance-de-10-mois-a-3-ans", + "name": "Lait-de-croissance-de-10-mois-a-3-ans", + "url": "https://fr.openfoodfacts.org/categorie/lait-de-croissance-de-10-mois-a-3-ans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pumpernickel", + "id": "de:pumpernickel", + "name": "de:Pumpernickel", + "products": 1 + }, + { + "products": 1, + "name": "Pates-a-l-echalote", + "id": "fr:pates-a-l-echalote", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-l-echalote" + }, + { + "name": "en:Algen", + "id": "en:algen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:algen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-des-mines-de-sel", + "id": "fr:sels-des-mines-de-sel", + "name": "Sels des mines de sel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs-biologiques", + "name": "en:Oeufs-biologiques", + "id": "en:oeufs-biologiques", + "products": 1 + }, + { + "products": 1, + "name": "de:Desserts-lactes", + "id": "de:desserts-lactes", + "url": "https://fr.openfoodfacts.org/categorie/de:desserts-lactes" + }, + { + "id": "fr:vin-de-la-communaute-europeenne", + "name": "Vin-de-la-communaute-europeenne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vin-de-la-communaute-europeenne" + }, + { + "name": "Crustaces-surgeles", + "id": "fr:crustaces-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crustaces-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-de-coco", + "products": 1, + "name": "de:Eaux-de-coco", + "id": "de:eaux-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crozets-de-savoie", + "products": 1, + "name": "Crozets-de-savoie", + "id": "fr:crozets-de-savoie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-vertes-entieres", + "products": 1, + "id": "es:olives-vertes-entieres", + "name": "es:Olives-vertes-entieres" + }, + { + "products": 1, + "name": "Pizzas-tartiflette", + "id": "fr:pizzas-tartiflette", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-tartiflette" + }, + { + "name": "Mousses-de-dinde", + "id": "fr:mousses-de-dinde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-dinde" + }, + { + "name": "Backmischung", + "id": "fr:backmischung", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/backmischung" + }, + { + "id": "fr:farine-saint-maurice", + "name": "Farine-saint-maurice", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farine-saint-maurice" + }, + { + "id": "fr:maquereaux-surgeles", + "name": "Maquereaux-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/condiments-bio", + "id": "fr:condiments-bio", + "name": "Condiments-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mangues", + "products": 1, + "name": "en:Mangues", + "id": "en:mangues" + }, + { + "products": 1, + "name": "Pates-de-sanglier", + "id": "fr:pates-de-sanglier", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-sanglier" + }, + { + "name": "en:Fruits-frais", + "id": "en:fruits-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tautavel", + "products": 1, + "id": "fr:tautavel", + "name": "Tautavel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajine-de-legumes-surgele", + "products": 1, + "id": "fr:tajine-de-legumes-surgele", + "name": "Tajine-de-legumes-surgele" + }, + { + "name": "Sauces-au-vinaigre-balsamique", + "id": "fr:sauces-au-vinaigre-balsamique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-vinaigre-balsamique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/joues-de-porc-en-gelee", + "products": 1, + "name": "Joues-de-porc-en-gelee", + "id": "fr:joues-de-porc-en-gelee" + }, + { + "name": "Provolone", + "id": "fr:provolone", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/provolone" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pains-speciaux", + "id": "it:pains-speciaux", + "name": "it:Pains-speciaux", + "products": 1 + }, + { + "products": 1, + "name": "en:Mueslis-floconneux", + "id": "en:mueslis-floconneux", + "url": "https://fr.openfoodfacts.org/categorie/en:mueslis-floconneux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:persil-en-pot", + "products": 1, + "name": "en:Persil-en-pot", + "id": "en:persil-en-pot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-de-framboises", + "products": 1, + "id": "es:confitures-de-framboises", + "name": "es:Confitures-de-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cote-rotie", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1150915" + ], + "name": "Côte Rôtie", + "id": "fr:cote-rotie", + "products": 1 + }, + { + "products": 1, + "name": "en:Cafe-moulu", + "id": "en:cafe-moulu", + "url": "https://fr.openfoodfacts.org/categorie/en:cafe-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierges-de-noisette", + "products": 1, + "name": "Huiles-vierges-de-noisette", + "id": "fr:huiles-vierges-de-noisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boeuf-de-charolles", + "products": 1, + "name": "Bœuf de Charolles", + "id": "en:beef-from-charolles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-aromatisees", + "products": 1, + "id": "fr:liqueurs-aromatisees", + "name": "Liqueurs-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-artisanaux", + "products": 1, + "name": "Chocolats-artisanaux", + "id": "fr:chocolats-artisanaux" + }, + { + "id": "fr:huiles-bio", + "name": "Huiles-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-bio" + }, + { + "name": "en:Pains-grilles", + "id": "en:pains-grilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pains-grilles" + }, + { + "products": 1, + "name": "Moscato", + "id": "fr:moscato", + "url": "https://fr.openfoodfacts.org/categorie/moscato" + }, + { + "id": "fr:sprats-a-l-huile-de-soja", + "name": "Sprats-a-l-huile-de-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sprats-a-l-huile-de-soja" + }, + { + "id": "es:biscuits-sans-gluten", + "name": "es:Biscuits-sans-gluten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-sans-gluten" + }, + { + "products": 1, + "name": "Soupes-deshydratees-veloutes-de-bolets", + "id": "fr:soupes-deshydratees-veloutes-de-bolets", + "url": "https://fr.openfoodfacts.org/categorie/soupes-deshydratees-veloutes-de-bolets" + }, + { + "name": "Mousses-lactees-vanille", + "id": "fr:mousses-lactees-vanille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kokosmelken", + "products": 1, + "id": "fr:kokosmelken", + "name": "Kokosmelken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-cantonias", + "products": 1, + "name": "Riz-cantonias", + "id": "fr:riz-cantonias" + }, + { + "products": 1, + "name": "Oignons-en-conserve", + "id": "fr:oignons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/oignons-en-conserve" + }, + { + "name": "Fleurs-de-capres", + "id": "fr:fleurs-de-capres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fleurs-de-capres" + }, + { + "products": 1, + "id": "fr:bombones-de-chocolate-rellenos-de-cereza-y-licor", + "name": "Bombones-de-chocolate-rellenos-de-cereza-y-licor", + "url": "https://fr.openfoodfacts.org/categorie/bombones-de-chocolate-rellenos-de-cereza-y-licor" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:citrouille-en-conserve", + "products": 1, + "name": "en:Citrouille-en-conserve", + "id": "en:citrouille-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizza-refrigere", + "id": "fr:pizza-refrigere", + "name": "Pizza-refrigere", + "products": 1 + }, + { + "name": "Glaces-au-genepi", + "id": "fr:glaces-au-genepi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-genepi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rijst", + "name": "Rijst", + "id": "fr:rijst", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/grenouilles-en-chocolat", + "id": "fr:grenouilles-en-chocolat", + "name": "Grenouilles-en-chocolat", + "products": 1 + }, + { + "products": 1, + "name": "Pizzas-jambon-emmental", + "id": "fr:pizzas-jambon-emmental", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-jambon-emmental" + }, + { + "id": "fr:cognac-x-o", + "name": "Cognac-x-o", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cognac-x-o" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-aux-oeufs", + "name": "Galettes-aux-oeufs", + "id": "fr:galettes-aux-oeufs", + "products": 1 + }, + { + "id": "fr:allege-en-sucres", + "name": "Allege-en-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/allege-en-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-semi-completes", + "name": "Penne-semi-completes", + "id": "fr:penne-semi-completes", + "products": 1 + }, + { + "products": 1, + "name": "Produits-au-poisson", + "id": "fr:produits-au-poisson", + "url": "https://fr.openfoodfacts.org/categorie/produits-au-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-au-saumon", + "id": "fr:salades-au-saumon", + "name": "Salades-au-saumon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-nori", + "products": 1, + "id": "fr:feuilles-de-nori", + "name": "Feuilles-de-nori" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:riz", + "id": "es:riz", + "name": "es:Riz", + "products": 1 + }, + { + "name": "Beurres-de-cacahuetes-onctueux", + "id": "fr:beurres-de-cacahuetes-onctueux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beurres-de-cacahuetes-onctueux" + }, + { + "id": "fr:levains-d-epeautre", + "name": "Levains-d-epeautre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/levains-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/demi-lune-aubergine-mozzarella-aux-oeufs-frais", + "products": 1, + "id": "fr:demi-lune-aubergine-mozzarella-aux-oeufs-frais", + "name": "Demi-lune-aubergine-mozzarella-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:confitures-de-cerises", + "id": "de:confitures-de-cerises", + "name": "de:Confitures-de-cerises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains-croustillants", + "name": "de:Pains-croustillants", + "id": "de:pains-croustillants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-glacee-pistache", + "products": 1, + "id": "fr:creme-glacee-pistache", + "name": "Creme-glacee-pistache" + }, + { + "id": "fr:tortellinis-a-poeler", + "name": "Tortellinis-a-poeler", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tortellinis-a-poeler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/persillade", + "id": "fr:persillade", + "name": "Persillade", + "products": 1 + }, + { + "id": "fr:lunchbox", + "name": "Lunchbox", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lunchbox" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cancoillotte-ail-bio", + "id": "fr:cancoillotte-ail-bio", + "name": "Cancoillotte-ail-bio", + "products": 1 + }, + { + "name": "en:Pastilles", + "id": "en:pastilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pastilles" + }, + { + "id": "en:yogures-de-soja-naturales", + "name": "en:Yogures-de-soja-naturales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yogures-de-soja-naturales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batonnets-de-mozzarella", + "products": 1, + "id": "fr:batonnets-de-mozzarella", + "name": "Batonnets-de-mozzarella" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-nantua", + "products": 1, + "name": "en:Sauces-nantua", + "id": "en:sauces-nantua" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/renne", + "products": 1, + "id": "fr:renne", + "name": "Renne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-d-avoine-et-de-fruits", + "name": "Melange-d-avoine-et-de-fruits", + "id": "fr:melange-d-avoine-et-de-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-au-fromage", + "id": "fr:gnocchis-au-fromage", + "name": "Gnocchis-au-fromage", + "products": 1 + }, + { + "id": "fr:moutardes-aux-morilles", + "name": "Moutardes-aux-morilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-morilles" + }, + { + "products": 1, + "name": "Pleurotes en huître entiers", + "id": "en:whole-oyster-mushrooms", + "url": "https://fr.openfoodfacts.org/categorie/pleurotes-en-huitre-entiers" + }, + { + "id": "fr:marlins", + "name": "Marlins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marlins" + }, + { + "id": "fr:mousse-de-foie-de-porc", + "name": "Mousse-de-foie-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousse-de-foie-de-porc" + }, + { + "id": "fr:filets-d-anchois-aux-capres", + "name": "Filets-d-anchois-aux-capres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-d-anchois-aux-capres" + }, + { + "products": 1, + "id": "fr:salades-de-choux", + "name": "Salades-de-choux", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-choux" + }, + { + "name": "en:Yaourts-au-soja", + "id": "en:yaourts-au-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-au-soja" + }, + { + "products": 1, + "name": "Melange-de-4-huiles-vegetales-extraites-a-froid-bio", + "id": "fr:melange-de-4-huiles-vegetales-extraites-a-froid-bio", + "url": "https://fr.openfoodfacts.org/categorie/melange-de-4-huiles-vegetales-extraites-a-froid-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-sucre-de-canne-et-de-stevia", + "name": "Melange-de-sucre-de-canne-et-de-stevia", + "id": "fr:melange-de-sucre-de-canne-et-de-stevia", + "products": 1 + }, + { + "name": "Menthe verte surgelé", + "id": "en:frozen-spearmint", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/menthe-verte-surgele" + }, + { + "name": "it:Taralli", + "id": "it:taralli", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:taralli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nuggets-vegetaliens", + "products": 1, + "id": "fr:nuggets-vegetaliens", + "name": "Nuggets-vegetaliens" + }, + { + "products": 1, + "id": "fr:gateau-au-caramel", + "name": "Gateau-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/gateau-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:just-de-fruit-bio", + "products": 1, + "name": "de:Just-de-fruit-bio", + "id": "de:just-de-fruit-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morue-en-conserve", + "name": "Morue-en-conserve", + "id": "fr:morue-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/collines-rhodaniennes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2983452" + ], + "name": "Collines Rhodaniennes", + "id": "fr:collines-rhodaniennes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-biologique", + "name": "Jus-de-pomme-biologique", + "id": "fr:jus-de-pomme-biologique", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-et-de-peches", + "products": 1, + "name": "Jus-de-pomme-et-de-peches", + "id": "fr:jus-de-pomme-et-de-peches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parfum-cerise", + "products": 1, + "id": "fr:parfum-cerise", + "name": "Parfum-cerise" + }, + { + "id": "fr:fromage-de-brebis-aux-herbes", + "name": "Fromage-de-brebis-aux-herbes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromage-de-brebis-aux-herbes" + }, + { + "products": 1, + "name": "es:Galettes-de-riz-au-chocolat-noir", + "id": "es:galettes-de-riz-au-chocolat-noir", + "url": "https://fr.openfoodfacts.org/categorie/es:galettes-de-riz-au-chocolat-noir" + }, + { + "products": 1, + "name": "Gazeuse", + "id": "fr:gazeuse", + "url": "https://fr.openfoodfacts.org/categorie/gazeuse" + }, + { + "products": 1, + "name": "it:Yaourts-entiers", + "id": "it:yaourts-entiers", + "url": "https://fr.openfoodfacts.org/categorie/it:yaourts-entiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barquettes-aux-abricots", + "products": 1, + "id": "fr:barquettes-aux-abricots", + "name": "Barquettes-aux-abricots" + }, + { + "products": 1, + "name": "Pates-farcies-a-la-viande", + "id": "fr:pates-farcies-a-la-viande", + "url": "https://fr.openfoodfacts.org/categorie/pates-farcies-a-la-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-fraises", + "products": 1, + "id": "fr:purees-de-fraises", + "name": "Purees-de-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:grattons", + "products": 1, + "name": "en:Grattons", + "id": "en:grattons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-regime-saveur-noix-de-coco-enrobees-de-chocolat-au-lait", + "id": "fr:barres-de-regime-saveur-noix-de-coco-enrobees-de-chocolat-au-lait", + "name": "Barres-de-regime-saveur-noix-de-coco-enrobees-de-chocolat-au-lait", + "products": 1 + }, + { + "products": 1, + "name": "Pains-au-pavot", + "id": "fr:pains-au-pavot", + "url": "https://fr.openfoodfacts.org/categorie/pains-au-pavot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aguas", + "name": "en:Aguas", + "id": "en:aguas", + "products": 1 + }, + { + "id": "fr:cremes-glacees-menthe-avec-morceaux-chocolat-noir", + "name": "Cremes-glacees-menthe-avec-morceaux-chocolat-noir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-menthe-avec-morceaux-chocolat-noir" + }, + { + "products": 1, + "id": "de:bonbons-sans-sucre", + "name": "de:Bonbons-sans-sucre", + "url": "https://fr.openfoodfacts.org/categorie/de:bonbons-sans-sucre" + }, + { + "products": 1, + "id": "fr:dosettes-generique", + "name": "Dosettes-generique", + "url": "https://fr.openfoodfacts.org/categorie/dosettes-generique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/milk-shake-substitut-de-repas-saveur-chocolat", + "products": 1, + "name": "Milk-shake-substitut-de-repas-saveur-chocolat", + "id": "fr:milk-shake-substitut-de-repas-saveur-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/weizenmilch", + "products": 1, + "name": "Weizenmilch", + "id": "fr:weizenmilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trio-carottes-celeri-mais", + "products": 1, + "name": "Trio-carottes-celeri-mais", + "id": "fr:trio-carottes-celeri-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-au-citron", + "products": 1, + "id": "fr:saumons-au-citron", + "name": "Saumons-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-thau", + "sameAs": [ + "https://www.wikidata.org/wiki/Q21427118" + ], + "products": 1, + "name": "Côtes de Thau", + "id": "fr:cotes-de-thau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-noirs-antillais", + "products": 1, + "id": "fr:boudins-noirs-antillais", + "name": "Boudins-noirs-antillais" + }, + { + "products": 1, + "id": "fr:spinat", + "name": "Spinat", + "url": "https://fr.openfoodfacts.org/categorie/spinat" + }, + { + "products": 1, + "id": "en:chocoladebiscuits", + "name": "en:Chocoladebiscuits", + "url": "https://fr.openfoodfacts.org/categorie/en:chocoladebiscuits" + }, + { + "name": "Produits-de-noel", + "id": "fr:produits-de-noel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-de-noel" + }, + { + "products": 1, + "id": "fr:paprika-en-poudre", + "name": "Paprika-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/paprika-en-poudre" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q2749134" + ], + "url": "https://fr.openfoodfacts.org/categorie/mercurey", + "id": "fr:mercurey", + "name": "Mercurey", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:graines-de-tournesol", + "products": 1, + "id": "es:graines-de-tournesol", + "name": "es:Graines-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rosso-toscana", + "id": "fr:rosso-toscana", + "name": "Rosso-toscana", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-biscuitees-au-caramel", + "id": "fr:barres-chocolatees-biscuitees-au-caramel", + "name": "Barres-chocolatees-biscuitees-au-caramel", + "products": 1 + }, + { + "id": "fr:moules-marinieres", + "name": "Moules-marinieres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moules-marinieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-millet-brun", + "name": "Farines-de-millet-brun", + "id": "fr:farines-de-millet-brun", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yakitori-de-porc", + "id": "fr:yakitori-de-porc", + "name": "Yakitori-de-porc", + "products": 1 + }, + { + "products": 1, + "name": "Taartdegen", + "id": "fr:taartdegen", + "url": "https://fr.openfoodfacts.org/categorie/taartdegen" + }, + { + "id": "fr:vegetariens", + "name": "Vegetariens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vegetariens" + }, + { + "id": "en:sucres-complets", + "name": "en:Sucres-complets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sucres-complets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-legumineuses", + "id": "fr:plats-a-base-de-legumineuses", + "name": "Plats-a-base-de-legumineuses", + "products": 1 + }, + { + "id": "en:soupes-au-poulet", + "name": "en:Soupes-au-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-au-poulet" + }, + { + "name": "Choux-patissiers", + "id": "fr:choux-patissiers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/choux-patissiers" + }, + { + "products": 1, + "name": "Ananas-en-morceaux-au-jus-d-ananas-bio", + "id": "fr:ananas-en-morceaux-au-jus-d-ananas-bio", + "url": "https://fr.openfoodfacts.org/categorie/ananas-en-morceaux-au-jus-d-ananas-bio" + }, + { + "id": "en:levures", + "name": "en:Levures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:levures" + }, + { + "products": 1, + "name": "es:Mezclas-de-semillas", + "id": "es:mezclas-de-semillas", + "url": "https://fr.openfoodfacts.org/categorie/es:mezclas-de-semillas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-au-raisin", + "products": 1, + "id": "fr:barres-de-cereales-au-raisin", + "name": "Barres-de-cereales-au-raisin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chips-et-frites", + "id": "ru:chips-et-frites", + "name": "ru:Chips-et-frites", + "products": 1 + }, + { + "products": 1, + "id": "en:rochers-a-la-noix-de-coco", + "name": "en:Rochers-a-la-noix-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/en:rochers-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/groseilles-a-maquereaux", + "products": 1, + "name": "Groseilles-a-maquereaux", + "id": "fr:groseilles-a-maquereaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mozzarella-en-cossettes", + "name": "Mozzarella-en-cossettes", + "id": "fr:mozzarella-en-cossettes", + "products": 1 + }, + { + "products": 1, + "id": "fr:produits-vegetaux-surgeles", + "name": "Produits-vegetaux-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/produits-vegetaux-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:glaces-a-la-noix-de-coco", + "name": "en:Glaces-a-la-noix-de-coco", + "id": "en:glaces-a-la-noix-de-coco", + "products": 1 + }, + { + "products": 1, + "name": "Chorizo-doux", + "id": "fr:chorizo-doux", + "url": "https://fr.openfoodfacts.org/categorie/chorizo-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourrage-au-praline", + "products": 1, + "name": "Chocolats-fourrage-au-praline", + "id": "fr:chocolats-fourrage-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/papillons-blancs", + "name": "Papillons-blancs", + "id": "fr:papillons-blancs", + "products": 1 + }, + { + "products": 1, + "id": "fr:carottes-et-celeri-rapes", + "name": "Carottes-et-celeri-rapes", + "url": "https://fr.openfoodfacts.org/categorie/carottes-et-celeri-rapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:paves-de-saumon", + "name": "de:Paves-de-saumon", + "id": "de:paves-de-saumon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mollusques-en-conserve", + "name": "Mollusques-en-conserve", + "id": "fr:mollusques-en-conserve", + "products": 1 + }, + { + "name": "en:Gums", + "id": "en:gums", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gums" + }, + { + "id": "nl:chips-de-pommes-de-terre-aromatisees", + "name": "nl:Chips-de-pommes-de-terre-aromatisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:chips-de-pommes-de-terre-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:tortillas", + "name": "it:Tortillas", + "id": "it:tortillas", + "products": 1 + }, + { + "id": "fr:cannellonis-a-la-bolognaise", + "name": "Cannellonis-a-la-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cannellonis-a-la-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortilla", + "products": 1, + "id": "fr:tortilla", + "name": "Tortilla" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yogures", + "name": "en:Yogures", + "id": "en:yogures", + "products": 1 + }, + { + "name": "Citronelle", + "id": "fr:citronelle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/citronelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-surgelees", + "products": 1, + "id": "fr:crepes-surgelees", + "name": "Crepes-surgelees" + }, + { + "products": 1, + "id": "fr:vin-de-chine", + "name": "Vin-de-chine", + "url": "https://fr.openfoodfacts.org/categorie/vin-de-chine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-a-base-d-avoine", + "products": 1, + "id": "fr:boissons-vegetales-a-base-d-avoine", + "name": "Boissons-vegetales-a-base-d-avoine" + }, + { + "products": 1, + "name": "sv:Pains-grilles", + "id": "sv:pains-grilles", + "url": "https://fr.openfoodfacts.org/categorie/sv:pains-grilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torsades-au-lentilles-vertes", + "name": "Torsades-au-lentilles-vertes", + "id": "fr:torsades-au-lentilles-vertes", + "products": 1 + }, + { + "products": 1, + "id": "fr:yaourt-de-soja-a-la-vanille", + "name": "Yaourt-de-soja-a-la-vanille", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-de-soja-a-la-vanille" + }, + { + "id": "fr:vin-de-pays-rouge", + "name": "Vin-de-pays-rouge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vin-de-pays-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:lavande-fleur", + "products": 1, + "id": "it:lavande-fleur", + "name": "it:Lavande-fleur" + }, + { + "products": 1, + "id": "en:christmas-food", + "name": "en:Christmas-food", + "url": "https://fr.openfoodfacts.org/categorie/en:christmas-food" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-abbaye", + "products": 1, + "id": "fr:biere-abbaye", + "name": "Biere-abbaye" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-au-chocolat-au-lait", + "name": "Gaufrettes-au-chocolat-au-lait", + "id": "fr:gaufrettes-au-chocolat-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-fraise", + "id": "en:yaourts-a-la-fraise", + "name": "en:Yaourts-a-la-fraise", + "products": 1 + }, + { + "products": 1, + "id": "fr:bolachas", + "name": "Bolachas", + "url": "https://fr.openfoodfacts.org/categorie/bolachas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-en-morceaux", + "products": 1, + "name": "Thons-en-morceaux", + "id": "fr:thons-en-morceaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wrap", + "products": 1, + "name": "Wrap", + "id": "fr:wrap" + }, + { + "products": 1, + "id": "fr:cremes-a-la-noix-de-coco", + "name": "Cremes-a-la-noix-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/cremes-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:endulzantes", + "name": "de:Endulzantes", + "id": "de:endulzantes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-couenne", + "name": "Sans-couenne", + "id": "fr:sans-couenne", + "products": 1 + }, + { + "products": 1, + "name": "Cereales-au-caramel", + "id": "fr:cereales-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-a-la-noix-de-coco", + "products": 1, + "id": "fr:chocolat-a-la-noix-de-coco", + "name": "Chocolat-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-froment", + "products": 1, + "name": "Bieres-au-froment", + "id": "fr:bieres-au-froment" + }, + { + "id": "fr:salades-de-chou-rouge", + "name": "Salades-de-chou-rouge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-chou-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bavette-d-aloyau", + "id": "fr:bavette-d-aloyau", + "name": "Bavette-d-aloyau", + "products": 1 + }, + { + "products": 1, + "id": "en:roasted-unshelled-pumpkin-seeds", + "name": "Graines de courge en coque grillées", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-en-coque-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-d-alsace", + "products": 1, + "name": "Miels d'Alsace", + "id": "fr:miels-d-alsace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivronnades", + "products": 1, + "id": "fr:poivronnades", + "name": "Poivronnades" + }, + { + "name": "Heringe", + "id": "fr:heringe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/heringe" + }, + { + "name": "de:Vins-mutes-de-type-vin-doux-naturel", + "id": "de:vins-mutes-de-type-vin-doux-naturel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:vins-mutes-de-type-vin-doux-naturel" + }, + { + "name": "pt:Barres-de-cereales", + "id": "pt:barres-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:barres-de-cereales" + }, + { + "products": 1, + "id": "en:crumble", + "name": "en:Crumble", + "url": "https://fr.openfoodfacts.org/categorie/en:crumble" + }, + { + "products": 1, + "name": "Thes-infuses-glaces", + "id": "fr:thes-infuses-glaces", + "url": "https://fr.openfoodfacts.org/categorie/thes-infuses-glaces" + }, + { + "id": "fr:crepes-fourrees-a-la-pomme-et-au-caramel", + "name": "Crepes-fourrees-a-la-pomme-et-au-caramel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-a-la-pomme-et-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-bouches-de-normandie-doux", + "name": "Cidres-bouches-de-normandie-doux", + "id": "fr:cidres-bouches-de-normandie-doux", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-de-soja", + "name": "Pates-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-soja" + }, + { + "products": 1, + "id": "fr:vins-blancs-moelleux", + "name": "Vins-blancs-moelleux", + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs-moelleux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manchons-de-canard-confits", + "products": 1, + "id": "fr:manchons-de-canard-confits", + "name": "Manchons-de-canard-confits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conos-de-helado", + "products": 1, + "name": "Conos-de-helado", + "id": "fr:conos-de-helado" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins-aromatises", + "id": "de:vins-aromatises", + "name": "de:Vins-aromatises", + "products": 1 + }, + { + "name": "Glaces-au-soja", + "id": "fr:glaces-au-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-au-soja" + }, + { + "products": 1, + "name": "Algues en conserve", + "id": "en:canned-seaweeds", + "url": "https://fr.openfoodfacts.org/categorie/algues-en-conserve" + }, + { + "products": 1, + "id": "fr:sucres-en-grains", + "name": "Sucres-en-grains", + "url": "https://fr.openfoodfacts.org/categorie/sucres-en-grains" + }, + { + "products": 1, + "id": "fr:pate-a-cuire", + "name": "Pate-a-cuire", + "url": "https://fr.openfoodfacts.org/categorie/pate-a-cuire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:croissants-fourres-au-chocolat", + "id": "sr:croissants-fourres-au-chocolat", + "name": "sr:Croissants-fourres-au-chocolat", + "products": 1 + }, + { + "id": "fr:sauces-tomate-au-mascarpone", + "name": "Sauces-tomate-au-mascarpone", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomate-au-mascarpone" + }, + { + "products": 1, + "name": "es:Pepitas-de-chocolate-negro", + "id": "es:pepitas-de-chocolate-negro", + "url": "https://fr.openfoodfacts.org/categorie/es:pepitas-de-chocolate-negro" + }, + { + "id": "fr:escalope-de-dinde-a-la-milanaise", + "name": "Escalope-de-dinde-a-la-milanaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/escalope-de-dinde-a-la-milanaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:nectares-de-limon", + "products": 1, + "name": "es:Nectares-de-limon", + "id": "es:nectares-de-limon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornflakes", + "products": 1, + "id": "fr:cornflakes", + "name": "Cornflakes" + }, + { + "products": 1, + "name": "Echalions", + "id": "fr:echalions", + "url": "https://fr.openfoodfacts.org/categorie/echalions" + }, + { + "products": 1, + "id": "fr:glacons-aromatise", + "name": "Glacons-aromatise", + "url": "https://fr.openfoodfacts.org/categorie/glacons-aromatise" + }, + { + "products": 1, + "id": "es:gemusebasierte-lebensmittel", + "name": "es:Gemusebasierte-lebensmittel", + "url": "https://fr.openfoodfacts.org/categorie/es:gemusebasierte-lebensmittel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-preparee", + "id": "fr:salade-preparee", + "name": "Salade-preparee", + "products": 1 + }, + { + "products": 1, + "id": "fr:gros-sel-iode", + "name": "Gros-sel-iode", + "url": "https://fr.openfoodfacts.org/categorie/gros-sel-iode" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nachspeise", + "products": 1, + "id": "de:nachspeise", + "name": "de:Nachspeise" + }, + { + "products": 1, + "id": "en:organic", + "name": "en:Organic", + "url": "https://fr.openfoodfacts.org/categorie/en:organic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:portos-oxydatifs", + "id": "de:portos-oxydatifs", + "name": "de:Portos-oxydatifs", + "products": 1 + }, + { + "products": 1, + "name": "Nigari", + "id": "fr:nigari", + "url": "https://fr.openfoodfacts.org/categorie/nigari" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:lentilles-vertes", + "products": 1, + "id": "en:lentilles-vertes", + "name": "en:Lentilles-vertes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-rouge-long-complet-bio", + "products": 1, + "name": "Riz-rouge-long-complet-bio", + "id": "fr:riz-rouge-long-complet-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-semi-complet-bio", + "name": "Riz-long-semi-complet-bio", + "id": "fr:riz-long-semi-complet-bio", + "products": 1 + }, + { + "id": "fr:duo-de-riz-de-camargue-riz-semi-complet-et-riz-rouge-bio", + "name": "Duo-de-riz-de-camargue-riz-semi-complet-et-riz-rouge-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/duo-de-riz-de-camargue-riz-semi-complet-et-riz-rouge-bio" + }, + { + "id": "fr:tourtons", + "name": "Tourtons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tourtons" + }, + { + "name": "Graines-de-moutarde", + "id": "fr:graines-de-moutarde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-moutarde" + }, + { + "name": "Hamburger-brotchen", + "id": "fr:hamburger-brotchen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/hamburger-brotchen" + }, + { + "products": 1, + "name": "en:Juices", + "id": "en:juices", + "url": "https://fr.openfoodfacts.org/categorie/en:juices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-caramel", + "products": 1, + "id": "fr:sirops-de-caramel", + "name": "Sirops-de-caramel" + }, + { + "products": 1, + "id": "en:pizzas-jambon-champignons", + "name": "en:Pizzas-jambon-champignons", + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-jambon-champignons" + }, + { + "products": 1, + "id": "fr:preparations-pour-creme-catalane", + "name": "Preparations-pour-creme-catalane", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-creme-catalane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:lyoner", + "products": 1, + "id": "de:lyoner", + "name": "de:Lyoner" + }, + { + "name": "Tomates-en-quartiers-pelees", + "id": "fr:tomates-en-quartiers-pelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tomates-en-quartiers-pelees" + }, + { + "products": 1, + "name": "Farines-avec-levures", + "id": "fr:farines-avec-levures", + "url": "https://fr.openfoodfacts.org/categorie/farines-avec-levures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-figue", + "products": 1, + "id": "fr:jus-de-figue", + "name": "Jus-de-figue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/a-code-1", + "id": "fr:a-code-1", + "name": "A-code-1", + "products": 1 + }, + { + "products": 1, + "id": "en:cabbages", + "name": "Choux cabus", + "url": "https://fr.openfoodfacts.org/categorie/choux-cabus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:thons-a-l-huile", + "products": 1, + "id": "es:thons-a-l-huile", + "name": "es:Thons-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mache", + "name": "en:Mache", + "id": "en:mache", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pur-arabica", + "products": 1, + "name": "Pur-arabica", + "id": "fr:pur-arabica" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-de-legumes-avec-des-pates", + "id": "fr:soupe-de-legumes-avec-des-pates", + "name": "Soupe-de-legumes-avec-des-pates", + "products": 1 + }, + { + "name": "de:Paella-congelee", + "id": "de:paella-congelee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:paella-congelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:wrap", + "id": "en:wrap", + "name": "en:Wrap", + "products": 1 + }, + { + "name": "Melen", + "id": "fr:melen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-allegees-en-sucres", + "products": 1, + "id": "fr:confitures-allegees-en-sucres", + "name": "Confitures-allegees-en-sucres" + }, + { + "products": 1, + "name": "French-red-wine", + "id": "fr:french-red-wine", + "url": "https://fr.openfoodfacts.org/categorie/french-red-wine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-au-chocolat-blanc", + "id": "en:biscuits-au-chocolat-blanc", + "name": "en:Biscuits-au-chocolat-blanc", + "products": 1 + }, + { + "id": "fr:sauce-oseille", + "name": "Sauce-oseille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-oseille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-creme", + "products": 1, + "name": "Yaourts-a-la-creme", + "id": "fr:yaourts-a-la-creme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-cacahuetes-et-cajoux", + "id": "fr:melanges-cacahuetes-et-cajoux", + "name": "Melanges-cacahuetes-et-cajoux", + "products": 1 + }, + { + "products": 1, + "name": "Veloutes-de-cresson", + "id": "fr:veloutes-de-cresson", + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-cresson" + }, + { + "products": 1, + "id": "fr:confitures-de-fruits-de-la-passion", + "name": "Confitures-de-fruits-de-la-passion", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-de-la-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:dark-soy-sauce", + "id": "en:dark-soy-sauce", + "name": "en:Dark-soy-sauce", + "products": 1 + }, + { + "id": "fr:sauces-hannibal", + "name": "Sauces-hannibal", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-hannibal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-a-base-de-viande-bovine", + "name": "it:Plats-a-base-de-viande-bovine", + "id": "it:plats-a-base-de-viande-bovine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-ble-noir-garnies", + "id": "fr:galettes-de-ble-noir-garnies", + "name": "Galettes-de-ble-noir-garnies", + "products": 1 + }, + { + "name": "Gateau-aux-raisins-secs", + "id": "fr:gateau-aux-raisins-secs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gateau-aux-raisins-secs" + }, + { + "name": "it:Polpa-di-pomodoro", + "id": "it:polpa-di-pomodoro", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:polpa-di-pomodoro" + }, + { + "products": 1, + "name": "Code-barre-a-changer", + "id": "fr:code-barre-a-changer", + "url": "https://fr.openfoodfacts.org/categorie/code-barre-a-changer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raviolis-au-jambon-cru", + "products": 1, + "id": "fr:raviolis-au-jambon-cru", + "name": "Raviolis-au-jambon-cru" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulines-de-legumes-verts", + "products": 1, + "id": "fr:moulines-de-legumes-verts", + "name": "Moulines-de-legumes-verts" + }, + { + "id": "fr:panettone-au-chocolat", + "name": "Panettone-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/panettone-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raisins-muscat", + "name": "Raisins-muscat", + "id": "fr:raisins-muscat", + "products": 1 + }, + { + "name": "Produit-de-france", + "id": "fr:produit-de-france", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-de-france" + }, + { + "name": "Chocolat-lait-fondant", + "id": "fr:chocolat-lait-fondant", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolat-lait-fondant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-edulcores", + "products": 1, + "name": "Sirops-edulcores", + "id": "fr:sirops-edulcores" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/condiments-et-aromates", + "products": 1, + "id": "fr:condiments-et-aromates", + "name": "Condiments-et-aromates" + }, + { + "products": 1, + "name": "Filets-de-sardines-a-teneur-reduite-en-sel", + "id": "fr:filets-de-sardines-a-teneur-reduite-en-sel", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-a-teneur-reduite-en-sel" + }, + { + "products": 1, + "id": "en:barres-glacees", + "name": "en:Barres-glacees", + "url": "https://fr.openfoodfacts.org/categorie/en:barres-glacees" + }, + { + "products": 1, + "id": "fr:oignons-eminces", + "name": "Oignons-eminces", + "url": "https://fr.openfoodfacts.org/categorie/oignons-eminces" + }, + { + "products": 1, + "id": "es:lemon-curds", + "name": "es:Lemon-curds", + "url": "https://fr.openfoodfacts.org/categorie/es:lemon-curds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-surgeles", + "name": "Oignons-surgeles", + "id": "fr:oignons-surgeles", + "products": 1 + }, + { + "name": "Sang-de-porc", + "id": "fr:sang-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sang-de-porc" + }, + { + "name": "Confitures-de-pommes-et-coings", + "id": "fr:confitures-de-pommes-et-coings", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pommes-et-coings" + }, + { + "id": "fr:mojitos-sans-alcool", + "name": "Mojitos-sans-alcool", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mojitos-sans-alcool" + }, + { + "products": 1, + "id": "fr:crepes-nature-bio", + "name": "Crepes-nature-bio", + "url": "https://fr.openfoodfacts.org/categorie/crepes-nature-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-pour-enfants", + "products": 1, + "name": "Boisson-pour-enfants", + "id": "fr:boisson-pour-enfants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faux-fromage", + "products": 1, + "name": "Faux-fromage", + "id": "fr:faux-fromage" + }, + { + "products": 1, + "id": "de:pflaume-konfiture", + "name": "de:Pflaume-konfiture", + "url": "https://fr.openfoodfacts.org/categorie/de:pflaume-konfiture" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:salzstangen", + "products": 1, + "name": "de:Salzstangen", + "id": "de:salzstangen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumons-roses", + "id": "fr:saumons-roses", + "name": "Saumons-roses", + "products": 1 + }, + { + "products": 1, + "name": "Compotes-pommes-ananas-passion", + "id": "fr:compotes-pommes-ananas-passion", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-ananas-passion" + }, + { + "name": "Omelettes-nature", + "id": "fr:omelettes-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/omelettes-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produit-issu-de-la-ruche", + "id": "fr:produit-issu-de-la-ruche", + "name": "Produit-issu-de-la-ruche", + "products": 1 + }, + { + "name": "Terrines-d-agneau", + "id": "fr:terrines-d-agneau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/terrines-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/german-beers", + "products": 1, + "id": "fr:german-beers", + "name": "German-beers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-reglisse", + "products": 1, + "id": "fr:sirops-de-reglisse", + "name": "Sirops-de-reglisse" + }, + { + "id": "it:champignons-seches", + "name": "it:Champignons-seches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:champignons-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-pates-a-pizza", + "products": 1, + "name": "Preparations-pour-pates-a-pizza", + "id": "fr:preparations-pour-pates-a-pizza" + }, + { + "products": 1, + "name": "Oeufs-de-saumons", + "id": "fr:oeufs-de-saumons", + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-saumons" + }, + { + "name": "Bacons-de-dindes-fumes", + "id": "fr:bacons-de-dindes-fumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bacons-de-dindes-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barbeque-potato-chips", + "id": "en:barbeque-potato-chips", + "name": "en:Barbeque-potato-chips", + "products": 1 + }, + { + "id": "fr:ble-souffle-caramelise", + "name": "Ble-souffle-caramelise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ble-souffle-caramelise" + }, + { + "products": 1, + "id": "fr:liqueurs-a-l-orange", + "name": "Liqueurs-a-l-orange", + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-a-l-orange" + }, + { + "name": "Pizzas-a-la-viande", + "id": "fr:pizzas-a-la-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pizzas-a-la-viande" + }, + { + "products": 1, + "id": "ru:boissons-non-sucrees", + "name": "ru:Boissons-non-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/ru:boissons-non-sucrees" + }, + { + "products": 1, + "name": "en:Sugarfree", + "id": "en:sugarfree", + "url": "https://fr.openfoodfacts.org/categorie/en:sugarfree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ice-tea-zero-sucres-saveur-peche", + "id": "fr:ice-tea-zero-sucres-saveur-peche", + "name": "Ice-tea-zero-sucres-saveur-peche", + "products": 1 + }, + { + "id": "fr:boisson-biologique-a-base-de-riz", + "name": "Boisson-biologique-a-base-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-biologique-a-base-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mollusques-surgeles", + "products": 1, + "name": "Mollusques-surgeles", + "id": "fr:mollusques-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-de-coco", + "name": "Chocolats-au-lait-de-coco", + "id": "fr:chocolats-au-lait-de-coco", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crouton-de-ble", + "products": 1, + "id": "fr:crouton-de-ble", + "name": "Crouton-de-ble" + }, + { + "name": "Aide-culinaire-pour-confiture", + "id": "fr:aide-culinaire-pour-confiture", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aide-culinaire-pour-confiture" + }, + { + "products": 1, + "id": "fr:wine-from-south-africa", + "name": "Wine-from-south-africa", + "url": "https://fr.openfoodfacts.org/categorie/wine-from-south-africa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-bretons-a-la-prune", + "products": 1, + "id": "fr:gateaux-bretons-a-la-prune", + "name": "Gateaux-bretons-a-la-prune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produi", + "products": 1, + "name": "Produi", + "id": "fr:produi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rose-gris-bio", + "name": "Vin-rose-gris-bio", + "id": "fr:vin-rose-gris-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-pasteurises", + "products": 1, + "name": "Yaourts-pasteurises", + "id": "fr:yaourts-pasteurises" + }, + { + "products": 1, + "id": "fr:chocolas", + "name": "Chocolas", + "url": "https://fr.openfoodfacts.org/categorie/chocolas" + }, + { + "id": "fr:mate", + "name": "Mate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mate" + }, + { + "products": 1, + "name": "Soupe-en-sachet", + "id": "fr:soupe-en-sachet", + "url": "https://fr.openfoodfacts.org/categorie/soupe-en-sachet" + }, + { + "products": 1, + "id": "fr:melange-de-graines", + "name": "Melange-de-graines", + "url": "https://fr.openfoodfacts.org/categorie/melange-de-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-de-soja-a-l-abricot", + "products": 1, + "id": "fr:yaourts-de-soja-a-l-abricot", + "name": "Yaourts-de-soja-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:patatine", + "id": "it:patatine", + "name": "it:Patatine", + "products": 1 + }, + { + "id": "fr:biscuits-nature", + "name": "Biscuits-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:falafel-refrigeres", + "products": 1, + "name": "de:Falafel-refrigeres", + "id": "de:falafel-refrigeres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:salamipizza", + "products": 1, + "id": "de:salamipizza", + "name": "de:Salamipizza" + }, + { + "products": 1, + "id": "th:boissons", + "name": "th:Boissons", + "url": "https://fr.openfoodfacts.org/categorie/th:boissons" + }, + { + "id": "fr:melange-salades", + "name": "Melange-salades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melange-salades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-seigle-t150", + "products": 1, + "name": "Farines-de-seigle-t150", + "id": "fr:farines-de-seigle-t150" + }, + { + "products": 1, + "name": "Carvi", + "id": "fr:carvi", + "url": "https://fr.openfoodfacts.org/categorie/carvi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/surimis-fourres", + "name": "Surimis-fourres", + "id": "fr:surimis-fourres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-escargots", + "id": "fr:sauces-pour-escargots", + "name": "Sauces-pour-escargots", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saft", + "name": "de:Saft", + "id": "de:saft", + "products": 1 + }, + { + "products": 1, + "id": "en:coconut-water-with-litchee", + "name": "en:Coconut-water-with-litchee", + "url": "https://fr.openfoodfacts.org/categorie/en:coconut-water-with-litchee" + }, + { + "name": "Jambon-de-porc", + "id": "fr:jambon-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambon-de-porc" + }, + { + "products": 1, + "id": "fr:truites-fumees-elevees-en-norvege", + "name": "Truites-fumees-elevees-en-norvege", + "url": "https://fr.openfoodfacts.org/categorie/truites-fumees-elevees-en-norvege" + }, + { + "products": 1, + "id": "fi:jus-et-nectars-de-fruits", + "name": "fi:Jus-et-nectars-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/fi:jus-et-nectars-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-insectes", + "products": 1, + "name": "Chocolats-au-lait-aux-insectes", + "id": "fr:chocolats-au-lait-aux-insectes" + }, + { + "products": 1, + "id": "en:crottin-de-chevre", + "name": "en:Crottin-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/en:crottin-de-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chambolle-musigny", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2948108" + ], + "name": "Chambolle-Musigny", + "id": "fr:chambolle-musigny", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserve-de-viande", + "name": "Conserve-de-viande", + "id": "fr:conserve-de-viande", + "products": 1 + }, + { + "products": 1, + "name": "en:Bieres-fortes", + "id": "en:bieres-fortes", + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-fortes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-l-acerola", + "name": "Boissons-a-l-acerola", + "id": "fr:boissons-a-l-acerola", + "products": 1 + }, + { + "products": 1, + "name": "en:Plats", + "id": "en:plats", + "url": "https://fr.openfoodfacts.org/categorie/en:plats" + }, + { + "name": "Filets-de-maquereaux-au-curry", + "id": "fr:filets-de-maquereaux-au-curry", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-au-curry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blanquettes-de-volaille", + "products": 1, + "id": "fr:blanquettes-de-volaille", + "name": "Blanquettes-de-volaille" + }, + { + "name": "Noix-de-grenobles", + "id": "fr:noix-de-grenobles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/noix-de-grenobles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-a-cuisiner", + "name": "Chocolat-a-cuisiner", + "id": "fr:chocolat-a-cuisiner", + "products": 1 + }, + { + "name": "Boulgour-gros-grains-bio", + "id": "fr:boulgour-gros-grains-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boulgour-gros-grains-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-au-riz", + "name": "Boisson-au-riz", + "id": "fr:boisson-au-riz", + "products": 1 + }, + { + "products": 1, + "id": "fr:boule-de-campagne", + "name": "Boule-de-campagne", + "url": "https://fr.openfoodfacts.org/categorie/boule-de-campagne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:produits-laitiers", + "products": 1, + "name": "sv:Produits-laitiers", + "id": "sv:produits-laitiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-fraiches-au-ble-dur-complet", + "id": "fr:tagliatelles-fraiches-au-ble-dur-complet", + "name": "Tagliatelles-fraiches-au-ble-dur-complet", + "products": 1 + }, + { + "products": 1, + "id": "en:farines-de-ble-type-t65", + "name": "en:Farines-de-ble-type-t65", + "url": "https://fr.openfoodfacts.org/categorie/en:farines-de-ble-type-t65" + }, + { + "name": "Croquant", + "id": "fr:croquant", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/croquant" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barbe-de-capucin", + "name": "Barbe-de-capucin", + "id": "fr:barbe-de-capucin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/radis-blancs", + "name": "Radis blancs", + "id": "en:daikon-radishes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-surimi", + "products": 1, + "name": "Plats-a-base-de-surimi", + "id": "fr:plats-a-base-de-surimi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-concentres-non-sucres", + "id": "es:laits-concentres-non-sucres", + "name": "es:Laits-concentres-non-sucres", + "products": 1 + }, + { + "products": 1, + "name": "Shichimi-tōgarashi", + "id": "fr:shichimi-tōgarashi", + "url": "https://fr.openfoodfacts.org/categorie/shichimi-t%C5%8Dgarashi" + }, + { + "products": 1, + "name": "Fruit-mixe", + "id": "fr:fruit-mixe", + "url": "https://fr.openfoodfacts.org/categorie/fruit-mixe" + }, + { + "products": 1, + "id": "fr:couronne-de-pain", + "name": "Couronne-de-pain", + "url": "https://fr.openfoodfacts.org/categorie/couronne-de-pain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:flocons-d-epeautre", + "products": 1, + "id": "en:flocons-d-epeautre", + "name": "en:Flocons-d-epeautre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mezclas-de-vegetales-congelados", + "name": "en:Mezclas-de-vegetales-congelados", + "id": "en:mezclas-de-vegetales-congelados", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/genoise-fourre", + "products": 1, + "name": "Genoise-fourre", + "id": "fr:genoise-fourre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:champinones-enteros", + "products": 1, + "name": "de:Champinones-enteros", + "id": "de:champinones-enteros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charentais-ile-d-oleron", + "name": "Charentais Ile d'Oléron", + "id": "fr:charentais-ile-d-oleron", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flapjack", + "name": "Flapjack", + "id": "fr:flapjack", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-lotte", + "products": 1, + "name": "Foies-de-lotte", + "id": "fr:foies-de-lotte" + }, + { + "products": 1, + "name": "Anisette", + "id": "fr:anisette", + "url": "https://fr.openfoodfacts.org/categorie/anisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/au-ble-complet", + "products": 1, + "id": "fr:au-ble-complet", + "name": "Au-ble-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nutrition-infantile", + "id": "fr:nutrition-infantile", + "name": "Nutrition-infantile", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-roti-de-porc", + "products": 1, + "id": "fr:sandwichs-au-roti-de-porc", + "name": "Sandwichs-au-roti-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schwarzbier", + "products": 1, + "id": "fr:schwarzbier", + "name": "Schwarzbier" + }, + { + "id": "fr:riz-pour-salades", + "name": "Riz-pour-salades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-pour-salades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-panais", + "products": 1, + "name": "Purees-de-panais", + "id": "fr:purees-de-panais" + }, + { + "products": 1, + "name": "Cashew-milks", + "id": "fr:cashew-milks", + "url": "https://fr.openfoodfacts.org/categorie/cashew-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolade-koekjes", + "products": 1, + "name": "en:Chocolade-koekjes", + "id": "en:chocolade-koekjes" + }, + { + "products": 1, + "name": "Vetten", + "id": "fr:vetten", + "url": "https://fr.openfoodfacts.org/categorie/vetten" + }, + { + "id": "fr:ramboutans-au-sirop", + "name": "Ramboutans-au-sirop", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ramboutans-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-traitees-par-rayonnement-uv", + "products": 1, + "id": "fr:eaux-traitees-par-rayonnement-uv", + "name": "Eaux-traitees-par-rayonnement-uv" + }, + { + "products": 1, + "name": "Yaourts-sur-lit-de-caramel", + "id": "fr:yaourts-sur-lit-de-caramel", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chateau-chalon", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1090298" + ], + "id": "fr:chateau-chalon", + "name": "Château-Chalon", + "products": 1 + }, + { + "products": 1, + "id": "fr:mayonnaises-legeres", + "name": "Mayonnaises-legeres", + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-legeres" + }, + { + "products": 1, + "name": "Boeuf-bourguignon-en-conserve", + "id": "fr:boeuf-bourguignon-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/boeuf-bourguignon-en-conserve" + }, + { + "name": "Bonbons-avec-edulcolorants", + "id": "fr:bonbons-avec-edulcolorants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-avec-edulcolorants" + }, + { + "products": 1, + "id": "en:laits-de-soja-au-cacao", + "name": "en:Laits-de-soja-au-cacao", + "url": "https://fr.openfoodfacts.org/categorie/en:laits-de-soja-au-cacao" + }, + { + "name": "en:Medoc", + "id": "en:medoc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:medoc" + }, + { + "name": "Filets-de-hareng-fumes", + "id": "fr:filets-de-hareng-fumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-hareng-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barre-pate-d-amande", + "products": 1, + "name": "Barre-pate-d-amande", + "id": "fr:barre-pate-d-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-de-cassis", + "products": 1, + "name": "en:Cremes-de-cassis", + "id": "en:cremes-de-cassis" + }, + { + "name": "Mortadelle-italienne", + "id": "fr:mortadelle-italienne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mortadelle-italienne" + }, + { + "name": "en:Yogures-de-soja", + "id": "en:yogures-de-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yogures-de-soja" + }, + { + "name": "en:Fromages-a-pate-persillee", + "id": "en:fromages-a-pate-persillee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-a-pate-persillee" + }, + { + "products": 1, + "id": "en:abondance", + "name": "en:Abondance", + "url": "https://fr.openfoodfacts.org/categorie/en:abondance" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-produits-de-la-mer", + "products": 1, + "name": "Preparations-a-base-de-produits-de-la-mer", + "id": "fr:preparations-a-base-de-produits-de-la-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-volaille-confits", + "products": 1, + "id": "fr:foies-de-volaille-confits", + "name": "Foies-de-volaille-confits" + }, + { + "id": "es:poireaux", + "name": "es:Poireaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:poireaux" + }, + { + "products": 1, + "name": "Chocolats-noirs-a-l-abricot", + "id": "fr:chocolats-noirs-a-l-abricot", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-a-l-abricot" + }, + { + "products": 1, + "id": "fr:graines-de-lin-dore", + "name": "Graines-de-lin-dore", + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-dore" + }, + { + "products": 1, + "id": "fr:merlot-rouge", + "name": "Merlot-rouge", + "url": "https://fr.openfoodfacts.org/categorie/merlot-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:raviolis-au-fromage", + "id": "de:raviolis-au-fromage", + "name": "de:Raviolis-au-fromage", + "products": 1 + }, + { + "name": "Creme-de-sesame", + "id": "fr:creme-de-sesame", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-de-sesame" + }, + { + "products": 1, + "name": "Sodas-a-base-de-naranja", + "id": "fr:sodas-a-base-de-naranja", + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-base-de-naranja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-pepites-de-chocolats", + "id": "fr:gateaux-aux-pepites-de-chocolats", + "name": "Gateaux-aux-pepites-de-chocolats", + "products": 1 + }, + { + "products": 1, + "name": "Comte-en-tranches", + "id": "fr:comte-en-tranches", + "url": "https://fr.openfoodfacts.org/categorie/comte-en-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-jaunes", + "products": 1, + "id": "fr:yaourts-aux-fruits-jaunes", + "name": "Yaourts-aux-fruits-jaunes" + }, + { + "name": "Raifort", + "id": "fr:raifort", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/raifort" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-caramel-au-sel-de-guerande", + "products": 1, + "id": "fr:sables-caramel-au-sel-de-guerande", + "name": "Sables-caramel-au-sel-de-guerande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:apfel", + "products": 1, + "id": "en:apfel", + "name": "en:Apfel" + }, + { + "products": 1, + "name": "Coulis-de-tomates-bio", + "id": "fr:coulis-de-tomates-bio", + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-tomates-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/etoiles-de-badiane", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1760637" + ], + "id": "en:star-anise", + "name": "Étoiles de badiane", + "products": 1 + }, + { + "products": 1, + "id": "pt:thons-a-l-huile-de-tournesol", + "name": "pt:Thons-a-l-huile-de-tournesol", + "url": "https://fr.openfoodfacts.org/categorie/pt:thons-a-l-huile-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-a-l-orange", + "name": "en:Boissons-a-l-orange", + "id": "en:boissons-a-l-orange", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-au-son-de-ble", + "id": "fr:biscottes-au-son-de-ble", + "name": "Biscottes-au-son-de-ble", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-colin-d-alaska-meuniere", + "products": 1, + "name": "Filets-de-colin-d-alaska-meuniere", + "id": "fr:filets-de-colin-d-alaska-meuniere" + }, + { + "name": "Ble-dur-precuit", + "id": "fr:ble-dur-precuit", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ble-dur-precuit" + }, + { + "name": "de:Barres-de-cacahuetes", + "id": "de:barres-de-cacahuetes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-cacahuetes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soja-prepare", + "name": "Soja-prepare", + "id": "fr:soja-prepare", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-crunchy-biscuit", + "name": "Chocolats-crunchy-biscuit", + "id": "fr:chocolats-crunchy-biscuit", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boules-de-coco", + "products": 1, + "name": "Boules-de-coco", + "id": "fr:boules-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:raw-bar", + "name": "en:Raw-bar", + "id": "en:raw-bar", + "products": 1 + }, + { + "name": "Petits-pains-biscottes", + "id": "fr:petits-pains-biscottes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/petits-pains-biscottes" + }, + { + "products": 1, + "name": "Amandins", + "id": "fr:amandins", + "url": "https://fr.openfoodfacts.org/categorie/amandins" + }, + { + "products": 1, + "id": "pl:poissons-en-conserve", + "name": "pl:Poissons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/pl:poissons-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-a-l-ail", + "name": "Moutardes-a-l-ail", + "id": "fr:moutardes-a-l-ail", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:antipasti", + "name": "de:Antipasti", + "id": "de:antipasti", + "products": 1 + }, + { + "id": "fr:piments-de-cayenne-en-poudre", + "name": "Piments-de-cayenne-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piments-de-cayenne-en-poudre" + }, + { + "products": 1, + "name": "es:Mais-doux-en-conserve", + "id": "es:mais-doux-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/es:mais-doux-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:laits-aromatises-au-chocolat", + "products": 1, + "id": "nl:laits-aromatises-au-chocolat", + "name": "nl:Laits-aromatises-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cresson", + "sameAs": [ + "https://www.wikidata.org/wiki/Q150452" + ], + "id": "en:watercress", + "name": "Cresson", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-nicolas-de-bourgueil-val-de-loire", + "products": 1, + "name": "Saint-Nicolas-de-Bourgueil Val de Loire", + "id": "fr:saint-nicolas-de-bourgueil-val-de-loire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chips-de-mais", + "products": 1, + "id": "en:chips-de-mais", + "name": "en:Chips-de-mais" + }, + { + "id": "fr:haricots-verts-bio", + "name": "Haricots-verts-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierge-de-sesame", + "id": "fr:huiles-vierge-de-sesame", + "name": "Huiles-vierge-de-sesame", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cacahuetes-con-cascara-tostados-sin-sal", + "id": "es:cacahuetes-con-cascara-tostados-sin-sal", + "name": "es:Cacahuetes-con-cascara-tostados-sin-sal", + "products": 1 + }, + { + "products": 1, + "name": "Gnocchis-surgeles", + "id": "fr:gnocchis-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-surgeles" + }, + { + "products": 1, + "name": "Cafe-en-dosettes-compatibles-dolce-gusto", + "id": "fr:cafe-en-dosettes-compatibles-dolce-gusto", + "url": "https://fr.openfoodfacts.org/categorie/cafe-en-dosettes-compatibles-dolce-gusto" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-en-briques", + "products": 1, + "name": "Soupes-en-briques", + "id": "fr:soupes-en-briques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-yaourt", + "products": 1, + "name": "Sauces au yaourt", + "id": "fr:sauces-au-yaourt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-de-colza-bio", + "name": "Huile-de-colza-bio", + "id": "fr:huile-de-colza-bio", + "products": 1 + }, + { + "products": 1, + "id": "fr:olivenole", + "name": "Olivenole", + "url": "https://fr.openfoodfacts.org/categorie/olivenole" + }, + { + "products": 1, + "name": "Chocolats-noirs-aux-fruits-a-coques-melanges", + "id": "fr:chocolats-noirs-aux-fruits-a-coques-melanges", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-fruits-a-coques-melanges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arbouses-au-sirop", + "products": 1, + "name": "Arbouses-au-sirop", + "id": "fr:arbouses-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-aux-cereales-cranberries", + "products": 1, + "name": "Barres-aux-cereales-cranberries", + "id": "fr:barres-aux-cereales-cranberries" + }, + { + "products": 1, + "id": "fr:plats-a-base-de-poule", + "name": "Plats-a-base-de-poule", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-poule" + }, + { + "products": 1, + "name": "Sauces-tomates-a-la-viande", + "id": "fr:sauces-tomates-a-la-viande", + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomates-a-la-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cakes-marbres", + "id": "fr:cakes-marbres", + "name": "Cakes-marbres", + "products": 1 + }, + { + "products": 1, + "id": "fr:asperges-blanches-bio", + "name": "Asperges-blanches-bio", + "url": "https://fr.openfoodfacts.org/categorie/asperges-blanches-bio" + }, + { + "products": 1, + "name": "Sirop-banane-kiwi", + "id": "fr:sirop-banane-kiwi", + "url": "https://fr.openfoodfacts.org/categorie/sirop-banane-kiwi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-rapes", + "products": 1, + "id": "en:fromages-rapes", + "name": "en:Fromages-rapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-piment-d-espelette", + "products": 1, + "id": "fr:chocolats-au-piment-d-espelette", + "name": "Chocolats-au-piment-d-espelette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marmelades-d-oranges-sanguines", + "products": 1, + "id": "fr:marmelades-d-oranges-sanguines", + "name": "Marmelades-d-oranges-sanguines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cacahuetes-non-decortiquees", + "products": 1, + "id": "es:cacahuetes-non-decortiquees", + "name": "es:Cacahuetes-non-decortiquees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-au-fromage-de-chevre", + "products": 1, + "name": "Tartes-au-fromage-de-chevre", + "id": "fr:tartes-au-fromage-de-chevre" + }, + { + "products": 1, + "name": "en:Kartoffelchips", + "id": "en:kartoffelchips", + "url": "https://fr.openfoodfacts.org/categorie/en:kartoffelchips" + }, + { + "id": "fr:legumes-prepares-surgeles", + "name": "Legumes-prepares-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/legumes-prepares-surgeles" + }, + { + "name": "ru:Bieres-brunes", + "id": "ru:bieres-brunes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:bieres-brunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caramels-enrobes-chocolat", + "products": 1, + "name": "Caramels-enrobes-chocolat", + "id": "fr:caramels-enrobes-chocolat" + }, + { + "id": "fr:sauce-tomate-a-la-gorgonzola-et-aux-oignons-doux", + "name": "Sauce-tomate-a-la-gorgonzola-et-aux-oignons-doux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-tomate-a-la-gorgonzola-et-aux-oignons-doux" + }, + { + "name": "Huile-d-olive-bio", + "id": "fr:huile-d-olive-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-bio" + }, + { + "products": 1, + "name": "ru:Alimentos-y-bebidas-de-origen-vegetal", + "id": "ru:alimentos-y-bebidas-de-origen-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/ru:alimentos-y-bebidas-de-origen-vegetal" + }, + { + "products": 1, + "name": "en:Puddings-de-noel", + "id": "en:puddings-de-noel", + "url": "https://fr.openfoodfacts.org/categorie/en:puddings-de-noel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-parisiennes", + "products": 1, + "name": "Salades-parisiennes", + "id": "fr:salades-parisiennes" + }, + { + "products": 1, + "name": "Tagliarelles", + "id": "fr:tagliarelles", + "url": "https://fr.openfoodfacts.org/categorie/tagliarelles" + }, + { + "products": 1, + "name": "Salades-indiennes", + "id": "fr:salades-indiennes", + "url": "https://fr.openfoodfacts.org/categorie/salades-indiennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-dauphinois-surgeles", + "products": 1, + "id": "fr:gratins-dauphinois-surgeles", + "name": "Gratins-dauphinois-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eau-de-source-de-montagne", + "name": "Eau-de-source-de-montagne", + "id": "fr:eau-de-source-de-montagne", + "products": 1 + }, + { + "id": "fr:tofu-fume", + "name": "Tofu-fume", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tofu-fume" + }, + { + "products": 1, + "name": "Jus-de-fruits-presses-pomme-framboise", + "id": "fr:jus-de-fruits-presses-pomme-framboise", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-presses-pomme-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-au-piment", + "products": 1, + "id": "fr:fromages-au-piment", + "name": "Fromages-au-piment" + }, + { + "id": "fr:apfeldicksaft", + "name": "Apfeldicksaft", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/apfeldicksaft" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:essige", + "id": "en:essige", + "name": "en:Essige", + "products": 1 + }, + { + "products": 1, + "name": "Pates-de-tandoori", + "id": "fr:pates-de-tandoori", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-tandoori" + }, + { + "id": "nl:miels", + "name": "nl:Miels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:miels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:manchego", + "id": "es:manchego", + "name": "es:Manchego", + "products": 1 + }, + { + "products": 1, + "id": "fr:viandes-de-chevreuil", + "name": "Viandes-de-chevreuil", + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-chevreuil" + }, + { + "products": 1, + "id": "fr:bieres-a-l-eau-de-mer", + "name": "Bieres-a-l-eau-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/bieres-a-l-eau-de-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gariguettes", + "name": "Gariguettes", + "id": "fr:gariguettes", + "products": 1 + }, + { + "products": 1, + "id": "fr:plats-a-base-de-mouton", + "name": "Plats-a-base-de-mouton", + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-mouton" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ribera-del-duero", + "products": 1, + "id": "fr:ribera-del-duero", + "name": "Ribera-del-duero" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fouree-de-confiserie", + "name": "Chocolats-au-lait-fouree-de-confiserie", + "id": "fr:chocolats-au-lait-fouree-de-confiserie", + "products": 1 + }, + { + "products": 1, + "name": "Buchette-glacee", + "id": "fr:buchette-glacee", + "url": "https://fr.openfoodfacts.org/categorie/buchette-glacee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pruneaux-fourres", + "name": "Pruneaux-fourres", + "id": "fr:pruneaux-fourres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:viandes-fraiches-de-kangourou", + "id": "en:viandes-fraiches-de-kangourou", + "name": "en:Viandes-fraiches-de-kangourou", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-peches", + "products": 1, + "id": "fr:gateaux-aux-peches", + "name": "Gateaux-aux-peches" + }, + { + "name": "en:Asian-grocery", + "id": "en:asian-grocery", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:asian-grocery" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-de-france", + "products": 1, + "name": "Vins-de-france", + "id": "fr:vins-de-france" + }, + { + "name": "en:Nouilles-chinoises-aux-oeufs", + "id": "en:nouilles-chinoises-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles-chinoises-aux-oeufs" + }, + { + "id": "fr:nappages-dessert", + "name": "Nappages-dessert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nappages-dessert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolate-brownies", + "products": 1, + "id": "fr:chocolate-brownies", + "name": "Chocolate-brownies" + }, + { + "id": "fr:granules", + "name": "Granules", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/granules" + }, + { + "products": 1, + "name": "Aperitifs-aux-fruits-deshydratation", + "id": "fr:aperitifs-aux-fruits-deshydratation", + "url": "https://fr.openfoodfacts.org/categorie/aperitifs-aux-fruits-deshydratation" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-au-lait", + "products": 1, + "name": "Bonbons-au-lait", + "id": "fr:bonbons-au-lait" + }, + { + "id": "fr:amandes-enrobees-au-chocolat", + "name": "Amandes-enrobees-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/amandes-enrobees-au-chocolat" + }, + { + "name": "Madeleines-artisanales", + "id": "fr:madeleines-artisanales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/madeleines-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ramen", + "products": 1, + "id": "fr:ramen", + "name": "Ramen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pomme-de-terre-artemis", + "products": 1, + "name": "Pomme-de-terre-artemis", + "id": "fr:pomme-de-terre-artemis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gamme-famille-picard", + "products": 1, + "id": "fr:gamme-famille-picard", + "name": "Gamme-famille-picard" + }, + { + "id": "fr:sundae", + "name": "Sundae", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sundae" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-saumons", + "name": "Pates-de-saumons", + "id": "fr:pates-de-saumons", + "products": 1 + }, + { + "name": "Legumes-pour-ratatouille", + "id": "fr:legumes-pour-ratatouille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/legumes-pour-ratatouille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-boeuf", + "products": 1, + "name": "Sandwichs-au-boeuf", + "id": "fr:sandwichs-au-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-a-l-armagnac", + "name": "Sauce-a-l-armagnac", + "id": "fr:sauce-a-l-armagnac", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oak-smoked-salmon", + "products": 1, + "id": "en:oak-smoked-salmon", + "name": "en:Oak-smoked-salmon" + }, + { + "products": 1, + "id": "en:algues-wakame", + "name": "en:Algues-wakame", + "url": "https://fr.openfoodfacts.org/categorie/en:algues-wakame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-frais", + "products": 1, + "name": "Tortellini-frais", + "id": "fr:tortellini-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schinken", + "products": 1, + "id": "fr:schinken", + "name": "Schinken" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3485298" + ], + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-riz-brun", + "products": 1, + "name": "Sirops de riz brun", + "id": "en:brown-rice-syrups" + }, + { + "name": "Puree-pomme-poire-bio", + "id": "fr:puree-pomme-poire-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/puree-pomme-poire-bio" + }, + { + "products": 1, + "id": "de:bio-kefir", + "name": "de:Bio-kefir", + "url": "https://fr.openfoodfacts.org/categorie/de:bio-kefir" + }, + { + "products": 1, + "name": "Prêle des champs", + "id": "en:field-horsetail", + "url": "https://fr.openfoodfacts.org/categorie/prele-des-champs", + "sameAs": [ + "https://www.wikidata.org/wiki/Q107592" + ] + }, + { + "id": "ru:alcools-forts", + "name": "ru:Alcools-forts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:alcools-forts" + }, + { + "products": 1, + "name": "en:Quinoa-and-rice", + "id": "en:quinoa-and-rice", + "url": "https://fr.openfoodfacts.org/categorie/en:quinoa-and-rice" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-de-paques", + "name": "en:Chocolats-de-paques", + "id": "en:chocolats-de-paques", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-de-dijon-au-vinaigre", + "products": 1, + "name": "Moutardes-de-dijon-au-vinaigre", + "id": "fr:moutardes-de-dijon-au-vinaigre" + }, + { + "products": 1, + "id": "it:cereales-pour-petit-dejeuner", + "name": "it:Cereales-pour-petit-dejeuner", + "url": "https://fr.openfoodfacts.org/categorie/it:cereales-pour-petit-dejeuner" + }, + { + "products": 1, + "id": "th:boissons-sucrees", + "name": "th:Boissons-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/th:boissons-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-mi-chevre", + "products": 1, + "id": "fr:fromages-mi-chevre", + "name": "Fromages-mi-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-peche", + "id": "fr:coulis-de-peche", + "name": "Coulis-de-peche", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sahces-bechamel", + "id": "fr:sahces-bechamel", + "name": "Sahces-bechamel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-boissons", + "products": 1, + "id": "en:preparations-pour-boissons", + "name": "en:Preparations-pour-boissons" + }, + { + "id": "fr:nectars-de-baies-rouges", + "name": "Nectars-de-baies-rouges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-baies-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-noisettes", + "products": 1, + "id": "fr:pommes-noisettes", + "name": "Pommes noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:confitures-de-fraises", + "name": "nl:Confitures-de-fraises", + "id": "nl:confitures-de-fraises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-cassis", + "products": 1, + "id": "fr:jus-de-pomme-cassis", + "name": "Jus-de-pomme-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajines-de-boeuf", + "id": "fr:tajines-de-boeuf", + "name": "Tajines-de-boeuf", + "products": 1 + }, + { + "name": "en:Frutos-de-cascara-sin-cascara", + "id": "en:frutos-de-cascara-sin-cascara", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:frutos-de-cascara-sin-cascara" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigre-de-vin-blanc-bio", + "products": 1, + "name": "Vinaigre-de-vin-blanc-bio", + "id": "fr:vinaigre-de-vin-blanc-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fricassee", + "products": 1, + "name": "Fricassee", + "id": "fr:fricassee" + }, + { + "name": "Riz-au-lait-vanille-de-madagascar", + "id": "fr:riz-au-lait-vanille-de-madagascar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-vanille-de-madagascar" + }, + { + "name": "Tarte-aux-cerises", + "id": "fr:tarte-aux-cerises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-cerises" + }, + { + "products": 1, + "id": "en:concentrated-apricot-juices", + "name": "Jus d'abricot à base de concentré", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-abricot-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petales-de-cereales", + "id": "fr:petales-de-cereales", + "name": "Petales-de-cereales", + "products": 1 + }, + { + "id": "fr:thym-surgele", + "name": "Thym-surgele", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thym-surgele" + }, + { + "products": 1, + "name": "Laits condensés", + "id": "en:condensed-milks", + "url": "https://fr.openfoodfacts.org/categorie/laits-condenses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-a-la-pomme", + "products": 1, + "name": "Tourtes-a-la-pomme", + "id": "fr:tourtes-a-la-pomme" + }, + { + "id": "fr:chifferini-lisci", + "name": "Chifferini-lisci", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chifferini-lisci" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-vegetarienne", + "id": "fr:terrine-vegetarienne", + "name": "Terrine-vegetarienne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusions-de-thym", + "id": "en:thyme-tea-bags", + "name": "Infusions de thym", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruit-de-mer-farci", + "id": "fr:fruit-de-mer-farci", + "name": "Fruit-de-mer-farci", + "products": 1 + }, + { + "products": 1, + "id": "fr:cheddar-aux-oignons", + "name": "Cheddar-aux-oignons", + "url": "https://fr.openfoodfacts.org/categorie/cheddar-aux-oignons" + }, + { + "name": "Cassonade-de-candi-brune", + "id": "fr:cassonade-de-candi-brune", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cassonade-de-candi-brune" + }, + { + "id": "de:koffeinhaltig", + "name": "de:Koffeinhaltig", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:koffeinhaltig" + }, + { + "name": "Roules-au-fromage", + "id": "fr:roules-au-fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/roules-au-fromage" + }, + { + "name": "pt:Melanges-de-flocons-de-cereales", + "id": "pt:melanges-de-flocons-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:melanges-de-flocons-de-cereales" + }, + { + "id": "fr:quenelle-en-sauce", + "name": "Quenelle-en-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quenelle-en-sauce" + }, + { + "products": 1, + "name": "Jus-de-tomates-sales", + "id": "fr:jus-de-tomates-sales", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-tomates-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-de-jument", + "products": 1, + "name": "Lait-de-jument", + "id": "fr:lait-de-jument" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buiscuits-fourres", + "products": 1, + "id": "fr:buiscuits-fourres", + "name": "Buiscuits-fourres" + }, + { + "products": 1, + "id": "ca:cafe", + "name": "ca:Cafe", + "url": "https://fr.openfoodfacts.org/categorie/ca:cafe" + }, + { + "name": "en:Fruits-en-conserve", + "id": "en:fruits-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-raffinees", + "id": "en:refined-olive-oils", + "name": "Huiles d'olive raffinées", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:aperitivos-fritos", + "id": "es:aperitivos-fritos", + "name": "es:Aperitivos-fritos", + "products": 1 + }, + { + "products": 1, + "name": "Pastille", + "id": "fr:pastille", + "url": "https://fr.openfoodfacts.org/categorie/pastille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colorants-pour-oeufs", + "id": "fr:colorants-pour-oeufs", + "name": "Colorants pour oeufs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fajitas-garnies", + "products": 1, + "id": "fr:fajitas-garnies", + "name": "Fajitas-garnies" + }, + { + "id": "fr:chicken-tikka-masala-with-spiced-basmati-rice", + "name": "Chicken-tikka-masala-with-spiced-basmati-rice", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chicken-tikka-masala-with-spiced-basmati-rice" + }, + { + "id": "en:chocolats-fourres-aux-fruits", + "name": "en:Chocolats-fourres-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-fourres-aux-fruits" + }, + { + "products": 1, + "id": "fr:panure", + "name": "Panure", + "url": "https://fr.openfoodfacts.org/categorie/panure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-de-fleurs-de-coco", + "id": "fr:sucre-de-fleurs-de-coco", + "name": "Sucre-de-fleurs-de-coco", + "products": 1 + }, + { + "products": 1, + "id": "zh:konfekt", + "name": "zh:Konfekt", + "url": "https://fr.openfoodfacts.org/categorie/zh:konfekt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-sans-sucres-ajoutes", + "id": "fr:compotes-sans-sucres-ajoutes", + "name": "Compotes-sans-sucres-ajoutes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sucres-vanilles", + "products": 1, + "name": "en:Sucres-vanilles", + "id": "en:sucres-vanilles" + }, + { + "id": "fr:limoncello", + "name": "Limoncello", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/limoncello" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-galettes", + "name": "Preparations-pour-galettes", + "id": "fr:preparations-pour-galettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-palme-rouge", + "products": 1, + "name": "Huiles-de-palme-rouge", + "id": "fr:huiles-de-palme-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-felicien-du-dauphine", + "id": "fr:saint-felicien-du-dauphine", + "name": "Saint-felicien-du-dauphine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-plats", + "name": "Haricots-plats", + "id": "fr:haricots-plats", + "products": 1 + }, + { + "name": "es:Fruits-au-sirop", + "id": "es:fruits-au-sirop", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/macon-blanc", + "products": 1, + "name": "Macon-blanc", + "id": "fr:macon-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-creme-patissiere", + "products": 1, + "name": "Preparation-pour-creme-patissiere", + "id": "fr:preparation-pour-creme-patissiere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-marrons", + "id": "fr:glaces-aux-marrons", + "name": "Glaces-aux-marrons", + "products": 1 + }, + { + "name": "es:Raisins-secs-sultanines", + "id": "es:raisins-secs-sultanines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:raisins-secs-sultanines" + }, + { + "products": 1, + "name": "Jambons-desosses", + "id": "fr:jambons-desosses", + "url": "https://fr.openfoodfacts.org/categorie/jambons-desosses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:artichauts-en-conserve", + "id": "en:artichauts-en-conserve", + "name": "en:Artichauts-en-conserve", + "products": 1 + }, + { + "products": 1, + "name": "Aoc-quart-de-chaumes", + "id": "fr:aoc-quart-de-chaumes", + "url": "https://fr.openfoodfacts.org/categorie/aoc-quart-de-chaumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/turrones-blandos", + "products": 1, + "id": "fr:turrones-blandos", + "name": "Turrones-blandos" + }, + { + "products": 1, + "name": "Muffins-a-l-abricot", + "id": "fr:muffins-a-l-abricot", + "url": "https://fr.openfoodfacts.org/categorie/muffins-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coeurs-d-artichauts-en-bocal", + "products": 1, + "id": "fr:coeurs-d-artichauts-en-bocal", + "name": "Coeurs-d-artichauts-en-bocal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-tomates-cerises", + "id": "fr:tarte-aux-tomates-cerises", + "name": "Tarte-aux-tomates-cerises", + "products": 1 + }, + { + "id": "fr:dosettes-souples", + "name": "Dosettes-souples", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dosettes-souples" + }, + { + "name": "it:Piatti-pronti", + "id": "it:piatti-pronti", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:piatti-pronti" + }, + { + "name": "en:Canned-ananas", + "id": "en:canned-ananas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:canned-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paella-surgelee", + "products": 1, + "name": "Paella-surgelee", + "id": "fr:paella-surgelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/demi-lunes-aux-cepes", + "products": 1, + "name": "Demi-lunes-aux-cepes", + "id": "fr:demi-lunes-aux-cepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viande-fraiches-hachees", + "name": "Preparations-de-viande-fraiches-hachees", + "id": "fr:preparations-de-viande-fraiches-hachees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:coconut-creams", + "name": "en:Coconut-creams", + "id": "en:coconut-creams", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-persille", + "name": "Jambon-persille", + "id": "fr:jambon-persille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petales-de-ble", + "id": "fr:petales-de-ble", + "name": "Petales-de-ble", + "products": 1 + }, + { + "products": 1, + "id": "fr:terrine-de-sanglier-aux-chataignes", + "name": "Terrine-de-sanglier-aux-chataignes", + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-sanglier-aux-chataignes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-framboises", + "products": 1, + "name": "Yaourts-sur-lit-de-framboises", + "id": "fr:yaourts-sur-lit-de-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-de-paques", + "products": 1, + "name": "Aliments-de-paques", + "id": "fr:aliments-de-paques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/subtituts-de-repas", + "products": 1, + "name": "Subtituts-de-repas", + "id": "fr:subtituts-de-repas" + }, + { + "id": "fr:vegetalien", + "name": "Vegetalien", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vegetalien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:snack", + "products": 1, + "id": "de:snack", + "name": "de:Snack" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pickles-d-origine-vegetale", + "name": "en:Pickles-d-origine-vegetale", + "id": "en:pickles-d-origine-vegetale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:leguminosas-y-derivados", + "products": 1, + "name": "ru:Leguminosas-y-derivados", + "id": "ru:leguminosas-y-derivados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sels-roses", + "name": "en:Sels-roses", + "id": "en:sels-roses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olivettes", + "id": "fr:olivettes", + "name": "Olivettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-2-parfums-sur-lit-de-fruits-jaunes", + "name": "Yaourts-a-la-grecque-2-parfums-sur-lit-de-fruits-jaunes", + "id": "fr:yaourts-a-la-grecque-2-parfums-sur-lit-de-fruits-jaunes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-pistaches", + "id": "fr:chocolats-aux-pistaches", + "name": "Chocolats-aux-pistaches", + "products": 1 + }, + { + "products": 1, + "name": "en:Kaffees", + "id": "en:kaffees", + "url": "https://fr.openfoodfacts.org/categorie/en:kaffees" + }, + { + "products": 1, + "id": "it:frais", + "name": "it:Frais", + "url": "https://fr.openfoodfacts.org/categorie/it:frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/langue-de-porc-en-gelee", + "products": 1, + "id": "fr:langue-de-porc-en-gelee", + "name": "Langue-de-porc-en-gelee" + }, + { + "id": "fr:preparations-pour-crepes-de-lentilles", + "name": "Preparations-pour-crepes-de-lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-crepes-de-lentilles" + }, + { + "id": "fr:cacaos-en-poudre-non-sucres", + "name": "Cacaos-en-poudre-non-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cacaos-en-poudre-non-sucres" + }, + { + "name": "Galettes-dietetiques", + "id": "fr:galettes-dietetiques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-dietetiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-aux-eclats-de-noisettes", + "name": "Chocolat-noir-aux-eclats-de-noisettes", + "id": "fr:chocolat-noir-aux-eclats-de-noisettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs-mousseux", + "products": 1, + "id": "fr:vins-blancs-mousseux", + "name": "Vins-blancs-mousseux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-raifort", + "products": 1, + "name": "Sauces-au-raifort", + "id": "fr:sauces-au-raifort" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ultra-frais", + "id": "fr:ultra-frais", + "name": "Ultra-frais", + "products": 1 + }, + { + "products": 1, + "id": "fr:boisson-aux-extraits-vegetaux", + "name": "Boisson-aux-extraits-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/boisson-aux-extraits-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yogures-de-soja-naturales", + "id": "fr:yogures-de-soja-naturales", + "name": "Yogures-de-soja-naturales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-jambon", + "products": 1, + "name": "Saucisses-de-jambon", + "id": "fr:saucisses-de-jambon" + }, + { + "products": 1, + "name": "es:Legumes-surgeles", + "id": "es:legumes-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/es:legumes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/girasoli-pesto-basilic", + "name": "Girasoli-pesto-basilic", + "id": "fr:girasoli-pesto-basilic", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fecules", + "products": 1, + "name": "en:Fecules", + "id": "en:fecules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-a-pate-molle-a-croute-fleurie", + "products": 1, + "name": "en:Fromages-a-pate-molle-a-croute-fleurie", + "id": "en:fromages-a-pate-molle-a-croute-fleurie" + }, + { + "id": "fr:pates-a-tartiner-au-chocolat-et-cacahuetes", + "name": "Pates-a-tartiner-au-chocolat-et-cacahuetes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-au-chocolat-et-cacahuetes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-saveur-grenadine", + "id": "fr:boisson-gazeuse-saveur-grenadine", + "name": "Boisson-gazeuse-saveur-grenadine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-framboise", + "id": "fr:sables-framboise", + "name": "Sables-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petales-de-riz-et-ble-complet", + "name": "Petales-de-riz-et-ble-complet", + "id": "fr:petales-de-riz-et-ble-complet", + "products": 1 + }, + { + "name": "Desserts-lactes-a-la-pistache", + "id": "fr:desserts-lactes-a-la-pistache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-a-la-pistache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-a-la-myrtille", + "id": "fr:cheesecakes-a-la-myrtille", + "name": "Cheesecakes-a-la-myrtille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-rouge-bio", + "products": 1, + "name": "Riz-rouge-bio", + "id": "fr:riz-rouge-bio" + }, + { + "products": 1, + "id": "fr:golden-syrup", + "name": "Golden-syrup", + "url": "https://fr.openfoodfacts.org/categorie/golden-syrup" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-a-l-anans", + "products": 1, + "id": "fr:pizzas-a-l-anans", + "name": "Pizzas-a-l-anans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-d-oie", + "name": "Bloc-de-foie-gras-d-oie", + "id": "fr:bloc-de-foie-gras-d-oie", + "products": 1 + }, + { + "name": "en:Shortbread-cookies", + "id": "en:shortbread-cookies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:shortbread-cookies" + }, + { + "products": 1, + "id": "de:gemuse-maultaschen", + "name": "de:Gemuse-maultaschen", + "url": "https://fr.openfoodfacts.org/categorie/de:gemuse-maultaschen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gaches", + "id": "en:gaches", + "name": "en:Gaches", + "products": 1 + }, + { + "name": "en:Chocolate-walking-egg", + "id": "en:chocolate-walking-egg", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-walking-egg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pleurotes-en-huitre-en-conserve", + "id": "en:canned-oyster-mushrooms", + "name": "Pleurotes en huître en conserve", + "products": 1 + }, + { + "id": "en:soups-of-lentils", + "name": "Soupes de lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-gazeifiees-aux-extrait-de-fruits-aromatisee", + "name": "Boissons-gazeifiees-aux-extrait-de-fruits-aromatisee", + "id": "fr:boissons-gazeifiees-aux-extrait-de-fruits-aromatisee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-croustillants", + "products": 1, + "id": "en:pains-croustillants", + "name": "en:Pains-croustillants" + }, + { + "id": "fr:palmiers-sales", + "name": "Palmiers-sales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/palmiers-sales" + }, + { + "name": "Dessert-liegeois", + "id": "fr:dessert-liegeois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-liegeois" + }, + { + "products": 1, + "name": "Oignons-au-vinaigre", + "id": "fr:oignons-au-vinaigre", + "url": "https://fr.openfoodfacts.org/categorie/oignons-au-vinaigre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tuna-sandwich", + "name": "en:Tuna-sandwich", + "id": "en:tuna-sandwich", + "products": 1 + }, + { + "name": "Accrats-de-morue", + "id": "fr:accrats-de-morue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/accrats-de-morue" + }, + { + "name": "Crabe-au-naturel", + "id": "fr:crabe-au-naturel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crabe-au-naturel" + }, + { + "id": "fr:premieres-cotes-de-bordeaux", + "name": "Premières-côtes-de-bordeaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/premieres-cotes-de-bordeaux", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2108715" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eau-minerale-naturelle-naturellement-gazeuse", + "products": 1, + "id": "fr:eau-minerale-naturelle-naturellement-gazeuse", + "name": "Eau-minerale-naturelle-naturellement-gazeuse" + }, + { + "products": 1, + "name": "it:Aliments-et-boissons-de-noel", + "id": "it:aliments-et-boissons-de-noel", + "url": "https://fr.openfoodfacts.org/categorie/it:aliments-et-boissons-de-noel" + }, + { + "id": "en:lacteos", + "name": "en:Lacteos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:lacteos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-bio", + "id": "fr:riz-thai-bio", + "name": "Riz-thai-bio", + "products": 1 + }, + { + "products": 1, + "name": "de:Sorbets-a-la-framboise", + "id": "de:sorbets-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/de:sorbets-a-la-framboise" + }, + { + "products": 1, + "id": "fr:gateaux-aux-fraises", + "name": "Gateaux-aux-fraises", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-belges", + "name": "en:Bieres-belges", + "id": "en:bieres-belges", + "products": 1 + }, + { + "products": 1, + "id": "en:pates-a-tartiner-au-caramel", + "name": "en:Pates-a-tartiner-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bifteck", + "id": "fr:bifteck", + "name": "Bifteck", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:torsades-semi-completes", + "products": 1, + "id": "en:torsades-semi-completes", + "name": "en:Torsades-semi-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-granule", + "products": 1, + "id": "fr:ail-granule", + "name": "Ail-granule" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:biscuits-et-gateaux", + "name": "ru:Biscuits-et-gateaux", + "id": "ru:biscuits-et-gateaux", + "products": 1 + }, + { + "products": 1, + "name": "Preparations-pour-biscuits", + "id": "fr:preparations-pour-biscuits", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-biscuits" + }, + { + "products": 1, + "name": "Biscuit-fourre-chocolat", + "id": "fr:biscuit-fourre-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/biscuit-fourre-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-gout-chocolat", + "name": "Bonbons-gout-chocolat", + "id": "fr:bonbons-gout-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produit-en-bretagne", + "name": "Produit-en-bretagne", + "id": "fr:produit-en-bretagne", + "products": 1 + }, + { + "id": "fr:olives-au-citron", + "name": "Olives-au-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/olives-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-au-lait-parseme-de-grains-de-nougatine", + "name": "Chocolat-au-lait-parseme-de-grains-de-nougatine", + "id": "fr:chocolat-au-lait-parseme-de-grains-de-nougatine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tourtes", + "id": "en:tourtes", + "name": "en:Tourtes", + "products": 1 + }, + { + "products": 1, + "name": "Calmar", + "id": "fr:calmar", + "url": "https://fr.openfoodfacts.org/categorie/calmar" + }, + { + "products": 1, + "name": "en:Chocolate-chip-cookies", + "id": "en:chocolate-chip-cookies", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-chip-cookies" + }, + { + "products": 1, + "name": "en:Yaourts-brasses", + "id": "en:yaourts-brasses", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-brasses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rigatoni", + "id": "en:rigatoni", + "name": "en:Rigatoni", + "products": 1 + }, + { + "name": "Bieres-du-pays-bas", + "id": "fr:bieres-du-pays-bas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-du-pays-bas" + }, + { + "products": 1, + "id": "fr:gateaux-bretons-au-caramel", + "name": "Gateaux-bretons-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-bretons-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwiches-de-falafel", + "products": 1, + "id": "en:falafel-sandwiches", + "name": "Sandwiches de falafel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/whole-wheat-noodles", + "products": 1, + "name": "Whole Wheat Noodles", + "id": "en:whole-wheat-noodles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:biscuits-fourres", + "products": 1, + "name": "ru:Biscuits-fourres", + "id": "ru:biscuits-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-de-sicile", + "products": 1, + "name": "Sels-de-sicile", + "id": "fr:sels-de-sicile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-noirs-de-ceylan", + "name": "Thes-noirs-de-ceylan", + "id": "fr:thes-noirs-de-ceylan", + "products": 1 + }, + { + "products": 1, + "name": "Pates-semi-fraiches", + "id": "fr:pates-semi-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/pates-semi-fraiches" + }, + { + "id": "en:confitures-allegees", + "name": "en:Confitures-allegees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-allegees" + }, + { + "products": 1, + "name": "Glaces-a-la-framboise", + "id": "fr:glaces-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-framboise" + }, + { + "id": "es:nectars-d-ananas", + "name": "es:Nectars-d-ananas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:nectars-d-ananas" + }, + { + "products": 1, + "id": "fr:bieren", + "name": "Bieren", + "url": "https://fr.openfoodfacts.org/categorie/bieren" + }, + { + "products": 1, + "name": "Preparation-cacaotee", + "id": "fr:preparation-cacaotee", + "url": "https://fr.openfoodfacts.org/categorie/preparation-cacaotee" + }, + { + "id": "fr:viennois", + "name": "Viennois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viennois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidre-breton", + "products": 1, + "id": "fr:cidre-breton", + "name": "Cidre-breton" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-pimentee", + "id": "fr:sardines-a-l-huile-pimentee", + "name": "Sardines-a-l-huile-pimentee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-sec", + "name": "Gateaux-sec", + "id": "fr:gateaux-sec", + "products": 1 + }, + { + "name": "Biscuits-aux-chocolat-et-a-la-noix-de-coco", + "id": "fr:biscuits-aux-chocolat-et-a-la-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-chocolat-et-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-graines", + "products": 1, + "name": "Biscuits-aux-graines", + "id": "fr:biscuits-aux-graines" + }, + { + "name": "en:Dinosaure-en-chocolat", + "id": "en:dinosaure-en-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:dinosaure-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faisselles-de-brebis", + "products": 1, + "name": "Faisselles-de-brebis", + "id": "fr:faisselles-de-brebis" + }, + { + "products": 1, + "id": "fr:poudres", + "name": "Poudres", + "url": "https://fr.openfoodfacts.org/categorie/poudres" + }, + { + "products": 1, + "name": "en:Sauces-a-la-menthe", + "id": "en:sauces-a-la-menthe", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-a-la-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:yaourts-au-citron", + "name": "it:Yaourts-au-citron", + "id": "it:yaourts-au-citron", + "products": 1 + }, + { + "products": 1, + "id": "en:strawberry-juice", + "name": "Strawberry juice", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1068602" + ], + "url": "https://fr.openfoodfacts.org/categorie/strawberry-juice" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-artesiennes", + "id": "fr:eaux-artesiennes", + "name": "Eaux-artesiennes", + "products": 1 + }, + { + "products": 1, + "id": "es:cocoa-oat-milks", + "name": "es:Cocoa-oat-milks", + "url": "https://fr.openfoodfacts.org/categorie/es:cocoa-oat-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marbres", + "products": 1, + "id": "fr:marbres", + "name": "Marbres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-lingots", + "name": "Haricots-lingots", + "id": "fr:haricots-lingots", + "products": 1 + }, + { + "name": "Fond-de-veau-degraisse", + "id": "fr:fond-de-veau-degraisse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fond-de-veau-degraisse" + }, + { + "name": "Chocolats-au-lait-avec-biscuit", + "id": "fr:chocolats-au-lait-avec-biscuit", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-avec-biscuit" + }, + { + "name": "Noix-de-jambon-cru-sale", + "id": "fr:noix-de-jambon-cru-sale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/noix-de-jambon-cru-sale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chutneys-de-mangue", + "name": "Chutneys-de-mangue", + "id": "fr:chutneys-de-mangue", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sodas-aux-fruits-rouges", + "name": "Sodas-aux-fruits-rouges", + "id": "fr:sodas-aux-fruits-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-deshydratees", + "name": "de:Sauces-deshydratees", + "id": "de:sauces-deshydratees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-fraiche-epaisse-legere", + "products": 1, + "name": "Creme-fraiche-epaisse-legere", + "id": "fr:creme-fraiche-epaisse-legere" + }, + { + "name": "es:Chips-de-patatas-fritas-clasicas", + "id": "es:chips-de-patatas-fritas-clasicas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:chips-de-patatas-fritas-clasicas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:8-years-old", + "name": "en:8-years-old", + "id": "en:8-years-old", + "products": 1 + }, + { + "products": 1, + "id": "fr:nonnettes-a-la-fraise", + "name": "Nonnettes-a-la-fraise", + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:spiced-chicken-soup", + "id": "en:spiced-chicken-soup", + "name": "en:Spiced-chicken-soup", + "products": 1 + }, + { + "products": 1, + "name": "Sandwichs-frais", + "id": "fr:sandwichs-frais", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:products-sold-in-the-years-1990", + "products": 1, + "id": "en:products-sold-in-the-years-1990", + "name": "en:Products-sold-in-the-years-1990" + }, + { + "id": "xx:mineralwasser", + "name": "xx:Mineralwasser", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:mineralwasser" + }, + { + "products": 1, + "name": "Glaces-aux-edulcorants", + "id": "fr:glaces-aux-edulcorants", + "url": "https://fr.openfoodfacts.org/categorie/glaces-aux-edulcorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comidas-preparadas-en-conserva", + "products": 1, + "name": "Comidas-preparadas-en-conserva", + "id": "fr:comidas-preparadas-en-conserva" + }, + { + "products": 1, + "id": "en:non-carbonated-natural-mineral-waters", + "name": "Non-carbonated natural mineral waters", + "url": "https://fr.openfoodfacts.org/categorie/non-carbonated-natural-mineral-waters" + }, + { + "name": "en:Chicken-tikka", + "id": "en:chicken-tikka", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chicken-tikka" + }, + { + "id": "en:spearmint", + "name": "Menthe verte", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q160114" + ], + "url": "https://fr.openfoodfacts.org/categorie/menthe-verte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mozzarella-di-bufala-campana", + "name": "en:Mozzarella-di-bufala-campana", + "id": "en:mozzarella-di-bufala-campana", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:desayunos", + "products": 1, + "name": "de:Desayunos", + "id": "de:desayunos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-lentilles", + "products": 1, + "name": "Plats-a-base-de-lentilles", + "id": "fr:plats-a-base-de-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tarte", + "id": "de:pates-a-tarte", + "name": "de:Pates-a-tarte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ratatouille-cuisinee", + "products": 1, + "name": "Ratatouille-cuisinee", + "id": "fr:ratatouille-cuisinee" + }, + { + "products": 1, + "id": "pl:additifs-alimentaires", + "name": "pl:Additifs-alimentaires", + "url": "https://fr.openfoodfacts.org/categorie/pl:additifs-alimentaires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-alimentaires-sans-gluten", + "products": 1, + "name": "en:Pates-alimentaires-sans-gluten", + "id": "en:pates-alimentaires-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure-de-boulanger-seche", + "products": 1, + "name": "Levure-de-boulanger-seche", + "id": "fr:levure-de-boulanger-seche" + }, + { + "name": "en:Mueslis-aux-graines", + "id": "en:mueslis-aux-graines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:mueslis-aux-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-mirabelles", + "products": 1, + "name": "en:Confitures-de-mirabelles", + "id": "en:confitures-de-mirabelles" + }, + { + "id": "fr:encas", + "name": "Encas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/encas" + }, + { + "name": "es:Pates-de-goyaves", + "id": "es:pates-de-goyaves", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:pates-de-goyaves" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parfaits-de-poulet", + "products": 1, + "name": "Parfaits-de-poulet", + "id": "fr:parfaits-de-poulet" + }, + { + "products": 1, + "id": "fr:flans-nappes-caramel", + "name": "Flans-nappes-caramel", + "url": "https://fr.openfoodfacts.org/categorie/flans-nappes-caramel" + }, + { + "products": 1, + "name": "pt:Vegetables-and-derived-products", + "id": "pt:vegetables-and-derived-products", + "url": "https://fr.openfoodfacts.org/categorie/pt:vegetables-and-derived-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:frischkase", + "name": "xx:Frischkase", + "id": "xx:frischkase", + "products": 1 + }, + { + "products": 1, + "id": "fr:taboules-aux-crevettes", + "name": "Taboules-aux-crevettes", + "url": "https://fr.openfoodfacts.org/categorie/taboules-aux-crevettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-petit-dejeuner", + "products": 1, + "id": "fr:chocolat-petit-dejeuner", + "name": "Chocolat-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidre-artisanal-bio", + "id": "fr:cidre-artisanal-bio", + "name": "Cidre-artisanal-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-aux-crevettes", + "products": 1, + "name": "Tourtes-aux-crevettes", + "id": "fr:tourtes-aux-crevettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:hamburgers-vegetales", + "products": 1, + "name": "de:Hamburgers-vegetales", + "id": "de:hamburgers-vegetales" + }, + { + "id": "fr:confiture-de-fraises-et-rhubarbe", + "name": "Confiture-de-fraises-et-rhubarbe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confiture-de-fraises-et-rhubarbe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-de-rotis-de-porc", + "name": "Des-de-rotis-de-porc", + "id": "fr:des-de-rotis-de-porc", + "products": 1 + }, + { + "products": 1, + "id": "fr:farines-pour-gateaux", + "name": "Farines-pour-gateaux", + "url": "https://fr.openfoodfacts.org/categorie/farines-pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-la-framboise", + "id": "fr:chocolats-blancs-a-la-framboise", + "name": "Chocolats-blancs-a-la-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-citron", + "name": "Chocolats-au-lait-au-citron", + "id": "fr:chocolats-au-lait-au-citron", + "products": 1 + }, + { + "products": 1, + "name": "Banon", + "id": "fr:banon", + "url": "https://fr.openfoodfacts.org/categorie/banon" + }, + { + "id": "fr:pates-facon-chinoise-aux-oeufs", + "name": "Pates-facon-chinoise-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-facon-chinoise-aux-oeufs" + }, + { + "products": 1, + "id": "en:lokoums", + "name": "en:Lokoums", + "url": "https://fr.openfoodfacts.org/categorie/en:lokoums" + }, + { + "name": "xx:Ungezuckerte-getranke", + "id": "xx:ungezuckerte-getranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:ungezuckerte-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desayunos", + "id": "fr:desayunos", + "name": "Desayunos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-a-cuire", + "products": 1, + "id": "fr:saucisse-a-cuire", + "name": "Saucisse-a-cuire" + }, + { + "products": 1, + "name": "Goyaves", + "id": "en:guavas", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3181909" + ], + "url": "https://fr.openfoodfacts.org/categorie/goyaves" + }, + { + "id": "fr:wrap-au-poulet", + "name": "Wrap-au-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/wrap-au-poulet" + }, + { + "id": "fr:saute-d-agneau", + "name": "Saute-d-agneau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saute-d-agneau" + }, + { + "products": 1, + "name": "Pommes-de-terre-transformees", + "id": "fr:pommes-de-terre-transformees", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-transformees" + }, + { + "products": 1, + "name": "Farces-de-porc", + "id": "fr:farces-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/farces-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bolognese-sosse", + "id": "fr:bolognese-sosse", + "name": "Bolognese-sosse", + "products": 1 + }, + { + "name": "Sauces chien", + "id": "fr:sauces-chien", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-chien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veau-hache", + "products": 1, + "name": "Veau-hache", + "id": "fr:veau-hache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calvados-pays-d-auge", + "products": 1, + "name": "Calvados-pays-d-auge", + "id": "fr:calvados-pays-d-auge" + }, + { + "products": 1, + "name": "Grains-de-mais", + "id": "fr:grains-de-mais", + "url": "https://fr.openfoodfacts.org/categorie/grains-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:compotes-pommes-poires", + "name": "en:Compotes-pommes-poires", + "id": "en:compotes-pommes-poires", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/postres-de-soja-con-vainilla", + "products": 1, + "name": "Postres-de-soja-con-vainilla", + "id": "fr:postres-de-soja-con-vainilla" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-ipa", + "products": 1, + "id": "nl:bieres-ipa", + "name": "nl:Bieres-ipa" + }, + { + "name": "Mousses-de-foie-de-canard", + "id": "fr:mousses-de-foie-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-foie-de-canard" + }, + { + "products": 1, + "id": "es:galettes-de-mais", + "name": "es:Galettes-de-mais", + "url": "https://fr.openfoodfacts.org/categorie/es:galettes-de-mais" + }, + { + "products": 1, + "name": "Demi-lunes-aux-champignons", + "id": "fr:demi-lunes-aux-champignons", + "url": "https://fr.openfoodfacts.org/categorie/demi-lunes-aux-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-du-perigord", + "products": 1, + "id": "fr:noix-du-perigord", + "name": "Noix-du-perigord" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-en-bocal", + "name": "Legumes-en-bocal", + "id": "fr:legumes-en-bocal", + "products": 1 + }, + { + "products": 1, + "name": "Proteines", + "id": "fr:proteines", + "url": "https://fr.openfoodfacts.org/categorie/proteines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pennette-rigate-completes", + "id": "fr:pennette-rigate-completes", + "name": "Pennette-rigate-completes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-litchis", + "id": "fr:nectars-de-litchis", + "name": "Nectars-de-litchis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-royal-bio", + "products": 1, + "name": "Quinoa-royal-bio", + "id": "fr:quinoa-royal-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-aux-griottes", + "products": 1, + "name": "Yaourt-aux-griottes", + "id": "fr:yaourt-aux-griottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pois-chiches-en-conserve", + "name": "en:Pois-chiches-en-conserve", + "id": "en:pois-chiches-en-conserve", + "products": 1 + }, + { + "name": "Piparkukas", + "id": "fr:piparkukas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piparkukas" + }, + { + "products": 1, + "id": "fr:preparations-pour-cocktails", + "name": "Preparations-pour-cocktails", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-cocktails" + }, + { + "products": 1, + "name": "Chocolats-au-riz", + "id": "fr:chocolats-au-riz", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-riz" + }, + { + "id": "fr:filets-de-caille", + "name": "Filets-de-caille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-caille" + }, + { + "products": 1, + "name": "Gariguette", + "id": "fr:gariguette", + "url": "https://fr.openfoodfacts.org/categorie/gariguette" + }, + { + "products": 1, + "name": "de:Cerises-au-sirop", + "id": "de:cerises-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/de:cerises-au-sirop" + }, + { + "products": 1, + "id": "en:jus-de-pomme-petillants", + "name": "en:Jus-de-pomme-petillants", + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-pomme-petillants" + }, + { + "products": 1, + "name": "Bieres-stout", + "id": "fr:bieres-stout", + "url": "https://fr.openfoodfacts.org/categorie/bieres-stout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:semoules-au-lait", + "id": "en:semoules-au-lait", + "name": "en:Semoules-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarte-pur-beurre", + "products": 1, + "name": "Tarte-pur-beurre", + "id": "fr:tarte-pur-beurre" + }, + { + "products": 1, + "id": "de:agua-mineral-con-gas", + "name": "de:Agua-mineral-con-gas", + "url": "https://fr.openfoodfacts.org/categorie/de:agua-mineral-con-gas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-amylacees", + "name": "Preparations-amylacees", + "id": "fr:preparations-amylacees", + "products": 1 + }, + { + "products": 1, + "name": "Sucre-blond-de-canne-en-poudre-bio", + "id": "fr:sucre-blond-de-canne-en-poudre-bio", + "url": "https://fr.openfoodfacts.org/categorie/sucre-blond-de-canne-en-poudre-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisine-asiatique", + "products": 1, + "name": "Cuisine-asiatique", + "id": "fr:cuisine-asiatique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roiboos-teabags", + "products": 1, + "name": "Roiboos-teabags", + "id": "fr:roiboos-teabags" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pacherenc", + "id": "fr:pacherenc", + "name": "Pacherenc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-cubes-de-boeuf", + "name": "Bouillons-cubes-de-boeuf", + "id": "fr:bouillons-cubes-de-boeuf", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:noix-de-cajou-salees", + "products": 1, + "id": "de:noix-de-cajou-salees", + "name": "de:Noix-de-cajou-salees" + }, + { + "products": 1, + "id": "fr:batonnets-de-dinde-panes", + "name": "Batonnets-de-dinde-panes", + "url": "https://fr.openfoodfacts.org/categorie/batonnets-de-dinde-panes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/figatellus", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1411847" + ], + "products": 1, + "name": "Figatellus", + "id": "fr:figatellus" + }, + { + "name": "en:Fusilli", + "id": "en:fusilli", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fusilli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:snacks-sales", + "name": "sv:Snacks-sales", + "id": "sv:snacks-sales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-framboise", + "id": "fr:coulis-de-framboise", + "name": "Coulis-de-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-sec-en-conserve", + "products": 1, + "id": "fr:legumes-sec-en-conserve", + "name": "Legumes-sec-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-en-tranches", + "id": "fr:saucisse-en-tranches", + "name": "Saucisse-en-tranches", + "products": 1 + }, + { + "products": 1, + "name": "Cacahuetes-grillees-et-salees", + "id": "fr:cacahuetes-grillees-et-salees", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-grillees-et-salees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-instantannee", + "products": 1, + "id": "fr:nouilles-instantannee", + "name": "Nouilles-instantannee" + }, + { + "name": "Salade-de-carottes-rapees", + "id": "fr:salade-de-carottes-rapees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salade-de-carottes-rapees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:derivados-lacteosas", + "name": "es:Derivados-lacteosas", + "id": "es:derivados-lacteosas", + "products": 1 + }, + { + "name": "de:Laits-d-avoine", + "id": "de:laits-d-avoine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:laits-d-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potees-aux-choux", + "products": 1, + "id": "fr:potees-aux-choux", + "name": "Potees-aux-choux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-base-de-crabe", + "id": "fr:produits-a-base-de-crabe", + "name": "Produits-a-base-de-crabe", + "products": 1 + }, + { + "name": "Galettes-comtoises", + "id": "fr:galettes-comtoises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-comtoises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-asperges", + "products": 1, + "id": "fr:sauces-aux-asperges", + "name": "Sauces-aux-asperges" + }, + { + "name": "Croquets-aux-noix", + "id": "fr:croquets-aux-noix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/croquets-aux-noix" + }, + { + "id": "de:fromages-a-pate-pressee-non-cuite", + "name": "de:Fromages-a-pate-pressee-non-cuite", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-a-pate-pressee-non-cuite" + }, + { + "name": "pt:Aliments-a-base-de-fruits-et-de-legumes", + "id": "pt:aliments-a-base-de-fruits-et-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:aliments-a-base-de-fruits-et-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mais-en-epi", + "products": 1, + "name": "Mais-en-epi", + "id": "fr:mais-en-epi" + }, + { + "id": "fr:pains-azymes-a-la-farine-de-ble-t65", + "name": "Pains azymes à la farine de blé T65", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-a-la-farine-de-ble-t65" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:eaux-minerales-gazeuses", + "products": 1, + "id": "es:eaux-minerales-gazeuses", + "name": "es:Eaux-minerales-gazeuses" + }, + { + "name": "Compotes-fraiches", + "id": "fr:compotes-fraiches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotes-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cheese-pasta-sauce", + "products": 1, + "id": "fr:cheese-pasta-sauce", + "name": "Cheese-pasta-sauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-peche", + "name": "Jus de pêche", + "id": "en:peach-juices", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-farcies-pate-de-poivron", + "id": "fr:olives-farcies-pate-de-poivron", + "name": "Olives-farcies-pate-de-poivron", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-petits-biscuits", + "name": "Assortiments-de-petits-biscuits", + "id": "fr:assortiments-de-petits-biscuits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-sans-gluten", + "products": 1, + "name": "en:Pains-sans-gluten", + "id": "en:pains-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialite-a-base-d-avocat", + "products": 1, + "id": "fr:specialite-a-base-d-avocat", + "name": "Specialite-a-base-d-avocat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-de-colza", + "products": 1, + "name": "en:Huiles-de-colza", + "id": "en:huiles-de-colza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sardines-a-l-huile", + "products": 1, + "name": "Filets-de-sardines-a-l-huile", + "id": "fr:filets-de-sardines-a-l-huile" + }, + { + "products": 1, + "id": "fr:boissons-gazeifiees-a-base-de-jus-concentres", + "name": "Boissons-gazeifiees-a-base-de-jus-concentres", + "url": "https://fr.openfoodfacts.org/categorie/boissons-gazeifiees-a-base-de-jus-concentres" + }, + { + "products": 1, + "id": "sv:desserts-au-soja", + "name": "sv:Desserts-au-soja", + "url": "https://fr.openfoodfacts.org/categorie/sv:desserts-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:custard-powder", + "name": "en:Custard-powder", + "id": "en:custard-powder", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-tomate-aux-cepes", + "products": 1, + "name": "Sauce-tomate-aux-cepes", + "id": "fr:sauce-tomate-aux-cepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-la-menthe", + "id": "en:mint-sauces", + "name": "Sauces à la menthe", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-graine", + "name": "Couscous-graine", + "id": "fr:couscous-graine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:haricots-en-conserve", + "name": "da:Haricots-en-conserve", + "id": "da:haricots-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-poire-banane", + "products": 1, + "name": "Compotes-poire-banane", + "id": "fr:compotes-poire-banane" + }, + { + "id": "fr:infusions-en-gelee", + "name": "Infusions-en-gelee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/infusions-en-gelee" + }, + { + "products": 1, + "name": "Sodas-a-la-framboise", + "id": "fr:sodas-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-la-framboise" + }, + { + "products": 1, + "name": "Tapenade-d-artichaut", + "id": "fr:tapenade-d-artichaut", + "url": "https://fr.openfoodfacts.org/categorie/tapenade-d-artichaut" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-avec-edulcolorants", + "products": 1, + "name": "Confiseries-avec-edulcolorants", + "id": "fr:confiseries-avec-edulcolorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-banane", + "id": "fr:flocons-de-banane", + "name": "Flocons-de-banane", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-chorizo", + "id": "fr:sandwichs-au-chorizo", + "name": "Sandwichs-au-chorizo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:getreide-und-kartoffeln", + "products": 1, + "id": "es:getreide-und-kartoffeln", + "name": "es:Getreide-und-kartoffeln" + }, + { + "products": 1, + "id": "fr:viandes-traitees-en-salaison", + "name": "Viandes-traitees-en-salaison", + "url": "https://fr.openfoodfacts.org/categorie/viandes-traitees-en-salaison" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-aux-lait-rhum-raisins", + "products": 1, + "name": "Riz-aux-lait-rhum-raisins", + "id": "fr:riz-aux-lait-rhum-raisins" + }, + { + "id": "fr:stick", + "name": "Stick", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/stick" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sardines-en-conserve", + "products": 1, + "id": "de:sardines-en-conserve", + "name": "de:Sardines-en-conserve" + }, + { + "name": "de:Girandole-torsades", + "id": "de:girandole-torsades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:girandole-torsades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-sous-licence", + "products": 1, + "name": "Produits-sous-licence", + "id": "fr:produits-sous-licence" + }, + { + "id": "fr:epices-en-poudre", + "name": "Epices-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/epices-en-poudre" + }, + { + "name": "en:Leches-vegetales", + "id": "en:leches-vegetales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:leches-vegetales" + }, + { + "products": 1, + "id": "fr:boissons-a-la-cerise", + "name": "Boissons-a-la-cerise", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-cerise" + }, + { + "name": "Yaourts-sur-lit-de-mangues", + "id": "fr:yaourts-sur-lit-de-mangues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-sur-lit-de-mangues" + }, + { + "id": "fr:ristretto", + "name": "Ristretto", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ristretto" + }, + { + "products": 1, + "name": "Nectars-de-canneberges", + "id": "fr:nectars-de-canneberges", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-canneberges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-noix-et-de-fruits-seches", + "products": 1, + "name": "Melange-de-noix-et-de-fruits-seches", + "id": "fr:melange-de-noix-et-de-fruits-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/finger-food", + "products": 1, + "id": "fr:finger-food", + "name": "Finger-food" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-au-lait-et-nappes-de-chocolat-au-lait", + "name": "Biscuits-fourres-au-lait-et-nappes-de-chocolat-au-lait", + "id": "fr:biscuits-fourres-au-lait-et-nappes-de-chocolat-au-lait", + "products": 1 + }, + { + "name": "de:Arandanos", + "id": "de:arandanos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:arandanos" + }, + { + "id": "fr:sirops-de-speculoos", + "name": "Sirops-de-speculoos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-speculoos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-boeuf-hachees", + "id": "fr:viandes-de-boeuf-hachees", + "name": "Viandes-de-boeuf-hachees", + "products": 1 + }, + { + "products": 1, + "name": "de:Brotchips-mit-jagdwurst-aroma", + "id": "de:brotchips-mit-jagdwurst-aroma", + "url": "https://fr.openfoodfacts.org/categorie/de:brotchips-mit-jagdwurst-aroma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufrette-chocolat-blanc-et-noix-de-coco", + "products": 1, + "name": "Gaufrette-chocolat-blanc-et-noix-de-coco", + "id": "fr:gaufrette-chocolat-blanc-et-noix-de-coco" + }, + { + "id": "fr:desserts-a-la-cerise", + "name": "Desserts-a-la-cerise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-a-la-cerise" + }, + { + "products": 1, + "id": "fr:raisins-rouges", + "name": "Raisins-rouges", + "url": "https://fr.openfoodfacts.org/categorie/raisins-rouges" + }, + { + "name": "es:Laits-aromatises", + "id": "es:laits-aromatises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:laits-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-moules", + "id": "fr:plats-a-base-de-moules", + "name": "Plats-a-base-de-moules", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-pomme-de-terre-surgele", + "id": "fr:poulet-pomme-de-terre-surgele", + "name": "Poulet-pomme-de-terre-surgele", + "products": 1 + }, + { + "id": "fr:boeuf-aux-lentilles", + "name": "Boeuf-aux-lentilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boeuf-aux-lentilles" + }, + { + "products": 1, + "id": "fr:mange-tout", + "name": "Mange-tout", + "url": "https://fr.openfoodfacts.org/categorie/mange-tout" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-speculoos", + "name": "Chocolats-au-speculoos", + "id": "fr:chocolats-au-speculoos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:halva-au-sesame", + "products": 1, + "name": "de:Halva-au-sesame", + "id": "de:halva-au-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-cafe", + "id": "fr:chocolats-blancs-au-cafe", + "name": "Chocolats-blancs-au-cafe", + "products": 1 + }, + { + "products": 1, + "id": "fr:pate-a-l-armagnac", + "name": "Pate-a-l-armagnac", + "url": "https://fr.openfoodfacts.org/categorie/pate-a-l-armagnac" + }, + { + "products": 1, + "id": "fr:clafoutis-aux-pommes", + "name": "Clafoutis-aux-pommes", + "url": "https://fr.openfoodfacts.org/categorie/clafoutis-aux-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/culatello-di-zibello", + "name": "Culatello-di-zibello", + "id": "fr:culatello-di-zibello", + "products": 1 + }, + { + "name": "en:Fromage", + "id": "en:fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/classic-malts-of-scotland", + "id": "fr:classic-malts-of-scotland", + "name": "Classic-malts-of-scotland", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/almidones", + "name": "Almidones", + "id": "fr:almidones", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-de-porc", + "products": 1, + "name": "Foies-de-porc", + "id": "fr:foies-de-porc" + }, + { + "products": 1, + "id": "fr:sot-l-y-laisse-de-dinde", + "name": "Sot-l-y-laisse-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/sot-l-y-laisse-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:condiments-a-tartiner", + "products": 1, + "name": "en:Condiments-a-tartiner", + "id": "en:condiments-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-verts", + "products": 1, + "name": "Thes-glaces-verts", + "id": "fr:thes-glaces-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-de-chocolats-a-la-liqueur", + "name": "Bonbons-de-chocolats-a-la-liqueur", + "id": "fr:bonbons-de-chocolats-a-la-liqueur", + "products": 1 + }, + { + "name": "Pays-de-l-herault", + "id": "fr:pays-de-l-herault", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pays-de-l-herault" + }, + { + "id": "fr:moutardes-au-raifort", + "name": "Moutardes-au-raifort", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-raifort" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-fruits-a-coques-au-chocolat", + "products": 1, + "name": "Barres-de-fruits-a-coques-au-chocolat", + "id": "fr:barres-de-fruits-a-coques-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-steaks-vegetaux-pour-hamburgers", + "id": "fr:preparations-pour-steaks-vegetaux-pour-hamburgers", + "name": "Preparations-pour-steaks-vegetaux-pour-hamburgers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/penne-becs-de-plumes", + "products": 1, + "id": "fr:penne-becs-de-plumes", + "name": "Penne-becs-de-plumes" + }, + { + "id": "fr:gemelli-a-la-bolognaise", + "name": "Gemelli-a-la-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gemelli-a-la-bolognaise" + }, + { + "name": "Poissons-meuniere", + "id": "fr:poissons-meuniere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poissons-meuniere" + }, + { + "products": 1, + "id": "fr:boisson-a-base-de-fruit-de-la-passion-concentre", + "name": "Boisson-a-base-de-fruit-de-la-passion-concentre", + "url": "https://fr.openfoodfacts.org/categorie/boisson-a-base-de-fruit-de-la-passion-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-de-cervelas", + "name": "Des-de-cervelas", + "id": "fr:des-de-cervelas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:valpolicella-whether-or-not-accompanied-by-valpantena", + "products": 1, + "id": "it:valpolicella-whether-or-not-accompanied-by-valpantena", + "name": "it:Valpolicella whether or not accompanied by Valpantena" + }, + { + "id": "es:laits-de-soja", + "name": "es:Laits-de-soja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-soja" + }, + { + "products": 1, + "id": "fr:preparation-chocolate", + "name": "Preparation-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/preparation-chocolate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-korma-et-riz-basmati", + "products": 1, + "id": "fr:poulet-korma-et-riz-basmati", + "name": "Poulet-korma-et-riz-basmati" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:lentilles", + "id": "de:lentilles", + "name": "de:Lentilles", + "products": 1 + }, + { + "products": 1, + "name": "Riz-cantonais-nasi-goreng", + "id": "fr:riz-cantonais-nasi-goreng", + "url": "https://fr.openfoodfacts.org/categorie/riz-cantonais-nasi-goreng" + }, + { + "name": "Tourte-au-bloc-de-foie-gras-de-canard-dinde-et-marrons", + "id": "fr:tourte-au-bloc-de-foie-gras-de-canard-dinde-et-marrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tourte-au-bloc-de-foie-gras-de-canard-dinde-et-marrons" + }, + { + "id": "fr:nudelsossen", + "name": "Nudelsossen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nudelsossen" + }, + { + "products": 1, + "id": "fr:meursault-charmes-1er-cru", + "name": "Meursault-charmes-1er-cru", + "url": "https://fr.openfoodfacts.org/categorie/meursault-charmes-1er-cru" + }, + { + "id": "fr:cremes-semi-epaisse", + "name": "Cremes-semi-epaisse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-semi-epaisse" + }, + { + "products": 1, + "name": "Super-cookies-coeur-fondant-au-chocolat-au-lait-et-noisette", + "id": "fr:super-cookies-coeur-fondant-au-chocolat-au-lait-et-noisette", + "url": "https://fr.openfoodfacts.org/categorie/super-cookies-coeur-fondant-au-chocolat-au-lait-et-noisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/phanaeng-curry-pastes", + "name": "Phanaeng curry pastes", + "id": "en:phanaeng-curry-pastes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-industriels", + "products": 1, + "name": "de:Fromages-industriels", + "id": "de:fromages-industriels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:jambons", + "id": "it:jambons", + "name": "it:Jambons", + "products": 1 + }, + { + "products": 1, + "id": "fr:tagliatelles-de-riz", + "name": "Tagliatelles-de-riz", + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-d-orange", + "products": 1, + "id": "es:jus-d-orange", + "name": "es:Jus-d-orange" + }, + { + "id": "de:pickles-de-concombres", + "name": "de:Pickles-de-concombres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pickles-de-concombres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assaisonnement-salade", + "products": 1, + "name": "Assaisonnement-salade", + "id": "fr:assaisonnement-salade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-perigord", + "id": "fr:vins-du-perigord", + "name": "Vins-du-perigord", + "products": 1 + }, + { + "name": "en:Boissons-instantanees", + "id": "en:boissons-instantanees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-instantanees" + }, + { + "products": 1, + "name": "Purees-d-amande-blanche", + "id": "fr:purees-d-amande-blanche", + "url": "https://fr.openfoodfacts.org/categorie/purees-d-amande-blanche" + }, + { + "id": "fr:nuits-st-georges", + "name": "Nuits-st-georges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nuits-st-georges" + }, + { + "name": "en:Bier", + "id": "en:bier", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bier" + }, + { + "name": "en:Mais-a-popcorn", + "id": "en:mais-a-popcorn", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:mais-a-popcorn" + }, + { + "id": "fr:postres-vegetales-con-vainilla", + "name": "Postres-vegetales-con-vainilla", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/postres-vegetales-con-vainilla" + }, + { + "id": "fr:dessert-aux-fruits", + "name": "Dessert-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quenelles-au-comte", + "products": 1, + "id": "fr:quenelles-au-comte", + "name": "Quenelles-au-comte" + }, + { + "name": "Cigarettes-croustillantes", + "id": "fr:cigarettes-croustillantes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cigarettes-croustillantes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/uk:confiseries", + "id": "uk:confiseries", + "name": "uk:Confiseries", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-cocktail-a-l-armagnac", + "id": "fr:sauce-cocktail-a-l-armagnac", + "name": "Sauce-cocktail-a-l-armagnac", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cancoillottes-aux-morilles", + "products": 1, + "name": "Cancoillottes-aux-morilles", + "id": "fr:cancoillottes-aux-morilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vin-francais", + "products": 1, + "id": "en:vin-francais", + "name": "en:Vin-francais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-denoyautees", + "id": "es:olives-denoyautees", + "name": "es:Olives-denoyautees", + "products": 1 + }, + { + "products": 1, + "id": "en:pains-de-mie-sans-croute", + "name": "en:Pains-de-mie-sans-croute", + "url": "https://fr.openfoodfacts.org/categorie/en:pains-de-mie-sans-croute" + }, + { + "products": 1, + "id": "ro:aperitif", + "name": "ro:Aperitif", + "url": "https://fr.openfoodfacts.org/categorie/ro:aperitif" + }, + { + "products": 1, + "id": "fr:beefsteak", + "name": "Beefsteak", + "url": "https://fr.openfoodfacts.org/categorie/beefsteak" + }, + { + "products": 1, + "id": "fr:terrines-de-dinde", + "name": "Terrines-de-dinde", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-boeuf", + "products": 1, + "name": "Cotes-de-boeuf", + "id": "fr:cotes-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomate-mascarpone", + "products": 1, + "name": "Sauces-tomate-mascarpone", + "id": "fr:sauces-tomate-mascarpone" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:asti", + "products": 1, + "name": "it:Asti", + "id": "it:asti" + }, + { + "id": "fr:galettes-de-pomme-de-terre", + "name": "Galettes-de-pomme-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-pomme-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-feuilletes-glaces-de-sucre", + "id": "fr:biscuits-feuilletes-glaces-de-sucre", + "name": "Biscuits-feuilletes-glaces-de-sucre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fettarmer-bio-kefir", + "products": 1, + "id": "de:fettarmer-bio-kefir", + "name": "de:Fettarmer-bio-kefir" + }, + { + "name": "ro:Moutardes-allemandes", + "id": "ro:moutardes-allemandes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ro:moutardes-allemandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-pour-salade", + "id": "fr:melange-pour-salade", + "name": "Melange-pour-salade", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbets-au-calvados", + "id": "fr:sorbets-au-calvados", + "name": "Sorbets-au-calvados", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fletan", + "products": 1, + "id": "fr:fletan", + "name": "Fletan" + }, + { + "products": 1, + "id": "fr:riz-long-grain-basmati", + "name": "Riz-long-grain-basmati", + "url": "https://fr.openfoodfacts.org/categorie/riz-long-grain-basmati" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thunfische", + "name": "Thunfische", + "id": "fr:thunfische", + "products": 1 + }, + { + "name": "Gezoute-boters", + "id": "fr:gezoute-boters", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gezoute-boters" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-jambons", + "products": 1, + "id": "fr:noix-de-jambons", + "name": "Noix-de-jambons" + }, + { + "products": 1, + "id": "fr:spaghettis-bolognaise", + "name": "Spaghettis-bolognaise", + "url": "https://fr.openfoodfacts.org/categorie/spaghettis-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cacahuetes-au-chocolat", + "products": 1, + "id": "en:cacahuetes-au-chocolat", + "name": "en:Cacahuetes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fertiggerichte", + "name": "Fertiggerichte", + "id": "fr:fertiggerichte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:aliments-d-origine-vegetale", + "products": 1, + "name": "da:Aliments-d-origine-vegetale", + "id": "da:aliments-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-gingembre", + "products": 1, + "id": "fr:cookies-au-gingembre", + "name": "Cookies-au-gingembre" + }, + { + "products": 1, + "name": "Compote-sans-sucres-ajoutes", + "id": "fr:compote-sans-sucres-ajoutes", + "url": "https://fr.openfoodfacts.org/categorie/compote-sans-sucres-ajoutes" + }, + { + "name": "Poedersuikers", + "id": "fr:poedersuikers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poedersuikers" + }, + { + "products": 1, + "id": "fr:poivres-en-grains", + "name": "Poivres-en-grains", + "url": "https://fr.openfoodfacts.org/categorie/poivres-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chili-con-carne-pauvre-en-sel", + "products": 1, + "id": "fr:chili-con-carne-pauvre-en-sel", + "name": "Chili-con-carne-pauvre-en-sel" + }, + { + "id": "fr:american-strong-ale", + "name": "American-strong-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/american-strong-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panes-de-molde-sin-gluten", + "products": 1, + "name": "Panes-de-molde-sin-gluten", + "id": "fr:panes-de-molde-sin-gluten" + }, + { + "name": "Nuggets-de-boeuf", + "id": "fr:nuggets-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nuggets-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-grilles-brioches", + "products": 1, + "id": "fr:pains-grilles-brioches", + "name": "Pains-grilles-brioches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-lin-brun", + "products": 1, + "id": "fr:graines-de-lin-brun", + "name": "Graines-de-lin-brun" + }, + { + "products": 1, + "name": "Thes-matcha", + "id": "fr:thes-matcha", + "url": "https://fr.openfoodfacts.org/categorie/thes-matcha" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-fermente-sucre-a-boire", + "products": 1, + "name": "Lait-fermente-sucre-a-boire", + "id": "fr:lait-fermente-sucre-a-boire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-preparees", + "products": 1, + "name": "Tagliatelles-preparees", + "id": "fr:tagliatelles-preparees" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q1090927" + ], + "url": "https://fr.openfoodfacts.org/categorie/chenas", + "id": "fr:chenas", + "name": "Chenas", + "products": 1 + }, + { + "id": "pt:gezuckerte-getranke", + "name": "pt:Gezuckerte-getranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:gezuckerte-getranke" + }, + { + "id": "fr:jambon-de-reims", + "name": "Jambon-de-reims", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambon-de-reims" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillie-d-avoine", + "products": 1, + "id": "fr:bouillie-d-avoine", + "name": "Bouillie-d-avoine" + }, + { + "products": 1, + "name": "nb:Trempettes", + "id": "nb:trempettes", + "url": "https://fr.openfoodfacts.org/categorie/nb:trempettes" + }, + { + "products": 1, + "id": "de:poivres", + "name": "de:Poivres", + "url": "https://fr.openfoodfacts.org/categorie/de:poivres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-parfume-jasmin", + "products": 1, + "id": "fr:riz-thai-parfume-jasmin", + "name": "Riz-thai-parfume-jasmin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-framboise", + "name": "Chocolat-noir-framboise", + "id": "fr:chocolat-noir-framboise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-pita", + "name": "en:Pains-pita", + "id": "en:pains-pita", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mantequillas", + "products": 1, + "name": "Mantequillas", + "id": "fr:mantequillas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-au-chocolat-noire", + "products": 1, + "id": "fr:mousse-au-chocolat-noire", + "name": "Mousse-au-chocolat-noire" + }, + { + "products": 1, + "name": "Miels-d-auvergne", + "id": "fr:miels-d-auvergne", + "url": "https://fr.openfoodfacts.org/categorie/miels-d-auvergne" + }, + { + "products": 1, + "name": "en:Cocktail-de-fruits-au-sirop", + "id": "en:cocktail-de-fruits-au-sirop", + "url": "https://fr.openfoodfacts.org/categorie/en:cocktail-de-fruits-au-sirop" + }, + { + "products": 1, + "id": "fr:saucisses-cuites", + "name": "Saucisses-cuites", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-cuites" + }, + { + "products": 1, + "name": "Specialites-fromageres", + "id": "fr:specialites-fromageres", + "url": "https://fr.openfoodfacts.org/categorie/specialites-fromageres" + }, + { + "products": 1, + "id": "de:saumons-fumes-sauvages", + "name": "de:Saumons-fumes-sauvages", + "url": "https://fr.openfoodfacts.org/categorie/de:saumons-fumes-sauvages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-d-orange-avec-pulpe-frais", + "products": 1, + "id": "fr:jus-d-orange-avec-pulpe-frais", + "name": "Jus-d-orange-avec-pulpe-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-au-lait-de-chevre-pasteurise", + "products": 1, + "id": "fr:fromage-au-lait-de-chevre-pasteurise", + "name": "Fromage-au-lait-de-chevre-pasteurise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/algues-seches-moulues", + "products": 1, + "name": "Algues sèches moulues", + "id": "en:ground-dried-seaweeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-regionales", + "name": "Bieres-regionales", + "id": "fr:bieres-regionales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tr:cafes", + "id": "tr:cafes", + "name": "tr:Cafes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:aliments-et-boissons-a-base-de-vegetaux", + "name": "sv:Aliments-et-boissons-a-base-de-vegetaux", + "id": "sv:aliments-et-boissons-a-base-de-vegetaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soubresades", + "id": "fr:soubresades", + "name": "Soubresades", + "products": 1 + }, + { + "name": "Pates-aux-champignons", + "id": "fr:pates-aux-champignons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saumons-d-elevage", + "id": "en:saumons-d-elevage", + "name": "en:Saumons-d-elevage", + "products": 1 + }, + { + "products": 1, + "name": "Coco-en-copeaux", + "id": "fr:coco-en-copeaux", + "url": "https://fr.openfoodfacts.org/categorie/coco-en-copeaux" + }, + { + "id": "fr:panes-facon-bolognaise", + "name": "Panes-facon-bolognaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/panes-facon-bolognaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-au-poisson", + "products": 1, + "id": "en:sauces-au-poisson", + "name": "en:Sauces-au-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-pays", + "products": 1, + "name": "Jambons-de-pays", + "id": "fr:jambons-de-pays" + }, + { + "name": "pt:Boissons-alcoolisees", + "id": "pt:boissons-alcoolisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:boissons-alcoolisees" + }, + { + "name": "Dolce-gusto-compatible-coffee-capsules", + "id": "fr:dolce-gusto-compatible-coffee-capsules", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dolce-gusto-compatible-coffee-capsules" + }, + { + "products": 1, + "id": "fr:produit-importe", + "name": "Produit-importe", + "url": "https://fr.openfoodfacts.org/categorie/produit-importe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-roux-de-canne", + "id": "fr:sucre-roux-de-canne", + "name": "Sucre-roux-de-canne", + "products": 1 + }, + { + "products": 1, + "name": "Poulardes", + "id": "fr:poulardes", + "url": "https://fr.openfoodfacts.org/categorie/poulardes" + }, + { + "products": 1, + "name": "Pizzas-vegetariennes", + "id": "fr:pizzas-vegetariennes", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-vegetariennes" + }, + { + "products": 1, + "id": "fr:regal-de-legumes-verts-bio", + "name": "Regal-de-legumes-verts-bio", + "url": "https://fr.openfoodfacts.org/categorie/regal-de-legumes-verts-bio" + }, + { + "name": "nl:Confiseries", + "id": "nl:confiseries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:confiseries" + }, + { + "name": "es:Mezclas-de-frutos-de-cascara", + "id": "es:mezclas-de-frutos-de-cascara", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:mezclas-de-frutos-de-cascara" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poitrines-de-dinde", + "products": 1, + "name": "Poitrines-de-dinde", + "id": "fr:poitrines-de-dinde" + }, + { + "name": "Pot-au-feu-de-boeuf", + "id": "fr:pot-au-feu-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pot-au-feu-de-boeuf" + }, + { + "id": "fr:decorations-de-noel", + "name": "Decorations-de-noel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/decorations-de-noel" + }, + { + "products": 1, + "name": "Confitures-de-mandarines-passion", + "id": "fr:confitures-de-mandarines-passion", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-mandarines-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure-seche", + "products": 1, + "name": "Levure-seche", + "id": "fr:levure-seche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-melon", + "id": "fr:chocolats-noirs-au-melon", + "name": "Chocolats-noirs-au-melon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-verts-casses-deshydrates", + "products": 1, + "name": "Pois-verts-casses-deshydrates", + "id": "fr:pois-verts-casses-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornish-pasties", + "products": 1, + "name": "Cornish-pasties", + "id": "fr:cornish-pasties" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-instantanees-pour-boissons-au-cafe", + "products": 1, + "name": "Preparations-instantanees-pour-boissons-au-cafe", + "id": "fr:preparations-instantanees-pour-boissons-au-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-conserves", + "id": "fr:oeufs-conserves", + "name": "Oeufs-conserves", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-sales", + "products": 1, + "name": "Chips-sales", + "id": "fr:chips-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:confectionaries", + "products": 1, + "name": "ru:Confectionaries", + "id": "ru:confectionaries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muller-thurgau", + "products": 1, + "name": "Muller-thurgau", + "id": "fr:muller-thurgau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/knepfles", + "name": "Knepfles", + "id": "fr:knepfles", + "products": 1 + }, + { + "products": 1, + "id": "fr:vin-biologique", + "name": "Vin-biologique", + "url": "https://fr.openfoodfacts.org/categorie/vin-biologique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anisettes", + "name": "Anisettes", + "id": "fr:anisettes", + "products": 1 + }, + { + "products": 1, + "name": "en:Preparations-pour-pains", + "id": "en:preparations-pour-pains", + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-pains" + }, + { + "products": 1, + "name": "Specialitees-laitieres-fouetees", + "id": "fr:specialitees-laitieres-fouetees", + "url": "https://fr.openfoodfacts.org/categorie/specialitees-laitieres-fouetees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-blancs-a-la-vanille", + "products": 1, + "name": "en:Fromages-blancs-a-la-vanille", + "id": "en:fromages-blancs-a-la-vanille" + }, + { + "products": 1, + "name": "de:Gedroogde-mangos", + "id": "de:gedroogde-mangos", + "url": "https://fr.openfoodfacts.org/categorie/de:gedroogde-mangos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:aglianico-del-vulture", + "sameAs": [ + "https://www.wikidata.org/wiki/Q338771" + ], + "products": 1, + "id": "it:aglianico-del-vulture", + "name": "it:Aglianico del Vulture" + }, + { + "id": "en:faugeres", + "name": "en:Faugeres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:faugeres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-jambons-secs", + "products": 1, + "id": "fr:noix-de-jambons-secs", + "name": "Noix-de-jambons-secs" + }, + { + "products": 1, + "id": "fr:puree-de-pruneaux", + "name": "Puree-de-pruneaux", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pruneaux" + }, + { + "products": 1, + "id": "de:sauces-tomates-aux-legumes", + "name": "de:Sauces-tomates-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-tomates-aux-legumes" + }, + { + "products": 1, + "id": "es:tempeh-de-garbanzos", + "name": "es:Tempeh-de-garbanzos", + "url": "https://fr.openfoodfacts.org/categorie/es:tempeh-de-garbanzos" + }, + { + "id": "en:canneberges", + "name": "en:Canneberges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:canneberges" + }, + { + "products": 1, + "id": "fr:crepes-au-chocolat", + "name": "Crepes-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/crepes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomate-en-boite", + "id": "fr:tomate-en-boite", + "name": "Tomate-en-boite", + "products": 1 + }, + { + "products": 1, + "id": "fr:allege", + "name": "Allege", + "url": "https://fr.openfoodfacts.org/categorie/allege" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-a-la-poire", + "id": "fr:yaourts-brasses-a-la-poire", + "name": "Yaourts-brasses-a-la-poire", + "products": 1 + }, + { + "products": 1, + "name": "Milk-shake-substitut-de-repas-saveur-vanille", + "id": "fr:milk-shake-substitut-de-repas-saveur-vanille", + "url": "https://fr.openfoodfacts.org/categorie/milk-shake-substitut-de-repas-saveur-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sans-gluten", + "products": 1, + "name": "en:Sans-gluten", + "id": "en:sans-gluten" + }, + { + "products": 1, + "name": "Pates-de-chevreuil", + "id": "fr:pates-de-chevreuil", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-chevreuil" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alphabets", + "name": "Pates-alphabets", + "id": "fr:pates-alphabets", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poisson-a-la-bordelaise", + "name": "Poisson-a-la-bordelaise", + "id": "fr:poisson-a-la-bordelaise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cepes-surgeles", + "id": "fr:cepes-surgeles", + "name": "Cepes-surgeles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-clementine", + "id": "fr:sirops-de-clementine", + "name": "Sirops-de-clementine", + "products": 1 + }, + { + "products": 1, + "name": "en:Produits-ssans-gluten", + "id": "en:produits-ssans-gluten", + "url": "https://fr.openfoodfacts.org/categorie/en:produits-ssans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-sport", + "id": "fr:boisson-sport", + "name": "Boisson-sport", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-tartiner-a-la-noisette-et-a-la-noix-de-coco", + "name": "Pate-a-tartiner-a-la-noisette-et-a-la-noix-de-coco", + "id": "fr:pate-a-tartiner-a-la-noisette-et-a-la-noix-de-coco", + "products": 1 + }, + { + "products": 1, + "name": "Biftecks-de-boeuf", + "id": "fr:biftecks-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/biftecks-de-boeuf" + }, + { + "id": "de:siropes-simples", + "name": "de:Siropes-simples", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:siropes-simples" + }, + { + "name": "en:Tea-drinks", + "id": "en:tea-drinks", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:tea-drinks" + }, + { + "id": "fr:esparragos-en-conserva", + "name": "Esparragos-en-conserva", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/esparragos-en-conserva" + }, + { + "products": 1, + "id": "fr:thons-roses", + "name": "Thons-roses", + "url": "https://fr.openfoodfacts.org/categorie/thons-roses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/irish-pancakes", + "name": "Irish-pancakes", + "id": "fr:irish-pancakes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-noix", + "id": "fr:chocolats-noirs-aux-noix", + "name": "Chocolats-noirs-aux-noix", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/onigiri-tuna", + "name": "Onigiri-tuna", + "id": "fr:onigiri-tuna", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarama-au-caviar", + "id": "fr:tarama-au-caviar", + "name": "Tarama-au-caviar", + "products": 1 + }, + { + "name": "Cafes-viennois", + "id": "fr:cafes-viennois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cafes-viennois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-completes", + "products": 1, + "id": "fr:coquillettes-completes", + "name": "Coquillettes-completes" + }, + { + "name": "Preparation-instantanee-pour-boisson-au-cafe-saveur-vanille", + "id": "fr:preparation-instantanee-pour-boisson-au-cafe-saveur-vanille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-instantanee-pour-boisson-au-cafe-saveur-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/royal-gala-apples", + "products": 1, + "name": "Royal-gala-apples", + "id": "fr:royal-gala-apples" + }, + { + "products": 1, + "id": "de:lentilles-rouges", + "name": "de:Lentilles-rouges", + "url": "https://fr.openfoodfacts.org/categorie/de:lentilles-rouges" + }, + { + "products": 1, + "id": "fr:oursons-gelifies", + "name": "Oursons-gelifies", + "url": "https://fr.openfoodfacts.org/categorie/oursons-gelifies" + }, + { + "products": 1, + "id": "fr:tartelettes-au-citron-meringuees", + "name": "Tartelettes-au-citron-meringuees", + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-citron-meringuees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-au-jambon", + "products": 1, + "name": "Saucissons-au-jambon", + "id": "fr:saucissons-au-jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:boeuf", + "name": "en:Boeuf", + "id": "en:boeuf", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-surgelees", + "name": "Tourtes-surgelees", + "id": "fr:tourtes-surgelees", + "products": 1 + }, + { + "id": "fr:produits-lactes", + "name": "Produits-lactes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-lactes" + }, + { + "name": "Queues-de-porc", + "id": "fr:queues-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/queues-de-porc" + }, + { + "id": "th:น้ำอัดลม", + "name": "th:น้ำอัดลม", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/th:%E0%B8%99%E0%B9%89%E0%B8%B3%E0%B8%AD%E0%B8%B1%E0%B8%94%E0%B8%A5%E0%B8%A1" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vers-de-farine", + "products": 1, + "name": "Vers-de-farine", + "id": "fr:vers-de-farine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-cerises", + "products": 1, + "name": "Jus-de-cerises", + "id": "fr:jus-de-cerises" + }, + { + "products": 1, + "id": "fr:huiles-aromatises", + "name": "Huiles-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/huiles-aromatises" + }, + { + "products": 1, + "name": "Huiles-de-noix-de-cajou", + "id": "fr:huiles-de-noix-de-cajou", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-noix-de-cajou" + }, + { + "name": "de:Hartkase", + "id": "de:hartkase", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:hartkase" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-oranges", + "products": 1, + "id": "fr:compotes-pommes-oranges", + "name": "Compotes-pommes-oranges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-croute", + "products": 1, + "id": "fr:pate-croute", + "name": "Pate-croute" + }, + { + "products": 1, + "id": "en:kits-pour-fajitas", + "name": "en:Kits-pour-fajitas", + "url": "https://fr.openfoodfacts.org/categorie/en:kits-pour-fajitas" + }, + { + "products": 1, + "id": "fr:pan-tostado", + "name": "Pan-tostado", + "url": "https://fr.openfoodfacts.org/categorie/pan-tostado" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cappuccino-viennois", + "id": "fr:cappuccino-viennois", + "name": "Cappuccino-viennois", + "products": 1 + }, + { + "products": 1, + "id": "en:belgian-ale", + "name": "en:Belgian-ale", + "url": "https://fr.openfoodfacts.org/categorie/en:belgian-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-saveur-provencale", + "name": "Bouillons-saveur-provencale", + "id": "fr:bouillons-saveur-provencale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:cereales-pour-petit-dejeuner", + "products": 1, + "id": "ru:cereales-pour-petit-dejeuner", + "name": "ru:Cereales-pour-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-vegetales-a-base-d-epeautre-pour-cuisiner", + "products": 1, + "id": "en:spelt-based-creams-for-cooking", + "name": "Crèmes végétales à base d'épeautre pour cuisiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-a-la-cantonaise", + "products": 1, + "id": "fr:riz-a-la-cantonaise", + "name": "Riz-a-la-cantonaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/doppelbock", + "products": 1, + "id": "fr:doppelbock", + "name": "Doppelbock" + }, + { + "id": "fr:foies-gras-au-sauternes", + "name": "Foies-gras-au-sauternes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-au-sauternes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:semmelbrosel", + "name": "en:Semmelbrosel", + "id": "en:semmelbrosel", + "products": 1 + }, + { + "id": "fr:jambon-de-dinde", + "name": "Jambon-de-dinde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambon-de-dinde" + }, + { + "id": "fr:bananes-frecinette", + "name": "Bananes-frecinette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bananes-frecinette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-anchois-au-sel", + "id": "fr:filets-anchois-au-sel", + "name": "Filets-anchois-au-sel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brillat", + "name": "Brillat", + "id": "fr:brillat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-eminces", + "name": "Jambons-eminces", + "id": "fr:jambons-eminces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:nudeltopf", + "products": 1, + "id": "de:nudeltopf", + "name": "de:Nudeltopf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/leches-de-frutos-de-cascara-en-polvo", + "id": "fr:leches-de-frutos-de-cascara-en-polvo", + "name": "Leches-de-frutos-de-cascara-en-polvo", + "products": 1 + }, + { + "name": "en:Nahrungserganzungsmittel", + "id": "en:nahrungserganzungsmittel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:nahrungserganzungsmittel" + }, + { + "products": 1, + "id": "fr:mures-noires", + "name": "Mures-noires", + "url": "https://fr.openfoodfacts.org/categorie/mures-noires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ble-complet-45", + "id": "fr:ble-complet-45", + "name": "Ble-complet-45", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-energetiques-et-sales", + "name": "Produits-energetiques-et-sales", + "id": "fr:produits-energetiques-et-sales", + "products": 1 + }, + { + "products": 1, + "name": "Biere-noire", + "id": "fr:biere-noire", + "url": "https://fr.openfoodfacts.org/categorie/biere-noire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-de-plante-pour-infusion", + "products": 1, + "name": "Preparation-de-plante-pour-infusion", + "id": "fr:preparation-de-plante-pour-infusion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schapenyoghurt", + "id": "fr:schapenyoghurt", + "name": "Schapenyoghurt", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-pruneaux", + "products": 1, + "name": "Nectars-de-pruneaux", + "id": "fr:nectars-de-pruneaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-verts-aromatisees", + "products": 1, + "id": "fr:thes-verts-aromatisees", + "name": "Thes-verts-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-du-danemark", + "name": "Fromages-du-danemark", + "id": "fr:fromages-du-danemark", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-de-foie-de-volaille", + "name": "Pates-de-foie-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-foie-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouteille-relief", + "id": "fr:bouteille-relief", + "name": "Bouteille-relief", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cafe-soluble", + "products": 1, + "id": "en:cafe-soluble", + "name": "en:Cafe-soluble" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizza-raclette", + "products": 1, + "name": "Pizza-raclette", + "id": "fr:pizza-raclette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comidas-preparadas-deshidratadas", + "products": 1, + "id": "fr:comidas-preparadas-deshidratadas", + "name": "Comidas-preparadas-deshidratadas" + }, + { + "name": "Pasta-box", + "id": "fr:pasta-box", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pasta-box" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coconut-turron", + "products": 1, + "name": "Coconut turrón", + "id": "en:coconut-turron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-fourrees", + "products": 1, + "id": "fr:galettes-fourrees", + "name": "Galettes-fourrees" + }, + { + "id": "fr:desserts-sucres", + "name": "Desserts-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-datte", + "id": "fr:pate-de-datte", + "name": "Pate-de-datte", + "products": 1 + }, + { + "products": 1, + "name": "Spirales-blanches", + "id": "fr:spirales-blanches", + "url": "https://fr.openfoodfacts.org/categorie/spirales-blanches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-aux-noisettes", + "name": "Sauces-aux-noisettes", + "id": "fr:sauces-aux-noisettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-declasses", + "name": "Produits-declasses", + "id": "fr:produits-declasses", + "products": 1 + }, + { + "name": "nl:Appelstropen", + "id": "nl:appelstropen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:appelstropen" + }, + { + "products": 1, + "id": "fr:des-de-poitrine-fumee", + "name": "Des-de-poitrine-fumee", + "url": "https://fr.openfoodfacts.org/categorie/des-de-poitrine-fumee" + }, + { + "products": 1, + "id": "fr:boisson-chaude-instantane", + "name": "Boisson-chaude-instantane", + "url": "https://fr.openfoodfacts.org/categorie/boisson-chaude-instantane" + }, + { + "products": 1, + "id": "fr:graines-a-germer-de-tournesol", + "name": "Graines-a-germer-de-tournesol", + "url": "https://fr.openfoodfacts.org/categorie/graines-a-germer-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhums-epices", + "products": 1, + "name": "Rhums-epices", + "id": "fr:rhums-epices" + }, + { + "products": 1, + "name": "Galette-de-legumes", + "id": "fr:galette-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/galette-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:cacahuetes-grillees", + "id": "es:cacahuetes-grillees", + "name": "es:Cacahuetes-grillees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:graines-de-tournesol-en-coque-grillees", + "products": 1, + "name": "en:Graines-de-tournesol-en-coque-grillees", + "id": "en:graines-de-tournesol-en-coque-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:matieres-grasses-vegetales", + "id": "it:matieres-grasses-vegetales", + "name": "it:Matieres-grasses-vegetales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%B6%D0%B5%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9-%D0%BC%D0%B0%D1%80%D0%BC%D0%B5%D0%BB%D0%B0%D0%B4", + "name": "ru:Жевательный-мармелад", + "id": "ru:жевательный-мармелад", + "products": 1 + }, + { + "products": 1, + "name": "de:Eaux-de-sources", + "id": "de:eaux-de-sources", + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-de-sources" + }, + { + "products": 1, + "name": "en:Gelifiants", + "id": "en:gelifiants", + "url": "https://fr.openfoodfacts.org/categorie/en:gelifiants" + }, + { + "name": "Pate-a-fondant-au-chocolat", + "id": "fr:pate-a-fondant-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-a-fondant-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/erotique", + "products": 1, + "id": "fr:erotique", + "name": "Erotique" + }, + { + "products": 1, + "id": "fr:crocodiles-gelifies-acidules", + "name": "Crocodiles-gelifies-acidules", + "url": "https://fr.openfoodfacts.org/categorie/crocodiles-gelifies-acidules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mixes-of-squeezed-fruit-juices", + "products": 1, + "id": "fr:mixes-of-squeezed-fruit-juices", + "name": "Mixes-of-squeezed-fruit-juices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paellas-de-la-mer", + "id": "fr:paellas-de-la-mer", + "name": "Paellas-de-la-mer", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sorbet-mangue-passion", + "id": "fr:sorbet-mangue-passion", + "name": "Sorbet-mangue-passion", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nueces-pecanas-sin-cascara", + "name": "en:Nueces-pecanas-sin-cascara", + "id": "en:nueces-pecanas-sin-cascara", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couennes-de-porc-frites", + "name": "Couennes-de-porc-frites", + "id": "fr:couennes-de-porc-frites", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-aux-figues-et-aux-poires", + "name": "Preparation-aux-figues-et-aux-poires", + "id": "fr:preparation-aux-figues-et-aux-poires", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jarretons", + "products": 1, + "name": "Jarretons", + "id": "fr:jarretons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/guerrouane", + "id": "fr:guerrouane", + "name": "Guerrouane", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-preparee", + "products": 1, + "name": "Viande-preparee", + "id": "fr:viande-preparee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-champignons-de-paris", + "products": 1, + "name": "Veloutés de champignons de Paris", + "id": "en:cream-of-champignon-mushroom-soups" + }, + { + "products": 1, + "name": "en:Rice-noodles", + "id": "en:rice-noodles", + "url": "https://fr.openfoodfacts.org/categorie/en:rice-noodles" + }, + { + "name": "Produit-local", + "id": "fr:produit-local", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-local" + }, + { + "name": "Whisky français", + "id": "en:french-whisky", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/whisky-francais" + }, + { + "id": "fr:folar", + "name": "Folar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/folar" + }, + { + "id": "fr:yaourts-au-lait-entier-sucre", + "name": "Yaourts-au-lait-entier-sucre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-entier-sucre" + }, + { + "name": "Fromages-mi-chevres", + "id": "fr:fromages-mi-chevres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-mi-chevres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:aperitif", + "products": 1, + "id": "nl:aperitif", + "name": "nl:Aperitif" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/serpentini-d-alsace", + "products": 1, + "id": "fr:serpentini-d-alsace", + "name": "Serpentini-d-alsace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:protein", + "products": 1, + "id": "en:protein", + "name": "en:Protein" + }, + { + "products": 1, + "id": "fr:buchette-glace", + "name": "Buchette-glace", + "url": "https://fr.openfoodfacts.org/categorie/buchette-glace" + }, + { + "name": "en:Frozen-vegetable-mix", + "id": "en:frozen-vegetable-mix", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:frozen-vegetable-mix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-nature", + "id": "fr:riz-au-lait-nature", + "name": "Riz-au-lait-nature", + "products": 1 + }, + { + "products": 1, + "id": "fr:biscuits-fourres-aux-fruits", + "name": "Biscuits-fourres-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-aux-fruits" + }, + { + "products": 1, + "id": "fr:galette-de-soja", + "name": "Galette-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/galette-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaillac-blanc", + "id": "fr:gaillac-blanc", + "name": "Gaillac-blanc", + "products": 1 + }, + { + "name": "Viandes-hachees-de-boeuf", + "id": "fr:viandes-hachees-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-hachees-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-noisettes", + "name": "es:Laits-de-noisettes", + "id": "es:laits-de-noisettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:baies-de-goji", + "name": "en:Baies-de-goji", + "id": "en:baies-de-goji", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-et-fromage", + "products": 1, + "name": "Soupes-de-legumes-et-fromage", + "id": "fr:soupes-de-legumes-et-fromage" + }, + { + "products": 1, + "name": "Biscuits-au-chcolat", + "id": "fr:biscuits-au-chcolat", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-chcolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins-rouges", + "products": 1, + "id": "de:vins-rouges", + "name": "de:Vins-rouges" + }, + { + "id": "fr:manges-tout", + "name": "Manges-tout", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/manges-tout" + }, + { + "products": 1, + "name": "Champignons-en-poudre", + "id": "fr:champignons-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/champignons-en-poudre" + }, + { + "id": "fr:tamarins-concentres", + "name": "Tamarins-concentres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tamarins-concentres" + }, + { + "name": "Pilsen", + "id": "fr:pilsen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pilsen" + }, + { + "products": 1, + "id": "fr:sucre-aromatise", + "name": "Sucre-aromatise", + "url": "https://fr.openfoodfacts.org/categorie/sucre-aromatise" + }, + { + "name": "Намазки", + "id": "fr:намазки", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/%D0%BD%D0%B0%D0%BC%D0%B0%D0%B7%D0%BA%D0%B8" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-refrigeree", + "products": 1, + "name": "Boisson-refrigeree", + "id": "fr:boisson-refrigeree" + }, + { + "products": 1, + "name": "pt:Sementes", + "id": "pt:sementes", + "url": "https://fr.openfoodfacts.org/categorie/pt:sementes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brousses", + "products": 1, + "name": "Brousses", + "id": "fr:brousses" + }, + { + "products": 1, + "id": "fr:cereales-infantiles", + "name": "Cereales-infantiles", + "url": "https://fr.openfoodfacts.org/categorie/cereales-infantiles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-hareng-fume", + "name": "Rillettes-de-hareng-fume", + "id": "fr:rillettes-de-hareng-fume", + "products": 1 + }, + { + "products": 1, + "name": "Oingons-frits", + "id": "fr:oingons-frits", + "url": "https://fr.openfoodfacts.org/categorie/oingons-frits" + }, + { + "products": 1, + "name": "Curry-en-poudre", + "id": "fr:curry-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/curry-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:biscuits-assortis", + "products": 1, + "id": "es:biscuits-assortis", + "name": "es:Biscuits-assortis" + }, + { + "products": 1, + "name": "Confiture-d-oranges-bio", + "id": "fr:confiture-d-oranges-bio", + "url": "https://fr.openfoodfacts.org/categorie/confiture-d-oranges-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-batards", + "products": 1, + "name": "Pains-batards", + "id": "fr:pains-batards" + }, + { + "products": 1, + "name": "Sauce-tomates-cuisinees", + "id": "fr:sauce-tomates-cuisinees", + "url": "https://fr.openfoodfacts.org/categorie/sauce-tomates-cuisinees" + }, + { + "products": 1, + "id": "fr:manzana", + "name": "Manzana", + "url": "https://fr.openfoodfacts.org/categorie/manzana" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D0%BE%D1%85%D0%BE%D1%82%D0%BD%D0%B8%D1%87%D1%8C%D0%B8%D1%85-%D0%BA%D0%BE%D0%BB%D0%B1%D0%B0%D1%81%D0%BE%D0%BA", + "id": "ru:сухарики-ржаные-со-вкусом-охотничьих-колбасок", + "name": "ru:Сухарики-ржаные-со-вкусом-охотничьих-колбасок", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquillages-surgeles", + "products": 1, + "name": "Coquillages-surgeles", + "id": "fr:coquillages-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-principaux-pour-bebe", + "products": 1, + "name": "de:Plats-principaux-pour-bebe", + "id": "de:plats-principaux-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-maquereau-a-l-echalote", + "name": "Rillettes-de-maquereau-a-l-echalote", + "id": "fr:rillettes-de-maquereau-a-l-echalote", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-fourre-au-fruit", + "id": "fr:chocolat-fourre-au-fruit", + "name": "Chocolat-fourre-au-fruit", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-curry-rouges", + "name": "en:Pates-de-curry-rouges", + "id": "en:pates-de-curry-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:merendine", + "products": 1, + "id": "it:merendine", + "name": "it:Merendine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-a-l-abricot", + "products": 1, + "id": "fr:chocolats-a-l-abricot", + "name": "Chocolats-a-l-abricot" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cocktail-d-olives", + "products": 1, + "id": "fr:cocktail-d-olives", + "name": "Cocktail-d-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauge-seche-moulu", + "products": 1, + "id": "fr:sauge-seche-moulu", + "name": "Sauge-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/palourdes", + "products": 1, + "name": "Palourdes", + "id": "fr:palourdes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-framboisier", + "products": 1, + "name": "Miels de framboisier", + "id": "en:raspberry-honeys" + }, + { + "id": "fr:sirops-aux-edulcorants", + "name": "Sirops-aux-edulcorants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-aux-edulcorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-sucre", + "products": 1, + "name": "en:Sirops-de-sucre", + "id": "en:sirops-de-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:canned-beans-pulses", + "id": "en:canned-beans-pulses", + "name": "en:Canned-beans-pulses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-prepares", + "products": 1, + "name": "Fruits-prepares", + "id": "fr:fruits-prepares" + }, + { + "id": "fr:tiefkuhlpizza", + "name": "Tiefkuhlpizza", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tiefkuhlpizza" + }, + { + "products": 1, + "id": "fr:abdijbier", + "name": "Abdijbier", + "url": "https://fr.openfoodfacts.org/categorie/abdijbier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-au-piment", + "products": 1, + "id": "fr:olives-au-piment", + "name": "Olives-au-piment" + }, + { + "products": 1, + "name": "Fond-de-volaille-degraisse", + "id": "fr:fond-de-volaille-degraisse", + "url": "https://fr.openfoodfacts.org/categorie/fond-de-volaille-degraisse" + }, + { + "name": "en:Aromatisierte-sirups", + "id": "en:aromatisierte-sirups", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:aromatisierte-sirups" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:graines-de-tournesol", + "name": "ru:Graines-de-tournesol", + "id": "ru:graines-de-tournesol", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-rechauffer-au-mirco-ondes", + "id": "fr:plats-a-rechauffer-au-mirco-ondes", + "name": "Plats-a-rechauffer-au-mirco-ondes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chicken-korma", + "products": 1, + "name": "Chicken-korma", + "id": "fr:chicken-korma" + }, + { + "products": 1, + "id": "de:lins", + "name": "de:Lins", + "url": "https://fr.openfoodfacts.org/categorie/de:lins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-soja", + "id": "fr:graines-soja", + "name": "Graines-soja", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-gazeuses", + "products": 1, + "name": "de:Eaux-gazeuses", + "id": "de:eaux-gazeuses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-aux-endives", + "products": 1, + "id": "fr:soupes-aux-endives", + "name": "Soupes-aux-endives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:whisky-americain", + "products": 1, + "id": "de:whisky-americain", + "name": "de:Whisky-americain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chataignes-en-conserve", + "products": 1, + "name": "Chataignes-en-conserve", + "id": "fr:chataignes-en-conserve" + }, + { + "products": 1, + "id": "fr:productos-deshidratados-para-ser-rehidratados", + "name": "Productos-deshidratados-para-ser-rehidratados", + "url": "https://fr.openfoodfacts.org/categorie/productos-deshidratados-para-ser-rehidratados" + }, + { + "products": 1, + "id": "fr:fougassettes", + "name": "Fougassettes", + "url": "https://fr.openfoodfacts.org/categorie/fougassettes" + }, + { + "id": "fr:potjevleesch", + "name": "Potjevleesch", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/potjevleesch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paves-de-thon", + "products": 1, + "id": "fr:paves-de-thon", + "name": "Paves-de-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-cerise", + "products": 1, + "name": "Jus-de-cerise", + "id": "fr:jus-de-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compote-de-pomme-peche-passion", + "id": "fr:compote-de-pomme-peche-passion", + "name": "Compote-de-pomme-peche-passion", + "products": 1 + }, + { + "id": "fr:raviolis-au-chevre", + "name": "Raviolis-au-chevre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-au-chevre" + }, + { + "id": "fr:purees-de-poires", + "name": "Purees-de-poires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-poires" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q789960" + ], + "url": "https://fr.openfoodfacts.org/categorie/thes-bancha", + "name": "Thés bancha", + "id": "en:bancha-teas", + "products": 1 + }, + { + "products": 1, + "id": "en:caramelized-almonds", + "name": "Amandes caramélisées", + "url": "https://fr.openfoodfacts.org/categorie/amandes-caramelisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-d-epices-et-d-herbes", + "id": "fr:melange-d-epices-et-d-herbes", + "name": "Melange-d-epices-et-d-herbes", + "products": 1 + }, + { + "products": 1, + "id": "fr:кисломолочные-продукты", + "name": "Кисломолочные-продукты", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BA%D0%B8%D1%81%D0%BB%D0%BE%D0%BC%D0%BE%D0%BB%D0%BE%D1%87%D0%BD%D1%8B%D0%B5-%D0%BF%D1%80%D0%BE%D0%B4%D1%83%D0%BA%D1%82%D1%8B" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manchons-de-canard", + "name": "Manchons-de-canard", + "id": "fr:manchons-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-batavia-bio", + "products": 1, + "id": "fr:salade-batavia-bio", + "name": "Salade-batavia-bio" + }, + { + "products": 1, + "id": "fr:chia-noir", + "name": "Chia-noir", + "url": "https://fr.openfoodfacts.org/categorie/chia-noir" + }, + { + "products": 1, + "name": "Feuilletes-a-la-viande", + "id": "fr:feuilletes-a-la-viande", + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-a-la-viande" + }, + { + "products": 1, + "name": "Feullantines", + "id": "fr:feullantines", + "url": "https://fr.openfoodfacts.org/categorie/feullantines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-citron", + "name": "Creme-de-citron", + "id": "fr:creme-de-citron", + "products": 1 + }, + { + "products": 1, + "id": "fr:oliva", + "name": "Oliva", + "url": "https://fr.openfoodfacts.org/categorie/oliva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-parfum-cerise", + "products": 1, + "name": "Yaourts-parfum-cerise", + "id": "fr:yaourts-parfum-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sugar-free-jelly", + "products": 1, + "id": "en:sugar-free-jelly", + "name": "en:Sugar-free-jelly" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/succedanes-de-chocolat", + "id": "fr:succedanes-de-chocolat", + "name": "Succedanes-de-chocolat", + "products": 1 + }, + { + "products": 1, + "name": "Huile-d-olive-vierge-extra-bio", + "id": "fr:huile-d-olive-vierge-extra-bio", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-vierge-extra-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-anglaises", + "products": 1, + "name": "en:Bieres-anglaises", + "id": "en:bieres-anglaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaches-tranchees-pur-beurre", + "id": "fr:gaches-tranchees-pur-beurre", + "name": "Gaches-tranchees-pur-beurre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-secs-en-conserve", + "products": 1, + "name": "Legumes-secs-en-conserve", + "id": "fr:legumes-secs-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-d-anchois", + "name": "Cremes-d-anchois", + "id": "fr:cremes-d-anchois", + "products": 1 + }, + { + "name": "Yaourts-soja-aromatises", + "id": "fr:yaourts-soja-aromatises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-soja-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rochers", + "products": 1, + "id": "fr:rochers", + "name": "Rochers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-d-oleagineux", + "products": 1, + "name": "Pate-d-oleagineux", + "id": "fr:pate-d-oleagineux" + }, + { + "products": 1, + "id": "en:dried-coconut-flour", + "name": "Dried coconut flour", + "url": "https://fr.openfoodfacts.org/categorie/dried-coconut-flour" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paellas-au-poulet", + "products": 1, + "id": "fr:paellas-au-poulet", + "name": "Paellas-au-poulet" + }, + { + "products": 1, + "name": "en:Fromages-saumures", + "id": "en:fromages-saumures", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-saumures" + }, + { + "products": 1, + "id": "en:vinaigres-balsamiques", + "name": "en:Vinaigres-balsamiques", + "url": "https://fr.openfoodfacts.org/categorie/en:vinaigres-balsamiques" + }, + { + "products": 1, + "name": "Boissons-a-base-de-jus-de-pomme", + "id": "fr:boissons-a-base-de-jus-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-jus-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:cereais", + "products": 1, + "id": "pt:cereais", + "name": "pt:Cereais" + }, + { + "name": "Saumur-rouge", + "id": "fr:saumur-rouge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saumur-rouge" + }, + { + "name": "Veau-mijote", + "id": "fr:veau-mijote", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/veau-mijote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levure-de-biere-vitaminee", + "products": 1, + "name": "Levure-de-biere-vitaminee", + "id": "fr:levure-de-biere-vitaminee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-lyophilisees", + "id": "de:boissons-lyophilisees", + "name": "de:Boissons-lyophilisees", + "products": 1 + }, + { + "products": 1, + "name": "en:Cremes", + "id": "en:cremes", + "url": "https://fr.openfoodfacts.org/categorie/en:cremes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barre-de-cereale-chocolatee", + "name": "Barre-de-cereale-chocolatee", + "id": "fr:barre-de-cereale-chocolatee", + "products": 1 + }, + { + "name": "Soupes-de-poulet", + "id": "fr:soupes-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-poulet" + }, + { + "id": "en:wasabi-peas", + "name": "en:Wasabi-peas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:wasabi-peas" + }, + { + "products": 1, + "id": "en:guava-pastes", + "name": "Pâtes de goyaves", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-goyaves" + }, + { + "products": 1, + "name": "en:Dessert-lacte", + "id": "en:dessert-lacte", + "url": "https://fr.openfoodfacts.org/categorie/en:dessert-lacte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-fruits-et-legumes", + "name": "en:Jus-de-fruits-et-legumes", + "id": "en:jus-de-fruits-et-legumes", + "products": 1 + }, + { + "name": "Gateaux-aux-pepites-de-chocolat", + "id": "fr:gateaux-aux-pepites-de-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gateaux-aux-pepites-de-chocolat" + }, + { + "products": 1, + "name": "ru:Flocons", + "id": "ru:flocons", + "url": "https://fr.openfoodfacts.org/categorie/ru:flocons" + }, + { + "id": "fr:tex-mex", + "name": "Tex-mex", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tex-mex" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:scottish-shortbread", + "name": "en:Scottish-shortbread", + "id": "en:scottish-shortbread", + "products": 1 + }, + { + "name": "en:Chocolats-noirs-a-la-fleur-de-sel", + "id": "en:chocolats-noirs-a-la-fleur-de-sel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-a-la-fleur-de-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tuiles-au-chocolat", + "name": "Tuiles-au-chocolat", + "id": "fr:tuiles-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-enrichis", + "id": "fr:yaourts-enrichis", + "name": "Yaourts-enrichis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-a-l-huile", + "id": "fr:preparation-a-l-huile", + "name": "Preparation-a-l-huile", + "products": 1 + }, + { + "products": 1, + "name": "Filetes-vegetales-para-hamburguesas", + "id": "fr:filetes-vegetales-para-hamburguesas", + "url": "https://fr.openfoodfacts.org/categorie/filetes-vegetales-para-hamburguesas" + }, + { + "name": "de:Chia-samen", + "id": "de:chia-samen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chia-samen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ble-dur-complet", + "products": 1, + "name": "Ble-dur-complet", + "id": "fr:ble-dur-complet" + }, + { + "products": 1, + "name": "Bacon de boeuf", + "id": "en:beef-bacon", + "url": "https://fr.openfoodfacts.org/categorie/bacon-de-boeuf" + }, + { + "id": "sv:throat-lozenge", + "name": "sv:Throat-lozenge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sv:throat-lozenge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-decafeines", + "id": "en:decaffeinated-teas", + "name": "Thés décaféinés", + "products": 1 + }, + { + "products": 1, + "id": "fr:sodas-a-la-fraise", + "name": "Sodas-a-la-fraise", + "url": "https://fr.openfoodfacts.org/categorie/sodas-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/montravel", + "products": 1, + "id": "fr:montravel", + "name": "Montravel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confits-de-foie-de-porc", + "name": "Confits-de-foie-de-porc", + "id": "fr:confits-de-foie-de-porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panini-jambon-tomates-mozzarella", + "products": 1, + "id": "fr:panini-jambon-tomates-mozzarella", + "name": "Panini-jambon-tomates-mozzarella" + }, + { + "products": 1, + "id": "en:strained-tomatoes", + "name": "Strained tomatoes", + "url": "https://fr.openfoodfacts.org/categorie/strained-tomatoes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-hareng-a-la-creme", + "id": "fr:filets-de-hareng-a-la-creme", + "name": "Filets-de-hareng-a-la-creme", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutas-en-almibar", + "name": "Frutas-en-almibar", + "id": "fr:frutas-en-almibar", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-soja", + "products": 1, + "name": "Galettes-de-soja", + "id": "fr:galettes-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-fraises-des-bois", + "products": 1, + "name": "Yaourts-fraises-des-bois", + "id": "fr:yaourts-fraises-des-bois" + }, + { + "products": 1, + "id": "fr:jus-de-framboises", + "name": "Jus-de-framboises", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-framboises" + }, + { + "products": 1, + "name": "Sirop-vegetal", + "id": "fr:sirop-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/sirop-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dorrobst", + "id": "fr:dorrobst", + "name": "Dorrobst", + "products": 1 + }, + { + "id": "fr:cepes-en-conserve", + "name": "Cepes-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cepes-en-conserve" + }, + { + "name": "Surge", + "id": "fr:surge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/surge" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q831681" + ], + "url": "https://fr.openfoodfacts.org/categorie/zizanie", + "products": 1, + "id": "en:wild-rice", + "name": "Zizanie" + }, + { + "name": "Utiel-requena", + "id": "fr:utiel-requena", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/utiel-requena" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulis-de-mangue", + "name": "Coulis-de-mangue", + "id": "fr:coulis-de-mangue", + "products": 1 + }, + { + "products": 1, + "id": "fr:chocolats-en-poudre-cru", + "name": "Chocolats-en-poudre-cru", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-en-poudre-cru" + }, + { + "name": "es:Bouillons-cube-de-legumes", + "id": "es:bouillons-cube-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:bouillons-cube-de-legumes" + }, + { + "id": "fr:boisson-gazeuse-aromatise-ananas", + "name": "Boisson-gazeuse-aromatise-ananas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-aromatise-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-carottes-en-conserve", + "products": 1, + "id": "fr:petits-pois-carottes-en-conserve", + "name": "Petits-pois-carottes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vanille-liquide", + "name": "Vanille-liquide", + "id": "fr:vanille-liquide", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-grilles-piquillo", + "products": 1, + "name": "Poivrons-grilles-piquillo", + "id": "fr:poivrons-grilles-piquillo" + }, + { + "products": 1, + "name": "Arroces-negros", + "id": "fr:arroces-negros", + "url": "https://fr.openfoodfacts.org/categorie/arroces-negros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arroz-con-leche", + "name": "Arroz-con-leche", + "id": "fr:arroz-con-leche", + "products": 1 + }, + { + "products": 1, + "name": "Creme-de-fruits", + "id": "fr:creme-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/creme-de-fruits" + }, + { + "id": "fr:langoustines-cuites-congelees", + "name": "Langoustines-cuites-congelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/langoustines-cuites-congelees" + }, + { + "id": "de:gruau", + "name": "de:Gruau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:gruau" + }, + { + "name": "Proteines-de-lait", + "id": "fr:proteines-de-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/proteines-de-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-extra", + "name": "Chocolat-noir-extra", + "id": "fr:chocolat-noir-extra", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes-emmental-chorizo", + "name": "Paniers-feuilletes-emmental-chorizo", + "id": "fr:paniers-feuilletes-emmental-chorizo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-vert-au-jasmin", + "name": "The-vert-au-jasmin", + "id": "fr:the-vert-au-jasmin", + "products": 1 + }, + { + "products": 1, + "name": "Couscous-au-ble-complet", + "id": "fr:couscous-au-ble-complet", + "url": "https://fr.openfoodfacts.org/categorie/couscous-au-ble-complet" + }, + { + "name": "Chocolat-instantane", + "id": "fr:chocolat-instantane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolat-instantane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-et-au-caramel", + "name": "Cookies-au-chocolat-et-au-caramel", + "id": "fr:cookies-au-chocolat-et-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumineuses", + "products": 1, + "id": "es:legumineuses", + "name": "es:Legumineuses" + }, + { + "id": "fr:licornes-en-chocolat", + "name": "Licornes-en-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/licornes-en-chocolat" + }, + { + "products": 1, + "name": "es:Olives-noires", + "id": "es:olives-noires", + "url": "https://fr.openfoodfacts.org/categorie/es:olives-noires" + }, + { + "products": 1, + "name": "Galettes-suedoises", + "id": "fr:galettes-suedoises", + "url": "https://fr.openfoodfacts.org/categorie/galettes-suedoises" + }, + { + "id": "fr:pot-au-feu-de-canard", + "name": "Pot au feu de canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pot-au-feu-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:chocola", + "products": 1, + "id": "nl:chocola", + "name": "nl:Chocola" + }, + { + "id": "sr:confiseries", + "name": "sr:Confiseries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sr:confiseries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-sanglier", + "name": "Rillettes de sanglier", + "id": "fr:rillettes-de-sanglier", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-cuisinees", + "id": "fr:moules-cuisinees", + "name": "Moules-cuisinees", + "products": 1 + }, + { + "name": "Emmental-de-savoie-rape", + "id": "fr:emmental-de-savoie-rape", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/emmental-de-savoie-rape" + }, + { + "id": "fr:coteaux-du-littoral-audois", + "name": "Coteaux du littoral audois", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2998551" + ], + "url": "https://fr.openfoodfacts.org/categorie/coteaux-du-littoral-audois" + }, + { + "products": 1, + "name": "Cremes-saveur-praline", + "id": "fr:cremes-saveur-praline", + "url": "https://fr.openfoodfacts.org/categorie/cremes-saveur-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-coco", + "products": 1, + "id": "fr:creme-de-coco", + "name": "Creme-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:muslis", + "products": 1, + "name": "en:Muslis", + "id": "en:muslis" + }, + { + "products": 1, + "name": "Fleurs-d-hibiscus", + "id": "fr:fleurs-d-hibiscus", + "url": "https://fr.openfoodfacts.org/categorie/fleurs-d-hibiscus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:getranke", + "products": 1, + "id": "pt:getranke", + "name": "pt:Getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ble-dur-complet-bio", + "id": "fr:ble-dur-complet-bio", + "name": "Ble-dur-complet-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-cafe", + "id": "fr:liqueurs-de-cafe", + "name": "Liqueurs-de-cafe", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/taretelette", + "products": 1, + "id": "fr:taretelette", + "name": "Taretelette" + }, + { + "products": 1, + "name": "Amaretti", + "id": "fr:amaretti", + "url": "https://fr.openfoodfacts.org/categorie/amaretti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foie-gras-de-canard-au-porto", + "id": "fr:foie-gras-de-canard-au-porto", + "name": "Foie-gras-de-canard-au-porto", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saint-mont-des-alpes", + "products": 1, + "id": "fr:saint-mont-des-alpes", + "name": "Saint-mont-des-alpes" + }, + { + "id": "fr:specialite-laitiere", + "name": "Specialite-laitiere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/specialite-laitiere" + }, + { + "id": "es:garbanzos-con-verduras", + "name": "es:Garbanzos-con-verduras", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:garbanzos-con-verduras" + }, + { + "name": "cs:Laits-de-riz", + "id": "cs:laits-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cs:laits-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-japonais", + "products": 1, + "id": "fr:plats-japonais", + "name": "Plats-japonais" + }, + { + "name": "en:Crustaces", + "id": "en:crustaces", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:crustaces" + }, + { + "name": "en:Cafe-en-dosettes", + "id": "en:cafe-en-dosettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cafe-en-dosettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-courge-en-coque-crues", + "products": 1, + "name": "Graines de courge en coque crues", + "id": "en:raw-unshelled-pumpkin-seeds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saucisses", + "name": "en:Saucisses", + "id": "en:saucisses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-grisons", + "name": "Viande-de-grisons", + "id": "fr:viande-de-grisons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-de-teff", + "name": "Farines de teff", + "id": "en:teff-flours", + "products": 1 + }, + { + "products": 1, + "id": "fr:bouquet-garni-seche-moulu", + "name": "Bouquet-garni-seche-moulu", + "url": "https://fr.openfoodfacts.org/categorie/bouquet-garni-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-pomme-frite", + "id": "fr:sauces-pomme-frite", + "name": "Sauces-pomme-frite", + "products": 1 + }, + { + "products": 1, + "name": "pl:Plats-prepares-en-conserve", + "id": "pl:plats-prepares-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/pl:plats-prepares-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:asiago", + "id": "it:asiago", + "name": "it:Asiago", + "products": 1 + }, + { + "products": 1, + "id": "fr:trios-de-choux-en-fleurettes-surgeles", + "name": "Trios-de-choux-en-fleurettes-surgeles", + "url": "https://fr.openfoodfacts.org/categorie/trios-de-choux-en-fleurettes-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-de-mie-complets", + "products": 1, + "id": "en:pains-de-mie-complets", + "name": "en:Pains-de-mie-complets" + }, + { + "products": 1, + "name": "ro:Cereal-biscuits", + "id": "ro:cereal-biscuits", + "url": "https://fr.openfoodfacts.org/categorie/ro:cereal-biscuits" + }, + { + "products": 1, + "name": "Beurres-persilles", + "id": "fr:beurres-persilles", + "url": "https://fr.openfoodfacts.org/categorie/beurres-persilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-chataignes", + "id": "fr:soupes-de-chataignes", + "name": "Soupes-de-chataignes", + "products": 1 + }, + { + "products": 1, + "id": "fr:pois-casses-de-france", + "name": "Pois-casses-de-france", + "url": "https://fr.openfoodfacts.org/categorie/pois-casses-de-france" + }, + { + "id": "fr:crabes-royaux", + "name": "Crabes-royaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crabes-royaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/levures-de-boulangerie", + "products": 1, + "name": "Levures-de-boulangerie", + "id": "fr:levures-de-boulangerie" + }, + { + "products": 1, + "id": "fr:thazars-fumes", + "name": "Thazars fumés", + "url": "https://fr.openfoodfacts.org/categorie/thazars-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-proteinees", + "products": 1, + "name": "Boissons-proteinees", + "id": "fr:boissons-proteinees" + }, + { + "products": 1, + "id": "fr:quarts-de-jambons-secs", + "name": "Quarts-de-jambons-secs", + "url": "https://fr.openfoodfacts.org/categorie/quarts-de-jambons-secs" + }, + { + "id": "fr:salami-danois", + "name": "Salami-danois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salami-danois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-libanais", + "name": "Vins-libanais", + "id": "fr:vins-libanais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filet", + "name": "Filet", + "id": "fr:filet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/comidas-preparadas-frescas", + "products": 1, + "id": "fr:comidas-preparadas-frescas", + "name": "Comidas-preparadas-frescas" + }, + { + "name": "Filet-de-maquereaux-au-vin-blanc", + "id": "fr:filet-de-maquereaux-au-vin-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-de-maquereaux-au-vin-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/decorations-pour-gateaux", + "products": 1, + "name": "Decorations-pour-gateaux", + "id": "fr:decorations-pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:gaufrettes-fourrees", + "id": "ar:gaufrettes-fourrees", + "name": "ar:Gaufrettes-fourrees", + "products": 1 + }, + { + "products": 1, + "name": "da:Haricots-rouges-en-conserve", + "id": "da:haricots-rouges-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/da:haricots-rouges-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-fruits-et-au-chocolat", + "id": "fr:mueslis-aux-fruits-et-au-chocolat", + "name": "Mueslis-aux-fruits-et-au-chocolat", + "products": 1 + }, + { + "products": 1, + "name": "Vin-bordeaux-rouge-bio-aop", + "id": "fr:vin-bordeaux-rouge-bio-aop", + "url": "https://fr.openfoodfacts.org/categorie/vin-bordeaux-rouge-bio-aop" + }, + { + "products": 1, + "name": "Bouillons de mouton", + "id": "en:mutton-broth", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-mouton" + }, + { + "id": "fr:sodas-gout-cerise", + "name": "Sodas-gout-cerise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sodas-gout-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-liquides", + "products": 1, + "id": "fr:oeufs-liquides", + "name": "Oeufs-liquides" + }, + { + "products": 1, + "id": "sv:yaourts-vegetaux", + "name": "sv:Yaourts-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/sv:yaourts-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-en-chocolat-ou-en-sucre", + "products": 1, + "name": "Vermicelles en chocolat ou en sucre", + "id": "fr:vermicelles-en-chocolat-ou-en-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-caille", + "name": "Cuisses-de-caille", + "id": "fr:cuisses-de-caille", + "products": 1 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3475471" + ], + "url": "https://fr.openfoodfacts.org/categorie/alsace-grand-cru-schoenenbourg", + "name": "Alsace Grand Cru Schoenenbourg", + "id": "fr:alsace-grand-cru-schoenenbourg", + "products": 1 + }, + { + "products": 1, + "name": "Pieds-et-paquets", + "id": "fr:pieds-et-paquets", + "url": "https://fr.openfoodfacts.org/categorie/pieds-et-paquets" + }, + { + "id": "en:petits-pains-grilles", + "name": "en:Petits-pains-grilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:petits-pains-grilles" + }, + { + "id": "fr:cocktails-alcoolises", + "name": "Cocktails-alcoolises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cocktails-alcoolises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-english-breakfast", + "products": 1, + "id": "fr:the-english-breakfast", + "name": "The-english-breakfast" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vessie-de-poisson", + "products": 1, + "id": "fr:vessie-de-poisson", + "name": "Vessie-de-poisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:thons", + "name": "es:Thons", + "id": "es:thons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-caractere", + "products": 1, + "id": "fr:bieres-de-caractere", + "name": "Bieres-de-caractere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cabernet-d-anjou", + "id": "en:cabernet-d-anjou", + "name": "en:Cabernet-d-anjou", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frites-precuites", + "products": 1, + "name": "Frites-precuites", + "id": "fr:frites-precuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tonic", + "id": "fr:tonic", + "name": "Tonic", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-cereales-amandes-et-noisettes", + "products": 1, + "id": "fr:barres-cereales-amandes-et-noisettes", + "name": "Barres-cereales-amandes-et-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-bretons-au-pruneau", + "name": "Gateaux-bretons-au-pruneau", + "id": "fr:gateaux-bretons-au-pruneau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:frutas-y-sus-productos", + "products": 1, + "name": "xx:Frutas-y-sus-productos", + "id": "xx:frutas-y-sus-productos" + }, + { + "products": 1, + "name": "Amandier", + "id": "fr:amandier", + "url": "https://fr.openfoodfacts.org/categorie/amandier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiserie-au-chocolat-au-lait", + "products": 1, + "id": "fr:confiserie-au-chocolat-au-lait", + "name": "Confiserie-au-chocolat-au-lait" + }, + { + "products": 1, + "name": "Focaccia", + "id": "fr:focaccia", + "url": "https://fr.openfoodfacts.org/categorie/focaccia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-gelifiees-aromatisees", + "products": 1, + "id": "fr:confiseries-gelifiees-aromatisees", + "name": "Confiseries-gelifiees-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:congelados", + "id": "en:congelados", + "name": "en:Congelados", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champignons-eminces", + "products": 1, + "id": "fr:champignons-eminces", + "name": "Champignons-eminces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/productos-sin-gluten", + "name": "Productos-sin-gluten", + "id": "fr:productos-sin-gluten", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-au-saumon-fume-et-sauce-gravlax", + "name": "Lentilles-au-saumon-fume-et-sauce-gravlax", + "id": "fr:lentilles-au-saumon-fume-et-sauce-gravlax", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:brotes-de-judia-mungo", + "name": "es:Brotes-de-judia-mungo", + "id": "es:brotes-de-judia-mungo", + "products": 1 + }, + { + "products": 1, + "name": "Lettre-en-chocolat", + "id": "fr:lettre-en-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/lettre-en-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:zumos", + "products": 1, + "name": "es:Zumos", + "id": "es:zumos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/trottole", + "name": "Trottole", + "id": "fr:trottole", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carres-coupe-faim-minceur-cacao", + "products": 1, + "id": "fr:carres-coupe-faim-minceur-cacao", + "name": "Carres-coupe-faim-minceur-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vegetale", + "products": 1, + "name": "Vegetale", + "id": "fr:vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yogures-de-soja", + "products": 1, + "id": "fr:yogures-de-soja", + "name": "Yogures-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:jus-de-pommes-pur-jus", + "products": 1, + "name": "es:Jus-de-pommes-pur-jus", + "id": "es:jus-de-pommes-pur-jus" + }, + { + "products": 1, + "name": "Galettes-5-cereales-sans-gluten", + "id": "fr:galettes-5-cereales-sans-gluten", + "url": "https://fr.openfoodfacts.org/categorie/galettes-5-cereales-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-coupe-glacee", + "products": 1, + "id": "fr:mini-coupe-glacee", + "name": "Mini-coupe-glacee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panes-de-molde", + "products": 1, + "id": "fr:panes-de-molde", + "name": "Panes-de-molde" + }, + { + "products": 1, + "id": "fr:chocolat-en-dosettes", + "name": "Chocolat-en-dosettes", + "url": "https://fr.openfoodfacts.org/categorie/chocolat-en-dosettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-brut-de-ruche", + "id": "fr:miels-brut-de-ruche", + "name": "Miels-brut-de-ruche", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-a-la-carbonara", + "name": "Tortellini-a-la-carbonara", + "id": "fr:tortellini-a-la-carbonara", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-d-olive-extra-vierge", + "products": 1, + "name": "Sardines-a-l-huile-d-olive-extra-vierge", + "id": "fr:sardines-a-l-huile-d-olive-extra-vierge" + }, + { + "products": 1, + "id": "fr:galettes-charentaises", + "name": "Galettes-charentaises", + "url": "https://fr.openfoodfacts.org/categorie/galettes-charentaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-en-tablette", + "products": 1, + "id": "fr:chocolats-en-tablette", + "name": "Chocolats-en-tablette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-grain", + "id": "fr:cafes-en-grain", + "name": "Cafes-en-grain", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/igp", + "name": "Igp", + "id": "fr:igp", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:wraps", + "id": "de:wraps", + "name": "de:Wraps", + "products": 1 + }, + { + "id": "fr:produit-vegetalien", + "name": "Produit-vegetalien", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-vegetalien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:provolone", + "name": "it:Provolone", + "id": "it:provolone", + "products": 1 + }, + { + "products": 1, + "name": "Sirop-au-the-peche", + "id": "fr:sirop-au-the-peche", + "url": "https://fr.openfoodfacts.org/categorie/sirop-au-the-peche" + }, + { + "products": 1, + "id": "en:volailles", + "name": "en:Volailles", + "url": "https://fr.openfoodfacts.org/categorie/en:volailles" + }, + { + "name": "Laits-anti-regurgitations", + "id": "fr:laits-anti-regurgitations", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/laits-anti-regurgitations" + }, + { + "id": "en:desserts-gelifies", + "name": "en:Desserts-gelifies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-en-petits-morceaux", + "products": 1, + "id": "fr:sucre-en-petits-morceaux", + "name": "Sucre-en-petits-morceaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-brunes", + "id": "fr:sauces-brunes", + "name": "Sauces-brunes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-volaille", + "id": "fr:mousses-de-volaille", + "name": "Mousses-de-volaille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tubercules", + "products": 1, + "name": "Tubercules", + "id": "fr:tubercules" + }, + { + "products": 1, + "id": "en:nectar-de-fruit", + "name": "en:Nectar-de-fruit", + "url": "https://fr.openfoodfacts.org/categorie/en:nectar-de-fruit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-lait-de-coco", + "products": 1, + "name": "Yaourts-au-lait-de-coco", + "id": "fr:yaourts-au-lait-de-coco" + }, + { + "name": "Fromages-fondus-au-roquefort", + "id": "fr:fromages-fondus-au-roquefort", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus-au-roquefort" + }, + { + "name": "Charcuries-de-poulet", + "id": "fr:charcuries-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charcuries-de-poulet" + }, + { + "products": 1, + "name": "Sucre-blanc-semoule-fine", + "id": "fr:sucre-blanc-semoule-fine", + "url": "https://fr.openfoodfacts.org/categorie/sucre-blanc-semoule-fine" + }, + { + "id": "ru:сухарики-ржаные-со-вкусом-курицы", + "name": "ru:Сухарики-ржаные-со-вкусом-курицы", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%81%D1%83%D1%85%D0%B0%D1%80%D0%B8%D0%BA%D0%B8-%D1%80%D0%B6%D0%B0%D0%BD%D1%8B%D0%B5-%D1%81%D0%BE-%D0%B2%D0%BA%D1%83%D1%81%D0%BE%D0%BC-%D0%BA%D1%83%D1%80%D0%B8%D1%86%D1%8B" + }, + { + "id": "fr:mogette", + "name": "Mogette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mogette" + }, + { + "id": "fr:boissons-a-base-de-chicoree", + "name": "Boissons-a-base-de-chicoree", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-chicoree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:tortillas-de-harina", + "products": 1, + "name": "es:Tortillas-de-harina", + "id": "es:tortillas-de-harina" + }, + { + "name": "Garniture-pour-vols-au-vent", + "id": "fr:garniture-pour-vols-au-vent", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/garniture-pour-vols-au-vent" + }, + { + "products": 1, + "name": "Wraps-au-poulet", + "id": "fr:wraps-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/wraps-au-poulet" + }, + { + "products": 1, + "name": "en:Sauces-au-gingembre", + "id": "en:sauces-au-gingembre", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-au-gingembre" + }, + { + "id": "es:chocolats-chauds", + "name": "es:Chocolats-chauds", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:chocolats-chauds" + }, + { + "products": 1, + "name": "pt:Glaces-au-cafe", + "id": "pt:glaces-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/pt:glaces-au-cafe" + }, + { + "products": 1, + "name": "en:Nouilles-orientales", + "id": "en:nouilles-orientales", + "url": "https://fr.openfoodfacts.org/categorie/en:nouilles-orientales" + }, + { + "name": "es:Huiles-de-sesame", + "id": "es:huiles-de-sesame", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:huiles-de-sesame" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-viande", + "name": "Pates-de-viande", + "id": "fr:pates-de-viande", + "products": 1 + }, + { + "name": "en:Gnocchi-a-poeler", + "id": "en:gnocchi-a-poeler", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gnocchi-a-poeler" + }, + { + "products": 1, + "id": "fr:huile-d-olive-de-toscane", + "name": "Huile-d-olive-de-toscane", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-de-toscane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-la-biere", + "name": "Sauces-a-la-biere", + "id": "fr:sauces-a-la-biere", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-palme", + "id": "fr:miels-de-palme", + "name": "Miels-de-palme", + "products": 1 + }, + { + "name": "Pinky-pie-en-chocolat", + "id": "fr:pinky-pie-en-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pinky-pie-en-chocolat" + }, + { + "products": 1, + "name": "en:Boisson-non-gazeuse-aux-jus-de-fruits", + "id": "en:boisson-non-gazeuse-aux-jus-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:boisson-non-gazeuse-aux-jus-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-aux-herbes-de-provence", + "id": "fr:sardines-aux-herbes-de-provence", + "name": "Sardines-aux-herbes-de-provence", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:cereales-et-derives", + "products": 1, + "name": "ro:Cereales-et-derives", + "id": "ro:cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-noix-de-cajou", + "products": 1, + "name": "Pates-de-noix-de-cajou", + "id": "fr:pates-de-noix-de-cajou" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-refrigerees", + "products": 1, + "name": "en:Soupes-refrigerees", + "id": "en:soupes-refrigerees" + }, + { + "name": "Compotes-de-cerise", + "id": "fr:compotes-de-cerise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crevettes-entieres", + "name": "Crevettes-entieres", + "id": "fr:crevettes-entieres", + "products": 1 + }, + { + "products": 1, + "name": "Sodas-aromatises", + "id": "fr:sodas-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/sodas-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-rouges", + "products": 1, + "id": "fr:jus-de-fruits-rouges", + "name": "Jus-de-fruits-rouges" + }, + { + "products": 1, + "name": "Tavel", + "id": "fr:tavel", + "url": "https://fr.openfoodfacts.org/categorie/tavel" + }, + { + "products": 1, + "id": "en:pruneaux", + "name": "en:Pruneaux", + "url": "https://fr.openfoodfacts.org/categorie/en:pruneaux" + }, + { + "id": "de:bieres-fortes", + "name": "de:Bieres-fortes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-fortes" + }, + { + "products": 1, + "name": "Miel-cremeux-bio", + "id": "fr:miel-cremeux-bio", + "url": "https://fr.openfoodfacts.org/categorie/miel-cremeux-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nougats-au-citron", + "id": "fr:nougats-au-citron", + "name": "Nougats-au-citron", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-merlot", + "id": "fr:vin-merlot", + "name": "Vin-merlot", + "products": 1 + }, + { + "name": "Yaourts-a-la-grecque-bio", + "id": "fr:yaourts-a-la-grecque-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-bio" + }, + { + "products": 1, + "id": "fr:terrine-de-mouton", + "name": "Terrine-de-mouton", + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-mouton" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cones", + "name": "en:Cones", + "id": "en:cones", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-chinois-au-chocolat", + "products": 1, + "id": "fr:mini-chinois-au-chocolat", + "name": "Mini-chinois-au-chocolat" + }, + { + "products": 1, + "id": "fr:на-завтрак", + "name": "На-завтрак", + "url": "https://fr.openfoodfacts.org/categorie/%D0%BD%D0%B0-%D0%B7%D0%B0%D0%B2%D1%82%D1%80%D0%B0%D0%BA" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-naturel", + "products": 1, + "id": "fr:sucre-naturel", + "name": "Sucre-naturel" + }, + { + "products": 1, + "name": "Granenbeschuiten", + "id": "fr:granenbeschuiten", + "url": "https://fr.openfoodfacts.org/categorie/granenbeschuiten" + }, + { + "products": 1, + "name": "Aiguillettes-de-poulet-panees", + "id": "fr:aiguillettes-de-poulet-panees", + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-poulet-panees" + }, + { + "name": "Serpentini-aux-oeufs", + "id": "fr:serpentini-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/serpentini-aux-oeufs" + }, + { + "name": "en:Cafes-decafeines", + "id": "en:cafes-decafeines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cafes-decafeines" + }, + { + "products": 1, + "name": "Pizzas-aux-fruits-de-mer", + "id": "fr:pizzas-aux-fruits-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-aux-fruits-de-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-fourres-amande-torrifiee", + "products": 1, + "name": "Bonbons-fourres-amande-torrifiee", + "id": "fr:bonbons-fourres-amande-torrifiee" + }, + { + "name": "Confitures-de-fruits-tropicaux-melanges", + "id": "fr:confitures-de-fruits-tropicaux-melanges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-fruits-tropicaux-melanges" + }, + { + "products": 1, + "id": "ko:chips-et-frites", + "name": "ko:Chips-et-frites", + "url": "https://fr.openfoodfacts.org/categorie/ko:chips-et-frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aliments-pour-astronautes", + "name": "Aliments-pour-astronautes", + "id": "fr:aliments-pour-astronautes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fibres", + "products": 1, + "id": "fr:fibres", + "name": "Fibres" + }, + { + "products": 1, + "name": "Jambon-vegetal", + "id": "fr:jambon-vegetal", + "url": "https://fr.openfoodfacts.org/categorie/jambon-vegetal" + }, + { + "products": 1, + "name": "de:Glaces-au-chocolat", + "id": "de:glaces-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:glaces-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crocodiles-gelifies", + "products": 1, + "id": "en:crocodiles-gelifies", + "name": "en:Crocodiles-gelifies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauces-pimentees", + "products": 1, + "id": "de:sauces-pimentees", + "name": "de:Sauces-pimentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-veau-degraisses", + "products": 1, + "id": "fr:fonds-de-veau-degraisses", + "name": "Fonds-de-veau-degraisses" + }, + { + "products": 1, + "name": "sv:Chocolats-fourres", + "id": "sv:chocolats-fourres", + "url": "https://fr.openfoodfacts.org/categorie/sv:chocolats-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:melkchocoladevlokken", + "products": 1, + "name": "nl:Melkchocoladevlokken", + "id": "nl:melkchocoladevlokken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:laits", + "id": "nl:laits", + "name": "nl:Laits", + "products": 1 + }, + { + "id": "fr:desserts-de-soja-sur-lit-de-fruits", + "name": "Desserts-de-soja-sur-lit-de-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-soja-sur-lit-de-fruits" + }, + { + "products": 1, + "id": "fr:terrines-de-seiche", + "name": "Terrines-de-seiche", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-seiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:pflanzliche-lebensmittel-und-getranke", + "products": 1, + "id": "xx:pflanzliche-lebensmittel-und-getranke", + "name": "xx:Pflanzliche-lebensmittel-und-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-a-la-pomme", + "products": 1, + "name": "Muffins-a-la-pomme", + "id": "fr:muffins-a-la-pomme" + }, + { + "id": "fr:topinambours-en-conserve", + "name": "Topinambours-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/topinambours-en-conserve" + }, + { + "name": "Succes", + "id": "fr:succes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/succes" + }, + { + "id": "en:fruits-au-sirop", + "name": "en:Fruits-au-sirop", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-au-sirop" + }, + { + "name": "Thon-prepare", + "id": "fr:thon-prepare", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thon-prepare" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-mangue-et-citron", + "name": "Jus-de-pomme-mangue-et-citron", + "id": "fr:jus-de-pomme-mangue-et-citron", + "products": 1 + }, + { + "products": 1, + "id": "fr:bieres-a-la-framboise", + "name": "Bieres-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/bieres-a-la-framboise" + }, + { + "id": "fr:cremes-de-citrons", + "name": "Cremes-de-citrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-citrons" + }, + { + "products": 1, + "name": "Confits-de-poires", + "id": "fr:confits-de-poires", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-poires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalotes-deshydratees", + "products": 1, + "name": "Echalotes-deshydratees", + "id": "fr:echalotes-deshydratees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dindonneaux", + "name": "Dindonneaux", + "id": "fr:dindonneaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cerneaux-de-noix", + "name": "en:Cerneaux-de-noix", + "id": "en:cerneaux-de-noix", + "products": 1 + }, + { + "id": "fr:boisson-gazeuse-aromatisee-aux-fruits", + "name": "Boisson-gazeuse-aromatisee-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-aromatisee-aux-fruits" + }, + { + "name": "Confitures-de-pruneaux", + "id": "fr:confitures-de-pruneaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pruneaux" + }, + { + "id": "vi:gia-vị", + "name": "vi:Gia-vị", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vi:gia-v%E1%BB%8B" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canards-entiers", + "products": 1, + "name": "Foies-gras-de-canards-entiers", + "id": "fr:foies-gras-de-canards-entiers" + }, + { + "id": "fr:saucisses-de-montbeliard-cuites", + "name": "Saucisses-de-montbeliard-cuites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-montbeliard-cuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/uk:%D0%BA%D0%BE%D0%B7%D0%B8%D0%BD%D0%B0%D0%BA%D0%B8", + "name": "uk:Козинаки", + "id": "uk:козинаки", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-lentilles", + "products": 1, + "id": "fr:veloutes-de-lentilles", + "name": "Veloutes-de-lentilles" + }, + { + "id": "fr:gratin-d-epinards", + "name": "Gratin-d-epinards", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gratin-d-epinards" + }, + { + "products": 1, + "name": "Top-fermented-beers", + "id": "fr:top-fermented-beers", + "url": "https://fr.openfoodfacts.org/categorie/top-fermented-beers" + }, + { + "products": 1, + "name": "en:Postres-vegetales", + "id": "en:postres-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/en:postres-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-et-purees-de-fruits", + "products": 1, + "id": "fr:jus-et-purees-de-fruits", + "name": "Jus-et-purees-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mortadelles-italiennes", + "name": "Mortadelles-italiennes", + "id": "fr:mortadelles-italiennes", + "products": 1 + }, + { + "products": 1, + "name": "Cornichons-pasteurises", + "id": "fr:cornichons-pasteurises", + "url": "https://fr.openfoodfacts.org/categorie/cornichons-pasteurises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-artisanales", + "products": 1, + "id": "nl:bieres-artisanales", + "name": "nl:Bieres-artisanales" + }, + { + "products": 1, + "id": "fr:eaux-minerales-gazeuses-aromatisees", + "name": "Eaux-minerales-gazeuses-aromatisees", + "url": "https://fr.openfoodfacts.org/categorie/eaux-minerales-gazeuses-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confits-d-echalotes", + "id": "fr:confits-d-echalotes", + "name": "Confits-d-echalotes", + "products": 1 + }, + { + "name": "Purees-de-sesame-complet", + "id": "fr:purees-de-sesame-complet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/purees-de-sesame-complet" + }, + { + "name": "en:Saucissons-de-volaille", + "id": "en:saucissons-de-volaille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:saucissons-de-volaille" + }, + { + "id": "fr:glace-saveur-creme-brulee", + "name": "Glace-saveur-creme-brulee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glace-saveur-creme-brulee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-d-eglefin", + "name": "Filets-d-eglefin", + "id": "fr:filets-d-eglefin", + "products": 1 + }, + { + "products": 1, + "id": "fr:sauces-frites", + "name": "Sauces-frites", + "url": "https://fr.openfoodfacts.org/categorie/sauces-frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-tomates-a-base-de-concentre", + "products": 1, + "id": "de:jus-de-tomates-a-base-de-concentre", + "name": "de:Jus-de-tomates-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chips-de-legumes", + "products": 1, + "id": "en:chips-de-legumes", + "name": "en:Chips-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-tex-mex", + "products": 1, + "name": "Pizzas-tex-mex", + "id": "fr:pizzas-tex-mex" + }, + { + "name": "de:Moutardes-de-dijon", + "id": "de:moutardes-de-dijon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:moutardes-de-dijon" + }, + { + "products": 1, + "id": "fr:soupes-deshydratees-cremes-d-asperges", + "name": "Soupes-deshydratees-cremes-d-asperges", + "url": "https://fr.openfoodfacts.org/categorie/soupes-deshydratees-cremes-d-asperges" + }, + { + "id": "en:pasteles-de-gloria", + "name": "Pasteles de Gloria", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q6066059" + ], + "url": "https://fr.openfoodfacts.org/categorie/pasteles-de-gloria" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poudre-cacaotee", + "name": "Poudre-cacaotee", + "id": "fr:poudre-cacaotee", + "products": 1 + }, + { + "products": 1, + "name": "Biscuits-hyperproteines", + "id": "fr:biscuits-hyperproteines", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-hyperproteines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambon", + "products": 1, + "id": "en:jambon", + "name": "en:Jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:indonesian-foods", + "products": 1, + "id": "en:indonesian-foods", + "name": "en:Indonesian-foods" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-entiers-en-poudre", + "id": "fr:laits-entiers-en-poudre", + "name": "Laits-entiers-en-poudre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aguas", + "name": "Aguas", + "id": "fr:aguas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bolets", + "name": "Bolets", + "id": "fr:bolets", + "products": 1 + }, + { + "products": 1, + "id": "fr:arroces-para-sushi", + "name": "Arroces-para-sushi", + "url": "https://fr.openfoodfacts.org/categorie/arroces-para-sushi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pates-de-porc", + "name": "de:Pates-de-porc", + "id": "de:pates-de-porc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs-d-oiseau", + "id": "en:oeufs-d-oiseau", + "name": "en:Oeufs-d-oiseau", + "products": 1 + }, + { + "name": "es:Fruits-a-coque-grilles", + "id": "es:fruits-a-coque-grilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:fruits-a-coque-grilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/glutenvrije-pastas", + "name": "Glutenvrije-pastas", + "id": "fr:glutenvrije-pastas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:dattes-deglet-nour", + "name": "de:Dattes-deglet-nour", + "id": "de:dattes-deglet-nour", + "products": 1 + }, + { + "products": 1, + "id": "fr:croissants-a-cuire", + "name": "Croissants-a-cuire", + "url": "https://fr.openfoodfacts.org/categorie/croissants-a-cuire" + }, + { + "products": 1, + "id": "fr:pur-jus-de-tomates", + "name": "Pur-jus-de-tomates", + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-prepare", + "products": 1, + "name": "Poulet-prepare", + "id": "fr:poulet-prepare" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fischsauce", + "products": 1, + "name": "de:Fischsauce", + "id": "de:fischsauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cancoillottes-au-cumin", + "name": "Cancoillottes-au-cumin", + "id": "fr:cancoillottes-au-cumin", + "products": 1 + }, + { + "products": 1, + "id": "fr:filet-de-truite", + "name": "Filet-de-truite", + "url": "https://fr.openfoodfacts.org/categorie/filet-de-truite" + }, + { + "products": 1, + "name": "Laits-de-soja-au-caramel", + "id": "fr:laits-de-soja-au-caramel", + "url": "https://fr.openfoodfacts.org/categorie/laits-de-soja-au-caramel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:dried-sausages", + "products": 1, + "name": "en:Dried-sausages", + "id": "en:dried-sausages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pflanzenfette", + "id": "fr:pflanzenfette", + "name": "Pflanzenfette", + "products": 1 + }, + { + "id": "en:red-delicious-apples", + "name": "Pommes Red Delicious", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q2117265" + ], + "url": "https://fr.openfoodfacts.org/categorie/pommes-red-delicious" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tommes-de-montagne", + "products": 1, + "name": "Tommes-de-montagne", + "id": "fr:tommes-de-montagne" + }, + { + "name": "en:Coconut-macaroons", + "id": "en:coconut-macaroons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:coconut-macaroons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pays-d-oc", + "name": "en:Pays-d-oc", + "id": "en:pays-d-oc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-apero", + "products": 1, + "name": "Gateaux-apero", + "id": "fr:gateaux-apero" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aides-culinaires", + "id": "en:aides-culinaires", + "name": "en:Aides-culinaires", + "products": 1 + }, + { + "products": 1, + "name": "Dadi-per-brodo", + "id": "fr:dadi-per-brodo", + "url": "https://fr.openfoodfacts.org/categorie/dadi-per-brodo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fromages-fondus", + "id": "es:fromages-fondus", + "name": "es:Fromages-fondus", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:edulcorants-artificiels", + "products": 1, + "id": "pl:edulcorants-artificiels", + "name": "pl:Edulcorants-artificiels" + }, + { + "products": 1, + "name": "en:Saucisses-aux-choux", + "id": "en:saucisses-aux-choux", + "url": "https://fr.openfoodfacts.org/categorie/en:saucisses-aux-choux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:sirops-de-framboise", + "products": 1, + "id": "nl:sirops-de-framboise", + "name": "nl:Sirops-de-framboise" + }, + { + "name": "Sirops-saveur-the-mangue", + "id": "fr:sirops-saveur-the-mangue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-saveur-the-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potage-aux-legumes", + "name": "Potage-aux-legumes", + "id": "fr:potage-aux-legumes", + "products": 1 + }, + { + "id": "fr:dattes-glucosees", + "name": "Dattes-glucosees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dattes-glucosees" + }, + { + "id": "en:pains-burger", + "name": "en:Pains-burger", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pains-burger" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boeufs-seches", + "products": 1, + "name": "Boeufs-seches", + "id": "fr:boeufs-seches" + }, + { + "name": "en:Sauces-a-la-mangue", + "id": "en:sauces-a-la-mangue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-a-la-mangue" + }, + { + "products": 1, + "name": "en:Fruit-sauces", + "id": "en:fruit-sauces", + "url": "https://fr.openfoodfacts.org/categorie/en:fruit-sauces" + }, + { + "id": "fr:yaourt-bio", + "name": "Yaourt-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourt-bio" + }, + { + "name": "Cremes-d-anchoiade", + "id": "fr:cremes-d-anchoiade", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-d-anchoiade" + }, + { + "products": 1, + "name": "Substituts-de-boissons-lactees", + "id": "fr:substituts-de-boissons-lactees", + "url": "https://fr.openfoodfacts.org/categorie/substituts-de-boissons-lactees" + }, + { + "products": 1, + "id": "fr:kunstmatig-gezoete-dranken", + "name": "Kunstmatig-gezoete-dranken", + "url": "https://fr.openfoodfacts.org/categorie/kunstmatig-gezoete-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-de-graines-pour-pain-de-campagne", + "name": "Melange-de-graines-pour-pain-de-campagne", + "id": "fr:melange-de-graines-pour-pain-de-campagne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:heather-ale", + "products": 1, + "name": "en:Heather-ale", + "id": "en:heather-ale" + }, + { + "name": "Decors-alimentaires", + "id": "fr:decors-alimentaires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/decors-alimentaires" + }, + { + "id": "fr:produit-lacte", + "name": "Produit-lacte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-lacte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-gelifies", + "id": "fr:desserts-lactes-gelifies", + "name": "Desserts-lactes-gelifies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biltongs", + "id": "fr:biltongs", + "name": "Biltongs", + "products": 1 + }, + { + "id": "fr:warme-dranken", + "name": "Warme-dranken", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/warme-dranken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:clotted-creams", + "id": "en:clotted-creams", + "name": "en:Clotted-creams", + "products": 1 + }, + { + "id": "fr:conserve-vegetali", + "name": "Conserve-vegetali", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/conserve-vegetali" + }, + { + "products": 1, + "name": "Viande-de-cheval", + "id": "fr:viande-de-cheval", + "url": "https://fr.openfoodfacts.org/categorie/viande-de-cheval" + }, + { + "products": 1, + "name": "de:Bonbons-de-chocolat-au-praline", + "id": "de:bonbons-de-chocolat-au-praline", + "url": "https://fr.openfoodfacts.org/categorie/de:bonbons-de-chocolat-au-praline" + }, + { + "name": "Limonade-au-sucre-de-canne-bio", + "id": "fr:limonade-au-sucre-de-canne-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/limonade-au-sucre-de-canne-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confieseries", + "products": 1, + "id": "fr:confieseries", + "name": "Confieseries" + }, + { + "id": "fr:yaourt-a-la-grecque-nature", + "name": "Yaourt-a-la-grecque-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourt-a-la-grecque-nature" + }, + { + "id": "fr:salades-de-museau-de-porc", + "name": "Salades-de-museau-de-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-museau-de-porc" + }, + { + "products": 1, + "name": "Volkorenbeschuiten", + "id": "fr:volkorenbeschuiten", + "url": "https://fr.openfoodfacts.org/categorie/volkorenbeschuiten" + }, + { + "products": 1, + "id": "fr:bresse-bleu", + "name": "Bresse-bleu", + "url": "https://fr.openfoodfacts.org/categorie/bresse-bleu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-sales", + "products": 1, + "name": "en:Chocolats-sales", + "id": "en:chocolats-sales" + }, + { + "id": "fr:epices-maghrebines", + "name": "Epices-maghrebines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/epices-maghrebines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muesli-croustillant-choco-bio", + "products": 1, + "name": "Muesli-croustillant-choco-bio", + "id": "fr:muesli-croustillant-choco-bio" + }, + { + "products": 1, + "name": "Brochettes-de-viande", + "id": "fr:brochettes-de-viande", + "url": "https://fr.openfoodfacts.org/categorie/brochettes-de-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-fines", + "name": "Gaufres-fines", + "id": "fr:gaufres-fines", + "products": 1 + }, + { + "products": 1, + "name": "es:Sauces-barbecue", + "id": "es:sauces-barbecue", + "url": "https://fr.openfoodfacts.org/categorie/es:sauces-barbecue" + }, + { + "products": 1, + "name": "nl:Raw-food", + "id": "nl:raw-food", + "url": "https://fr.openfoodfacts.org/categorie/nl:raw-food" + }, + { + "name": "en:Toastbrote", + "id": "en:toastbrote", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:toastbrote" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-poire", + "id": "fr:yaourts-brasses-poire", + "name": "Yaourts-brasses-poire", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-au-jambon-et-champignons", + "name": "Pates-au-jambon-et-champignons", + "id": "fr:pates-au-jambon-et-champignons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-a-teneur-reduite-en-sel", + "products": 1, + "id": "fr:chips-de-pommes-de-terre-a-teneur-reduite-en-sel", + "name": "Chips-de-pommes-de-terre-a-teneur-reduite-en-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chow-mein", + "products": 1, + "name": "Chow-mein", + "id": "fr:chow-mein" + }, + { + "name": "Sauces-beurre-citron", + "id": "fr:sauces-beurre-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-beurre-citron" + }, + { + "name": "Thes-en-dosettes", + "id": "fr:thes-en-dosettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thes-en-dosettes" + }, + { + "name": "Achatines", + "id": "fr:achatines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/achatines" + }, + { + "products": 1, + "name": "en:Tomates", + "id": "en:tomates", + "url": "https://fr.openfoodfacts.org/categorie/en:tomates" + }, + { + "products": 1, + "name": "Volaille-confite", + "id": "fr:volaille-confite", + "url": "https://fr.openfoodfacts.org/categorie/volaille-confite" + }, + { + "name": "Houmous-sauce-piquante", + "id": "fr:houmous-sauce-piquante", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/houmous-sauce-piquante" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bearnaise", + "products": 1, + "id": "fr:bearnaise", + "name": "Bearnaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/relish", + "products": 1, + "name": "Relish", + "id": "fr:relish" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-de-brebis", + "name": "Cremes-fraiches-de-brebis", + "id": "fr:cremes-fraiches-de-brebis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lichis-en-almibar", + "products": 1, + "id": "fr:lichis-en-almibar", + "name": "Lichis-en-almibar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:muscadet", + "products": 1, + "name": "en:Muscadet", + "id": "en:muscadet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomate-ronde-daniela", + "products": 1, + "id": "fr:tomate-ronde-daniela", + "name": "Tomate-ronde-daniela" + }, + { + "id": "fr:legumes-vapeur", + "name": "Legumes-vapeur", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/legumes-vapeur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/champagnes-roses-bruts", + "products": 1, + "id": "fr:champagnes-roses-bruts", + "name": "Champagnes-roses-bruts" + }, + { + "products": 1, + "id": "fr:torsades-aromatisees-et-colorees", + "name": "Torsades-aromatisees-et-colorees", + "url": "https://fr.openfoodfacts.org/categorie/torsades-aromatisees-et-colorees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-demi-complet", + "products": 1, + "id": "fr:riz-demi-complet", + "name": "Riz-demi-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-filo", + "id": "fr:pates-de-filo", + "name": "Pates-de-filo", + "products": 1 + }, + { + "products": 1, + "id": "fr:gnocchi-farcis", + "name": "Gnocchi-farcis", + "url": "https://fr.openfoodfacts.org/categorie/gnocchi-farcis" + }, + { + "products": 1, + "name": "Farines-de-seigle-t110", + "id": "fr:farines-de-seigle-t110", + "url": "https://fr.openfoodfacts.org/categorie/farines-de-seigle-t110" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-fruits-a-base-de-concentre", + "products": 1, + "id": "fr:sirops-de-fruits-a-base-de-concentre", + "name": "Sirops-de-fruits-a-base-de-concentre" + }, + { + "id": "de:barres-chocolatees-biscuitees", + "name": "de:Barres-chocolatees-biscuitees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:barres-chocolatees-biscuitees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:curcuma-en-poudre", + "products": 1, + "id": "en:curcuma-en-poudre", + "name": "en:Curcuma-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-seches-semi-completes", + "products": 1, + "name": "en:Pates-seches-semi-completes", + "id": "en:pates-seches-semi-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambon-blanc", + "name": "en:Jambon-blanc", + "id": "en:jambon-blanc", + "products": 1 + }, + { + "products": 1, + "id": "fr:cacaos-purs-en-poudre", + "name": "Cacaos-purs-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/cacaos-purs-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-de-souchet", + "products": 1, + "id": "es:laits-de-souchet", + "name": "es:Laits-de-souchet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riegel", + "products": 1, + "id": "fr:riegel", + "name": "Riegel" + }, + { + "id": "fr:panes-integrales", + "name": "Panes-integrales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/panes-integrales" + }, + { + "id": "fr:dessert-fruitier-pomme-fraise", + "name": "Dessert-fruitier-pomme-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-fruitier-pomme-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sables-aux-figues", + "name": "Sables-aux-figues", + "id": "fr:sables-aux-figues", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/2-galettes-de-soja-recette-aux-legumes-bio", + "id": "fr:2-galettes-de-soja-recette-aux-legumes-bio", + "name": "2-galettes-de-soja-recette-aux-legumes-bio", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparation-aux-fraises", + "name": "Preparation-aux-fraises", + "url": "https://fr.openfoodfacts.org/categorie/preparation-aux-fraises" + }, + { + "name": "de:Fruits-surgeles", + "id": "de:fruits-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-surgeles" + }, + { + "id": "fr:yaourts-aromatises-au-cafe", + "name": "Yaourts-aromatises-au-cafe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aromatises-au-cafe" + }, + { + "products": 1, + "name": "Boissons-medievales", + "id": "fr:boissons-medievales", + "url": "https://fr.openfoodfacts.org/categorie/boissons-medievales" + }, + { + "products": 1, + "name": "Mais-a-eclater", + "id": "fr:mais-a-eclater", + "url": "https://fr.openfoodfacts.org/categorie/mais-a-eclater" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-melees", + "id": "fr:salades-melees", + "name": "Salades-melees", + "products": 1 + }, + { + "products": 1, + "id": "fr:kits-culinaires", + "name": "Kits-culinaires", + "url": "https://fr.openfoodfacts.org/categorie/kits-culinaires" + }, + { + "name": "it:Chips-de-pommes-de-terre", + "id": "it:chips-de-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:chips-de-pommes-de-terre" + }, + { + "id": "fr:macaroni-semi-complets", + "name": "Macaroni-semi-complets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/macaroni-semi-complets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:%D0%BD%D0%B0%D0%BF%D1%96%D0%B9-%D1%81%D0%BE%D1%94%D0%B2%D0%B8%D0%B9-%D0%B7%D0%B1%D0%B0%D0%B3%D0%B0%D1%87%D0%B5%D0%BD%D0%B8%D0%B9-%D0%BA%D0%B0%D0%BB%D1%8C%D1%86%D1%96%D1%94%D0%BC-%D1%82%D0%B0-%D0%B2%D1%96%D1%82%D0%B0%D0%BC%D1%96%D0%BD%D0%B0%D0%BC%D0%B8", + "products": 1, + "name": "en:Напій-соєвий-збагачений-кальцієм-та-вітамінами", + "id": "en:напій-соєвий-збагачений-кальцієм-та-вітамінами" + }, + { + "products": 1, + "id": "de:laits-de-soja", + "name": "de:Laits-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/de:laits-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:postres-de-almendra-con-cacao", + "id": "es:postres-de-almendra-con-cacao", + "name": "es:Postres-de-almendra-con-cacao", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fi:jus-et-nectars", + "id": "fi:jus-et-nectars", + "name": "fi:Jus-et-nectars", + "products": 1 + }, + { + "id": "en:achards-de-legumes", + "name": "en:Achards-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:achards-de-legumes" + }, + { + "products": 1, + "id": "en:confitures-de-fraises", + "name": "en:Confitures-de-fraises", + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-fraises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:wafers-al-cioccolato", + "products": 1, + "name": "it:Wafers-al-cioccolato", + "id": "it:wafers-al-cioccolato" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:purees-de-tomates", + "name": "sr:Purees-de-tomates", + "id": "sr:purees-de-tomates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tranches-de-poulet", + "id": "en:tranches-de-poulet", + "name": "en:Tranches-de-poulet", + "products": 1 + }, + { + "name": "en:Biological-beer", + "id": "en:biological-beer", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:biological-beer" + }, + { + "products": 1, + "name": "en:Chocolats-noirs-aromatises", + "id": "en:chocolats-noirs-aromatises", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-aromatises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/piments-doux-moulus", + "products": 1, + "name": "Piments-doux-moulus", + "id": "fr:piments-doux-moulus" + }, + { + "name": "es:Barre-de-cereales-aux-noisettes", + "id": "es:barre-de-cereales-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:barre-de-cereales-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/montlouis-sur-loire", + "products": 1, + "name": "Montlouis-sur-Loire", + "id": "fr:montlouis-sur-loire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cs:sugar-snacks", + "name": "cs:Sugar-snacks", + "id": "cs:sugar-snacks", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-tressees-au-sucre-perle", + "id": "fr:brioches-tressees-au-sucre-perle", + "name": "Brioches-tressees-au-sucre-perle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-frutis", + "products": 1, + "id": "fr:jus-de-frutis", + "name": "Jus-de-frutis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legume-cuit", + "id": "fr:legume-cuit", + "name": "Legume-cuit", + "products": 1 + }, + { + "name": "Meringues-patissieres", + "id": "fr:meringues-patissieres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/meringues-patissieres" + }, + { + "id": "en:cacao-en-poudre", + "name": "en:Cacao-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:cacao-en-poudre" + }, + { + "products": 1, + "id": "fr:desserts-semoule-caramel", + "name": "Desserts-semoule-caramel", + "url": "https://fr.openfoodfacts.org/categorie/desserts-semoule-caramel" + }, + { + "products": 1, + "id": "de:legumes-feuilles", + "name": "de:Legumes-feuilles", + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-feuilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:barres-chocolatees-biscuitees", + "products": 1, + "name": "ja:Barres-chocolatees-biscuitees", + "id": "ja:barres-chocolatees-biscuitees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisses-de-poulet-roties", + "products": 1, + "name": "Cuisses-de-poulet-roties", + "id": "fr:cuisses-de-poulet-roties" + }, + { + "products": 1, + "id": "fr:chocolats-blancs-a-la-cerise", + "name": "Chocolats-blancs-a-la-cerise", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-la-cerise" + }, + { + "products": 1, + "id": "fr:сладкие-намазки", + "name": "Сладкие-намазки", + "url": "https://fr.openfoodfacts.org/categorie/%D1%81%D0%BB%D0%B0%D0%B4%D0%BA%D0%B8%D0%B5-%D0%BD%D0%B0%D0%BC%D0%B0%D0%B7%D0%BA%D0%B8" + }, + { + "id": "fr:tortellini-fromages-et-sauce-fromage-basilic", + "name": "Tortellini-fromages-et-sauce-fromage-basilic", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tortellini-fromages-et-sauce-fromage-basilic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chewing-gum-sans-sucres-gout-fraise", + "name": "Chewing-gum-sans-sucres-gout-fraise", + "id": "fr:chewing-gum-sans-sucres-gout-fraise", + "products": 1 + }, + { + "id": "fr:boisson-de-table-gazeifiee", + "name": "Boisson-de-table-gazeifiee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-de-table-gazeifiee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choux", + "name": "Choux", + "id": "fr:choux", + "products": 1 + }, + { + "products": 1, + "name": "Gedroogde-producten", + "id": "fr:gedroogde-producten", + "url": "https://fr.openfoodfacts.org/categorie/gedroogde-producten" + }, + { + "products": 1, + "id": "de:biscuits-aperitifs-souffles", + "name": "de:Biscuits-aperitifs-souffles", + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-aperitifs-souffles" + }, + { + "products": 1, + "name": "en:Desserts-fruitiers", + "id": "en:desserts-fruitiers", + "url": "https://fr.openfoodfacts.org/categorie/en:desserts-fruitiers" + }, + { + "products": 1, + "name": "en:Chilli-sauce", + "id": "en:chilli-sauce", + "url": "https://fr.openfoodfacts.org/categorie/en:chilli-sauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-de-suisse", + "products": 1, + "name": "en:Fromages-de-suisse", + "id": "en:fromages-de-suisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-caille", + "products": 1, + "name": "Viandes-de-caille", + "id": "fr:viandes-de-caille" + }, + { + "id": "en:mixed-seaweeds", + "name": "Mélanges d'algues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-algues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frais-dessert-lactes", + "name": "Frais-dessert-lactes", + "id": "fr:frais-dessert-lactes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-de-tournesol-vierge-bio", + "products": 1, + "id": "fr:huile-de-tournesol-vierge-bio", + "name": "Huile-de-tournesol-vierge-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-bonds", + "products": 1, + "id": "fr:chocolats-bonds", + "name": "Chocolats-bonds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cappucinos", + "id": "en:cappucinos", + "name": "en:Cappucinos", + "products": 1 + }, + { + "id": "de:riz-precuits-natures", + "name": "de:Riz-precuits-natures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:riz-precuits-natures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-laitiers", + "products": 1, + "id": "nl:produits-laitiers", + "name": "nl:Produits-laitiers" + }, + { + "products": 1, + "id": "en:poelees", + "name": "en:Poelees", + "url": "https://fr.openfoodfacts.org/categorie/en:poelees" + }, + { + "name": "it:Pains-grilles", + "id": "it:pains-grilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:pains-grilles" + }, + { + "products": 1, + "id": "fr:filets-de-maquereaux-a-la-tomate", + "name": "Filets-de-maquereaux-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-a-la-tomate" + }, + { + "id": "uk:aliments-et-boissons-a-base-de-vegetaux", + "name": "uk:Aliments-et-boissons-a-base-de-vegetaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/uk:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/persil-plat", + "id": "fr:persil-plat", + "name": "Persil-plat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-castle", + "products": 1, + "name": "en:Chocolate-castle", + "id": "en:chocolate-castle" + }, + { + "products": 1, + "name": "Calinous", + "id": "fr:calinous", + "url": "https://fr.openfoodfacts.org/categorie/calinous" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-riz", + "id": "fr:feuilles-de-riz", + "name": "Feuilles-de-riz", + "products": 1 + }, + { + "products": 1, + "id": "fr:mais-sale", + "name": "Mais-sale", + "url": "https://fr.openfoodfacts.org/categorie/mais-sale" + }, + { + "products": 1, + "name": "en:Root-beer", + "id": "en:root-beer", + "url": "https://fr.openfoodfacts.org/categorie/en:root-beer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cereales-fourrees", + "id": "en:cereales-fourrees", + "name": "en:Cereales-fourrees", + "products": 1 + }, + { + "id": "it:biscotti-all-uovo", + "name": "it:Biscotti-all-uovo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:biscotti-all-uovo" + }, + { + "id": "fr:tarte-aux-peches-et-aux-quetsches", + "name": "Tarte-aux-peches-et-aux-quetsches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-peches-et-aux-quetsches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:fromages-italiens", + "products": 1, + "name": "it:Fromages-italiens", + "id": "it:fromages-italiens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:biscuits-au-chocolat", + "products": 1, + "id": "ar:biscuits-au-chocolat", + "name": "ar:Biscuits-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:nueces-pecanas", + "products": 1, + "name": "en:Nueces-pecanas", + "id": "en:nueces-pecanas" + }, + { + "products": 1, + "id": "fr:yaourts-au-citron-vert", + "name": "Yaourts-au-citron-vert", + "url": "https://fr.openfoodfacts.org/categorie/yaourts-au-citron-vert" + }, + { + "id": "fr:racine", + "name": "Racine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/racine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pois-carottes", + "products": 1, + "id": "fr:petits-pois-carottes", + "name": "Petits-pois-carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/orangensafte", + "name": "Orangensafte", + "id": "fr:orangensafte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/belgian-family-brewer", + "products": 1, + "name": "Belgian-family-brewer", + "id": "fr:belgian-family-brewer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-pimentees", + "products": 1, + "name": "Olives-pimentees", + "id": "fr:olives-pimentees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/canapes-au-seigle", + "name": "Canapes-au-seigle", + "id": "fr:canapes-au-seigle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-rouges", + "products": 1, + "name": "en:Fruits-rouges", + "id": "en:fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ayourts-aux-fruits", + "id": "fr:ayourts-aux-fruits", + "name": "Ayourts-aux-fruits", + "products": 1 + }, + { + "id": "fr:cola-bio", + "name": "Cola-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cola-bio" + }, + { + "id": "de:sardines-in-oil-and-chili", + "name": "de:Sardines-in-oil-and-chili", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sardines-in-oil-and-chili" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-coprah", + "products": 1, + "id": "fr:huiles-de-coprah", + "name": "Huiles-de-coprah" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maquereau-en-boite", + "products": 1, + "name": "Maquereau-en-boite", + "id": "fr:maquereau-en-boite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-fraiches-de-dinde", + "name": "Viandes-fraiches-de-dinde", + "id": "fr:viandes-fraiches-de-dinde", + "products": 1 + }, + { + "name": "The-noir-earl-grey", + "id": "fr:the-noir-earl-grey", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/the-noir-earl-grey" + }, + { + "products": 1, + "id": "en:olives-noires", + "name": "en:Olives-noires", + "url": "https://fr.openfoodfacts.org/categorie/en:olives-noires" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aloe-vera", + "id": "fr:aloe-vera", + "name": "Aloe-vera", + "products": 1 + }, + { + "products": 1, + "id": "fr:bavettes-de-boeuf", + "name": "Bavettes-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/bavettes-de-boeuf" + }, + { + "id": "fr:liqueurs-de-gentiane", + "name": "Liqueurs-de-gentiane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-gentiane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-presse-a-froid", + "name": "Jus-presse-a-froid", + "id": "fr:jus-presse-a-froid", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rutabagas-en-conserve", + "id": "fr:rutabagas-en-conserve", + "name": "Rutabagas-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:cereales-et-pommes-de-terre", + "products": 1, + "id": "pt:cereales-et-pommes-de-terre", + "name": "pt:Cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-regime-saveur-chocolat-blanc-enrobees-de-chocolat-au-lait", + "name": "Barres-de-regime-saveur-chocolat-blanc-enrobees-de-chocolat-au-lait", + "id": "fr:barres-de-regime-saveur-chocolat-blanc-enrobees-de-chocolat-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-lait", + "id": "fr:biscuits-au-lait", + "name": "Biscuits-au-lait", + "products": 1 + }, + { + "products": 1, + "name": "Navets-en-conserve", + "id": "fr:navets-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/navets-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:loukoums", + "name": "en:Loukoums", + "id": "en:loukoums", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ontbijtgranen", + "products": 1, + "id": "fr:ontbijtgranen", + "name": "Ontbijtgranen" + }, + { + "products": 1, + "name": "Viande-de-daim", + "id": "fr:viande-de-daim", + "url": "https://fr.openfoodfacts.org/categorie/viande-de-daim" + }, + { + "name": "Margarinen", + "id": "fr:margarinen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/margarinen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/decor-gateaux", + "products": 1, + "name": "Decor-gateaux", + "id": "fr:decor-gateaux" + }, + { + "name": "es:Jus-multifruits-frais", + "id": "es:jus-multifruits-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:jus-multifruits-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-grain-incollable", + "products": 1, + "id": "fr:riz-long-grain-incollable", + "name": "Riz-long-grain-incollable" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thons-au-naturel", + "id": "en:thons-au-naturel", + "name": "en:Thons-au-naturel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-truffes", + "name": "Chocolats-truffes", + "id": "fr:chocolats-truffes", + "products": 1 + }, + { + "name": "Chirachis", + "id": "fr:chirachis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chirachis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pomelos", + "products": 1, + "name": "Confitures-de-pomelos", + "id": "fr:confitures-de-pomelos" + }, + { + "name": "Tortellini-a-poeler", + "id": "fr:tortellini-a-poeler", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tortellini-a-poeler" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruits-a-coque-sales", + "name": "en:Fruits-a-coque-sales", + "id": "en:fruits-a-coque-sales", + "products": 1 + }, + { + "products": 1, + "name": "en:Congolais", + "id": "en:congolais", + "url": "https://fr.openfoodfacts.org/categorie/en:congolais" + }, + { + "id": "fr:native-olivenole-extra", + "name": "Native-olivenole-extra", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/native-olivenole-extra" + }, + { + "id": "fr:lambig", + "name": "Lambig", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lambig", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3216660" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-sucres", + "id": "en:biscuits-sucres", + "name": "en:Biscuits-sucres", + "products": 1 + }, + { + "products": 1, + "id": "en:chestnut-milks", + "name": "Boissons végétales de châtaigne", + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-chataigne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/omelette-aux-legumes", + "products": 1, + "id": "fr:omelette-aux-legumes", + "name": "Omelette-aux-legumes" + }, + { + "products": 1, + "id": "en:pickled-guindilla-peppers", + "name": "Pickled guindilla peppers", + "url": "https://fr.openfoodfacts.org/categorie/pickled-guindilla-peppers" + }, + { + "id": "en:mutton-merguez", + "name": "Merguez de mouton", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/merguez-de-mouton" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carbonnades-flamandes", + "name": "Carbonnades-flamandes", + "id": "fr:carbonnades-flamandes", + "products": 1 + }, + { + "name": "Sels-et-algues", + "id": "fr:sels-et-algues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sels-et-algues" + }, + { + "products": 1, + "name": "Torsades-de-ble-complet", + "id": "fr:torsades-de-ble-complet", + "url": "https://fr.openfoodfacts.org/categorie/torsades-de-ble-complet" + }, + { + "id": "en:cinnamon-sticks", + "name": "Bâtons de cannelle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/batons-de-cannelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mastic-de-chios", + "products": 1, + "name": "Mastic-de-chios", + "id": "fr:mastic-de-chios" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-au-levain", + "name": "Pain-au-levain", + "id": "fr:pain-au-levain", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-en-tranches", + "products": 1, + "name": "Saucisses-en-tranches", + "id": "fr:saucisses-en-tranches" + }, + { + "products": 1, + "name": "Chocolats-noirs-au-praline", + "id": "fr:chocolats-noirs-au-praline", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BC%D0%BE%D1%80%D0%BE%D0%B6%D0%B5%D0%BD%D0%BE%D0%B5-%D0%B2-%D0%B2%D0%B8%D0%B4%D0%B5-%D0%B1%D0%B0%D1%82%D0%BE%D0%BD%D1%87%D0%B8%D0%BA%D0%B0", + "products": 1, + "id": "ru:мороженое-в-виде-батончика", + "name": "ru:Мороженое-в-виде-батончика" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:strudels-aux-pommes", + "products": 1, + "id": "de:strudels-aux-pommes", + "name": "de:Strudels-aux-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/seawater", + "id": "fr:seawater", + "name": "Seawater", + "products": 1 + }, + { + "products": 1, + "id": "fr:fromages-a-pate-pressee", + "name": "Fromages-a-pate-pressee", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-pressee" + }, + { + "id": "en:mixed-dried-seaweeds", + "name": "Mélanges d'algues sèches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-algues-seches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-en-bocal", + "products": 1, + "name": "Plats-prepares-en-bocal", + "id": "fr:plats-prepares-en-bocal" + }, + { + "id": "fr:cremes-aux-oeufs-sur-lit-pomme-caramel", + "name": "Cremes-aux-oeufs-sur-lit-pomme-caramel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-aux-oeufs-sur-lit-pomme-caramel" + }, + { + "products": 1, + "name": "nl:Mais-chips", + "id": "nl:mais-chips", + "url": "https://fr.openfoodfacts.org/categorie/nl:mais-chips" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-aux-edulcorants", + "name": "en:Chocolats-noirs-aux-edulcorants", + "id": "en:chocolats-noirs-aux-edulcorants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:repen", + "id": "en:repen", + "name": "en:Repen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farandelles", + "products": 1, + "name": "Farandelles", + "id": "fr:farandelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins-doux", + "id": "de:vins-doux", + "name": "de:Vins-doux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baies-roses", + "name": "Baies-roses", + "id": "fr:baies-roses", + "products": 1 + }, + { + "id": "es:empinonadas", + "name": "es:Empinonadas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:empinonadas" + }, + { + "products": 1, + "name": "Confits-de-noix-de-st-jacques", + "id": "fr:confits-de-noix-de-st-jacques", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-noix-de-st-jacques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-poivres-et-baies", + "name": "Melanges-de-poivres-et-baies", + "id": "fr:melanges-de-poivres-et-baies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/berenjenas-en-salsa-de-tomate", + "products": 1, + "id": "fr:berenjenas-en-salsa-de-tomate", + "name": "Berenjenas-en-salsa-de-tomate" + }, + { + "products": 1, + "name": "Panetonnes", + "id": "fr:panetonnes", + "url": "https://fr.openfoodfacts.org/categorie/panetonnes" + }, + { + "products": 1, + "id": "en:mashed-pumpkins", + "name": "Purées de potirons", + "url": "https://fr.openfoodfacts.org/categorie/purees-de-potirons" + }, + { + "name": "Poissons-marines", + "id": "fr:poissons-marines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poissons-marines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choucroute-cuisinee", + "name": "Choucroute-cuisinee", + "id": "fr:choucroute-cuisinee", + "products": 1 + }, + { + "products": 1, + "name": "Aliments-a-base-de-soja", + "id": "fr:aliments-a-base-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/aliments-a-base-de-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pan-y-reposteria", + "id": "es:pan-y-reposteria", + "name": "es:Pan-y-reposteria", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plombs", + "id": "fr:plombs", + "name": "Plombs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jus-d-orange-a-base-de-concentre", + "products": 1, + "id": "en:jus-d-orange-a-base-de-concentre", + "name": "en:Jus-d-orange-a-base-de-concentre" + }, + { + "id": "fr:paquerettes", + "name": "Paquerettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paquerettes" + }, + { + "products": 1, + "name": "en:Biscuits-chocolates", + "id": "en:biscuits-chocolates", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-chocolates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-de-cafe", + "products": 1, + "name": "Huile-de-cafe", + "id": "fr:huile-de-cafe" + }, + { + "products": 1, + "name": "Terrines-de-sanglier-au-cognac", + "id": "fr:terrines-de-sanglier-au-cognac", + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-sanglier-au-cognac" + }, + { + "name": "Pates-a-tarte-flambee", + "id": "fr:pates-a-tarte-flambee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tarte-flambee" + }, + { + "name": "es:Fromages-a-tartiner", + "id": "es:fromages-a-tartiner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:fromages-a-tartiner" + }, + { + "id": "fr:sauces-basques", + "name": "Sauces-basques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-basques" + }, + { + "name": "Expressos", + "id": "fr:expressos", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/expressos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-de-cresson-en-poudre", + "products": 1, + "name": "Soupe-de-cresson-en-poudre", + "id": "fr:soupe-de-cresson-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/enchiladas", + "name": "Enchiladas", + "id": "fr:enchiladas", + "products": 1 + }, + { + "products": 1, + "name": "Pommes-de-terre-coquine", + "id": "fr:pommes-de-terre-coquine", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-coquine" + }, + { + "products": 1, + "name": "Panes-especiales", + "id": "fr:panes-especiales", + "url": "https://fr.openfoodfacts.org/categorie/panes-especiales" + }, + { + "products": 1, + "id": "fr:rose", + "name": "Rose", + "url": "https://fr.openfoodfacts.org/categorie/rose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cucumbers-in-brine", + "name": "en:Cucumbers-in-brine", + "id": "en:cucumbers-in-brine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarte-en-pate-sablee", + "products": 1, + "id": "fr:tarte-en-pate-sablee", + "name": "Tarte-en-pate-sablee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-de-manioc", + "id": "fr:couscous-de-manioc", + "name": "Couscous-de-manioc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fettarme-joghurt", + "products": 1, + "id": "fr:fettarme-joghurt", + "name": "Fettarme-joghurt" + }, + { + "products": 1, + "name": "Fettuccine-aux-oeufs", + "id": "fr:fettuccine-aux-oeufs", + "url": "https://fr.openfoodfacts.org/categorie/fettuccine-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viennoiseries-et-brioches", + "products": 1, + "name": "Viennoiseries-et-brioches", + "id": "fr:viennoiseries-et-brioches" + }, + { + "products": 1, + "id": "fr:pates-a-gateaux", + "name": "Pates-a-gateaux", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hiboux-en-chocolat", + "products": 1, + "id": "fr:hiboux-en-chocolat", + "name": "Hiboux-en-chocolat" + }, + { + "products": 1, + "id": "fr:caillettes", + "name": "Caillettes", + "url": "https://fr.openfoodfacts.org/categorie/caillettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits", + "name": "es:Laits", + "id": "es:laits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-sans-gluten", + "id": "fr:cookies-sans-gluten", + "name": "Cookies-sans-gluten", + "products": 1 + }, + { + "id": "fr:lunettes", + "name": "Lunettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lunettes" + }, + { + "products": 1, + "name": "Confits-de-tomates", + "id": "fr:confits-de-tomates", + "url": "https://fr.openfoodfacts.org/categorie/confits-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-potimarrons", + "name": "Soupes-de-potimarrons", + "id": "fr:soupes-de-potimarrons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/verse-groenten", + "id": "fr:verse-groenten", + "name": "Verse-groenten", + "products": 1 + }, + { + "name": "Blanque", + "id": "fr:blanque", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/blanque" + }, + { + "products": 1, + "name": "de:Baies", + "id": "de:baies", + "url": "https://fr.openfoodfacts.org/categorie/de:baies" + }, + { + "name": "Sauces-pour-kebabs", + "id": "fr:sauces-pour-kebabs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-kebabs" + }, + { + "products": 1, + "name": "Emmentals-rapes-gros", + "id": "fr:emmentals-rapes-gros", + "url": "https://fr.openfoodfacts.org/categorie/emmentals-rapes-gros" + }, + { + "name": "Filets-de-harengs-fumes", + "id": "fr:filets-de-harengs-fumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-harengs-fumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-quinoa", + "products": 1, + "id": "en:quinoa-milks", + "name": "Boissons végétales de quinoa" + }, + { + "name": "en:Concentres", + "id": "en:concentres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:concentres" + }, + { + "products": 1, + "name": "Chocolate-uht-milks", + "id": "fr:chocolate-uht-milks", + "url": "https://fr.openfoodfacts.org/categorie/chocolate-uht-milks" + }, + { + "products": 1, + "id": "en:pates-de-ble-dur", + "name": "en:Pates-de-ble-dur", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-ble-dur" + }, + { + "products": 1, + "name": "Produit-au-citron", + "id": "fr:produit-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/produit-au-citron" + }, + { + "products": 1, + "id": "fr:cookies-aux-noisettes", + "name": "Cookies-aux-noisettes", + "url": "https://fr.openfoodfacts.org/categorie/cookies-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-lapin", + "id": "fr:pates-de-lapin", + "name": "Pates-de-lapin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-graines-de-courge", + "id": "fr:biscuits-aux-graines-de-courge", + "name": "Biscuits-aux-graines-de-courge", + "products": 1 + }, + { + "products": 1, + "id": "fr:marcassin", + "name": "Marcassin", + "url": "https://fr.openfoodfacts.org/categorie/marcassin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crab-flakes", + "products": 1, + "id": "en:crab-flakes", + "name": "en:Crab-flakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-aromatises", + "products": 1, + "id": "en:thes-aromatises", + "name": "en:Thes-aromatises" + }, + { + "name": "es:Harinas-de-algarroba", + "id": "es:harinas-de-algarroba", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:harinas-de-algarroba" + }, + { + "products": 1, + "name": "es:Fritures", + "id": "es:fritures", + "url": "https://fr.openfoodfacts.org/categorie/es:fritures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/emmentals-au-lait-cru", + "id": "fr:emmentals-au-lait-cru", + "name": "Emmentals-au-lait-cru", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yarouts-fermiers", + "id": "fr:yarouts-fermiers", + "name": "Yarouts-fermiers", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-a-la-coco", + "products": 1, + "name": "Yaourt-a-la-coco", + "id": "fr:yaourt-a-la-coco" + }, + { + "name": "en:Griechische-joghurt", + "id": "en:griechische-joghurt", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:griechische-joghurt" + }, + { + "products": 1, + "id": "fr:cinnamon-bun", + "name": "Cinnamon-bun", + "url": "https://fr.openfoodfacts.org/categorie/cinnamon-bun" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:moutardes-fines", + "id": "de:moutardes-fines", + "name": "de:Moutardes-fines", + "products": 1 + }, + { + "products": 1, + "name": "en:Sardines-sans-huile", + "id": "en:sardines-sans-huile", + "url": "https://fr.openfoodfacts.org/categorie/en:sardines-sans-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/part-de-tarte-au-citron", + "name": "Part-de-tarte-au-citron", + "id": "fr:part-de-tarte-au-citron", + "products": 1 + }, + { + "name": "en:Pates-farcies-surgelees", + "id": "en:pates-farcies-surgelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-farcies-surgelees" + }, + { + "name": "Brioches-tranchees-aux-cereales-completes", + "id": "fr:brioches-tranchees-aux-cereales-completes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/brioches-tranchees-aux-cereales-completes" + }, + { + "name": "Gelatines-porcines", + "id": "fr:gelatines-porcines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gelatines-porcines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-de-cerf", + "id": "fr:plats-a-base-de-viande-de-cerf", + "name": "Plats-a-base-de-viande-de-cerf", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/irancy", + "products": 1, + "id": "fr:irancy", + "name": "Irancy" + }, + { + "name": "Chocolats-fourres-caramel-fudge", + "id": "fr:chocolats-fourres-caramel-fudge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-caramel-fudge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-aux-noisettes", + "products": 1, + "id": "fr:fromages-aux-noisettes", + "name": "Fromages-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:produits-vendus-avant-l-an-2000", + "id": "en:produits-vendus-avant-l-an-2000", + "name": "en:Produits-vendus-avant-l-an-2000", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gros-sels-iodes", + "name": "Gros-sels-iodes", + "id": "fr:gros-sels-iodes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateau-de-riz-sur-lit-de-caramel", + "id": "fr:gateau-de-riz-sur-lit-de-caramel", + "name": "Gateau-de-riz-sur-lit-de-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-gascon", + "products": 1, + "name": "Pate-gascon", + "id": "fr:pate-gascon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-datte", + "products": 1, + "id": "fr:sirops-de-datte", + "name": "Sirops-de-datte" + }, + { + "products": 1, + "id": "fr:brioches-tranchees-au-levain", + "name": "Brioches-tranchees-au-levain", + "url": "https://fr.openfoodfacts.org/categorie/brioches-tranchees-au-levain" + }, + { + "products": 1, + "id": "fr:rully", + "name": "Rully", + "url": "https://fr.openfoodfacts.org/categorie/rully", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2175589" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-concente-sucre", + "id": "fr:lait-concente-sucre", + "name": "Lait-concente-sucre", + "products": 1 + }, + { + "products": 1, + "name": "Pains-speciaux-a-finir-de-cuire", + "id": "fr:pains-speciaux-a-finir-de-cuire", + "url": "https://fr.openfoodfacts.org/categorie/pains-speciaux-a-finir-de-cuire" + }, + { + "id": "fr:torsades-de-konjac", + "name": "Torsades-de-konjac", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/torsades-de-konjac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cassonades", + "id": "de:cassonades", + "name": "de:Cassonades", + "products": 1 + }, + { + "id": "fr:paniers-feuilletes-surgeles", + "name": "Paniers-feuilletes-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes-surgeles" + }, + { + "id": "fr:chips-au-crabe", + "name": "Chips-au-crabe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chips-au-crabe" + }, + { + "name": "de:Paprika-lyoner", + "id": "de:paprika-lyoner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:paprika-lyoner" + }, + { + "id": "fr:gnocchis-farcis", + "name": "Gnocchis-farcis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gnocchis-farcis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-de-ble-dur-a-l-oeuf", + "id": "en:pates-de-ble-dur-a-l-oeuf", + "name": "en:Pates-de-ble-dur-a-l-oeuf", + "products": 1 + }, + { + "id": "fr:mandarine-bio", + "name": "Mandarine-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mandarine-bio" + }, + { + "name": "Bieres-indiennes", + "id": "fr:bieres-indiennes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-indiennes" + }, + { + "id": "fr:paniers-feuilletes-volaille-champignons", + "name": "Paniers-feuilletes-volaille-champignons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paniers-feuilletes-volaille-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-decoquillees", + "name": "Moules-decoquillees", + "id": "fr:moules-decoquillees", + "products": 1 + }, + { + "products": 1, + "name": "Cocktail-de-fruits", + "id": "fr:cocktail-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/cocktail-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bladgroenten", + "products": 1, + "id": "fr:bladgroenten", + "name": "Bladgroenten" + }, + { + "products": 1, + "name": "en:Yaourt-a-la-noix-de-coco", + "id": "en:yaourt-a-la-noix-de-coco", + "url": "https://fr.openfoodfacts.org/categorie/en:yaourt-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paupiettes-saumon-st-jacques-poireau", + "name": "Paupiettes-saumon-st-jacques-poireau", + "id": "fr:paupiettes-saumon-st-jacques-poireau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-laitiers-fermentes", + "products": 1, + "name": "it:Produits-laitiers-fermentes", + "id": "it:produits-laitiers-fermentes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-ricotta-epinard", + "products": 1, + "name": "Pates-fraiches-ricotta-epinard", + "id": "fr:pates-fraiches-ricotta-epinard" + }, + { + "id": "fr:moutardes-aux-olives", + "name": "Moutardes-aux-olives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-aux-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-et-aux-noix-de-pecan", + "products": 1, + "id": "fr:cookies-au-chocolat-et-aux-noix-de-pecan", + "name": "Cookies-au-chocolat-et-aux-noix-de-pecan" + }, + { + "products": 1, + "name": "Beurres-aux-cristaux-de-sel", + "id": "fr:beurres-aux-cristaux-de-sel", + "url": "https://fr.openfoodfacts.org/categorie/beurres-aux-cristaux-de-sel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soles-tropicales", + "id": "fr:soles-tropicales", + "name": "Soles-tropicales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserve-de-quenelles", + "products": 1, + "name": "Conserve-de-quenelles", + "id": "fr:conserve-de-quenelles" + }, + { + "products": 1, + "name": "Panais-en-conserve", + "id": "fr:panais-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/panais-en-conserve" + }, + { + "name": "Riz-basmati-demicomplet", + "id": "fr:riz-basmati-demicomplet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-basmati-demicomplet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-de-cocotier", + "products": 1, + "id": "fr:sucre-de-cocotier", + "name": "Sucre-de-cocotier" + }, + { + "id": "sr:tomates-et-derives", + "name": "sr:Tomates-et-derives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sr:tomates-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:patatas-fritas", + "products": 1, + "name": "es:Patatas-fritas", + "id": "es:patatas-fritas" + }, + { + "name": "Nectar-de-letchis", + "id": "fr:nectar-de-letchis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectar-de-letchis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cervelles-de-veau", + "products": 1, + "name": "Cervelles-de-veau", + "id": "fr:cervelles-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-grenache-pays-d-oc-igp", + "products": 1, + "id": "fr:vin-grenache-pays-d-oc-igp", + "name": "Vin-grenache-pays-d-oc-igp" + }, + { + "id": "es:estrellas-de-trigo-duro", + "name": "Étoiles de blé dur", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/etoiles-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foie-gras-en-conserve", + "products": 1, + "name": "Foie-gras-en-conserve", + "id": "fr:foie-gras-en-conserve" + }, + { + "id": "fr:charentais", + "name": "Charentais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charentais", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2957710" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-sate", + "id": "fr:sauces-sate", + "name": "Sauces-sate", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cantal", + "products": 1, + "name": "en:Cantal", + "id": "en:cantal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:jus-et-nectars", + "products": 1, + "id": "pl:jus-et-nectars", + "name": "pl:Jus-et-nectars" + }, + { + "products": 1, + "name": "en:Rillettes-de-poissons", + "id": "en:rillettes-de-poissons", + "url": "https://fr.openfoodfacts.org/categorie/en:rillettes-de-poissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cappuccino-en-dosettes", + "name": "Cappuccino-en-dosettes", + "id": "fr:cappuccino-en-dosettes", + "products": 1 + }, + { + "name": "de:Biscottes", + "id": "de:biscottes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:biscottes" + }, + { + "name": "Eau-mineralle-naturelle", + "id": "fr:eau-mineralle-naturelle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/eau-mineralle-naturelle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ice-cubes", + "id": "en:ice-cubes", + "name": "en:Ice-cubes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/superfood", + "id": "fr:superfood", + "name": "Superfood", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mortadelles-halal", + "products": 1, + "id": "fr:mortadelles-halal", + "name": "Mortadelles-halal" + }, + { + "products": 1, + "name": "Ferment", + "id": "fr:ferment", + "url": "https://fr.openfoodfacts.org/categorie/ferment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:veneto-moscato", + "products": 1, + "name": "en:Veneto-moscato", + "id": "en:veneto-moscato" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rocher-chocolat", + "name": "Rocher-chocolat", + "id": "fr:rocher-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:deshydrated-fruit", + "id": "en:deshydrated-fruit", + "name": "en:Deshydrated-fruit", + "products": 1 + }, + { + "products": 1, + "name": "Raviolis-bio", + "id": "fr:raviolis-bio", + "url": "https://fr.openfoodfacts.org/categorie/raviolis-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batonnets-aux-fruits", + "name": "Batonnets-aux-fruits", + "id": "fr:batonnets-aux-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-groseille", + "id": "en:yaourts-a-la-groseille", + "name": "en:Yaourts-a-la-groseille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-alcool", + "id": "fr:sans-alcool", + "name": "Sans-alcool", + "products": 1 + }, + { + "products": 1, + "id": "de:barres-de-cereales", + "name": "de:Barres-de-cereales", + "url": "https://fr.openfoodfacts.org/categorie/de:barres-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-cerise", + "products": 1, + "name": "Biscuits-a-la-cerise", + "id": "fr:biscuits-a-la-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-petillant", + "products": 1, + "id": "fr:sucre-petillant", + "name": "Sucre-petillant" + }, + { + "name": "Abats-surgeles", + "id": "fr:abats-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/abats-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-polonaises", + "products": 1, + "id": "fr:saucisses-polonaises", + "name": "Saucisses-polonaises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:bebidas", + "products": 1, + "name": "pt:Bebidas", + "id": "pt:bebidas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-jus-de-fruits", + "products": 1, + "id": "fr:melanges-de-jus-de-fruits", + "name": "Melanges-de-jus-de-fruits" + }, + { + "products": 1, + "name": "Lait-de-vache", + "id": "fr:lait-de-vache", + "url": "https://fr.openfoodfacts.org/categorie/lait-de-vache" + }, + { + "products": 1, + "id": "fr:pain-au-seigle-complet", + "name": "Pain-au-seigle-complet", + "url": "https://fr.openfoodfacts.org/categorie/pain-au-seigle-complet" + }, + { + "id": "en:yaourts-au-fruit-de-la-passion", + "name": "en:Yaourts-au-fruit-de-la-passion", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-au-fruit-de-la-passion" + }, + { + "name": "Rhums dominicain", + "id": "en:dominican-rums", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rhums-dominicain" + }, + { + "products": 1, + "name": "Sauces-au-tofu", + "id": "fr:sauces-au-tofu", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-tofu" + }, + { + "name": "de:Brotchips-mit-huhner-aroma", + "id": "de:brotchips-mit-huhner-aroma", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:brotchips-mit-huhner-aroma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-fraise", + "id": "en:sirops-de-fraise", + "name": "en:Sirops-de-fraise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:granos-de-leguminosas", + "products": 1, + "name": "ru:Granos-de-leguminosas", + "id": "ru:granos-de-leguminosas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-bio", + "name": "nl:Bieres-bio", + "id": "nl:bieres-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-aux-pommes", + "products": 1, + "id": "fr:desserts-aux-pommes", + "name": "Desserts-aux-pommes" + }, + { + "products": 1, + "id": "fr:melange-de-5-cereales-bio", + "name": "Melange-de-5-cereales-bio", + "url": "https://fr.openfoodfacts.org/categorie/melange-de-5-cereales-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-fruits-presses-pomme-mangue", + "products": 1, + "id": "fr:jus-de-fruits-presses-pomme-mangue", + "name": "Jus-de-fruits-presses-pomme-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galletas", + "id": "fr:galletas", + "name": "Galletas", + "products": 1 + }, + { + "products": 1, + "id": "fr:cupcake", + "name": "Cupcake", + "url": "https://fr.openfoodfacts.org/categorie/cupcake" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-uht", + "id": "es:laits-uht", + "name": "es:Laits-uht", + "products": 1 + }, + { + "id": "fr:liegeois-vanille", + "name": "Liegeois-vanille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/liegeois-vanille" + }, + { + "products": 1, + "name": "Poisson-blanc", + "id": "fr:poisson-blanc", + "url": "https://fr.openfoodfacts.org/categorie/poisson-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/perles-de-vin", + "products": 1, + "id": "fr:perles-de-vin", + "name": "Perles-de-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/osso-bucco-de-dinde", + "products": 1, + "id": "fr:osso-bucco-de-dinde", + "name": "Osso-bucco-de-dinde" + }, + { + "id": "fr:bonbons-a-la-fraise", + "name": "Bonbons-a-la-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscade", + "products": 1, + "name": "Muscade", + "id": "fr:muscade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/capsule-pour-boisson-instantanee", + "id": "fr:capsule-pour-boisson-instantanee", + "name": "Capsule-pour-boisson-instantanee", + "products": 1 + }, + { + "products": 1, + "name": "en:Steaks-haches-frais", + "id": "en:steaks-haches-frais", + "url": "https://fr.openfoodfacts.org/categorie/en:steaks-haches-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dosettes-souples-cafe", + "products": 1, + "name": "Dosettes-souples-cafe", + "id": "fr:dosettes-souples-cafe" + }, + { + "name": "it:Nuggets-de-poulet", + "id": "it:nuggets-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:nuggets-de-poulet" + }, + { + "products": 1, + "id": "ru:хлопья-из-цельной-пшеницы", + "name": "ru:Хлопья-из-цельной-пшеницы", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%85%D0%BB%D0%BE%D0%BF%D1%8C%D1%8F-%D0%B8%D0%B7-%D1%86%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9-%D0%BF%D1%88%D0%B5%D0%BD%D0%B8%D1%86%D1%8B" + }, + { + "name": "Poudre-petit-dejeuner", + "id": "fr:poudre-petit-dejeuner", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poudre-petit-dejeuner" + }, + { + "products": 1, + "id": "fr:filets-de-harengs-a-la-tomate", + "name": "Filets-de-harengs-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-harengs-a-la-tomate" + }, + { + "products": 1, + "id": "de:cafe-en-dosettes", + "name": "de:Cafe-en-dosettes", + "url": "https://fr.openfoodfacts.org/categorie/de:cafe-en-dosettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-deshydrates", + "products": 1, + "id": "fr:fromages-deshydrates", + "name": "Fromages-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-conserve", + "id": "fr:viande-de-conserve", + "name": "Viande-de-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poitrine-fumee", + "products": 1, + "name": "Poitrine-fumee", + "id": "fr:poitrine-fumee" + }, + { + "products": 1, + "id": "fr:bella-lodi", + "name": "Bella-lodi", + "url": "https://fr.openfoodfacts.org/categorie/bella-lodi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gaufrettes-fourrees-a-la-vanille", + "name": "en:Gaufrettes-fourrees-a-la-vanille", + "id": "en:gaufrettes-fourrees-a-la-vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quesos-vegetales", + "id": "fr:quesos-vegetales", + "name": "Quesos-vegetales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liant", + "products": 1, + "name": "Liant", + "id": "fr:liant" + }, + { + "products": 1, + "name": "Manchons-de-canard-aux-lentilles", + "id": "fr:manchons-de-canard-aux-lentilles", + "url": "https://fr.openfoodfacts.org/categorie/manchons-de-canard-aux-lentilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-marinieres-au-vin-blanc-et-aux-oignons", + "products": 1, + "id": "fr:moules-marinieres-au-vin-blanc-et-aux-oignons", + "name": "Moules-marinieres-au-vin-blanc-et-aux-oignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:bieres-artisanales", + "products": 1, + "id": "de:bieres-artisanales", + "name": "de:Bieres-artisanales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-antillaises", + "products": 1, + "id": "fr:saucisses-antillaises", + "name": "Saucisses-antillaises" + }, + { + "name": "Пудинг-пастеризованный-со-взбитыми-сливками-гранд-десерт-двойной-шоколад-массовая-доля-жира-4-9", + "id": "fr:пудинг-пастеризованный-со-взбитыми-сливками-гранд-десерт-двойной-шоколад-массовая-доля-жира-4-9", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/%D0%BF%D1%83%D0%B4%D0%B8%D0%BD%D0%B3-%D0%BF%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%B8%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D1%8B%D0%B9-%D1%81%D0%BE-%D0%B2%D0%B7%D0%B1%D0%B8%D1%82%D1%8B%D0%BC%D0%B8-%D1%81%D0%BB%D0%B8%D0%B2%D0%BA%D0%B0%D0%BC%D0%B8-%D0%B3%D1%80%D0%B0%D0%BD%D0%B4-%D0%B4%D0%B5%D1%81%D0%B5%D1%80%D1%82-%D0%B4%D0%B2%D0%BE%D0%B9%D0%BD%D0%BE%D0%B9-%D1%88%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%D0%B4-%D0%BC%D0%B0%D1%81%D1%81%D0%BE%D0%B2%D0%B0%D1%8F-%D0%B4%D0%BE%D0%BB%D1%8F-%D0%B6%D0%B8%D1%80%D0%B0-4-9" + }, + { + "products": 1, + "id": "fr:potages-au-quinoa", + "name": "Potages-au-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/potages-au-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farine-complete-de-petit-epeautre", + "products": 1, + "id": "fr:farine-complete-de-petit-epeautre", + "name": "Farine-complete-de-petit-epeautre" + }, + { + "products": 1, + "id": "fr:pepers", + "name": "Pepers", + "url": "https://fr.openfoodfacts.org/categorie/pepers" + }, + { + "id": "fr:beignets-a-la-pomme", + "name": "Beignets-a-la-pomme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beignets-a-la-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panes-sin-gluten", + "products": 1, + "name": "Panes-sin-gluten", + "id": "fr:panes-sin-gluten" + }, + { + "products": 1, + "id": "fr:curry-rouge", + "name": "Curry-rouge", + "url": "https://fr.openfoodfacts.org/categorie/curry-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/clementines-bio", + "name": "Clementines-bio", + "id": "fr:clementines-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-la-luzienne", + "name": "Sardines-a-la-luzienne", + "id": "fr:sardines-a-la-luzienne", + "products": 1 + }, + { + "products": 1, + "id": "xx:kase", + "name": "xx:Kase", + "url": "https://fr.openfoodfacts.org/categorie/xx:kase" + }, + { + "products": 1, + "name": "Fonds-de-jambons-cuits", + "id": "fr:fonds-de-jambons-cuits", + "url": "https://fr.openfoodfacts.org/categorie/fonds-de-jambons-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cafe-en-dosettes-compatible-nespresso", + "products": 1, + "name": "de:Cafe-en-dosettes-compatible-nespresso", + "id": "de:cafe-en-dosettes-compatible-nespresso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fisch", + "id": "en:fisch", + "name": "en:Fisch", + "products": 1 + }, + { + "id": "fr:pains-au-muesli", + "name": "Pains-au-muesli", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-au-muesli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nigelles", + "id": "fr:nigelles", + "name": "Nigelles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-delactoses", + "products": 1, + "name": "es:Laits-delactoses", + "id": "es:laits-delactoses" + }, + { + "products": 1, + "name": "Produits-a-tartines-sales", + "id": "fr:produits-a-tartines-sales", + "url": "https://fr.openfoodfacts.org/categorie/produits-a-tartines-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-surcree", + "products": 1, + "id": "fr:pate-surcree", + "name": "Pate-surcree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-alsaciennes", + "products": 1, + "name": "Pates-fraiches-alsaciennes", + "id": "fr:pates-fraiches-alsaciennes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vollkornbrot-pain-de-seigle-complet-bio", + "products": 1, + "name": "Vollkornbrot-pain-de-seigle-complet-bio", + "id": "fr:vollkornbrot-pain-de-seigle-complet-bio" + }, + { + "name": "Perail-de-brebis", + "id": "fr:perail-de-brebis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/perail-de-brebis" + }, + { + "name": "de:Maultaschen", + "id": "de:maultaschen", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q20055" + ], + "url": "https://fr.openfoodfacts.org/categorie/de:maultaschen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pave-d-autruche", + "products": 1, + "name": "Pave-d-autruche", + "id": "fr:pave-d-autruche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:frites-surgelees", + "id": "it:frites-surgelees", + "name": "it:Frites-surgelees", + "products": 1 + }, + { + "products": 1, + "name": "en:Amandes-chocolatees", + "id": "en:amandes-chocolatees", + "url": "https://fr.openfoodfacts.org/categorie/en:amandes-chocolatees" + }, + { + "products": 1, + "id": "en:nectar-de-pomme", + "name": "en:Nectar-de-pomme", + "url": "https://fr.openfoodfacts.org/categorie/en:nectar-de-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-cheddar", + "products": 1, + "id": "fr:chips-cheddar", + "name": "Chips-cheddar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poule", + "name": "Poule", + "id": "fr:poule", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:schmelzkase", + "products": 1, + "name": "en:Schmelzkase", + "id": "en:schmelzkase" + }, + { + "name": "Chausson-a-la-viande", + "id": "fr:chausson-a-la-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chausson-a-la-viande" + }, + { + "name": "Filet-de-poulet-fermier-jaune-du-gers", + "id": "fr:filet-de-poulet-fermier-jaune-du-gers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-de-poulet-fermier-jaune-du-gers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:langkornreise", + "id": "de:langkornreise", + "name": "de:Langkornreise", + "products": 1 + }, + { + "products": 1, + "id": "fr:cardons-prepares", + "name": "Cardons-prepares", + "url": "https://fr.openfoodfacts.org/categorie/cardons-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignons-deshydrates", + "id": "fr:oignons-deshydrates", + "name": "Oignons-deshydrates", + "products": 1 + }, + { + "id": "fr:bourgogne-clairet-hautes-cotes-de-beaune", + "name": "Bourgogne Clairet Hautes Côtes de Beaune", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bourgogne-clairet-hautes-cotes-de-beaune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/risottos-de-veau", + "name": "Risottos de veau", + "id": "en:veal-risottos", + "products": 1 + }, + { + "products": 1, + "name": "Pot-bebe-4-mois", + "id": "fr:pot-bebe-4-mois", + "url": "https://fr.openfoodfacts.org/categorie/pot-bebe-4-mois" + }, + { + "name": "Fromage-frais-de-chevre-nature-bio", + "id": "fr:fromage-frais-de-chevre-nature-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-de-chevre-nature-bio" + }, + { + "products": 1, + "id": "fr:preparation-a-base-de-pomme-de-terre", + "name": "Preparation-a-base-de-pomme-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/preparation-a-base-de-pomme-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-d-epices", + "products": 1, + "name": "Pates-d-epices", + "id": "fr:pates-d-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarwemelen", + "id": "fr:tarwemelen", + "name": "Tarwemelen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corbieres-boutenac", + "products": 1, + "id": "fr:corbieres-boutenac", + "name": "Corbieres-boutenac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thons-tropicaux", + "id": "en:thons-tropicaux", + "name": "en:Thons-tropicaux", + "products": 1 + }, + { + "products": 1, + "name": "Haricots d'Espagne en conserve", + "id": "en:canned-scarlet-runner-beans", + "url": "https://fr.openfoodfacts.org/categorie/haricots-d-espagne-en-conserve" + }, + { + "products": 1, + "name": "Gateau-dauphinois", + "id": "fr:gateau-dauphinois", + "url": "https://fr.openfoodfacts.org/categorie/gateau-dauphinois" + }, + { + "products": 1, + "name": "Cidres-bouches-de-bretagne-brut", + "id": "fr:cidres-bouches-de-bretagne-brut", + "url": "https://fr.openfoodfacts.org/categorie/cidres-bouches-de-bretagne-brut" + }, + { + "id": "en:galettes-a-garnir", + "name": "en:Galettes-a-garnir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:galettes-a-garnir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-beurre-de-cacahuetes", + "products": 1, + "id": "fr:biscuits-au-beurre-de-cacahuetes", + "name": "Biscuits-au-beurre-de-cacahuetes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-fromage-frais-aux-fruits", + "name": "Mousses-fromage-frais-aux-fruits", + "id": "fr:mousses-fromage-frais-aux-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/faisselles-avec-coulis", + "products": 1, + "name": "Faisselles-avec-coulis", + "id": "fr:faisselles-avec-coulis" + }, + { + "id": "fr:lunettes-de-roman", + "name": "Lunettes-de-roman", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lunettes-de-roman" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melange-quinoa-boulgour-bio", + "products": 1, + "name": "Melange-quinoa-boulgour-bio", + "id": "fr:melange-quinoa-boulgour-bio" + }, + { + "products": 1, + "id": "en:acar", + "name": "Achards de légumes", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2141042" + ], + "url": "https://fr.openfoodfacts.org/categorie/achards-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thon-a-la-sauce-moutarde", + "products": 1, + "name": "Thon-a-la-sauce-moutarde", + "id": "fr:thon-a-la-sauce-moutarde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-poitevines", + "products": 1, + "id": "fr:galettes-poitevines", + "name": "Galettes-poitevines" + }, + { + "name": "en:Graisses-de-coco", + "id": "en:graisses-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:graisses-de-coco" + }, + { + "products": 1, + "name": "Croissants-fourres-au-jambon-et-a-l-emmental", + "id": "fr:croissants-fourres-au-jambon-et-a-l-emmental", + "url": "https://fr.openfoodfacts.org/categorie/croissants-fourres-au-jambon-et-a-l-emmental" + }, + { + "products": 1, + "id": "fr:barre-cereales-sans-gluten", + "name": "Barre-cereales-sans-gluten", + "url": "https://fr.openfoodfacts.org/categorie/barre-cereales-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-hyperproteinees", + "name": "Boissons-hyperproteinees", + "id": "fr:boissons-hyperproteinees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:piave", + "id": "it:piave", + "name": "it:Piave", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sabji", + "products": 1, + "id": "fr:sabji", + "name": "Sabji" + }, + { + "products": 1, + "id": "de:cafe", + "name": "de:Cafe", + "url": "https://fr.openfoodfacts.org/categorie/de:cafe" + }, + { + "products": 1, + "id": "de:eaux-minerales", + "name": "de:Eaux-minerales", + "url": "https://fr.openfoodfacts.org/categorie/de:eaux-minerales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mineraalwaters", + "products": 1, + "id": "fr:mineraalwaters", + "name": "Mineraalwaters" + }, + { + "id": "fr:pistou", + "name": "Pistou", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pistou" + }, + { + "name": "Madeleines-aromatisees", + "id": "fr:madeleines-aromatisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/madeleines-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miches", + "name": "Miches", + "id": "fr:miches", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-sriracha", + "id": "en:sauces-sriracha", + "name": "en:Sauces-sriracha", + "products": 1 + }, + { + "products": 1, + "id": "en:postres", + "name": "en:Postres", + "url": "https://fr.openfoodfacts.org/categorie/en:postres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:reblochon", + "products": 1, + "name": "en:Reblochon", + "id": "en:reblochon" + }, + { + "id": "fr:fomages-frais", + "name": "Fomages-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fomages-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pistazien", + "id": "fr:pistazien", + "name": "Pistazien", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-fruits-rouges", + "name": "Marmelades-de-fruits-rouges", + "id": "fr:marmelades-de-fruits-rouges", + "products": 1 + }, + { + "products": 1, + "name": "Boissons-en-dosettes-pour-machines-dolce-gusto", + "id": "fr:boissons-en-dosettes-pour-machines-dolce-gusto", + "url": "https://fr.openfoodfacts.org/categorie/boissons-en-dosettes-pour-machines-dolce-gusto" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vino-viejo", + "products": 1, + "name": "Vino-viejo", + "id": "fr:vino-viejo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muffins-au-chocolat", + "products": 1, + "name": "Muffins-au-chocolat", + "id": "fr:muffins-au-chocolat" + }, + { + "products": 1, + "name": "de:Gateaux-au-chocolat", + "id": "de:gateaux-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/de:gateaux-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/esparragos-verdes-en-conserva", + "name": "Esparragos-verdes-en-conserva", + "id": "fr:esparragos-verdes-en-conserva", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fondants-saveur-peche-abricot", + "id": "fr:biscuits-fondants-saveur-peche-abricot", + "name": "Biscuits-fondants-saveur-peche-abricot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-vertes-farcies-au-poivron", + "products": 1, + "id": "es:olives-vertes-farcies-au-poivron", + "name": "es:Olives-vertes-farcies-au-poivron" + }, + { + "id": "en:compotes-pommes-fraise", + "name": "en:Compotes-pommes-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:compotes-pommes-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aux-fruits-secs", + "id": "fr:biscuits-aux-fruits-secs", + "name": "Biscuits-aux-fruits-secs", + "products": 1 + }, + { + "products": 1, + "name": "Filets-de-bars", + "id": "fr:filets-de-bars", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-bars" + }, + { + "id": "pl:tomates-et-derives", + "name": "pl:Tomates-et-derives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:tomates-et-derives" + }, + { + "id": "en:thes-verts-japonais", + "name": "en:Thes-verts-japonais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:thes-verts-japonais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zoutjes", + "name": "Zoutjes", + "id": "fr:zoutjes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/non-sugared-beverages", + "id": "fr:non-sugared-beverages", + "name": "Non-sugared-beverages", + "products": 1 + }, + { + "products": 1, + "name": "Nectars-de-cerise", + "id": "fr:nectars-de-cerise", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-70-cacao-bio-equitable", + "name": "Chocolat-noir-70-cacao-bio-equitable", + "id": "fr:chocolat-noir-70-cacao-bio-equitable", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermouth", + "products": 1, + "name": "Vermouth", + "id": "fr:vermouth" + }, + { + "name": "Miels-d-amandinier", + "id": "fr:miels-d-amandinier", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/miels-d-amandinier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-a-croissants", + "name": "Pates-a-croissants", + "id": "fr:pates-a-croissants", + "products": 1 + }, + { + "id": "de:sucres-roux", + "name": "de:Sucres-roux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sucres-roux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sauerkirschen", + "name": "de:Sauerkirschen", + "id": "de:sauerkirschen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-aux-fruits-a-base-de-concentre", + "products": 1, + "id": "fr:boisson-aux-fruits-a-base-de-concentre", + "name": "Boisson-aux-fruits-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-chinois", + "products": 1, + "name": "Vins-chinois", + "id": "fr:vins-chinois" + }, + { + "id": "fr:cereales-germees", + "name": "Cereales-germees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cereales-germees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusion-thym-sachets", + "products": 1, + "id": "fr:infusion-thym-sachets", + "name": "Infusion-thym-sachets" + }, + { + "id": "fr:creme-epaisse-legere", + "name": "Creme-epaisse-legere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-epaisse-legere" + }, + { + "name": "es:Salsas-bolonesas-vegetales", + "id": "es:salsas-bolonesas-vegetales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:salsas-bolonesas-vegetales" + }, + { + "products": 1, + "id": "es:thons-a-l-huile-de-tournesol", + "name": "es:Thons-a-l-huile-de-tournesol", + "url": "https://fr.openfoodfacts.org/categorie/es:thons-a-l-huile-de-tournesol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:filets-de-poissons", + "name": "de:Filets-de-poissons", + "id": "de:filets-de-poissons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:chilisaus", + "products": 1, + "name": "de:Chilisaus", + "id": "de:chilisaus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:purees-d-amande", + "products": 1, + "name": "es:Purees-d-amande", + "id": "es:purees-d-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gigot-d-agneau", + "products": 1, + "id": "fr:gigot-d-agneau", + "name": "Gigot-d-agneau" + }, + { + "id": "fr:chocolats-aux-cafe-chocolats-praline", + "name": "Chocolats-aux-cafe-chocolats-praline", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-cafe-chocolats-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/souffles-au-chocolat", + "products": 1, + "id": "fr:souffles-au-chocolat", + "name": "Souffles-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-assaisonnes", + "products": 1, + "name": "Legumes-assaisonnes", + "id": "fr:legumes-assaisonnes" + }, + { + "id": "fr:sirops-de-melon", + "name": "Sirops-de-melon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-melon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pave-de-colin", + "products": 1, + "name": "Pave-de-colin", + "id": "fr:pave-de-colin" + }, + { + "name": "de:Rinderbruhe", + "id": "de:rinderbruhe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:rinderbruhe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-glaces", + "products": 1, + "id": "fr:preparations-pour-glaces", + "name": "Preparations-pour-glaces" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-aux-graines-de-chia", + "products": 1, + "id": "fr:pains-aux-graines-de-chia", + "name": "Pains-aux-graines-de-chia" + }, + { + "name": "Preparation-culinaire", + "id": "fr:preparation-culinaire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-culinaire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-republique-tcheque", + "products": 1, + "name": "Bières de République tchèque", + "id": "en:beers-from-czech-republic" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/double-concentre-de-tomate", + "id": "fr:double-concentre-de-tomate", + "name": "Double-concentre-de-tomate", + "products": 1 + }, + { + "products": 1, + "name": "Bouillons-de-volaille-deshydrates", + "id": "fr:bouillons-de-volaille-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-volaille-deshydrates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizza-au-speck-et-a-la-mozzarella", + "id": "fr:pizza-au-speck-et-a-la-mozzarella", + "name": "Pizza-au-speck-et-a-la-mozzarella", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-sucre-a-la-noix-de-coco", + "id": "fr:fromage-frais-sucre-a-la-noix-de-coco", + "name": "Fromage-frais-sucre-a-la-noix-de-coco", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartines-craquantes-au-froment", + "products": 1, + "name": "Tartines-craquantes-au-froment", + "id": "fr:tartines-craquantes-au-froment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/substitut-de-sucre", + "id": "fr:substitut-de-sucre", + "name": "Substitut-de-sucre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amandes-decortiques", + "products": 1, + "name": "Amandes-decortiques", + "id": "fr:amandes-decortiques" + }, + { + "products": 1, + "id": "fr:pates-farcies-aux-fromages", + "name": "Pates-farcies-aux-fromages", + "url": "https://fr.openfoodfacts.org/categorie/pates-farcies-aux-fromages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-exotiques", + "products": 1, + "id": "fr:nectars-exotiques", + "name": "Nectars-exotiques" + }, + { + "name": "Dattes-moelleuses-bio", + "id": "fr:dattes-moelleuses-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dattes-moelleuses-bio" + }, + { + "products": 1, + "id": "fr:pains-brioches-aux-raisins", + "name": "Pains-brioches-aux-raisins", + "url": "https://fr.openfoodfacts.org/categorie/pains-brioches-aux-raisins" + }, + { + "products": 1, + "name": "Specialites-vegan", + "id": "fr:specialites-vegan", + "url": "https://fr.openfoodfacts.org/categorie/specialites-vegan" + }, + { + "products": 1, + "name": "Figue-violette", + "id": "fr:figue-violette", + "url": "https://fr.openfoodfacts.org/categorie/figue-violette" + }, + { + "name": "Soupes-de-langoustines", + "id": "fr:soupes-de-langoustines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-langoustines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-pour-risotto", + "id": "fr:riz-long-pour-risotto", + "name": "Riz-long-pour-risotto", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:ingredients-pour-soupes", + "products": 1, + "name": "zh:Ingredients-pour-soupes", + "id": "zh:ingredients-pour-soupes" + }, + { + "products": 1, + "id": "fr:rillettes-de-moules", + "name": "Rillettes-de-moules", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-moules" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/congele", + "name": "Congele", + "id": "fr:congele", + "products": 1 + }, + { + "products": 1, + "id": "fr:cafes-en-dosettes-souples", + "name": "Cafes-en-dosettes-souples", + "url": "https://fr.openfoodfacts.org/categorie/cafes-en-dosettes-souples" + }, + { + "products": 1, + "id": "fr:vins-mousseux-roses", + "name": "Vins-mousseux-roses", + "url": "https://fr.openfoodfacts.org/categorie/vins-mousseux-roses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-rouille", + "products": 1, + "id": "fr:sauce-rouille", + "name": "Sauce-rouille" + }, + { + "products": 1, + "id": "de:bretzels", + "name": "de:Bretzels", + "url": "https://fr.openfoodfacts.org/categorie/de:bretzels" + }, + { + "name": "Ficelles-picardes", + "id": "fr:ficelles-picardes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ficelles-picardes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/infusion-de-thym-sachets", + "id": "fr:infusion-de-thym-sachets", + "name": "Infusion-de-thym-sachets", + "products": 1 + }, + { + "name": "Eau aromatisée non sucrée", + "id": "en:non-sugared-flavored-waters", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/eau-aromatisee-non-sucree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-des-sables", + "name": "Vins-des-sables", + "id": "fr:vins-des-sables", + "products": 1 + }, + { + "name": "Groseilles-rouges", + "id": "fr:groseilles-rouges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/groseilles-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/veloutes-de-tomates-et-lentilles-corail", + "id": "fr:veloutes-de-tomates-et-lentilles-corail", + "name": "Veloutes-de-tomates-et-lentilles-corail", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muscadets", + "products": 1, + "name": "Muscadets", + "id": "fr:muscadets" + }, + { + "name": "es:Thons-a-l-huile-d-olive", + "id": "es:thons-a-l-huile-d-olive", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:thons-a-l-huile-d-olive" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizzas-carbonara", + "products": 1, + "id": "fr:pizzas-carbonara", + "name": "Pizzas-carbonara" + }, + { + "name": "Savigny-1er-cru", + "id": "fr:savigny-1er-cru", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/savigny-1er-cru" + }, + { + "products": 1, + "id": "en:biscuits-a-l-amande", + "name": "en:Biscuits-a-l-amande", + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-a-l-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuillettes", + "id": "fr:feuillettes", + "name": "Feuillettes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pates-a-tartiner-au-chocolat", + "products": 1, + "name": "en:Pates-a-tartiner-au-chocolat", + "id": "en:pates-a-tartiner-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-aux-amandes", + "products": 1, + "id": "fr:olives-aux-amandes", + "name": "Olives-aux-amandes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-cacahuetes", + "products": 1, + "name": "Chocolats-au-lait-aux-cacahuetes", + "id": "fr:chocolats-au-lait-aux-cacahuetes" + }, + { + "name": "Pates-de-ble-tendre", + "id": "fr:pates-de-ble-tendre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-ble-tendre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-la-papaye", + "name": "Boissons-a-la-papaye", + "id": "fr:boissons-a-la-papaye", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/long-pao", + "products": 1, + "id": "fr:long-pao", + "name": "Long-pao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-aux-epices", + "id": "fr:bieres-aux-epices", + "name": "Bieres-aux-epices", + "products": 1 + }, + { + "id": "de:rostis-de-pommes-de-terre", + "name": "de:Rostis-de-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:rostis-de-pommes-de-terre" + }, + { + "id": "fr:ports-saluts", + "name": "Ports-saluts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ports-saluts" + }, + { + "name": "Gratins-de-volaille", + "id": "fr:gratins-de-volaille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-volaille" + }, + { + "products": 1, + "id": "fr:gaufres-au-sucre", + "name": "Gaufres-au-sucre", + "url": "https://fr.openfoodfacts.org/categorie/gaufres-au-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pognes", + "products": 1, + "name": "Pognes", + "id": "fr:pognes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-et-de-mangue", + "id": "fr:jus-de-pomme-et-de-mangue", + "name": "Jus-de-pomme-et-de-mangue", + "products": 1 + }, + { + "products": 1, + "name": "Salade-iceberg", + "id": "fr:salade-iceberg", + "url": "https://fr.openfoodfacts.org/categorie/salade-iceberg" + }, + { + "products": 1, + "name": "Vegetables-and-their-products", + "id": "fr:vegetables-and-their-products", + "url": "https://fr.openfoodfacts.org/categorie/vegetables-and-their-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-cesar", + "products": 1, + "name": "Sauces-cesar", + "id": "fr:sauces-cesar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poule-au-pot", + "id": "fr:poule-au-pot", + "name": "Poule au pot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feves-frais-surgeles", + "id": "en:frozen-fresh-broad-beans", + "name": "Fèves frais surgelés", + "products": 1 + }, + { + "name": "Bai Mu Dan", + "id": "en:bai-mudan-teas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bai-mu-dan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q788624" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farine-de-gateau", + "name": "Farine-de-gateau", + "id": "fr:farine-de-gateau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:snack", + "products": 1, + "name": "en:Snack", + "id": "en:snack" + }, + { + "products": 1, + "name": "Plantaardige-dranken", + "id": "fr:plantaardige-dranken", + "url": "https://fr.openfoodfacts.org/categorie/plantaardige-dranken" + }, + { + "products": 1, + "id": "en:labeled-flours", + "name": "Farines labellisées", + "url": "https://fr.openfoodfacts.org/categorie/farines-labellisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-label-rouge", + "products": 1, + "name": "Farines label rouge", + "id": "en:label-rouge-flours" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legumes-lacto-fermentes", + "products": 1, + "id": "fr:legumes-lacto-fermentes", + "name": "Legumes-lacto-fermentes" + }, + { + "products": 1, + "name": "Piperades-aux-lardons", + "id": "fr:piperades-aux-lardons", + "url": "https://fr.openfoodfacts.org/categorie/piperades-aux-lardons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/teabags", + "products": 1, + "name": "Teabags", + "id": "fr:teabags" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-patissieres", + "products": 1, + "id": "fr:farines-patissieres", + "name": "Farines pâtissières" + }, + { + "products": 1, + "name": "Preparations-pour-tortillas", + "id": "fr:preparations-pour-tortillas", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-tortillas" + }, + { + "id": "fr:dessert-sucre", + "name": "Dessert-sucre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-sucre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-de-pomme-bio", + "id": "fr:pur-jus-de-pomme-bio", + "name": "Pur-jus-de-pomme-bio", + "products": 1 + }, + { + "products": 1, + "name": "Gateaux-pour-le-petit-dejeuner", + "id": "fr:gateaux-pour-le-petit-dejeuner", + "url": "https://fr.openfoodfacts.org/categorie/gateaux-pour-le-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-de-camargue", + "products": 1, + "name": "Miels-de-camargue", + "id": "fr:miels-de-camargue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-de-figues", + "products": 1, + "name": "Pates-de-figues", + "id": "fr:pates-de-figues" + }, + { + "products": 1, + "id": "de:vins-portugais", + "name": "de:Vins-portugais", + "url": "https://fr.openfoodfacts.org/categorie/de:vins-portugais" + }, + { + "products": 1, + "id": "es:sodas-a-l-orange", + "name": "es:Sodas-a-l-orange", + "url": "https://fr.openfoodfacts.org/categorie/es:sodas-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-fourrees-a-la-fraise", + "products": 1, + "name": "Brioches-fourrees-a-la-fraise", + "id": "fr:brioches-fourrees-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-cuivrees", + "id": "fr:bieres-cuivrees", + "name": "Bieres-cuivrees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paraffines", + "name": "Paraffines", + "id": "fr:paraffines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignon-surgele", + "products": 1, + "id": "fr:oignon-surgele", + "name": "Oignon-surgele" + }, + { + "products": 1, + "name": "Sauces au poivre vert", + "id": "fr:sauces-au-poivre-vert", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-poivre-vert" + }, + { + "products": 1, + "id": "fr:canards-confits", + "name": "Canards-confits", + "url": "https://fr.openfoodfacts.org/categorie/canards-confits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/manchons-de-canard-confit", + "products": 1, + "id": "fr:manchons-de-canard-confit", + "name": "Manchons-de-canard-confit" + }, + { + "name": "es:Dulces-de-higo", + "id": "es:dulces-de-higo", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:dulces-de-higo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajines-de-canard", + "name": "Tajines de canard", + "id": "en:tajines-of-duck", + "products": 1 + }, + { + "name": "Viande-sechee-des-grisons", + "id": "fr:viande-sechee-des-grisons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viande-sechee-des-grisons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-orange-a-b-se-de-concentrer", + "id": "fr:jus-orange-a-b-se-de-concentrer", + "name": "Jus-orange-a-b-se-de-concentrer", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-soufflees-au-chocolat-bio", + "products": 1, + "id": "fr:cereales-soufflees-au-chocolat-bio", + "name": "Cereales-soufflees-au-chocolat-bio" + }, + { + "name": "de:Additifs-alimentaires", + "id": "de:additifs-alimentaires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:additifs-alimentaires" + }, + { + "products": 1, + "name": "Chocolats-au-lait-avec-des-biscuits", + "id": "fr:chocolats-au-lait-avec-des-biscuits", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-avec-des-biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-bouclees-d-alsace", + "name": "Nouilles-bouclees-d-alsace", + "id": "fr:nouilles-bouclees-d-alsace", + "products": 1 + }, + { + "products": 1, + "id": "fr:kochhinterschinken", + "name": "Kochhinterschinken", + "url": "https://fr.openfoodfacts.org/categorie/kochhinterschinken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petales-de-mais-au-chocolat-au-lait", + "products": 1, + "id": "fr:petales-de-mais-au-chocolat-au-lait", + "name": "Petales-de-mais-au-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-ambree-malt-bio", + "name": "Biere-ambree-malt-bio", + "id": "fr:biere-ambree-malt-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cacao-pur-en-poudre", + "products": 1, + "id": "fr:cacao-pur-en-poudre", + "name": "Cacao-pur-en-poudre" + }, + { + "name": "Riz-complet-rouge", + "id": "fr:riz-complet-rouge", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-complet-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crocodile", + "name": "Crocodile", + "id": "fr:crocodile", + "products": 1 + }, + { + "products": 1, + "name": "Viandes-de-crocodile", + "id": "fr:viandes-de-crocodile", + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-crocodile" + }, + { + "products": 1, + "name": "Elan", + "id": "fr:elan", + "url": "https://fr.openfoodfacts.org/categorie/elan" + }, + { + "products": 1, + "name": "Viande-d-elan", + "id": "fr:viande-d-elan", + "url": "https://fr.openfoodfacts.org/categorie/viande-d-elan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/margarine-sans-lactose", + "products": 1, + "id": "fr:margarine-sans-lactose", + "name": "Margarine-sans-lactose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-trop-sucrees", + "products": 1, + "name": "Boissons-trop-sucrees", + "id": "fr:boissons-trop-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigre-balsamique", + "products": 1, + "id": "it:vinaigre-balsamique", + "name": "it:Vinaigre-balsamique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gnocchi-de-semoule-de-ble-dur", + "products": 1, + "id": "en:gnocchi-de-semoule-de-ble-dur", + "name": "en:Gnocchi-de-semoule-de-ble-dur" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3937029" + ], + "url": "https://fr.openfoodfacts.org/categorie/riz-vialone-nano", + "products": 1, + "id": "en:vialone-nano-rices", + "name": "Riz Vialone Nano" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-braises", + "products": 1, + "name": "Jambons-braises", + "id": "fr:jambons-braises" + }, + { + "id": "en:bieres-porter", + "name": "en:Bieres-porter", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-porter" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eaux-traitees-par-ultrafiltration", + "products": 1, + "id": "fr:eaux-traitees-par-ultrafiltration", + "name": "Eaux-traitees-par-ultrafiltration" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:boissons-a-base-de-vegetaux", + "products": 1, + "id": "it:boissons-a-base-de-vegetaux", + "name": "it:Boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-a-l-orientale", + "products": 1, + "name": "Olives-a-l-orientale", + "id": "fr:olives-a-l-orientale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garniture-pour-bouchees-a-la-reine", + "name": "Garniture-pour-bouchees-a-la-reine", + "id": "fr:garniture-pour-bouchees-a-la-reine", + "products": 1 + }, + { + "products": 1, + "name": "Feves-cuites", + "id": "fr:feves-cuites", + "url": "https://fr.openfoodfacts.org/categorie/feves-cuites" + }, + { + "products": 1, + "id": "de:pains-precuits", + "name": "de:Pains-precuits", + "url": "https://fr.openfoodfacts.org/categorie/de:pains-precuits" + }, + { + "name": "Morilles-en-conserve", + "id": "fr:morilles-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/morilles-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:fritures-vegetales", + "id": "es:fritures-vegetales", + "name": "es:Fritures-vegetales", + "products": 1 + }, + { + "name": "es:Mezclas-de-chips-de-verduras-y-hortalizas-fritas", + "id": "es:mezclas-de-chips-de-verduras-y-hortalizas-fritas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:mezclas-de-chips-de-verduras-y-hortalizas-fritas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chorba", + "products": 1, + "id": "fr:chorba", + "name": "Chorba" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/krautertees", + "name": "Krautertees", + "id": "fr:krautertees", + "products": 1 + }, + { + "products": 1, + "id": "ro:ciocolată-cu-lapte", + "name": "ro:Ciocolată-cu-lapte", + "url": "https://fr.openfoodfacts.org/categorie/ro:ciocolat%C4%83-cu-lapte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremant-de-luxembourg", + "name": "Cremant-de-luxembourg", + "id": "fr:cremant-de-luxembourg", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:sinaasappelschillen", + "id": "nl:sinaasappelschillen", + "name": "nl:Sinaasappelschillen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:poissons-panes", + "id": "de:poissons-panes", + "name": "de:Poissons-panes", + "products": 1 + }, + { + "products": 1, + "name": "de:Poissons-panes-de-colin", + "id": "de:poissons-panes-de-colin", + "url": "https://fr.openfoodfacts.org/categorie/de:poissons-panes-de-colin" + }, + { + "name": "Graines-de-tournesol-bio", + "id": "fr:graines-de-tournesol-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:sumos", + "products": 1, + "name": "pt:Sumos", + "id": "pt:sumos" + }, + { + "products": 1, + "id": "es:veloutes", + "name": "es:Veloutes", + "url": "https://fr.openfoodfacts.org/categorie/es:veloutes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuiterie", + "products": 1, + "name": "Biscuiterie", + "id": "fr:biscuiterie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/magret-de-canard-seche", + "id": "fr:magret-de-canard-seche", + "name": "Magret-de-canard-seche", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolade", + "name": "Chocolade", + "id": "fr:chocolade", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miches-au-poivre", + "id": "fr:miches-au-poivre", + "name": "Miches-au-poivre", + "products": 1 + }, + { + "products": 1, + "id": "de:aliments-a-base-de-plantes-frais", + "name": "de:Aliments-a-base-de-plantes-frais", + "url": "https://fr.openfoodfacts.org/categorie/de:aliments-a-base-de-plantes-frais" + }, + { + "id": "en:marjolaine", + "name": "en:Marjolaine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:marjolaine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-cereales-pepites-de-fruits-rouges", + "id": "fr:barres-cereales-pepites-de-fruits-rouges", + "name": "Barres-cereales-pepites-de-fruits-rouges", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coulommiers-au-lait-cru", + "name": "Coulommiers-au-lait-cru", + "id": "fr:coulommiers-au-lait-cru", + "products": 1 + }, + { + "products": 1, + "id": "es:figues-seches", + "name": "es:Figues-seches", + "url": "https://fr.openfoodfacts.org/categorie/es:figues-seches" + }, + { + "id": "en:terrine-bressane-au-vin-blanc", + "name": "en:Terrine-bressane-au-vin-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:terrine-bressane-au-vin-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:tortas-de-aceite", + "id": "es:tortas-de-aceite", + "name": "es:Tortas-de-aceite", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-gris", + "id": "fr:vin-gris", + "name": "Vin-gris", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska-a-la-moutarde", + "products": 1, + "id": "fr:colins-d-alaska-a-la-moutarde", + "name": "Colins-d-alaska-a-la-moutarde" + }, + { + "name": "Bonbons-au-mentol", + "id": "fr:bonbons-au-mentol", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bonbons-au-mentol" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produit-au-mentol", + "name": "Produit-au-mentol", + "id": "fr:produit-au-mentol", + "products": 1 + }, + { + "id": "fr:pur-jus-de-citron-bio", + "name": "Pur-jus-de-citron-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pur-jus-de-citron-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:aperitif", + "name": "ru:Aperitif", + "id": "ru:aperitif", + "products": 1 + }, + { + "products": 1, + "name": "Sels-aux-herbes", + "id": "fr:sels-aux-herbes", + "url": "https://fr.openfoodfacts.org/categorie/sels-aux-herbes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/entkoffeinierte-kaffees", + "products": 1, + "id": "fr:entkoffeinierte-kaffees", + "name": "Entkoffeinierte-kaffees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-mousseux-brut", + "products": 1, + "name": "Vin-mousseux-brut", + "id": "fr:vin-mousseux-brut" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chasselas-de-geneve", + "products": 1, + "name": "Chasselas-de-geneve", + "id": "fr:chasselas-de-geneve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ziegenmilch", + "products": 1, + "name": "Ziegenmilch", + "id": "fr:ziegenmilch" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-sales", + "products": 1, + "id": "fr:biscuits-aperitifs-sales", + "name": "Biscuits-aperitifs-sales" + }, + { + "products": 1, + "name": "pt:Aliments-a-base-de-plantes-en-conserve", + "id": "pt:aliments-a-base-de-plantes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/pt:aliments-a-base-de-plantes-en-conserve" + }, + { + "name": "Boissons-a-l-infusion-de-the-vert", + "id": "fr:boissons-a-l-infusion-de-the-vert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-l-infusion-de-the-vert" + }, + { + "id": "fr:beurre-de-cacao-pour-applications-salees-matiere-grasse", + "name": "Beurre-de-cacao-pour-applications-salees-matiere-grasse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/beurre-de-cacao-pour-applications-salees-matiere-grasse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:florentins", + "name": "de:Florentins", + "id": "de:florentins", + "products": 1 + }, + { + "name": "Cafe-au-lait", + "id": "fr:cafe-au-lait", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cafe-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-toasts", + "products": 1, + "name": "Mini-toasts", + "id": "fr:mini-toasts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-en-sauce", + "id": "fr:moules-en-sauce", + "name": "Moules-en-sauce", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/honige", + "name": "Honige", + "id": "fr:honige", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-vegetaliens", + "id": "fr:produits-vegetaliens", + "name": "Produits-vegetaliens", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gamay", + "name": "Gamay", + "id": "fr:gamay", + "products": 1 + }, + { + "id": "es:garbanzos-con-verduras-en-conserva", + "name": "es:Garbanzos-con-verduras-en-conserva", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:garbanzos-con-verduras-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-volaille-degraisse", + "products": 1, + "name": "Bouillons-de-volaille-degraisse", + "id": "fr:bouillons-de-volaille-degraisse" + }, + { + "products": 1, + "name": "Bouillons-de-pot-au-feu-degraisse", + "id": "fr:bouillons-de-pot-au-feu-degraisse", + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-pot-au-feu-degraisse" + }, + { + "name": "Bieres-suedoises", + "id": "fr:bieres-suedoises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-suedoises" + }, + { + "id": "fr:chocolats-au-lait-pralines", + "name": "Chocolats-au-lait-pralines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-pralines" + }, + { + "name": "Crottin-de-chevre", + "id": "fr:crottin-de-chevre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crottin-de-chevre" + }, + { + "id": "fr:diced-cheese", + "name": "Diced-cheese", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/diced-cheese" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-d-anchois", + "name": "Creme-d-anchois", + "id": "fr:creme-d-anchois", + "products": 1 + }, + { + "name": "Pates-de-graines-de-lotus", + "id": "fr:pates-de-graines-de-lotus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-graines-de-lotus" + }, + { + "name": "Fr-bio-01", + "id": "fr:fr-bio-01", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fr-bio-01" + }, + { + "name": "Rougets-surgeles", + "id": "fr:rougets-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rougets-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-torrefie-moulu-decafeine", + "products": 1, + "id": "fr:cafe-torrefie-moulu-decafeine", + "name": "Cafe-torrefie-moulu-decafeine" + }, + { + "name": "Sodas-au-cola-decafeines", + "id": "fr:sodas-au-cola-decafeines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sodas-au-cola-decafeines" + }, + { + "id": "fr:legumes-pour-potage-surgeles", + "name": "Legumes-pour-potage-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/legumes-pour-potage-surgeles" + }, + { + "products": 1, + "id": "fr:creme-glacee-vanille-amandes-caramelisees", + "name": "Creme-glacee-vanille-amandes-caramelisees", + "url": "https://fr.openfoodfacts.org/categorie/creme-glacee-vanille-amandes-caramelisees" + }, + { + "products": 1, + "name": "Figues-moelleuses-bio", + "id": "fr:figues-moelleuses-bio", + "url": "https://fr.openfoodfacts.org/categorie/figues-moelleuses-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lamelles-d-encornet", + "products": 1, + "id": "fr:lamelles-d-encornet", + "name": "Lamelles-d-encornet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mirabelles", + "id": "fr:mirabelles", + "name": "Mirabelles", + "products": 1 + }, + { + "products": 1, + "name": "en:Fromage-blanc", + "id": "en:fromage-blanc", + "url": "https://fr.openfoodfacts.org/categorie/en:fromage-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/canard-laque", + "products": 1, + "name": "Canard laqué", + "id": "en:peking-duck" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolades", + "id": "fr:chocolades", + "name": "Chocolades", + "products": 1 + }, + { + "products": 1, + "id": "fr:fusilli-au-quinoa", + "name": "Fusilli-au-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/fusilli-au-quinoa" + }, + { + "products": 1, + "id": "it:salamino-di-santa-croce", + "name": "it:Salamino-di-santa-croce", + "url": "https://fr.openfoodfacts.org/categorie/it:salamino-di-santa-croce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelette-au-chocolat-et-au-caramel-beurre-sale", + "id": "fr:tartelette-au-chocolat-et-au-caramel-beurre-sale", + "name": "Tartelette-au-chocolat-et-au-caramel-beurre-sale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:3-cheese-popcorn", + "products": 1, + "name": "en:3-cheese-popcorn", + "id": "en:3-cheese-popcorn" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:chocolats-en-poudre", + "id": "pt:chocolats-en-poudre", + "name": "pt:Chocolats-en-poudre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-chaudes-instantanees", + "name": "de:Boissons-chaudes-instantanees", + "id": "de:boissons-chaudes-instantanees", + "products": 1 + }, + { + "products": 1, + "id": "en:sevres-maine", + "name": "en:Sevres-maine", + "url": "https://fr.openfoodfacts.org/categorie/en:sevres-maine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/legines", + "products": 1, + "name": "Legines", + "id": "fr:legines" + }, + { + "products": 1, + "name": "Boissons-fraiches", + "id": "fr:boissons-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/boissons-fraiches" + }, + { + "id": "fr:sake-de-riz", + "name": "Sake-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sake-de-riz" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caille", + "name": "Caille", + "id": "fr:caille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farines-d-avoine", + "id": "fr:farines-d-avoine", + "name": "Farines-d-avoine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:semillas", + "products": 1, + "name": "ru:Semillas", + "id": "ru:semillas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-aux-aromates", + "id": "fr:cornichons-aux-aromates", + "name": "Cornichons-aux-aromates", + "products": 1 + }, + { + "name": "Muesli-au-caramel", + "id": "fr:muesli-au-caramel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/muesli-au-caramel" + }, + { + "id": "fr:sorbet-fraise-menthe", + "name": "Sorbet-fraise-menthe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sorbet-fraise-menthe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-liquide", + "products": 1, + "id": "fr:sauce-liquide", + "name": "Sauce-liquide" + }, + { + "products": 1, + "name": "en:Produits-de-l-olivier", + "id": "en:produits-de-l-olivier", + "url": "https://fr.openfoodfacts.org/categorie/en:produits-de-l-olivier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-en-dosettes-souples", + "name": "Cafe-en-dosettes-souples", + "id": "fr:cafe-en-dosettes-souples", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-jus-de-fruits-et-de-soja", + "name": "Boissons à base de jus de fruits et de soja", + "id": "en:fruit-juice-and-soy-drinks", + "products": 1 + }, + { + "id": "fr:sorbets-aux-fruits-exotiques", + "name": "Sorbets-aux-fruits-exotiques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sorbets-aux-fruits-exotiques" + }, + { + "products": 1, + "name": "Gateau-chinois", + "id": "fr:gateau-chinois", + "url": "https://fr.openfoodfacts.org/categorie/gateau-chinois" + }, + { + "name": "Moutardes-au-vinaigre", + "id": "fr:moutardes-au-vinaigre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-vinaigre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-pour-pates", + "name": "Bouillons-pour-pates", + "id": "fr:bouillons-pour-pates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petales-de-coco", + "products": 1, + "id": "fr:petales-de-coco", + "name": "Petales-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:processed-cheese-product-in-a-can", + "products": 1, + "name": "en:Processed-cheese-product-in-a-can", + "id": "en:processed-cheese-product-in-a-can" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-sans-alcool", + "products": 1, + "name": "de:Boissons-sans-alcool", + "id": "de:boissons-sans-alcool" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:cafes", + "products": 1, + "name": "nl:Cafes", + "id": "nl:cafes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:siropes", + "products": 1, + "id": "de:siropes", + "name": "de:Siropes" + }, + { + "name": "Biscuits-a-la-vanille-a-la-vanille", + "id": "fr:biscuits-a-la-vanille-a-la-vanille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-la-vanille-a-la-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:cappucinos", + "id": "nl:cappucinos", + "name": "nl:Cappucinos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-crepe", + "products": 1, + "name": "Pate-a-crepe", + "id": "fr:pate-a-crepe" + }, + { + "id": "fr:jus-de-pomme-et-de-poire", + "name": "Jus-de-pomme-et-de-poire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pomme-et-de-poire" + }, + { + "products": 1, + "name": "Eau-petillante-aromatisee", + "id": "fr:eau-petillante-aromatisee", + "url": "https://fr.openfoodfacts.org/categorie/eau-petillante-aromatisee" + }, + { + "id": "it:viandes", + "name": "it:Viandes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:viandes" + }, + { + "products": 1, + "name": "Preparation-instantanee-pour-boisson-au-cafe-saveur-noisette", + "id": "fr:preparation-instantanee-pour-boisson-au-cafe-saveur-noisette", + "url": "https://fr.openfoodfacts.org/categorie/preparation-instantanee-pour-boisson-au-cafe-saveur-noisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-au-vinaigre", + "id": "fr:chips-au-vinaigre", + "name": "Chips-au-vinaigre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:odwodnione-zupa", + "products": 1, + "id": "en:odwodnione-zupa", + "name": "en:Odwodnione-zupa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:zupa", + "products": 1, + "name": "en:Zupa", + "id": "en:zupa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cervelas-en-sauce", + "products": 1, + "name": "Cervelas-en-sauce", + "id": "fr:cervelas-en-sauce" + }, + { + "id": "fr:pates-a-chaussons", + "name": "Pates-a-chaussons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-chaussons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-torrefie-moulu", + "id": "fr:cafe-torrefie-moulu", + "name": "Cafe-torrefie-moulu", + "products": 1 + }, + { + "id": "fr:marmelades-de-mandarines", + "name": "Marmelades-de-mandarines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marmelades-de-mandarines" + }, + { + "id": "de:fromages-vegetaux", + "name": "de:Fromages-vegetaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-vegetaux" + }, + { + "products": 1, + "name": "Carre-de-porc-pour-plancha-et-pierre-a-griller", + "id": "fr:carre-de-porc-pour-plancha-et-pierre-a-griller", + "url": "https://fr.openfoodfacts.org/categorie/carre-de-porc-pour-plancha-et-pierre-a-griller" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-caramel", + "id": "fr:creme-caramel", + "name": "Creme-caramel", + "products": 1 + }, + { + "products": 1, + "name": "Produits-precuits", + "id": "fr:produits-precuits", + "url": "https://fr.openfoodfacts.org/categorie/produits-precuits" + }, + { + "name": "Mini-feuilletes-saucisse-surgeles", + "id": "fr:mini-feuilletes-saucisse-surgeles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mini-feuilletes-saucisse-surgeles" + }, + { + "products": 1, + "id": "fr:saucisses-chipolatas", + "name": "Saucisses-chipolatas", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-chipolatas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-confites", + "name": "Saucisses confites", + "id": "en:pickled-sausages", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:legumes-et-derives", + "products": 1, + "name": "pl:Legumes-et-derives", + "id": "pl:legumes-et-derives" + }, + { + "name": "en:Fat-free-vanilla-yogurt", + "id": "en:fat-free-vanilla-yogurt", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fat-free-vanilla-yogurt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:08-2019", + "products": 1, + "id": "it:08-2019", + "name": "it:08-2019" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fat-free-yogurt", + "id": "en:fat-free-yogurt", + "name": "en:Fat-free-yogurt", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuit-au-quinoa", + "id": "fr:biscuit-au-quinoa", + "name": "Biscuit-au-quinoa", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises-au-sirop", + "products": 1, + "name": "Fraises-au-sirop", + "id": "fr:fraises-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:miels-liquides", + "id": "nl:miels-liquides", + "name": "nl:Miels-liquides", + "products": 1 + }, + { + "products": 1, + "name": "de:Manouri", + "id": "de:manouri", + "url": "https://fr.openfoodfacts.org/categorie/de:manouri" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/losliche-kaffees", + "products": 1, + "id": "fr:losliche-kaffees", + "name": "Losliche-kaffees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gummibonbons", + "products": 1, + "name": "Gummibonbons", + "id": "fr:gummibonbons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pommes-de-terre-jazzy", + "id": "en:pommes-de-terre-jazzy", + "name": "en:Pommes-de-terre-jazzy", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizza-margherita", + "id": "en:pizza-margherita", + "name": "en:Pizza-margherita", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-salees-fourrees", + "name": "Crepes-salees-fourrees", + "id": "fr:crepes-salees-fourrees", + "products": 1 + }, + { + "products": 1, + "id": "fr:laits-d-amande-au-chocolat", + "name": "Laits-d-amande-au-chocolat", + "url": "https://fr.openfoodfacts.org/categorie/laits-d-amande-au-chocolat" + }, + { + "id": "en:likor", + "name": "en:Likor", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:likor" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chocolats-noirs", + "name": "ru:Chocolats-noirs", + "id": "ru:chocolats-noirs", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-aux-marrons", + "products": 1, + "name": "Mousse-aux-marrons", + "id": "fr:mousse-aux-marrons" + }, + { + "name": "en:Colorants-alimentaires", + "id": "en:colorants-alimentaires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:colorants-alimentaires" + }, + { + "name": "en:Purees-d-amande-blanche", + "id": "en:purees-d-amande-blanche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:purees-d-amande-blanche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-campagne-au-poivre-vert", + "products": 1, + "id": "fr:terrines-de-campagne-au-poivre-vert", + "name": "Terrines-de-campagne-au-poivre-vert" + }, + { + "name": "Vinaigres-d-alcool-blanc", + "id": "fr:vinaigres-d-alcool-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-d-alcool-blanc" + }, + { + "id": "en:jus-de-poire", + "name": "en:Jus-de-poire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:jus-de-poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:huiles-aromatisees", + "products": 1, + "id": "en:huiles-aromatisees", + "name": "en:Huiles-aromatisees" + }, + { + "products": 1, + "id": "de:eaux", + "name": "de:Eaux", + "url": "https://fr.openfoodfacts.org/categorie/de:eaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:fruits-secs", + "name": "it:Fruits-secs", + "id": "it:fruits-secs", + "products": 1 + }, + { + "products": 1, + "id": "fr:pate-vegetale", + "name": "Pate-vegetale", + "url": "https://fr.openfoodfacts.org/categorie/pate-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:conference-pears", + "name": "en:Conference-pears", + "id": "en:conference-pears", + "products": 1 + }, + { + "name": "Sucres-non-cristallises", + "id": "fr:sucres-non-cristallises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucres-non-cristallises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kokosmilch", + "products": 1, + "id": "fr:kokosmilch", + "name": "Kokosmilch" + }, + { + "id": "pt:pflanzliche-lebensmittel", + "name": "pt:Pflanzliche-lebensmittel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:pflanzliche-lebensmittel" + }, + { + "id": "en:susse-brotaufstriche", + "name": "en:Susse-brotaufstriche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:susse-brotaufstriche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arroces-de-grano-largo", + "products": 1, + "id": "fr:arroces-de-grano-largo", + "name": "Arroces-de-grano-largo" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:produto-integral-com-cereais", + "products": 1, + "name": "pt:Produto-integral-com-cereais", + "id": "pt:produto-integral-com-cereais" + }, + { + "products": 1, + "name": "Aude", + "id": "fr:aude", + "url": "https://fr.openfoodfacts.org/categorie/aude" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-argentins", + "products": 1, + "id": "fr:vins-argentins", + "name": "Vins-argentins" + }, + { + "products": 1, + "id": "fr:bloc-de-foie-gras-de-canard-au-sel-de-guerande", + "name": "Bloc-de-foie-gras-de-canard-au-sel-de-guerande", + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-au-sel-de-guerande" + }, + { + "id": "fr:produits-aux-fruits-rouges", + "name": "Produits-aux-fruits-rouges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-aux-fruits-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quinoa-lentilles-bio", + "products": 1, + "id": "fr:quinoa-lentilles-bio", + "name": "Quinoa-lentilles-bio" + }, + { + "name": "Desserts-au-citron", + "id": "fr:desserts-au-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cappuccino-instatan-e-gout-chocolat-milka", + "products": 1, + "id": "fr:cappuccino-instatan-e-gout-chocolat-milka", + "name": "Cappuccino-instatan-e-gout-chocolat-milka" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-croustillants", + "id": "fr:chocolats-croustillants", + "name": "Chocolats-croustillants", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-au-lait-au-caramel", + "id": "it:chocolats-au-lait-au-caramel", + "name": "it:Chocolats-au-lait-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortillas-aux-pommes-de-terre", + "id": "fr:tortillas-aux-pommes-de-terre", + "name": "Tortillas-aux-pommes-de-terre", + "products": 1 + }, + { + "name": "es:Boissons-lyophilisees", + "id": "es:boissons-lyophilisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-lyophilisees" + }, + { + "products": 1, + "name": "Schnapse", + "id": "fr:schnapse", + "url": "https://fr.openfoodfacts.org/categorie/schnapse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortilla-wraps", + "name": "Tortilla-wraps", + "id": "fr:tortilla-wraps", + "products": 1 + }, + { + "id": "en:bonbons-au-chocolat", + "name": "en:Bonbons-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bonbons-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plantes", + "id": "fr:plantes", + "name": "Plantes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dosettes-machines-a-cafe", + "id": "fr:dosettes-machines-a-cafe", + "name": "Dosettes-machines-a-cafe", + "products": 1 + }, + { + "id": "fr:chocolats-noirs-aux-biscuits", + "name": "Chocolats-noirs-aux-biscuits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-biscuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidre-artisanal-bigouden-demi-sec", + "products": 1, + "id": "fr:cidre-artisanal-bigouden-demi-sec", + "name": "Cidre-artisanal-bigouden-demi-sec" + }, + { + "products": 1, + "name": "Bratheringsfilets", + "id": "fr:bratheringsfilets", + "url": "https://fr.openfoodfacts.org/categorie/bratheringsfilets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-noix-de-pecan", + "products": 1, + "name": "Chocolats-aux-noix-de-pecan", + "id": "fr:chocolats-aux-noix-de-pecan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-a-boire", + "products": 1, + "name": "Lait-a-boire", + "id": "fr:lait-a-boire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-dosettes-espresso-classic", + "products": 1, + "name": "Cafe-dosettes-espresso-classic", + "id": "fr:cafe-dosettes-espresso-classic" + }, + { + "id": "fr:fut-de-biere", + "name": "Fut-de-biere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fut-de-biere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafe-capsules", + "id": "fr:cafe-capsules", + "name": "Cafe-capsules", + "products": 1 + }, + { + "products": 1, + "id": "en:lychee-honey", + "name": "Miels de litchi", + "url": "https://fr.openfoodfacts.org/categorie/miels-de-litchi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:beans", + "products": 1, + "id": "ar:beans", + "name": "ar:Beans" + }, + { + "name": "Pois-casses-a-la-paysanne-bio", + "id": "fr:pois-casses-a-la-paysanne-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pois-casses-a-la-paysanne-bio" + }, + { + "name": "Farines-pour-brioche", + "id": "fr:farines-pour-brioche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-pour-brioche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-soja", + "name": "Boissons-soja", + "id": "fr:boissons-soja", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-libanais", + "products": 1, + "id": "fr:pains-libanais", + "name": "Pains-libanais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bonbons-a-la-menthe", + "id": "en:bonbons-a-la-menthe", + "name": "en:Bonbons-a-la-menthe", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-gateaux-de-semoule", + "name": "Preparations-pour-gateaux-de-semoule", + "id": "fr:preparations-pour-gateaux-de-semoule", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-d-alaska", + "products": 1, + "name": "Colins-d-alaska", + "id": "fr:colins-d-alaska" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-aux-caramel-fudge", + "name": "Chocolats-fourres-aux-caramel-fudge", + "id": "fr:chocolats-fourres-aux-caramel-fudge", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-eau-sel-marin-acide-ascorbique", + "id": "fr:jus-eau-sel-marin-acide-ascorbique", + "name": "Jus-eau-sel-marin-acide-ascorbique", + "products": 1 + }, + { + "products": 1, + "id": "en:chocolate-chunks", + "name": "en:Chocolate-chunks", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-chunks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/producten-op-basis-van-gedroogde-planten", + "id": "fr:producten-op-basis-van-gedroogde-planten", + "name": "Producten-op-basis-van-gedroogde-planten", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauce-a-l-huitre", + "products": 1, + "name": "en:Sauce-a-l-huitre", + "id": "en:sauce-a-l-huitre" + }, + { + "name": "Puree-de-pois-chiches-a-l-huile-d-olive", + "id": "fr:puree-de-pois-chiches-a-l-huile-d-olive", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pois-chiches-a-l-huile-d-olive" + }, + { + "id": "fr:steaks-de-poulet", + "name": "Steaks-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/durums", + "products": 1, + "id": "fr:durums", + "name": "Durums" + }, + { + "id": "fr:nouilles-thai", + "name": "Nouilles-thai", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nouilles-thai" + }, + { + "id": "fr:barre-chocolate", + "name": "Barre-chocolate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/barre-chocolate" + }, + { + "products": 1, + "id": "fr:kakheti", + "name": "Kakheti", + "url": "https://fr.openfoodfacts.org/categorie/kakheti" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cidres-anglais", + "products": 1, + "name": "en:Cidres-anglais", + "id": "en:cidres-anglais" + }, + { + "products": 1, + "id": "en:infusion-au-tilleul", + "name": "en:Infusion-au-tilleul", + "url": "https://fr.openfoodfacts.org/categorie/en:infusion-au-tilleul" + }, + { + "products": 1, + "id": "en:popcorn-contain-traces-of-milk-caramel-e150b", + "name": "en:Popcorn-contain-traces-of-milk-caramel-e150b", + "url": "https://fr.openfoodfacts.org/categorie/en:popcorn-contain-traces-of-milk-caramel-e150b" + }, + { + "name": "Chocola", + "id": "fr:chocola", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocola" + }, + { + "name": "Infusion-au-tilleul-et-au-citron", + "id": "fr:infusion-au-tilleul-et-au-citron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/infusion-au-tilleul-et-au-citron" + }, + { + "id": "fr:pates-a-cuisson-rapide", + "name": "Pates-a-cuisson-rapide", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-a-cuisson-rapide" + }, + { + "name": "Fromages-fondus-a-la-raclette", + "id": "fr:fromages-fondus-a-la-raclette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus-a-la-raclette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-haricots-mungo-bio", + "products": 1, + "name": "Pousses-de-haricots-mungo-bio", + "id": "fr:pousses-de-haricots-mungo-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:charcuteries-cuites", + "products": 1, + "name": "en:Charcuteries-cuites", + "id": "en:charcuteries-cuites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-teneur-reduite-en-sel", + "products": 1, + "id": "fr:fromages-a-teneur-reduite-en-sel", + "name": "Fromages-a-teneur-reduite-en-sel" + }, + { + "products": 1, + "name": "Fomages-de-chevre", + "id": "fr:fomages-de-chevre", + "url": "https://fr.openfoodfacts.org/categorie/fomages-de-chevre" + }, + { + "name": "Gingembre-aigre-doux", + "id": "fr:gingembre-aigre-doux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gingembre-aigre-doux" + }, + { + "name": "Superieur", + "id": "fr:superieur", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/superieur" + }, + { + "products": 1, + "name": "Galettes de maïs au chocolat au lait", + "id": "en:puffed-corn-cakes-with-milk-chocolate", + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-mais-au-chocolat-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:leches-de-coco-para-cocinar", + "products": 1, + "id": "en:leches-de-coco-para-cocinar", + "name": "en:Leches-de-coco-para-cocinar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas-en-tranches", + "id": "fr:ananas-en-tranches", + "name": "Ananas-en-tranches", + "products": 1 + }, + { + "name": "Puree-lentilles-corail-potiron-bio", + "id": "fr:puree-lentilles-corail-potiron-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/puree-lentilles-corail-potiron-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-chocolat", + "id": "fr:galettes-chocolat", + "name": "Galettes-chocolat", + "products": 1 + }, + { + "name": "en:Pates-en-croute", + "id": "en:pates-en-croute", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-en-croute" + }, + { + "products": 1, + "name": "Poissons-d-elevages", + "id": "fr:poissons-d-elevages", + "url": "https://fr.openfoodfacts.org/categorie/poissons-d-elevages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-pour-nourrisson", + "products": 1, + "name": "Lait-pour-nourrisson", + "id": "fr:lait-pour-nourrisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-soja-et-chocolat", + "id": "fr:boissons-au-soja-et-chocolat", + "name": "Boissons-au-soja-et-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-yunnan-tuocha", + "products": 1, + "name": "Thes-yunnan-tuocha", + "id": "fr:thes-yunnan-tuocha" + }, + { + "products": 1, + "id": "fr:biscuits-au-soja", + "name": "Biscuits-au-soja", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-sans-sucres", + "name": "Confiseries-sans-sucres", + "id": "fr:confiseries-sans-sucres", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-a-tartiner-a-l-amande", + "name": "Pates-a-tartiner-a-l-amande", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-a-l-amande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vacqueras", + "name": "en:Vacqueras", + "id": "en:vacqueras", + "products": 1 + }, + { + "products": 1, + "name": "Mueslis-aux-fruits-secs", + "id": "fr:mueslis-aux-fruits-secs", + "url": "https://fr.openfoodfacts.org/categorie/mueslis-aux-fruits-secs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:matieres-grasses", + "products": 1, + "id": "it:matieres-grasses", + "name": "it:Matieres-grasses" + }, + { + "products": 1, + "name": "Sauces-colombos", + "id": "fr:sauces-colombos", + "url": "https://fr.openfoodfacts.org/categorie/sauces-colombos" + }, + { + "id": "fr:salade-de-crudites", + "name": "Salade-de-crudites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salade-de-crudites" + }, + { + "products": 1, + "id": "fr:salade-lentilles-et-legumes-bio", + "name": "Salade-lentilles-et-legumes-bio", + "url": "https://fr.openfoodfacts.org/categorie/salade-lentilles-et-legumes-bio" + }, + { + "products": 1, + "name": "Feuilles-d-ortie", + "id": "fr:feuilles-d-ortie", + "url": "https://fr.openfoodfacts.org/categorie/feuilles-d-ortie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-et-derivees", + "products": 1, + "name": "Cereales-et-derivees", + "id": "fr:cereales-et-derivees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hachis-parmentier-deshydrate", + "products": 1, + "name": "Hachis-parmentier-deshydrate", + "id": "fr:hachis-parmentier-deshydrate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:sardinhas", + "products": 1, + "name": "pt:Sardinhas", + "id": "pt:sardinhas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-miel", + "name": "Cereales-au-miel", + "id": "fr:cereales-au-miel", + "products": 1 + }, + { + "id": "fr:toast-brioche-au-ble-complet-bio", + "name": "Toast-brioche-au-ble-complet-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/toast-brioche-au-ble-complet-bio" + }, + { + "id": "fr:caramel-almond-milks", + "name": "Caramel-almond-milks", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/caramel-almond-milks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thee", + "products": 1, + "name": "Thee", + "id": "fr:thee" + }, + { + "products": 1, + "name": "Eaux-de-source-avec-adjonction-de-gaz-carbonique", + "id": "fr:eaux-de-source-avec-adjonction-de-gaz-carbonique", + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-source-avec-adjonction-de-gaz-carbonique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-de-riz-a-la-vanille", + "id": "en:vanilla-rice-milks", + "name": "Boissons végétales de riz à la vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-aux-fruits", + "id": "fr:tartes-aux-fruits", + "name": "Tartes-aux-fruits", + "products": 1 + }, + { + "products": 1, + "name": "ru:Alubias-cocidas-en-conserva", + "id": "ru:alubias-cocidas-en-conserva", + "url": "https://fr.openfoodfacts.org/categorie/ru:alubias-cocidas-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-frais-aux-fraises", + "name": "Fromages-frais-aux-fraises", + "id": "fr:fromages-frais-aux-fraises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pains-bagel", + "id": "de:pains-bagel", + "name": "de:Pains-bagel", + "products": 1 + }, + { + "name": "Sardines-au-piment-et-aux-aromates", + "id": "fr:sardines-au-piment-et-aux-aromates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sardines-au-piment-et-aux-aromates" + }, + { + "products": 1, + "id": "fr:fricassee-de-poulet", + "name": "Fricassee-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/fricassee-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caramel-sauce", + "name": "Caramel-sauce", + "id": "fr:caramel-sauce", + "products": 1 + }, + { + "products": 1, + "id": "en:sucre-en-poudre", + "name": "en:Sucre-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/en:sucre-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-thon", + "name": "en:Sandwichs-au-thon", + "id": "en:sandwichs-au-thon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miel-de-fleurs-melangees", + "products": 1, + "id": "fr:miel-de-fleurs-melangees", + "name": "Miel-de-fleurs-melangees" + }, + { + "name": "Sucre-en-poudre-bio", + "id": "fr:sucre-en-poudre-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucre-en-poudre-bio" + }, + { + "name": "Filet-de-poulet-marine", + "id": "fr:filet-de-poulet-marine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filet-de-poulet-marine" + }, + { + "id": "fr:riz-pour-risotto-arborio", + "name": "Riz-pour-risotto-arborio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-pour-risotto-arborio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:plats-prepares-refrigeres", + "name": "es:Plats-prepares-refrigeres", + "id": "es:plats-prepares-refrigeres", + "products": 1 + }, + { + "products": 1, + "name": "Jus-de-pommes-gala", + "id": "fr:jus-de-pommes-gala", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-pommes-gala" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-prepares-a-rechauffer-au-four", + "name": "Plats-prepares-a-rechauffer-au-four", + "id": "fr:plats-prepares-a-rechauffer-au-four", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-concentres-avec-pulpes", + "products": 1, + "name": "Jus-concentres-avec-pulpes", + "id": "fr:jus-concentres-avec-pulpes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/harengs-frits", + "products": 1, + "id": "fr:harengs-frits", + "name": "Harengs-frits" + }, + { + "id": "fr:sirops-de-kiwi-banane", + "name": "Sirops-de-kiwi-banane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-kiwi-banane" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambons-label-rouge", + "name": "en:Jambons-label-rouge", + "id": "en:jambons-label-rouge", + "products": 1 + }, + { + "id": "fr:charcu", + "name": "Charcu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/charcu" + }, + { + "name": "en:Coq-au-vin", + "id": "en:coq-au-vin", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:coq-au-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-nappage", + "name": "en:Sirops-de-nappage", + "id": "en:sirops-de-nappage", + "products": 1 + }, + { + "name": "Sauces-au-foie-gras", + "id": "fr:sauces-au-foie-gras", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-foie-gras" + }, + { + "products": 1, + "name": "Genepis", + "id": "fr:genepis", + "url": "https://fr.openfoodfacts.org/categorie/genepis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-glacees-au-yaourt", + "id": "fr:cremes-glacees-au-yaourt", + "name": "Cremes-glacees-au-yaourt", + "products": 1 + }, + { + "products": 1, + "id": "es:sodas-a-base-de-frutas-sin-gas", + "name": "es:Sodas-a-base-de-frutas-sin-gas", + "url": "https://fr.openfoodfacts.org/categorie/es:sodas-a-base-de-frutas-sin-gas" + }, + { + "id": "fr:raviolis-a-la-viande", + "name": "Raviolis-a-la-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-a-la-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fruits-du-jacquier", + "id": "fr:fruits-du-jacquier", + "name": "Fruits-du-jacquier", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:chocolats-au-lait", + "name": "ar:Chocolats-au-lait", + "id": "ar:chocolats-au-lait", + "products": 1 + }, + { + "id": "fr:boissons-au-cranberry", + "name": "Boissons-au-cranberry", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-cranberry" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-instantannee", + "products": 1, + "name": "Boisson-instantannee", + "id": "fr:boisson-instantannee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-salsas", + "name": "Sauces-salsas", + "id": "fr:sauces-salsas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spiritueux", + "name": "Spiritueux", + "id": "fr:spiritueux", + "products": 1 + }, + { + "products": 1, + "name": "es:Manchegos", + "id": "es:manchegos", + "url": "https://fr.openfoodfacts.org/categorie/es:manchegos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ravioli-ricotta-epinards-bio", + "name": "Ravioli-ricotta-epinards-bio", + "id": "fr:ravioli-ricotta-epinards-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-betteraves-rouges", + "products": 1, + "id": "fr:salades-de-betteraves-rouges", + "name": "Salades-de-betteraves-rouges" + }, + { + "name": "Soupe-de-sardines", + "id": "fr:soupe-de-sardines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupe-de-sardines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-dinde-et-de-veau", + "products": 1, + "id": "fr:saucissons-de-dinde-et-de-veau", + "name": "Saucissons-de-dinde-et-de-veau" + }, + { + "products": 1, + "name": "Cremes-dessert-au-praline", + "id": "fr:cremes-dessert-au-praline", + "url": "https://fr.openfoodfacts.org/categorie/cremes-dessert-au-praline" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-gaches-au-chocolat", + "id": "fr:mini-gaches-au-chocolat", + "name": "Mini-gaches-au-chocolat", + "products": 1 + }, + { + "name": "Fromage-triple-creme", + "id": "fr:fromage-triple-creme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromage-triple-creme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pousses", + "name": "en:Pousses", + "id": "en:pousses", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-vierge-d-argan", + "id": "fr:huiles-vierge-d-argan", + "name": "Huiles-vierge-d-argan", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-riz-au-caramel", + "id": "fr:gateaux-de-riz-au-caramel", + "name": "Gateaux-de-riz-au-caramel", + "products": 1 + }, + { + "id": "en:royal-tabbouleh", + "name": "Taboulés royaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/taboules-royaux" + }, + { + "products": 1, + "id": "fr:paves-au-poivre", + "name": "Paves-au-poivre", + "url": "https://fr.openfoodfacts.org/categorie/paves-au-poivre" + }, + { + "name": "Filets-de-harengs-sans-huile", + "id": "fr:filets-de-harengs-sans-huile", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-harengs-sans-huile" + }, + { + "products": 1, + "name": "Romarin séché moulu", + "id": "en:ground-dried-rosemary", + "url": "https://fr.openfoodfacts.org/categorie/romarin-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-blanc-fourrage-au-praline-et-aux-eclats-de-noisettes", + "products": 1, + "id": "fr:chocolat-blanc-fourrage-au-praline-et-aux-eclats-de-noisettes", + "name": "Chocolat-blanc-fourrage-au-praline-et-aux-eclats-de-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:mangues-surgelees", + "name": "es:Mangues-surgelees", + "id": "es:mangues-surgelees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-poulet", + "products": 1, + "name": "Bouillons-de-poulet", + "id": "fr:bouillons-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:american-india-pale-ale", + "id": "en:american-india-pale-ale", + "name": "en:American-india-pale-ale", + "products": 1 + }, + { + "products": 1, + "id": "fr:escalope-milanaise", + "name": "Escalope-milanaise", + "url": "https://fr.openfoodfacts.org/categorie/escalope-milanaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garniture-pour-vol-au-vent", + "products": 1, + "name": "Garniture-pour-vol-au-vent", + "id": "fr:garniture-pour-vol-au-vent" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoule-semi-complete-de-ble-dur-bio", + "products": 1, + "name": "Semoule-semi-complete-de-ble-dur-bio", + "id": "fr:semoule-semi-complete-de-ble-dur-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-banane", + "products": 1, + "name": "en:Yaourts-a-la-banane", + "id": "en:yaourts-a-la-banane" + }, + { + "id": "en:bieres-bio", + "name": "en:Bieres-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bieres-bio" + }, + { + "products": 1, + "name": "Caramels-durs", + "id": "fr:caramels-durs", + "url": "https://fr.openfoodfacts.org/categorie/caramels-durs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:huiles-de-colza", + "products": 1, + "name": "de:Huiles-de-colza", + "id": "de:huiles-de-colza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/2-filets-de-cabillaud", + "name": "2-filets-de-cabillaud", + "id": "fr:2-filets-de-cabillaud", + "products": 1 + }, + { + "id": "fr:chocolat-noir-fourrage-au-praline-et-aux-eclats-de-noisettes", + "name": "Chocolat-noir-fourrage-au-praline-et-aux-eclats-de-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-fourrage-au-praline-et-aux-eclats-de-noisettes" + }, + { + "name": "Feuilles-de-vigne-farcies", + "id": "fr:feuilles-de-vigne-farcies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-vigne-farcies" + }, + { + "products": 1, + "name": "Champignons-noirs-seches", + "id": "fr:champignons-noirs-seches", + "url": "https://fr.openfoodfacts.org/categorie/champignons-noirs-seches" + }, + { + "name": "Gressins-a-l-huile-d-olive", + "id": "fr:gressins-a-l-huile-d-olive", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gressins-a-l-huile-d-olive" + }, + { + "products": 1, + "name": "Farine-a-pain", + "id": "fr:farine-a-pain", + "url": "https://fr.openfoodfacts.org/categorie/farine-a-pain" + }, + { + "products": 1, + "id": "sk:barres", + "name": "sk:Barres", + "url": "https://fr.openfoodfacts.org/categorie/sk:barres" + }, + { + "products": 1, + "name": "de:Siropes-de-arce", + "id": "de:siropes-de-arce", + "url": "https://fr.openfoodfacts.org/categorie/de:siropes-de-arce" + }, + { + "id": "fr:salades-de-boulgour", + "name": "Salades-de-boulgour", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-boulgour" + }, + { + "id": "fr:sandwichs-a-la-mimolette", + "name": "Sandwichs à la mimolette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-a-la-mimolette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chewing-gum-avec-edulcorant", + "id": "fr:chewing-gum-avec-edulcorant", + "name": "Chewing-gum-avec-edulcorant", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-du-rhone-villages-visan", + "products": 1, + "name": "Cotes-du-rhone-villages-visan", + "id": "fr:cotes-du-rhone-villages-visan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-aux-endives", + "products": 1, + "id": "fr:terrines-aux-endives", + "name": "Terrines-aux-endives" + }, + { + "products": 1, + "id": "fr:pizza-jambon-emmental", + "name": "Pizza-jambon-emmental", + "url": "https://fr.openfoodfacts.org/categorie/pizza-jambon-emmental" + }, + { + "id": "fr:fromages-basques", + "name": "Fromages-basques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-basques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-de-viande-surgelees", + "products": 1, + "name": "en:Preparations-de-viande-surgelees", + "id": "en:preparations-de-viande-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-caramel", + "id": "fr:sauce-caramel", + "name": "Sauce-caramel", + "products": 1 + }, + { + "products": 1, + "id": "it:penne-de-ble-dur", + "name": "it:Penne-de-ble-dur", + "url": "https://fr.openfoodfacts.org/categorie/it:penne-de-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rutabagas", + "id": "fr:rutabagas", + "name": "Rutabagas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserves-de-fruits", + "id": "fr:conserves-de-fruits", + "name": "Conserves-de-fruits", + "products": 1 + }, + { + "name": "nl:Huiles-de-coco", + "id": "nl:huiles-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:huiles-de-coco" + }, + { + "products": 1, + "id": "en:rose-de-loire-val-de-loire", + "name": "en:Rose-de-loire-val-de-loire", + "url": "https://fr.openfoodfacts.org/categorie/en:rose-de-loire-val-de-loire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-souffles", + "products": 1, + "name": "Biscuits-souffles", + "id": "fr:biscuits-souffles" + }, + { + "products": 1, + "name": "Saucissons-aux-noix", + "id": "fr:saucissons-aux-noix", + "url": "https://fr.openfoodfacts.org/categorie/saucissons-aux-noix" + }, + { + "products": 1, + "name": "Assortiments-de-bonbons-de-chocolat-au-praline", + "id": "fr:assortiments-de-bonbons-de-chocolat-au-praline", + "url": "https://fr.openfoodfacts.org/categorie/assortiments-de-bonbons-de-chocolat-au-praline" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q214415" + ], + "url": "https://fr.openfoodfacts.org/categorie/thons-rouges", + "products": 1, + "name": "Thons rouges", + "id": "en:atlantic-bluefin-tunas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuterie-boudin-noir", + "products": 1, + "name": "Charcuterie-boudin-noir", + "id": "fr:charcuterie-boudin-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-aux-oeufs", + "name": "Brioches-aux-oeufs", + "id": "fr:brioches-aux-oeufs", + "products": 1 + }, + { + "id": "en:carottes-en-conserve", + "name": "en:Carottes-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:carottes-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-de-legumes-frais", + "products": 1, + "id": "fr:soupe-de-legumes-frais", + "name": "Soupe-de-legumes-frais" + }, + { + "products": 1, + "name": "en:Preparations-pour-boisson", + "id": "en:preparations-pour-boisson", + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-boisson" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ristes", + "products": 1, + "id": "fr:ristes", + "name": "Ristes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-au-jasmin", + "id": "en:thes-au-jasmin", + "name": "en:Thes-au-jasmin", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-de-toulouse-et-sa-puree-de-pomme-de-terre", + "name": "Saucisse-de-toulouse-et-sa-puree-de-pomme-de-terre", + "id": "fr:saucisse-de-toulouse-et-sa-puree-de-pomme-de-terre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:amidons", + "products": 1, + "id": "en:amidons", + "name": "en:Amidons" + }, + { + "id": "fr:thons-a-l-escabeche", + "name": "Thons-a-l-escabeche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thons-a-l-escabeche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/%E9%A3%B2%E5%93%81", + "products": 1, + "name": "飲品", + "id": "fr:飲品" + }, + { + "id": "fr:pates-forestiers", + "name": "Pates-forestiers", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-forestiers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roasted-corn", + "name": "Roasted-corn", + "id": "fr:roasted-corn", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-de-coco-au-sirop", + "name": "Noix-de-coco-au-sirop", + "id": "fr:noix-de-coco-au-sirop", + "products": 1 + }, + { + "id": "en:sirops-de-mais", + "name": "en:Sirops-de-mais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-poivres", + "products": 1, + "name": "Pates-aux-poivres", + "id": "fr:pates-aux-poivres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:lentilles-preparees", + "products": 1, + "name": "de:Lentilles-preparees", + "id": "de:lentilles-preparees" + }, + { + "products": 1, + "name": "Cafe-soluble-dosette-filtre-petit-dejeune", + "id": "fr:cafe-soluble-dosette-filtre-petit-dejeune", + "url": "https://fr.openfoodfacts.org/categorie/cafe-soluble-dosette-filtre-petit-dejeune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/wolfberger-muscat", + "id": "fr:wolfberger-muscat", + "name": "Wolfberger-muscat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-syrups", + "products": 1, + "name": "en:Chocolate-syrups", + "id": "en:chocolate-syrups" + }, + { + "products": 1, + "name": "en:Cremes-fraiches-epaisses", + "id": "en:cremes-fraiches-epaisses", + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-fraiches-epaisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brioches-au-lait", + "products": 1, + "name": "Brioches-au-lait", + "id": "fr:brioches-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:alimentos-de-origen-vegetal-congelados", + "products": 1, + "name": "xx:Alimentos-de-origen-vegetal-congelados", + "id": "xx:alimentos-de-origen-vegetal-congelados" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ko:snacks-sales", + "products": 1, + "name": "ko:Snacks-sales", + "id": "ko:snacks-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-de-la-lune", + "products": 1, + "name": "Gateaux-de-la-lune", + "id": "fr:gateaux-de-la-lune" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vino", + "id": "it:vino", + "name": "it:Vino", + "products": 1 + }, + { + "products": 1, + "id": "da:chocolats-au-lait", + "name": "da:Chocolats-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/da:chocolats-au-lait" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-dessert", + "name": "en:Cremes-dessert", + "id": "en:cremes-dessert", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrines-de-boudin", + "name": "Terrines de boudin", + "id": "en:blood-sausage-terrine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-de-capelan", + "name": "Oeufs-de-capelan", + "id": "fr:oeufs-de-capelan", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:laits-aromatises", + "name": "en:Laits-aromatises", + "id": "en:laits-aromatises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schweinebauch", + "products": 1, + "id": "fr:schweinebauch", + "name": "Schweinebauch" + }, + { + "name": "Refresco", + "id": "fr:refresco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/refresco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:pflanzliche-lebensmittel", + "products": 1, + "name": "xx:Pflanzliche-lebensmittel", + "id": "xx:pflanzliche-lebensmittel" + }, + { + "id": "en:sandwichs-au-poisson", + "name": "en:Sandwichs-au-poisson", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-poisson" + }, + { + "id": "en:gateaux-roules", + "name": "en:Gateaux-roules", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gateaux-roules" + }, + { + "products": 1, + "name": "Poivronnade-au-parmesan", + "id": "fr:poivronnade-au-parmesan", + "url": "https://fr.openfoodfacts.org/categorie/poivronnade-au-parmesan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melen-van-graan", + "id": "fr:melen-van-graan", + "name": "Melen-van-graan", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chipolatas-surgelees", + "products": 1, + "name": "Chipolatas-surgelees", + "id": "fr:chipolatas-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coco", + "id": "fr:coco", + "name": "Coco", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vruchtenrepen", + "products": 1, + "name": "en:Vruchtenrepen", + "id": "en:vruchtenrepen" + }, + { + "id": "de:fromages-a-pate-molle-a-croute-fleurie", + "name": "de:Fromages-a-pate-molle-a-croute-fleurie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-a-pate-molle-a-croute-fleurie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises-gariguette", + "products": 1, + "name": "Fraises-gariguette", + "id": "fr:fraises-gariguette" + }, + { + "id": "fr:pains-polaire", + "name": "Pains-polaire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-polaire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mexicain", + "products": 1, + "name": "Mexicain", + "id": "fr:mexicain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:candy-bar", + "products": 1, + "id": "en:candy-bar", + "name": "en:Candy-bar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/groenten", + "id": "fr:groenten", + "name": "Groenten", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutarde-aux-algues", + "name": "Moutarde-aux-algues", + "id": "fr:moutarde-aux-algues", + "products": 1 + }, + { + "products": 1, + "name": "Producten-op-basis-van-verse-planten", + "id": "fr:producten-op-basis-van-verse-planten", + "url": "https://fr.openfoodfacts.org/categorie/producten-op-basis-van-verse-planten" + }, + { + "id": "fr:glute-vrije-producten", + "name": "Glute-vrije-producten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glute-vrije-producten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/witte-waterkers", + "products": 1, + "name": "Witte-waterkers", + "id": "fr:witte-waterkers" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-au-piment", + "products": 1, + "name": "Chocolats-blancs-au-piment", + "id": "fr:chocolats-blancs-au-piment" + }, + { + "name": "Carpes-fumees", + "id": "fr:carpes-fumees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/carpes-fumees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-a-la-mangue", + "name": "Sauces-a-la-mangue", + "id": "fr:sauces-a-la-mangue", + "products": 1 + }, + { + "id": "fr:preparations-pour-galettes-de-legumes", + "name": "Preparations-pour-galettes-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-galettes-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fruit-mince-pies", + "products": 1, + "name": "en:Fruit-mince-pies", + "id": "en:fruit-mince-pies" + }, + { + "products": 1, + "name": "Gouter-fourre-cacao-a-la-farine-de-mais", + "id": "fr:gouter-fourre-cacao-a-la-farine-de-mais", + "url": "https://fr.openfoodfacts.org/categorie/gouter-fourre-cacao-a-la-farine-de-mais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-grenouilles", + "id": "fr:rillettes-de-grenouilles", + "name": "Rillettes-de-grenouilles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tomates-sechees-a-l-huile", + "id": "en:tomates-sechees-a-l-huile", + "name": "en:Tomates-sechees-a-l-huile", + "products": 1 + }, + { + "name": "Cerdon", + "id": "fr:cerdon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cerdon" + }, + { + "id": "fr:melisse", + "name": "Melisse", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-vert-aromatise-mure-bio", + "id": "fr:the-vert-aromatise-mure-bio", + "name": "The-vert-aromatise-mure-bio", + "products": 1 + }, + { + "products": 1, + "name": "Graines-d-epeautre", + "id": "fr:graines-d-epeautre", + "url": "https://fr.openfoodfacts.org/categorie/graines-d-epeautre" + }, + { + "products": 1, + "name": "Muesli-croustillant-chocolat-bio", + "id": "fr:muesli-croustillant-chocolat-bio", + "url": "https://fr.openfoodfacts.org/categorie/muesli-croustillant-chocolat-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/corn-flakes-bio", + "products": 1, + "id": "fr:corn-flakes-bio", + "name": "Corn-flakes-bio" + }, + { + "name": "Orangettes-au-chocolat-noir", + "id": "fr:orangettes-au-chocolat-noir", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/orangettes-au-chocolat-noir" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelees-de-boulgour-a-la-marocaine", + "products": 1, + "id": "fr:poelees-de-boulgour-a-la-marocaine", + "name": "Poelees-de-boulgour-a-la-marocaine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-cerise-olivette-bio", + "products": 1, + "name": "Tomates-cerise-olivette-bio", + "id": "fr:tomates-cerise-olivette-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-canard", + "products": 1, + "name": "Viandes-de-canard", + "id": "fr:viandes-de-canard" + }, + { + "products": 1, + "id": "fr:aperitivos", + "name": "Aperitivos", + "url": "https://fr.openfoodfacts.org/categorie/aperitivos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ananas-sweet", + "id": "fr:ananas-sweet", + "name": "Ananas-sweet", + "products": 1 + }, + { + "name": "Sauce-vinaigrette-pour-crudites", + "id": "fr:sauce-vinaigrette-pour-crudites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauce-vinaigrette-pour-crudites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-de-riz", + "products": 1, + "name": "Creme-de-riz", + "id": "fr:creme-de-riz" + }, + { + "products": 1, + "name": "Sucres mi-blancs", + "id": "fr:sucres-mi-blancs", + "url": "https://fr.openfoodfacts.org/categorie/sucres-mi-blancs" + }, + { + "products": 1, + "id": "fr:milk-shakes", + "name": "Milk-shakes", + "url": "https://fr.openfoodfacts.org/categorie/milk-shakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muesli-25-de-fruit-4-cereales-bio", + "name": "Muesli-25-de-fruit-4-cereales-bio", + "id": "fr:muesli-25-de-fruit-4-cereales-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-aux-cacahuetes", + "id": "fr:chocolats-aux-cacahuetes", + "name": "Chocolats-aux-cacahuetes", + "products": 1 + }, + { + "id": "fr:matcha-en-poudre", + "name": "Matcha-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/matcha-en-poudre" + }, + { + "products": 1, + "id": "fr:riz-long-blanc-bio", + "name": "Riz-long-blanc-bio", + "url": "https://fr.openfoodfacts.org/categorie/riz-long-blanc-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-complet-bio", + "products": 1, + "name": "Riz-long-complet-bio", + "id": "fr:riz-long-complet-bio" + }, + { + "products": 1, + "name": "Alcoholische-dranken", + "id": "fr:alcoholische-dranken", + "url": "https://fr.openfoodfacts.org/categorie/alcoholische-dranken" + }, + { + "name": "sk:Snacks-sucres", + "id": "sk:snacks-sucres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sk:snacks-sucres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pinots-noirs-roses", + "id": "fr:pinots-noirs-roses", + "name": "Pinots-noirs-roses", + "products": 1 + }, + { + "products": 1, + "id": "fr:100-pur-jus-de-pomme-bio", + "name": "100-pur-jus-de-pomme-bio", + "url": "https://fr.openfoodfacts.org/categorie/100-pur-jus-de-pomme-bio" + }, + { + "name": "en:Saumon-atlantique", + "id": "en:saumon-atlantique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:saumon-atlantique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sert-a-plus-de-chose-que-tartiner", + "name": "Sert-a-plus-de-chose-que-tartiner", + "id": "fr:sert-a-plus-de-chose-que-tartiner", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zwarte-thee", + "name": "Zwarte-thee", + "id": "fr:zwarte-thee", + "products": 1 + }, + { + "name": "en:Saumon-atlantique-fume", + "id": "en:saumon-atlantique-fume", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:saumon-atlantique-fume" + }, + { + "products": 1, + "id": "en:preparations-pour-gateaux", + "name": "en:Preparations-pour-gateaux", + "url": "https://fr.openfoodfacts.org/categorie/en:preparations-pour-gateaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-cacaoteee-bio", + "products": 1, + "id": "fr:boisson-cacaoteee-bio", + "name": "Boisson-cacaoteee-bio" + }, + { + "products": 1, + "id": "fr:darjeeling", + "name": "Darjeeling", + "url": "https://fr.openfoodfacts.org/categorie/darjeeling" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-fruits-a-coque", + "name": "Purees-de-fruits-a-coque", + "id": "fr:purees-de-fruits-a-coque", + "products": 1 + }, + { + "name": "Produits-vegetariens", + "id": "fr:produits-vegetariens", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-vegetariens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-quinoa", + "id": "fr:galettes-de-quinoa", + "name": "Galettes-de-quinoa", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rumstecks", + "products": 1, + "id": "fr:rumstecks", + "name": "Rumstecks" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ro:boissons-gazeuses", + "id": "ro:boissons-gazeuses", + "name": "ro:Boissons-gazeuses", + "products": 1 + }, + { + "products": 1, + "id": "fr:galette-au-soja", + "name": "Galette-au-soja", + "url": "https://fr.openfoodfacts.org/categorie/galette-au-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-nature", + "name": "Mousse-nature", + "id": "fr:mousse-nature", + "products": 1 + }, + { + "products": 1, + "name": "Palets-de-soja", + "id": "fr:palets-de-soja", + "url": "https://fr.openfoodfacts.org/categorie/palets-de-soja" + }, + { + "products": 1, + "id": "fr:huiles-en-spray", + "name": "Huiles-en-spray", + "url": "https://fr.openfoodfacts.org/categorie/huiles-en-spray" + }, + { + "id": "fr:pates-integrales", + "name": "Pates-integrales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-integrales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhubarbes-surgelees", + "products": 1, + "name": "Rhubarbes-surgelees", + "id": "fr:rhubarbes-surgelees" + }, + { + "products": 1, + "name": "Huile d'olive Riviera Ligure", + "id": "fr:huile-d-olive-riviera-ligure", + "url": "https://fr.openfoodfacts.org/categorie/huile-d-olive-riviera-ligure" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-long-grain-thai", + "id": "fr:riz-long-grain-thai", + "name": "Riz-long-grain-thai", + "products": 1 + }, + { + "name": "Petits-oignons", + "id": "fr:petits-oignons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/petits-oignons" + }, + { + "products": 1, + "name": "Viandes-hachees-surgelees", + "id": "fr:viandes-hachees-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/viandes-hachees-surgelees" + }, + { + "products": 1, + "name": "Fructose-pur-cristallise", + "id": "fr:fructose-pur-cristallise", + "url": "https://fr.openfoodfacts.org/categorie/fructose-pur-cristallise" + }, + { + "name": "Merguez-surgelees", + "id": "fr:merguez-surgelees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/merguez-surgelees" + }, + { + "products": 1, + "name": "Instant-nudeln", + "id": "fr:instant-nudeln", + "url": "https://fr.openfoodfacts.org/categorie/instant-nudeln" + }, + { + "id": "en:fromage-au-lait-cru", + "name": "en:Fromage-au-lait-cru", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fromage-au-lait-cru" + }, + { + "id": "en:saint-felicien", + "name": "en:Saint-felicien", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:saint-felicien" + }, + { + "name": "Ble-assaisonne", + "id": "fr:ble-assaisonne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ble-assaisonne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vollkornbrot", + "products": 1, + "id": "fr:vollkornbrot", + "name": "Vollkornbrot" + }, + { + "id": "fr:poisson-bio", + "name": "Poisson-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poisson-bio" + }, + { + "products": 1, + "name": "Miels blancs", + "id": "en:white-honeys", + "url": "https://fr.openfoodfacts.org/categorie/miels-blancs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tourtes-aux-grenouilles", + "name": "Tourtes-aux-grenouilles", + "id": "fr:tourtes-aux-grenouilles", + "products": 1 + }, + { + "products": 1, + "name": "en:Framboises", + "id": "en:framboises", + "url": "https://fr.openfoodfacts.org/categorie/en:framboises" + }, + { + "name": "de:Mischfette", + "id": "de:mischfette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:mischfette" + }, + { + "products": 1, + "name": "Canneberges-moelleuses-bio", + "id": "fr:canneberges-moelleuses-bio", + "url": "https://fr.openfoodfacts.org/categorie/canneberges-moelleuses-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vodkas-russes", + "products": 1, + "id": "en:russian-vodkas", + "name": "Vodkas russes" + }, + { + "id": "fr:saucissons-au-maroilles", + "name": "Saucissons-au-maroilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-au-maroilles" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q677647" + ], + "url": "https://fr.openfoodfacts.org/categorie/vacherin-fribourgeois", + "products": 1, + "id": "fr:vacherin-fribourgeois", + "name": "Vacherin fribourgeois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/relishs", + "products": 1, + "id": "fr:relishs", + "name": "Relishs" + }, + { + "products": 1, + "id": "fr:barres-cereales-noix-de-coco-sur-lit-de-chocolat-au-lait", + "name": "Barres-cereales-noix-de-coco-sur-lit-de-chocolat-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/barres-cereales-noix-de-coco-sur-lit-de-chocolat-au-lait" + }, + { + "products": 1, + "name": "Bouchees-au-fromage", + "id": "fr:bouchees-au-fromage", + "url": "https://fr.openfoodfacts.org/categorie/bouchees-au-fromage" + }, + { + "id": "fr:bebidas-a-base-de-frutas", + "name": "Bebidas-a-base-de-frutas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bebidas-a-base-de-frutas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscottes-completes-bio", + "name": "Biscottes-completes-bio", + "id": "fr:biscottes-completes-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:whisky-japonais", + "id": "en:whisky-japonais", + "name": "en:Whisky-japonais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:assaisonnements", + "products": 1, + "id": "pt:assaisonnements", + "name": "pt:Assaisonnements" + }, + { + "id": "fr:eminces-de-saumon-fume-bio", + "name": "Eminces-de-saumon-fume-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/eminces-de-saumon-fume-bio" + }, + { + "products": 1, + "name": "Salade-de-thon-aux-legumes", + "id": "fr:salade-de-thon-aux-legumes", + "url": "https://fr.openfoodfacts.org/categorie/salade-de-thon-aux-legumes" + }, + { + "products": 1, + "id": "fr:confitures-mandarine-passion", + "name": "Confitures-mandarine-passion", + "url": "https://fr.openfoodfacts.org/categorie/confitures-mandarine-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-camemberts", + "products": 1, + "id": "fr:petits-camemberts", + "name": "Petits-camemberts" + }, + { + "id": "fr:gesiers-confits-de-canard", + "name": "Gesiers-confits-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gesiers-confits-de-canard" + }, + { + "id": "fr:barres-chocolatees-biscuitees-aux-noisettes", + "name": "Barres chocolatées biscuitées aux noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/barres-chocolatees-biscuitees-aux-noisettes" + }, + { + "products": 1, + "id": "de:vermicelles", + "name": "de:Vermicelles", + "url": "https://fr.openfoodfacts.org/categorie/de:vermicelles" + }, + { + "products": 1, + "id": "fr:expresso-en-dosettes", + "name": "Expresso-en-dosettes", + "url": "https://fr.openfoodfacts.org/categorie/expresso-en-dosettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-avec-des-edulcorants", + "products": 1, + "name": "Produits-avec-des-edulcorants", + "id": "fr:produits-avec-des-edulcorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baies-de-goji-moelleuses-bio", + "products": 1, + "name": "Baies-de-goji-moelleuses-bio", + "id": "fr:baies-de-goji-moelleuses-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biere-au-quinoa", + "products": 1, + "name": "en:Biere-au-quinoa", + "id": "en:biere-au-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-aux-cacahuetes", + "products": 1, + "name": "Chocolats-noirs-aux-cacahuetes", + "id": "fr:chocolats-noirs-aux-cacahuetes" + }, + { + "id": "fr:thoionades", + "name": "Thoionades", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thoionades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurre-tendre-doux", + "products": 1, + "name": "Beurre-tendre-doux", + "id": "fr:beurre-tendre-doux" + }, + { + "products": 1, + "name": "Pain-grille-bio", + "id": "fr:pain-grille-bio", + "url": "https://fr.openfoodfacts.org/categorie/pain-grille-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-seches-de-jambon", + "id": "fr:saucisses-seches-de-jambon", + "name": "Saucisses-seches-de-jambon", + "products": 1 + }, + { + "products": 1, + "id": "fr:filets-de-plie", + "name": "Filets-de-plie", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-plie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-volaille-aux-herbes", + "name": "Saucisses-de-volaille-aux-herbes", + "id": "fr:saucisses-de-volaille-aux-herbes", + "products": 1 + }, + { + "products": 1, + "id": "xx:milchprodukte", + "name": "xx:Milchprodukte", + "url": "https://fr.openfoodfacts.org/categorie/xx:milchprodukte" + }, + { + "name": "Choucroute-garnie-au-vin-blanc", + "id": "fr:choucroute-garnie-au-vin-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/choucroute-garnie-au-vin-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-tacauds", + "id": "fr:filets-de-tacauds", + "name": "Filets-de-tacauds", + "products": 1 + }, + { + "products": 1, + "id": "fr:tacauds", + "name": "Tacauds", + "url": "https://fr.openfoodfacts.org/categorie/tacauds" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-lager", + "id": "fr:bieres-lager", + "name": "Bieres-lager", + "products": 1 + }, + { + "products": 1, + "id": "fr:cereales-au-chcolat", + "name": "Cereales-au-chcolat", + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-chcolat" + }, + { + "id": "fr:sucres-de-canne-liquides", + "name": "Sucres-de-canne-liquides", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucres-de-canne-liquides" + }, + { + "products": 1, + "name": "Saucisses-de-strasourg", + "id": "fr:saucisses-de-strasourg", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-strasourg" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-au-caramel", + "id": "fr:flans-au-caramel", + "name": "Flans-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-artisanales-pur-beurre", + "id": "fr:gaufres-artisanales-pur-beurre", + "name": "Gaufres-artisanales-pur-beurre", + "products": 1 + }, + { + "name": "Pates-vegetaux", + "id": "fr:pates-vegetaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:palmiers", + "products": 1, + "id": "en:palmiers", + "name": "en:Palmiers" + }, + { + "products": 1, + "name": "Trio-d-olives-cocktail-oriental", + "id": "fr:trio-d-olives-cocktail-oriental", + "url": "https://fr.openfoodfacts.org/categorie/trio-d-olives-cocktail-oriental" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/aloe-vera-drink", + "name": "Aloe-vera-drink", + "id": "fr:aloe-vera-drink", + "products": 1 + }, + { + "name": "Cidre-aromatise-a-la-poire", + "id": "fr:cidre-aromatise-a-la-poire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cidre-aromatise-a-la-poire" + }, + { + "name": "pl:Majonez", + "id": "pl:majonez", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:majonez" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-carottes-surgelees", + "products": 1, + "id": "fr:purees-de-carottes-surgelees", + "name": "Purees-de-carottes-surgelees" + }, + { + "products": 1, + "id": "fr:barres-de-cereales-aomatisees", + "name": "Barres-de-cereales-aomatisees", + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aomatisees" + }, + { + "name": "en:Muesli-croustillant-aux-fruits", + "id": "en:muesli-croustillant-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:muesli-croustillant-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:herbes-aromatiques", + "products": 1, + "id": "en:herbes-aromatiques", + "name": "en:Herbes-aromatiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-noix", + "products": 1, + "name": "Pates-aux-noix", + "id": "fr:pates-aux-noix" + }, + { + "products": 1, + "id": "fr:cornets-a-glace", + "name": "Cornets-a-glace", + "url": "https://fr.openfoodfacts.org/categorie/cornets-a-glace" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-essene", + "products": 1, + "name": "Pain-essene", + "id": "fr:pain-essene" + }, + { + "id": "fr:cuisine-du-monde", + "name": "Cuisine-du-monde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cuisine-du-monde" + }, + { + "products": 1, + "name": "Avoines-au-ble-dur", + "id": "fr:avoines-au-ble-dur", + "url": "https://fr.openfoodfacts.org/categorie/avoines-au-ble-dur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:polenta-fine", + "name": "en:Polenta-fine", + "id": "en:polenta-fine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tendres-carres-de-ble", + "products": 1, + "id": "fr:tendres-carres-de-ble", + "name": "Tendres-carres-de-ble" + }, + { + "name": "Huiles-aromatisees-a-la-truffe", + "id": "fr:huiles-aromatisees-a-la-truffe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huiles-aromatisees-a-la-truffe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-extra-fins-bio", + "name": "Haricots-verts-extra-fins-bio", + "id": "fr:haricots-verts-extra-fins-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/scotch-eggs", + "products": 1, + "id": "fr:scotch-eggs", + "name": "Scotch-eggs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiture-de-gingembre", + "products": 1, + "name": "Confiture-de-gingembre", + "id": "fr:confiture-de-gingembre" + }, + { + "name": "it:Carciofi", + "id": "it:carciofi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:carciofi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:galettes-vegetales", + "products": 1, + "id": "en:galettes-vegetales", + "name": "en:Galettes-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kabato", + "name": "Kabato", + "id": "fr:kabato", + "products": 1 + }, + { + "id": "fr:yaourts-aux-fruits-en-morceaux", + "name": "Yaourts-aux-fruits-en-morceaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-aux-fruits-en-morceaux" + }, + { + "products": 1, + "id": "fr:steaks-de-seitan", + "name": "Steaks-de-seitan", + "url": "https://fr.openfoodfacts.org/categorie/steaks-de-seitan" + }, + { + "id": "pl:boissons-sucrees", + "name": "pl:Boissons-sucrees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-polenta", + "name": "Galettes-de-polenta", + "id": "fr:galettes-de-polenta", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cupcakes", + "products": 1, + "name": "Cupcakes", + "id": "fr:cupcakes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/simili-carnes", + "name": "Simili-carnes", + "id": "fr:simili-carnes", + "products": 1 + }, + { + "id": "fr:steak-de-cereales", + "name": "Steak-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/steak-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kiwis-verts", + "name": "Kiwis-verts", + "id": "fr:kiwis-verts", + "products": 1 + }, + { + "products": 1, + "name": "en:Polpa-di-pomodoro", + "id": "en:polpa-di-pomodoro", + "url": "https://fr.openfoodfacts.org/categorie/en:polpa-di-pomodoro" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moutardes-de-beaune", + "id": "fr:moutardes-de-beaune", + "name": "Moutardes-de-beaune", + "products": 1 + }, + { + "products": 1, + "id": "fr:galette-de-boulgour", + "name": "Galette-de-boulgour", + "url": "https://fr.openfoodfacts.org/categorie/galette-de-boulgour" + }, + { + "id": "fr:galette-de-pomme-de-terre", + "name": "Galette-de-pomme-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galette-de-pomme-de-terre" + }, + { + "products": 1, + "name": "es:Vinagre-de-jerez", + "id": "es:vinagre-de-jerez", + "url": "https://fr.openfoodfacts.org/categorie/es:vinagre-de-jerez" + }, + { + "products": 1, + "name": "Baklava", + "id": "fr:baklava", + "url": "https://fr.openfoodfacts.org/categorie/baklava" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-tomate-bolognaise-vegetale-au-soja", + "name": "Sauce-tomate-bolognaise-vegetale-au-soja", + "id": "fr:sauce-tomate-bolognaise-vegetale-au-soja", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:snacks-sucres", + "name": "pt:Snacks-sucres", + "id": "pt:snacks-sucres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mozzarella-bio", + "products": 1, + "name": "Mozzarella-bio", + "id": "fr:mozzarella-bio" + }, + { + "products": 1, + "name": "en:Sandwichs-au-jambon", + "id": "en:sandwichs-au-jambon", + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-jambon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/premiere-cotes-de-blaye", + "id": "fr:premiere-cotes-de-blaye", + "name": "Premiere-cotes-de-blaye", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-bio", + "id": "fr:huile-bio", + "name": "Huile-bio", + "products": 1 + }, + { + "id": "fr:desserts-lactes-menthe", + "name": "Desserts-lactes-menthe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-menthe" + }, + { + "products": 1, + "id": "fr:melange-de-legume", + "name": "Melange-de-legume", + "url": "https://fr.openfoodfacts.org/categorie/melange-de-legume" + }, + { + "id": "fr:sauces-pour-sandwichs", + "name": "Sauces-pour-sandwichs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-pour-sandwichs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cremes-fraiches-liquides", + "products": 1, + "id": "en:cremes-fraiches-liquides", + "name": "en:Cremes-fraiches-liquides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sossiski", + "products": 1, + "id": "fr:sossiski", + "name": "Sossiski" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-aux-herbes-de-provence", + "products": 1, + "id": "fr:filets-de-poulet-aux-herbes-de-provence", + "name": "Filets-de-poulet-aux-herbes-de-provence" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-brune-speciale", + "products": 1, + "id": "fr:biere-brune-speciale", + "name": "Biere-brune-speciale" + }, + { + "products": 1, + "name": "Roiboos", + "id": "fr:roiboos", + "url": "https://fr.openfoodfacts.org/categorie/roiboos" + }, + { + "products": 1, + "id": "fr:terrine-de-sanglier-au-madiran", + "name": "Terrine-de-sanglier-au-madiran", + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-sanglier-au-madiran" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:rosenkohl", + "name": "es:Rosenkohl", + "id": "es:rosenkohl", + "products": 1 + }, + { + "products": 1, + "name": "Pousses-d-alfalfa", + "id": "fr:pousses-d-alfalfa", + "url": "https://fr.openfoodfacts.org/categorie/pousses-d-alfalfa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:choux-de-bruxelles", + "products": 1, + "id": "es:choux-de-bruxelles", + "name": "es:Choux-de-bruxelles" + }, + { + "products": 1, + "name": "Levure-de-biere-maltee", + "id": "fr:levure-de-biere-maltee", + "url": "https://fr.openfoodfacts.org/categorie/levure-de-biere-maltee" + }, + { + "id": "fr:brioches-fourrees-a-la-creme-patissiere", + "name": "Brioches-fourrees-a-la-creme-patissiere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/brioches-fourrees-a-la-creme-patissiere" + }, + { + "products": 1, + "id": "fr:preparation-pour-brioche", + "name": "Preparation-pour-brioche", + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-brioche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-a-la-poire", + "products": 1, + "id": "en:pear-tartlets", + "name": "Tartelettes à la poire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:frutas-y-sus-productos", + "name": "de:Frutas-y-sus-productos", + "id": "de:frutas-y-sus-productos", + "products": 1 + }, + { + "id": "fr:fondants-au-sucre", + "name": "Fondants-au-sucre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fondants-au-sucre" + }, + { + "products": 1, + "name": "Fromage-de-chevre-a-tartiner-bio", + "id": "fr:fromage-de-chevre-a-tartiner-bio", + "url": "https://fr.openfoodfacts.org/categorie/fromage-de-chevre-a-tartiner-bio" + }, + { + "name": "es:Preparados-en-polvo-para-flanes", + "id": "es:preparados-en-polvo-para-flanes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:preparados-en-polvo-para-flanes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fraises-deshydratees", + "id": "fr:fraises-deshydratees", + "name": "Fraises-deshydratees", + "products": 1 + }, + { + "id": "fr:igp-pays-d-oc-merlot", + "name": "Igp-pays-d-oc-merlot", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/igp-pays-d-oc-merlot" + }, + { + "id": "en:onion-chutneys", + "name": "Chutneys d'oignons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chutneys-d-oignons" + }, + { + "name": "Huile-olive-vierge-extra", + "id": "fr:huile-olive-vierge-extra", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huile-olive-vierge-extra" + }, + { + "name": "Biscuit-au-fromage", + "id": "fr:biscuit-au-fromage", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuit-au-fromage" + }, + { + "name": "Sauces-au-poivron", + "id": "fr:sauces-au-poivron", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-poivron" + }, + { + "products": 1, + "name": "Cererales-pour-petit-dejeuner", + "id": "fr:cererales-pour-petit-dejeuner", + "url": "https://fr.openfoodfacts.org/categorie/cererales-pour-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizza-bases", + "name": "en:Pizza-bases", + "id": "en:pizza-bases", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/omelettes-nature-a-taux-de-sel-reduit", + "name": "Omelettes-nature-a-taux-de-sel-reduit", + "id": "fr:omelettes-nature-a-taux-de-sel-reduit", + "products": 1 + }, + { + "name": "Confit-de-mangue", + "id": "fr:confit-de-mangue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confit-de-mangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolates-negros-extra-finos", + "name": "Chocolates-negros-extra-finos", + "id": "fr:chocolates-negros-extra-finos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-atlantique-roses", + "products": 1, + "name": "Vin-atlantique-roses", + "id": "fr:vin-atlantique-roses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-saumon-fume", + "products": 1, + "id": "fr:preparations-a-base-de-saumon-fume", + "name": "Preparations-a-base-de-saumon-fume" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cone-patissier", + "products": 1, + "name": "Cone-patissier", + "id": "fr:cone-patissier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-farcies", + "id": "fr:pates-fraiches-farcies", + "name": "Pates-fraiches-farcies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:legumineuses-en-conserve", + "products": 1, + "name": "es:Legumineuses-en-conserve", + "id": "es:legumineuses-en-conserve" + }, + { + "products": 1, + "id": "fr:boeufs-haches", + "name": "Boeufs-haches", + "url": "https://fr.openfoodfacts.org/categorie/boeufs-haches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-cereales-et-legumes-en-grains", + "products": 1, + "id": "fr:melanges-de-cereales-et-legumes-en-grains", + "name": "Melanges-de-cereales-et-legumes-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ail-semoule", + "name": "Ail-semoule", + "id": "fr:ail-semoule", + "products": 1 + }, + { + "name": "Bigarreaux-rouges", + "id": "fr:bigarreaux-rouges", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bigarreaux-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cumin-moulu", + "products": 1, + "name": "Cumin-moulu", + "id": "fr:cumin-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huiles-d-olive-d-espagne", + "id": "fr:huiles-d-olive-d-espagne", + "name": "Huiles-d-olive-d-espagne", + "products": 1 + }, + { + "products": 1, + "id": "fr:quinoa-bio", + "name": "Quinoa-bio", + "url": "https://fr.openfoodfacts.org/categorie/quinoa-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/quenelles-a-la-lyonnaise", + "products": 1, + "id": "fr:quenelles-a-la-lyonnaise", + "name": "Quenelles-a-la-lyonnaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/court-bouillon-au-vin-blanc", + "id": "fr:court-bouillon-au-vin-blanc", + "name": "Court-bouillon-au-vin-blanc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/muesli-pomme-abricot-bio-et-equitable", + "id": "fr:muesli-pomme-abricot-bio-et-equitable", + "name": "Muesli-pomme-abricot-bio-et-equitable", + "products": 1 + }, + { + "name": "Cafe-a-la-chicoree", + "id": "fr:cafe-a-la-chicoree", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cafe-a-la-chicoree" + }, + { + "id": "pt:cereales-pour-bebe", + "name": "pt:Cereales-pour-bebe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:cereales-pour-bebe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:aguas-minerales", + "id": "en:aguas-minerales", + "name": "en:Aguas-minerales", + "products": 1 + }, + { + "id": "fr:champagnes-extra-bruts", + "name": "Champagnes extra bruts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/champagnes-extra-bruts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oak-smoked-scottish-salmon", + "name": "en:Oak-smoked-scottish-salmon", + "id": "en:oak-smoked-scottish-salmon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coquilles-saint-jacques-a-la-charentaise", + "products": 1, + "id": "fr:coquilles-saint-jacques-a-la-charentaise", + "name": "Coquilles-saint-jacques-a-la-charentaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cuisine-exotique", + "id": "fr:cuisine-exotique", + "name": "Cuisine-exotique", + "products": 1 + }, + { + "name": "it:Chips-et-frites", + "id": "it:chips-et-frites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:chips-et-frites" + }, + { + "products": 1, + "name": "Boisson-gazeuse-aromatise-aux-fruits", + "id": "fr:boisson-gazeuse-aromatise-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-aromatise-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vinaigres-de-xeres", + "id": "en:vinaigres-de-xeres", + "name": "en:Vinaigres-de-xeres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-pomme", + "name": "Purees-de-pomme", + "id": "fr:purees-de-pomme", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:gruau-de-ble", + "name": "de:Gruau-de-ble", + "id": "de:gruau-de-ble", + "products": 1 + }, + { + "name": "Haricots-verts-tres-fins-surgeles-bio", + "id": "fr:haricots-verts-tres-fins-surgeles-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/haricots-verts-tres-fins-surgeles-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-roties-et-cuisinees", + "id": "fr:viandes-roties-et-cuisinees", + "name": "Viandes-roties-et-cuisinees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poireaux-a-la-creme", + "name": "Poireaux-a-la-creme", + "id": "fr:poireaux-a-la-creme", + "products": 1 + }, + { + "products": 1, + "name": "Hove", + "id": "fr:hove", + "url": "https://fr.openfoodfacts.org/categorie/hove" + }, + { + "products": 1, + "name": "Chocolats-au-lait-fourres-au-cognac", + "id": "fr:chocolats-au-lait-fourres-au-cognac", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-fourres-au-cognac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/echalote-surgelee", + "products": 1, + "name": "Echalote-surgelee", + "id": "fr:echalote-surgelee" + }, + { + "name": "Produit-au-wasabi", + "id": "fr:produit-au-wasabi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-au-wasabi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-fromage-frais", + "id": "fr:sandwichs-au-fromage-frais", + "name": "Sandwichs-au-fromage-frais", + "products": 1 + }, + { + "id": "en:chocolats-noirs-aux-feves-de-cacao", + "name": "en:Chocolats-noirs-aux-feves-de-cacao", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-noirs-aux-feves-de-cacao" + }, + { + "products": 1, + "name": "Creme-fraiche-de-brebis", + "id": "fr:creme-fraiche-de-brebis", + "url": "https://fr.openfoodfacts.org/categorie/creme-fraiche-de-brebis" + }, + { + "products": 1, + "name": "Mousse", + "id": "fr:mousse", + "url": "https://fr.openfoodfacts.org/categorie/mousse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-surgeles", + "id": "fr:filets-de-poulet-surgeles", + "name": "Filets-de-poulet-surgeles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-lactose", + "id": "fr:sans-lactose", + "name": "Sans-lactose", + "products": 1 + }, + { + "products": 1, + "name": "Amandes-hachees", + "id": "fr:amandes-hachees", + "url": "https://fr.openfoodfacts.org/categorie/amandes-hachees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fromages-aux-epices", + "products": 1, + "id": "fr:fromages-aux-epices", + "name": "Fromages-aux-epices" + }, + { + "name": "Melange-de-graines-pour-salade", + "id": "fr:melange-de-graines-pour-salade", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melange-de-graines-pour-salade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sels-reduits-en-sodium", + "products": 1, + "name": "Sels-reduits-en-sodium", + "id": "fr:sels-reduits-en-sodium" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-de-seiches", + "products": 1, + "id": "fr:salades-de-seiches", + "name": "Salades-de-seiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nouilles-au-ble-tendre", + "name": "Nouilles-au-ble-tendre", + "id": "fr:nouilles-au-ble-tendre", + "products": 1 + }, + { + "products": 1, + "name": "en:Galettes-de-ble-noir", + "id": "en:galettes-de-ble-noir", + "url": "https://fr.openfoodfacts.org/categorie/en:galettes-de-ble-noir" + }, + { + "name": "en:Blanc-de-poulet", + "id": "en:blanc-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:blanc-de-poulet" + }, + { + "products": 1, + "id": "fr:cocktail-de-fruits-de-mer", + "name": "Cocktail-de-fruits-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/cocktail-de-fruits-de-mer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-fraiches-aux-oeufs-frais", + "id": "fr:pates-fraiches-aux-oeufs-frais", + "name": "Pates-fraiches-aux-oeufs-frais", + "products": 1 + }, + { + "id": "fr:tortellini-a-la-viande", + "name": "Tortellini-a-la-viande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tortellini-a-la-viande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-a-la-provencale", + "products": 1, + "id": "fr:filets-de-poulet-a-la-provencale", + "name": "Filets-de-poulet-a-la-provencale" + }, + { + "products": 1, + "id": "fr:riz-thai-jasmine", + "name": "Riz-thai-jasmine", + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-jasmine" + }, + { + "products": 1, + "name": "Fruit-en-afgeleide-producten", + "id": "fr:fruit-en-afgeleide-producten", + "url": "https://fr.openfoodfacts.org/categorie/fruit-en-afgeleide-producten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:boissons-aux-legumes", + "products": 1, + "name": "pl:Boissons-aux-legumes", + "id": "pl:boissons-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gewurze", + "id": "fr:gewurze", + "name": "Gewurze", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pomme-bio", + "id": "fr:puree-de-pomme-bio", + "name": "Puree-de-pomme-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-au-cacao", + "products": 1, + "name": "Biscuits-fourres-au-cacao", + "id": "fr:biscuits-fourres-au-cacao" + }, + { + "id": "fr:esturgeons-fumes", + "name": "Esturgeons-fumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/esturgeons-fumes" + }, + { + "products": 1, + "id": "fr:genoises-a-la-framboise", + "name": "Genoises-a-la-framboise", + "url": "https://fr.openfoodfacts.org/categorie/genoises-a-la-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ontbijt", + "products": 1, + "id": "fr:ontbijt", + "name": "Ontbijt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:nerello-mascalese", + "products": 1, + "name": "it:Nerello-mascalese", + "id": "it:nerello-mascalese" + }, + { + "products": 1, + "name": "Rillettes-de-maquereau-a-la-tomate", + "id": "fr:rillettes-de-maquereau-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-maquereau-a-la-tomate" + }, + { + "name": "Soupes-de-brocoli", + "id": "fr:soupes-de-brocoli", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-brocoli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-rouge-biologique-igp", + "products": 1, + "name": "Vin-rouge-biologique-igp", + "id": "fr:vin-rouge-biologique-igp" + }, + { + "products": 1, + "id": "fr:poudre-chocolatee", + "name": "Poudre-chocolatee", + "url": "https://fr.openfoodfacts.org/categorie/poudre-chocolatee" + }, + { + "products": 1, + "name": "Fromage-frais-nature", + "id": "fr:fromage-frais-nature", + "url": "https://fr.openfoodfacts.org/categorie/fromage-frais-nature" + }, + { + "name": "Sauces-au-poivre-deshydratees", + "id": "fr:sauces-au-poivre-deshydratees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-poivre-deshydratees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-bio", + "name": "The-bio", + "id": "fr:the-bio", + "products": 1 + }, + { + "name": "Salades-melees-deja-lave", + "id": "fr:salades-melees-deja-lave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-melees-deja-lave" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/charcuteries-allegees-en-matiere-grasse", + "name": "Charcuteries-allegees-en-matiere-grasse", + "id": "fr:charcuteries-allegees-en-matiere-grasse", + "products": 1 + }, + { + "products": 1, + "id": "fr:sticks-bretzels", + "name": "Sticks-bretzels", + "url": "https://fr.openfoodfacts.org/categorie/sticks-bretzels" + }, + { + "products": 1, + "id": "fr:biscuits-fourres-chocolat-noisette", + "name": "Biscuits-fourres-chocolat-noisette", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourres-chocolat-noisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/palmiers-allonges-aux-gouttes-de-chocolat", + "products": 1, + "name": "Palmiers-allonges-aux-gouttes-de-chocolat", + "id": "fr:palmiers-allonges-aux-gouttes-de-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-aromatise-au-caramel", + "products": 1, + "name": "The-aromatise-au-caramel", + "id": "fr:the-aromatise-au-caramel" + }, + { + "id": "fr:sticks-et-bretzels", + "name": "Sticks-et-bretzels", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sticks-et-bretzels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mayonnaise-aux-oeufs", + "products": 1, + "id": "fr:mayonnaise-aux-oeufs", + "name": "Mayonnaise-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:petit-dejeuners", + "products": 1, + "name": "ru:Petit-dejeuners", + "id": "ru:petit-dejeuners" + }, + { + "products": 1, + "name": "en:Dindes", + "id": "en:dindes", + "url": "https://fr.openfoodfacts.org/categorie/en:dindes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:saucisses-de-porc", + "products": 1, + "id": "en:saucisses-de-porc", + "name": "en:Saucisses-de-porc" + }, + { + "name": "Creme-dessert-semoule", + "id": "fr:creme-dessert-semoule", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-dessert-semoule" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-de-riz-au-cacao", + "products": 1, + "name": "Desserts de riz au cacao", + "id": "en:cocoa-rice-desserts" + }, + { + "name": "Huile-de-noix-bio", + "id": "fr:huile-de-noix-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/huile-de-noix-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compement-alimentaire", + "name": "Compement-alimentaire", + "id": "fr:compement-alimentaire", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambno-superieur", + "products": 1, + "id": "fr:jambno-superieur", + "name": "Jambno-superieur" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/formaggio-vaccino", + "name": "Formaggio-vaccino", + "id": "fr:formaggio-vaccino", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-aperitif-a-base-de-tomate-et-de-basilic", + "name": "Preparation-pour-aperitif-a-base-de-tomate-et-de-basilic", + "id": "fr:preparation-pour-aperitif-a-base-de-tomate-et-de-basilic", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-en-carton", + "id": "fr:soupes-en-carton", + "name": "Soupes-en-carton", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/morues-en-conserve", + "id": "fr:morues-en-conserve", + "name": "Morues-en-conserve", + "products": 1 + }, + { + "id": "fr:vieux-lille", + "name": "Vieux-lille", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vieux-lille" + }, + { + "products": 1, + "name": "Penne-d-alsace", + "id": "fr:penne-d-alsace", + "url": "https://fr.openfoodfacts.org/categorie/penne-d-alsace" + }, + { + "id": "fr:aiguillettes-de-dinde", + "name": "Aiguillettes-de-dinde", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-dinde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-du-sud-ouest", + "products": 1, + "name": "Vins-du-sud-ouest", + "id": "fr:vins-du-sud-ouest" + }, + { + "name": "Gaufrettes-fourees", + "id": "fr:gaufrettes-fourees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gaufrettes-fourees" + }, + { + "products": 1, + "id": "fr:weichkase", + "name": "Weichkase", + "url": "https://fr.openfoodfacts.org/categorie/weichkase" + }, + { + "name": "Bieres-au-quinoa", + "id": "fr:bieres-au-quinoa", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bieres-au-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rigatoni", + "name": "Rigatoni", + "id": "fr:rigatoni", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:boissons-a-l-avoine", + "products": 1, + "name": "es:Boissons-a-l-avoine", + "id": "es:boissons-a-l-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galette-des-rois-a-la-pomme", + "products": 1, + "name": "Galette-des-rois-a-la-pomme", + "id": "fr:galette-des-rois-a-la-pomme" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pains-au-lait", + "products": 1, + "name": "en:Pains-au-lait", + "id": "en:pains-au-lait" + }, + { + "id": "fr:jambons-iberiques-de-gland", + "name": "Jambons ibériques de gland", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambons-iberiques-de-gland" + }, + { + "products": 1, + "id": "fr:pintades-farcies", + "name": "Pintades-farcies", + "url": "https://fr.openfoodfacts.org/categorie/pintades-farcies" + }, + { + "products": 1, + "name": "pl:Edulcorants", + "id": "pl:edulcorants", + "url": "https://fr.openfoodfacts.org/categorie/pl:edulcorants" + }, + { + "products": 1, + "id": "fr:cidre-breton-bio-doux", + "name": "Cidre-breton-bio-doux", + "url": "https://fr.openfoodfacts.org/categorie/cidre-breton-bio-doux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zalabia", + "products": 1, + "name": "Zalabia", + "id": "fr:zalabia" + }, + { + "products": 1, + "id": "fr:cidre-cornouaille", + "name": "Cidre-cornouaille", + "url": "https://fr.openfoodfacts.org/categorie/cidre-cornouaille" + }, + { + "id": "fr:brown-ale", + "name": "Brown-ale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/brown-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:chocolats-au-lait-aux-noisettes", + "products": 1, + "id": "it:chocolats-au-lait-aux-noisettes", + "name": "it:Chocolats-au-lait-aux-noisettes" + }, + { + "products": 1, + "id": "fr:pain-garni", + "name": "Pain-garni", + "url": "https://fr.openfoodfacts.org/categorie/pain-garni" + }, + { + "id": "en:fizzy-drinks", + "name": "en:Fizzy-drinks", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fizzy-drinks" + }, + { + "products": 1, + "id": "fr:cepe", + "name": "Cepe", + "url": "https://fr.openfoodfacts.org/categorie/cepe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:thons-en-conserve", + "id": "it:thons-en-conserve", + "name": "it:Thons-en-conserve", + "products": 1 + }, + { + "products": 1, + "name": "Liqueurs-de-menthe", + "id": "fr:liqueurs-de-menthe", + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-menthe" + }, + { + "products": 1, + "name": "Pates-a-l-ail", + "id": "fr:pates-a-l-ail", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sardines-a-l-huile-et-au-piment", + "products": 1, + "id": "en:sardines-a-l-huile-et-au-piment", + "name": "en:Sardines-a-l-huile-et-au-piment" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/friandises", + "name": "Friandises", + "id": "fr:friandises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiments-asiatiques", + "id": "fr:assortiments-asiatiques", + "name": "Assortiments-asiatiques", + "products": 1 + }, + { + "name": "en:Black-bread-croutons-with-crab-flavour", + "id": "en:black-bread-croutons-with-crab-flavour", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:black-bread-croutons-with-crab-flavour" + }, + { + "name": "Boissons-concentres", + "id": "fr:boissons-concentres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-concentres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:oliven", + "products": 1, + "name": "de:Oliven", + "id": "de:oliven" + }, + { + "products": 1, + "name": "Glaces-a-la-chataigne", + "id": "fr:glaces-a-la-chataigne", + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-chataigne" + }, + { + "products": 1, + "name": "Jambons-dores-a-la-broche", + "id": "fr:jambons-dores-a-la-broche", + "url": "https://fr.openfoodfacts.org/categorie/jambons-dores-a-la-broche" + }, + { + "name": "en:Munsters-au-lait-pasteurise", + "id": "en:munsters-au-lait-pasteurise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:munsters-au-lait-pasteurise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pois-casses-et-de-legumes-issus-de-l-agriculture-bioogique", + "products": 1, + "id": "fr:puree-de-pois-casses-et-de-legumes-issus-de-l-agriculture-bioogique", + "name": "Puree-de-pois-casses-et-de-legumes-issus-de-l-agriculture-bioogique" + }, + { + "id": "fr:tartes-a-l-oignon", + "name": "Tartes-a-l-oignon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-a-l-oignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-de-hollande", + "products": 1, + "name": "Moules-de-hollande", + "id": "fr:moules-de-hollande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tajine-cuisine", + "products": 1, + "id": "fr:tajine-cuisine", + "name": "Tajine-cuisine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cepes-deshydrates", + "id": "fr:cepes-deshydrates", + "name": "Cepes-deshydrates", + "products": 1 + }, + { + "products": 1, + "id": "fr:tomates-bio", + "name": "Tomates-bio", + "url": "https://fr.openfoodfacts.org/categorie/tomates-bio" + }, + { + "name": "Vins-blancs-liquoreux", + "id": "fr:vins-blancs-liquoreux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-blancs-liquoreux" + }, + { + "products": 1, + "id": "fr:sandwichs-au-poulet-bacon", + "name": "Sandwichs-au-poulet-bacon", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-poulet-bacon" + }, + { + "products": 1, + "name": "de:Jus-de-citron", + "id": "de:jus-de-citron", + "url": "https://fr.openfoodfacts.org/categorie/de:jus-de-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/helados-y-sorbetes", + "name": "Helados-y-sorbetes", + "id": "fr:helados-y-sorbetes", + "products": 1 + }, + { + "name": "Piccalilli", + "id": "fr:piccalilli", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piccalilli" + }, + { + "products": 1, + "name": "Sauvage", + "id": "fr:sauvage", + "url": "https://fr.openfoodfacts.org/categorie/sauvage" + }, + { + "id": "es:eaux-aromatisees", + "name": "es:Eaux-aromatisees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:eaux-aromatisees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vin-bordeaux-rose-aop", + "name": "Vin-bordeaux-rose-aop", + "id": "fr:vin-bordeaux-rose-aop", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-framboises", + "products": 1, + "name": "en:Confitures-de-framboises", + "id": "en:confitures-de-framboises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saumon-seche", + "name": "Saumon-seche", + "id": "fr:saumon-seche", + "products": 1 + }, + { + "name": "en:Sauces-beurre-blanc", + "id": "en:sauces-beurre-blanc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-beurre-blanc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-grille-complet", + "name": "Pain-grille-complet", + "id": "fr:pain-grille-complet", + "products": 1 + }, + { + "id": "fr:sels-mineraux", + "name": "Sels-mineraux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sels-mineraux" + }, + { + "name": "Le-batonnet-moelleux", + "id": "fr:le-batonnet-moelleux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/le-batonnet-moelleux" + }, + { + "name": "ru:Lager-beer-pasteurized", + "id": "ru:lager-beer-pasteurized", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:lager-beer-pasteurized" + }, + { + "name": "en:Raclettes", + "id": "en:raclettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:raclettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-soja-en-conserve", + "products": 1, + "id": "fr:pousses-de-soja-en-conserve", + "name": "Pousses-de-soja-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:comidas-preparadas-en-conserva", + "products": 1, + "name": "ru:Comidas-preparadas-en-conserva", + "id": "ru:comidas-preparadas-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/specialites-a-base-de-mais", + "products": 1, + "name": "Specialites-a-base-de-mais", + "id": "fr:specialites-a-base-de-mais" + }, + { + "name": "nl:Chips-et-frites", + "id": "nl:chips-et-frites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:chips-et-frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bonbons-acidules-tendres", + "products": 1, + "id": "fr:bonbons-acidules-tendres", + "name": "Bonbons-acidules-tendres" + }, + { + "products": 1, + "name": "Raisins-rouges-sans-pepins", + "id": "fr:raisins-rouges-sans-pepins", + "url": "https://fr.openfoodfacts.org/categorie/raisins-rouges-sans-pepins" + }, + { + "products": 1, + "name": "xx:Naturliches-mineralwasser", + "id": "xx:naturliches-mineralwasser", + "url": "https://fr.openfoodfacts.org/categorie/xx:naturliches-mineralwasser" + }, + { + "products": 1, + "name": "Boissons-specialites-a-diluer", + "id": "fr:boissons-specialites-a-diluer", + "url": "https://fr.openfoodfacts.org/categorie/boissons-specialites-a-diluer" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:huiles-de-fruits-et-graines-de-fruits", + "name": "nl:Huiles-de-fruits-et-graines-de-fruits", + "id": "nl:huiles-de-fruits-et-graines-de-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-a-base-de-concentres", + "products": 1, + "id": "fr:boissons-a-base-de-concentres", + "name": "Boissons-a-base-de-concentres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:laits-entiers", + "products": 1, + "name": "pt:Laits-entiers", + "id": "pt:laits-entiers" + }, + { + "name": "Concentres-avec-pulpes", + "id": "fr:concentres-avec-pulpes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/concentres-avec-pulpes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/concentres-a-base-d-orange", + "products": 1, + "id": "fr:concentres-a-base-d-orange", + "name": "Concentres-a-base-d-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirop-aromatises-a-base-de-concentres", + "name": "Sirop-aromatises-a-base-de-concentres", + "id": "fr:sirop-aromatises-a-base-de-concentres", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-suisses-aux-fruits", + "products": 1, + "id": "fr:petits-suisses-aux-fruits", + "name": "Petits-suisses-aux-fruits" + }, + { + "id": "fr:succedanes-de-caviar", + "name": "Succedanes-de-caviar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/succedanes-de-caviar" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:digestive-biscuits", + "name": "en:Digestive-biscuits", + "id": "en:digestive-biscuits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-ou-coulis-de-fruit", + "id": "fr:puree-ou-coulis-de-fruit", + "name": "Puree-ou-coulis-de-fruit", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/puree-de-tomates-fraiches", + "products": 1, + "id": "fr:puree-de-tomates-fraiches", + "name": "Puree-de-tomates-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-au-fruits-a-coque", + "id": "fr:chocolats-noirs-au-fruits-a-coque", + "name": "Chocolats-noirs-au-fruits-a-coque", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:champignons-de-paris-eminces-en-conserve", + "products": 1, + "name": "xx:Champignons-de-paris-eminces-en-conserve", + "id": "xx:champignons-de-paris-eminces-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:gaufres-fourrees", + "products": 1, + "id": "ar:gaufres-fourrees", + "name": "ar:Gaufres-fourrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-noix", + "products": 1, + "name": "Tarte-aux-noix", + "id": "fr:tarte-aux-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-instantanee", + "products": 1, + "name": "Boisson-instantanee", + "id": "fr:boisson-instantanee" + }, + { + "id": "fr:chataignes-decoprtiquees-entieres", + "name": "Chataignes-decoprtiquees-entieres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chataignes-decoprtiquees-entieres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sauces-au-soja", + "name": "es:Sauces-au-soja", + "id": "es:sauces-au-soja", + "products": 1 + }, + { + "id": "fr:produits-energisants", + "name": "Produits-energisants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produits-energisants" + }, + { + "name": "Cereales-au-fruits-secs", + "id": "fr:cereales-au-fruits-secs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cereales-au-fruits-secs" + }, + { + "products": 1, + "name": "Boissons-vegetales-a-l-avoine", + "id": "fr:boissons-vegetales-a-l-avoine", + "url": "https://fr.openfoodfacts.org/categorie/boissons-vegetales-a-l-avoine" + }, + { + "id": "fr:feuilletes-al-emmental-rape", + "name": "Feuilletes-al-emmental-rape", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/feuilletes-al-emmental-rape" + }, + { + "name": "it:Confitures-de-fraises", + "id": "it:confitures-de-fraises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:confitures-de-fraises" + }, + { + "products": 1, + "name": "nl:Puddingpoeder", + "id": "nl:puddingpoeder", + "url": "https://fr.openfoodfacts.org/categorie/nl:puddingpoeder" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/fusilis", + "id": "fr:fusilis", + "name": "Fusilis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pruneaux-d-agens-avec-noyaux", + "id": "fr:pruneaux-d-agens-avec-noyaux", + "name": "Pruneaux-d-agens-avec-noyaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:%E9%86%A4%E6%B2%B9", + "products": 1, + "name": "ja:醤油", + "id": "ja:醤油" + }, + { + "id": "fr:meules", + "name": "Meules", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/meules" + }, + { + "name": "Quinoa-prepare", + "id": "fr:quinoa-prepare", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quinoa-prepare" + }, + { + "products": 1, + "id": "fr:trio-de-quinoas-blond-rouge-noir-bio-et-ethiquable", + "name": "Trio-de-quinoas-blond-rouge-noir-bio-et-ethiquable", + "url": "https://fr.openfoodfacts.org/categorie/trio-de-quinoas-blond-rouge-noir-bio-et-ethiquable" + }, + { + "id": "fr:tartes-epinards-chevre", + "name": "Tartes-epinards-chevre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartes-epinards-chevre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiseries-au-chocolat", + "name": "Confiseries-au-chocolat", + "id": "fr:confiseries-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mendiant", + "products": 1, + "id": "fr:mendiant", + "name": "Mendiant" + }, + { + "products": 1, + "name": "Chocolats-au-lait-aux-pistaches", + "id": "fr:chocolats-au-lait-aux-pistaches", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-aux-pistaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:kit-pour-fajitas", + "id": "en:kit-pour-fajitas", + "name": "en:Kit-pour-fajitas", + "products": 1 + }, + { + "name": "Thons-en-tranches", + "id": "fr:thons-en-tranches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/thons-en-tranches" + }, + { + "id": "fr:petit-suisse-nature", + "name": "Petit-suisse-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/petit-suisse-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thons-entiers-au-naturel", + "name": "Thons-entiers-au-naturel", + "id": "fr:thons-entiers-au-naturel", + "products": 1 + }, + { + "products": 1, + "id": "fr:macedoine-de-fruits", + "name": "Macedoine-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/macedoine-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:laits-aromatises-au-chocolat", + "products": 1, + "name": "es:Laits-aromatises-au-chocolat", + "id": "es:laits-aromatises-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-fruits-de-la-passion", + "id": "fr:boissons-au-fruits-de-la-passion", + "name": "Boissons-au-fruits-de-la-passion", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartelettes-au-chocolat-au-lait", + "id": "fr:tartelettes-au-chocolat-au-lait", + "name": "Tartelettes-au-chocolat-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lumaconi", + "id": "fr:lumaconi", + "name": "Lumaconi", + "products": 1 + }, + { + "id": "fr:pains-de-mie-tranches", + "name": "Pains-de-mie-tranches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-tranches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-de-mie-au-seigle", + "id": "fr:pains-de-mie-au-seigle", + "name": "Pains-de-mie-au-seigle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-alimentaires-aux-oeufs-frais", + "id": "fr:pates-alimentaires-aux-oeufs-frais", + "name": "Pates-alimentaires-aux-oeufs-frais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-de-noel", + "products": 1, + "id": "fr:jambons-de-noel", + "name": "Jambons-de-noel" + }, + { + "name": "Ravioli-aux-oeufs-frais", + "id": "fr:ravioli-aux-oeufs-frais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ravioli-aux-oeufs-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-d-oeufs", + "products": 1, + "name": "Plats-a-base-d-oeufs", + "id": "fr:plats-a-base-d-oeufs" + }, + { + "name": "Penaeus-vanamei", + "id": "fr:penaeus-vanamei", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/penaeus-vanamei" + }, + { + "id": "fr:boissons-sucrees-a-base-de-nectar-et-jus-de-fruis", + "name": "Boissons-sucrees-a-base-de-nectar-et-jus-de-fruis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-sucrees-a-base-de-nectar-et-jus-de-fruis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-nectar-a-base-de-concentre", + "name": "Jus-nectar-a-base-de-concentre", + "id": "fr:jus-nectar-a-base-de-concentre", + "products": 1 + }, + { + "products": 1, + "name": "en:Origan-seche-moulu", + "id": "en:origan-seche-moulu", + "url": "https://fr.openfoodfacts.org/categorie/en:origan-seche-moulu" + }, + { + "products": 1, + "id": "en:unleavened-rye-bread", + "name": "Pains azymes au seigle", + "url": "https://fr.openfoodfacts.org/categorie/pains-azymes-au-seigle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:compotes-pommes-myrtille", + "name": "en:Compotes-pommes-myrtille", + "id": "en:compotes-pommes-myrtille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-rotis", + "name": "Filets-de-poulet-rotis", + "id": "fr:filets-de-poulet-rotis", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-bsae-de-poulet", + "name": "Plats-a-bsae-de-poulet", + "id": "fr:plats-a-bsae-de-poulet", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateaux-et-patisseries", + "products": 1, + "name": "Gateaux-et-patisseries", + "id": "fr:gateaux-et-patisseries" + }, + { + "name": "Preparation-pour-sauces", + "id": "fr:preparation-pour-sauces", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-sauces" + }, + { + "products": 1, + "name": "Sauces-au-piment", + "id": "fr:sauces-au-piment", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-piment" + }, + { + "products": 1, + "name": "Mozzarella-rapee", + "id": "fr:mozzarella-rapee", + "url": "https://fr.openfoodfacts.org/categorie/mozzarella-rapee" + }, + { + "name": "en:Japanese", + "id": "en:japanese", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:japanese" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/roules-a-la-fraise", + "products": 1, + "id": "fr:roules-a-la-fraise", + "name": "Roules-a-la-fraise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cubes-d-ecorces-de-citrons-confites", + "products": 1, + "id": "fr:cubes-d-ecorces-de-citrons-confites", + "name": "Cubes-d-ecorces-de-citrons-confites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-grisons", + "products": 1, + "id": "fr:viandes-de-grisons", + "name": "Viandes-de-grisons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-a-cuire", + "id": "fr:pains-a-cuire", + "name": "Pains-a-cuire", + "products": 1 + }, + { + "products": 1, + "id": "fr:biftecks-haches", + "name": "Biftecks-haches", + "url": "https://fr.openfoodfacts.org/categorie/biftecks-haches" + }, + { + "products": 1, + "name": "Cailles-preparees", + "id": "fr:cailles-preparees", + "url": "https://fr.openfoodfacts.org/categorie/cailles-preparees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/shiratakis-de-konjac", + "name": "Shiratakis-de-konjac", + "id": "fr:shiratakis-de-konjac", + "products": 1 + }, + { + "products": 1, + "id": "it:jus-de-fruits-a-base-de-concentre", + "name": "it:Jus-de-fruits-a-base-de-concentre", + "url": "https://fr.openfoodfacts.org/categorie/it:jus-de-fruits-a-base-de-concentre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-sole", + "products": 1, + "id": "fr:filets-de-sole", + "name": "Filets-de-sole" + }, + { + "products": 1, + "id": "fr:puree-de-pommes-et-de-pruneaux", + "name": "Puree-de-pommes-et-de-pruneaux", + "url": "https://fr.openfoodfacts.org/categorie/puree-de-pommes-et-de-pruneaux" + }, + { + "products": 1, + "id": "fr:nouilles-sautees", + "name": "Nouilles-sautees", + "url": "https://fr.openfoodfacts.org/categorie/nouilles-sautees" + }, + { + "name": "Filets-de-maquereaux-tomate-basilic-olives", + "id": "fr:filets-de-maquereaux-tomate-basilic-olives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-tomate-basilic-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambons-dd", + "name": "Jambons-dd", + "id": "fr:jambons-dd", + "products": 1 + }, + { + "products": 1, + "id": "fr:cremes-au-vinaigre", + "name": "Cremes-au-vinaigre", + "url": "https://fr.openfoodfacts.org/categorie/cremes-au-vinaigre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-fromage-frais", + "products": 1, + "id": "fr:mousses-fromage-frais", + "name": "Mousses-fromage-frais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-fromage-frais-sucre", + "id": "fr:mousses-fromage-frais-sucre", + "name": "Mousses-fromage-frais-sucre", + "products": 1 + }, + { + "name": "Cancoillotte-nature", + "id": "fr:cancoillotte-nature", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cancoillotte-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/spahhettini", + "name": "Spahhettini", + "id": "fr:spahhettini", + "products": 1 + }, + { + "products": 1, + "name": "Garnitures-pour-flammekuche", + "id": "fr:garnitures-pour-flammekuche", + "url": "https://fr.openfoodfacts.org/categorie/garnitures-pour-flammekuche" + }, + { + "name": "it:Vino-frizzante", + "id": "it:vino-frizzante", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:vino-frizzante" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pale-ale", + "products": 1, + "id": "de:pale-ale", + "name": "de:Pale-ale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pimenton-ahumado", + "name": "es:Pimenton-ahumado", + "id": "es:pimenton-ahumado", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-traditionnels", + "products": 1, + "id": "fr:produits-traditionnels", + "name": "Produits-traditionnels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:pates-a-tartiner", + "products": 1, + "id": "nl:pates-a-tartiner", + "name": "nl:Pates-a-tartiner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-superieur-avec-couenne", + "id": "fr:jambon-superieur-avec-couenne", + "name": "Jambon-superieur-avec-couenne", + "products": 1 + }, + { + "name": "Perdreaux", + "id": "fr:perdreaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/perdreaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/potimarrons-surgeles", + "products": 1, + "name": "Potimarrons-surgeles", + "id": "fr:potimarrons-surgeles" + }, + { + "id": "fr:aliments-japonais", + "name": "Aliments-japonais", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/aliments-japonais" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-chaudes", + "name": "Sardines-chaudes", + "id": "fr:sardines-chaudes", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-a-tartiner-sucrees", + "name": "Pates-a-tartiner-sucrees", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-sucrees" + }, + { + "id": "fr:riz-cuisines", + "name": "Riz-cuisines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-cuisines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-lieu", + "products": 1, + "name": "Filets-de-lieu", + "id": "fr:filets-de-lieu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tartines", + "products": 1, + "name": "en:Tartines", + "id": "en:tartines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chips-ondulees", + "products": 1, + "name": "en:Chips-ondulees", + "id": "en:chips-ondulees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-deshydratees", + "products": 1, + "name": "Graines-deshydratees", + "id": "fr:graines-deshydratees" + }, + { + "id": "fr:vins-de-cahors", + "name": "Vins-de-cahors", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-cahors" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-sucrees", + "products": 1, + "name": "Biscuits-sucrees", + "id": "fr:biscuits-sucrees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bloc-de-foie-gras-de-canard-au-sel", + "products": 1, + "id": "fr:bloc-de-foie-gras-de-canard-au-sel", + "name": "Bloc-de-foie-gras-de-canard-au-sel" + }, + { + "products": 1, + "id": "fr:saucisses-droites-pilat", + "name": "Saucisses-droites-pilat", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-droites-pilat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-boyaux-naturels", + "name": "Saucisses-boyaux-naturels", + "id": "fr:saucisses-boyaux-naturels", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartare-d-algues-au-citron-confit", + "products": 1, + "name": "Tartare-d-algues-au-citron-confit", + "id": "fr:tartare-d-algues-au-citron-confit" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartares-d-algues", + "id": "fr:tartares-d-algues", + "name": "Tartares-d-algues", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frutas-en-conserva", + "products": 1, + "name": "Frutas-en-conserva", + "id": "fr:frutas-en-conserva" + }, + { + "products": 1, + "name": "en:Cidres-demi-secs", + "id": "en:cidres-demi-secs", + "url": "https://fr.openfoodfacts.org/categorie/en:cidres-demi-secs" + }, + { + "products": 1, + "name": "Physalys", + "id": "fr:physalys", + "url": "https://fr.openfoodfacts.org/categorie/physalys" + }, + { + "name": "Gelees-de-citrons-verts", + "id": "fr:gelees-de-citrons-verts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-citrons-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:snacks", + "id": "es:snacks", + "name": "es:Snacks", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-rooster", + "products": 1, + "name": "Pommes-de-terre-rooster", + "id": "fr:pommes-de-terre-rooster" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pois-chiches-secs-casses", + "products": 1, + "id": "fr:pois-chiches-secs-casses", + "name": "Pois-chiches-secs-casses" + }, + { + "products": 1, + "id": "en:apple-and-pear-juices", + "name": "en:Apple-and-pear-juices", + "url": "https://fr.openfoodfacts.org/categorie/en:apple-and-pear-juices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pousses-de-alfalfa-frais", + "name": "Pousses de alfalfa frais", + "id": "en:fresh-alfalfa-sprouts", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivrons-marines", + "id": "fr:poivrons-marines", + "name": "Poivrons-marines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-aux-poivrons", + "products": 1, + "name": "Olives-vertes-aux-poivrons", + "id": "fr:olives-vertes-aux-poivrons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaurts-natures", + "name": "Yaurts-natures", + "id": "fr:yaurts-natures", + "products": 1 + }, + { + "products": 1, + "id": "fr:taboules-mexicains", + "name": "Taboules-mexicains", + "url": "https://fr.openfoodfacts.org/categorie/taboules-mexicains" + }, + { + "products": 1, + "name": "Costers-del-segre", + "id": "fr:costers-del-segre", + "url": "https://fr.openfoodfacts.org/categorie/costers-del-segre" + }, + { + "products": 1, + "id": "fr:grignan-les-adhemar", + "name": "Grignan-les-adhemar", + "url": "https://fr.openfoodfacts.org/categorie/grignan-les-adhemar" + }, + { + "products": 1, + "id": "fr:cacahuetes-grillees-a-sec", + "name": "Cacahuetes-grillees-a-sec", + "url": "https://fr.openfoodfacts.org/categorie/cacahuetes-grillees-a-sec" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-a-la-cerise", + "id": "fr:tartes-a-la-cerise", + "name": "Tartes-a-la-cerise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sans-lait", + "products": 1, + "id": "en:sans-lait", + "name": "en:Sans-lait" + }, + { + "products": 1, + "name": "es:Epices", + "id": "es:epices", + "url": "https://fr.openfoodfacts.org/categorie/es:epices" + }, + { + "products": 1, + "name": "Pates-a-tartiner-a-la-vanille", + "id": "fr:pates-a-tartiner-a-la-vanille", + "url": "https://fr.openfoodfacts.org/categorie/pates-a-tartiner-a-la-vanille" + }, + { + "id": "de:chocolates-negros", + "name": "de:Chocolates-negros", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:chocolates-negros" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:galettes-de-riz", + "id": "es:galettes-de-riz", + "name": "es:Galettes-de-riz", + "products": 1 + }, + { + "products": 1, + "name": "nl:Chocolaatjes", + "id": "nl:chocolaatjes", + "url": "https://fr.openfoodfacts.org/categorie/nl:chocolaatjes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:legumes-et-derives", + "products": 1, + "id": "sr:legumes-et-derives", + "name": "sr:Legumes-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-serano", + "products": 1, + "name": "Jambon-serano", + "id": "fr:jambon-serano" + }, + { + "id": "de:pizzas-au-salami", + "name": "de:Pizzas-au-salami", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-au-salami" + }, + { + "id": "fr:spicies", + "name": "Spicies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/spicies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bebidas-energeticas", + "id": "fr:bebidas-energeticas", + "name": "Bebidas-energeticas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jambon-de-campagne", + "products": 1, + "name": "Jambon-de-campagne", + "id": "fr:jambon-de-campagne" + }, + { + "name": "Encre-de-seiche", + "id": "fr:encre-de-seiche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/encre-de-seiche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carres-fibre-aux-3-fruits", + "name": "Carres-fibre-aux-3-fruits", + "id": "fr:carres-fibre-aux-3-fruits", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sucettes-glacees", + "products": 1, + "name": "en:Sucettes-glacees", + "id": "en:sucettes-glacees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-tournesol-en-coque-crues", + "products": 1, + "id": "en:raw-unshelled-sunflower-seeds", + "name": "Graines de tournesol en coque crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:castanhas", + "name": "pt:Castanhas", + "id": "pt:castanhas", + "products": 1 + }, + { + "products": 1, + "id": "it:coquillettes", + "name": "it:Coquillettes", + "url": "https://fr.openfoodfacts.org/categorie/it:coquillettes" + }, + { + "products": 1, + "id": "fr:farine-de-ble-bio", + "name": "Farine-de-ble-bio", + "url": "https://fr.openfoodfacts.org/categorie/farine-de-ble-bio" + }, + { + "id": "en:bebidas-de-origen-vegetal", + "name": "en:Bebidas-de-origen-vegetal", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:bebidas-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nectars-a-base-de-jus-concentres", + "products": 1, + "id": "fr:nectars-a-base-de-jus-concentres", + "name": "Nectars-a-base-de-jus-concentres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/liqueurs-de-citron", + "products": 1, + "id": "fr:liqueurs-de-citron", + "name": "Liqueurs-de-citron" + }, + { + "products": 1, + "name": "es:Fuet", + "id": "es:fuet", + "url": "https://fr.openfoodfacts.org/categorie/es:fuet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/endives-witloof", + "id": "fr:endives-witloof", + "name": "Endives-witloof", + "products": 1 + }, + { + "products": 1, + "id": "fr:pommes-de-terre-a-frire", + "name": "Pommes-de-terre-a-frire", + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-a-frire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eclairs-au-caramel", + "name": "Eclairs-au-caramel", + "id": "fr:eclairs-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-poulet-en-conserve", + "products": 1, + "name": "Filets-de-poulet-en-conserve", + "id": "fr:filets-de-poulet-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-en-conserve", + "products": 1, + "id": "fr:poulet-en-conserve", + "name": "Poulet-en-conserve" + }, + { + "id": "fr:poivron-farci-a-la-morue", + "name": "Poivron-farci-a-la-morue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poivron-farci-a-la-morue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moussaka-surgelee", + "products": 1, + "name": "Moussaka-surgelee", + "id": "fr:moussaka-surgelee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oceansea", + "products": 1, + "id": "fr:oceansea", + "name": "Oceansea" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pains-sans-gluten", + "products": 1, + "id": "es:pains-sans-gluten", + "name": "es:Pains-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:produits-sans-gluten", + "id": "es:produits-sans-gluten", + "name": "es:Produits-sans-gluten", + "products": 1 + }, + { + "name": "Croquets-aux-noisettes", + "id": "fr:croquets-aux-noisettes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/croquets-aux-noisettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/arroces", + "name": "Arroces", + "id": "fr:arroces", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-de-legumes-frais", + "products": 1, + "id": "fr:soupes-de-legumes-frais", + "name": "Soupes-de-legumes-frais" + }, + { + "name": "Boulette", + "id": "fr:boulette", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boulette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:rias-baixas", + "name": "es:Rias-baixas", + "id": "es:rias-baixas", + "products": 1 + }, + { + "name": "Croutons-pour-salade", + "id": "fr:croutons-pour-salade", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/croutons-pour-salade" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:vins-blancs", + "products": 1, + "id": "es:vins-blancs", + "name": "es:Vins-blancs" + }, + { + "products": 1, + "id": "fr:pate-de-campagne-a-l-andouille-de-guemene", + "name": "Pate-de-campagne-a-l-andouille-de-guemene", + "url": "https://fr.openfoodfacts.org/categorie/pate-de-campagne-a-l-andouille-de-guemene" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:farines", + "id": "es:farines", + "name": "es:Farines", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:boissons-non-sucrees", + "products": 1, + "name": "ar:Boissons-non-sucrees", + "id": "ar:boissons-non-sucrees" + }, + { + "name": "es:Vins", + "id": "es:vins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:vins" + }, + { + "name": "en:Tortellini-ricotta-epinards", + "id": "en:tortellini-ricotta-epinards", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:tortellini-ricotta-epinards" + }, + { + "name": "Boule-bio", + "id": "fr:boule-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boule-bio" + }, + { + "name": "Asperges-en-botte", + "id": "fr:asperges-en-botte", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/asperges-en-botte" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ortie-blanche", + "sameAs": [ + "https://www.wikidata.org/wiki/Q157626" + ], + "products": 1, + "name": "Ortie blanche", + "id": "en:white-nettle" + }, + { + "products": 1, + "name": "Plaques-de-lasagne", + "id": "fr:plaques-de-lasagne", + "url": "https://fr.openfoodfacts.org/categorie/plaques-de-lasagne" + }, + { + "products": 1, + "name": "Botte-d-asperges", + "id": "fr:botte-d-asperges", + "url": "https://fr.openfoodfacts.org/categorie/botte-d-asperges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-de-seve-de-fleur-de-coco", + "products": 1, + "name": "Sucre-de-seve-de-fleur-de-coco", + "id": "fr:sucre-de-seve-de-fleur-de-coco" + }, + { + "name": "de:Concentres-de-tomates", + "id": "de:concentres-de-tomates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:concentres-de-tomates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:maiszetmeel", + "id": "nl:maiszetmeel", + "name": "nl:Maiszetmeel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/maki-californien", + "products": 1, + "id": "en:californian-maki", + "name": "Maki californien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-aloe-vera", + "name": "Jus-aloe-vera", + "id": "fr:jus-aloe-vera", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:sushi-vegetal", + "products": 1, + "id": "es:sushi-vegetal", + "name": "es:Sushi-vegetal" + }, + { + "id": "fr:tursan", + "name": "Tursan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tursan" + }, + { + "id": "de:basilic-seche-moulu", + "name": "de:Basilic-seche-moulu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:basilic-seche-moulu" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rhizomes-de-gingembre-frais", + "id": "en:fresh-ginger-rhizomes", + "name": "Rhizomes de gingembre frais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petits-pains-grilles-multi-cereales-bio", + "id": "fr:petits-pains-grilles-multi-cereales-bio", + "name": "Petits-pains-grilles-multi-cereales-bio", + "products": 1 + }, + { + "products": 1, + "id": "fr:fromages-a-pate-demi-dure", + "name": "Fromages-a-pate-demi-dure", + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-demi-dure" + }, + { + "name": "Lebensmittelzusatzstoff", + "id": "fr:lebensmittelzusatzstoff", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lebensmittelzusatzstoff" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:jambons-fumes", + "id": "en:jambons-fumes", + "name": "en:Jambons-fumes", + "products": 1 + }, + { + "id": "fr:stollens-au-beurre", + "name": "Stollens-au-beurre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/stollens-au-beurre" + }, + { + "id": "fr:mayonnaises-a-l-ail", + "name": "Mayonnaises-a-l-ail", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-a-l-ail" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignon-de-roscoff", + "products": 1, + "name": "Oignon-de-roscoff", + "id": "fr:oignon-de-roscoff" + }, + { + "name": "Pains-d-epices-aux-figues", + "id": "fr:pains-d-epices-aux-figues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epices-aux-figues" + }, + { + "products": 1, + "id": "fr:viande-de-boeuf-sechee", + "name": "Viande-de-boeuf-sechee", + "url": "https://fr.openfoodfacts.org/categorie/viande-de-boeuf-sechee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-de-semoule", + "id": "fr:preparation-de-semoule", + "name": "Preparation-de-semoule", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-au-vin-blanc", + "id": "fr:moules-au-vin-blanc", + "name": "Moules-au-vin-blanc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:edame-de-b-e", + "products": 1, + "id": "en:edame-de-b-e", + "name": "en:Edame-de-b-e" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batonnets-a-la-pistache", + "name": "Batonnets-a-la-pistache", + "id": "fr:batonnets-a-la-pistache", + "products": 1 + }, + { + "name": "en:Chinese-foods", + "id": "en:chinese-foods", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chinese-foods" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:asperges", + "products": 1, + "name": "es:Asperges", + "id": "es:asperges" + }, + { + "id": "es:asperges-vertes", + "name": "es:Asperges-vertes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:asperges-vertes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/semoule-et-legumes-secs", + "id": "fr:semoule-et-legumes-secs", + "name": "Semoule-et-legumes-secs", + "products": 1 + }, + { + "id": "fr:七味唐辛子", + "name": "七味唐辛子", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/%E4%B8%83%E5%91%B3%E5%94%90%E8%BE%9B%E5%AD%90" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:goudas-jaunes", + "products": 1, + "id": "de:goudas-jaunes", + "name": "de:Goudas-jaunes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flans-au-cafe", + "name": "Flans-au-cafe", + "id": "fr:flans-au-cafe", + "products": 1 + }, + { + "id": "fr:goudse-kazen", + "name": "Goudse-kazen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/goudse-kazen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pastas-de-trigo-duro-integrales-o-semi-integrales", + "products": 1, + "name": "Pastas-de-trigo-duro-integrales-o-semi-integrales", + "id": "fr:pastas-de-trigo-duro-integrales-o-semi-integrales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pates-a-tartiner", + "products": 1, + "name": "es:Pates-a-tartiner", + "id": "es:pates-a-tartiner" + }, + { + "products": 1, + "id": "fr:tomates-en-conserva", + "name": "Tomates-en-conserva", + "url": "https://fr.openfoodfacts.org/categorie/tomates-en-conserva" + }, + { + "products": 1, + "name": "Liants-sauces", + "id": "fr:liants-sauces", + "url": "https://fr.openfoodfacts.org/categorie/liants-sauces" + }, + { + "products": 1, + "name": "Assaisonnements-deshydrates", + "id": "fr:assaisonnements-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/assaisonnements-deshydrates" + }, + { + "products": 1, + "id": "it:tonno-all-olio-di-oliva", + "name": "it:Tonno-all-olio-di-oliva", + "url": "https://fr.openfoodfacts.org/categorie/it:tonno-all-olio-di-oliva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thon-au-curry", + "name": "Thon-au-curry", + "id": "fr:thon-au-curry", + "products": 1 + }, + { + "products": 1, + "name": "Thon-marine-au-curry", + "id": "fr:thon-marine-au-curry", + "url": "https://fr.openfoodfacts.org/categorie/thon-marine-au-curry" + }, + { + "id": "fr:pouilly-sur-loire-val-de-loire", + "name": "Pouilly-sur-Loire Val de Loire", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pouilly-sur-loire-val-de-loire" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sel-aux-5-epices", + "products": 1, + "name": "Sel-aux-5-epices", + "id": "fr:sel-aux-5-epices" + }, + { + "name": "Sardines-grillees", + "id": "fr:sardines-grillees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sardines-grillees" + }, + { + "products": 1, + "id": "fr:pains-d-epices-au-lait", + "name": "Pains-d-epices-au-lait", + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epices-au-lait" + }, + { + "id": "fr:chocolats-au-lait-au-riz-souffle", + "name": "Chocolats-au-lait-au-riz-souffle", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-riz-souffle" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/piment-oiseau", + "products": 1, + "name": "Piment oiseau", + "id": "fr:piment-oiseau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produit-a-la-menthe", + "name": "Produit-a-la-menthe", + "id": "fr:produit-a-la-menthe", + "products": 1 + }, + { + "name": "en:Mackerels-in-tomato-sauce", + "id": "en:mackerels-in-tomato-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:mackerels-in-tomato-sauce" + }, + { + "name": "Farine-de-ble-semi-complete-du-gers-bio", + "id": "fr:farine-de-ble-semi-complete-du-gers-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farine-de-ble-semi-complete-du-gers-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-thai-long-grain", + "id": "fr:riz-thai-long-grain", + "name": "Riz-thai-long-grain", + "products": 1 + }, + { + "id": "fr:poelee-basquaise", + "name": "Poelee-basquaise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poelee-basquaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poelee-basquaise-au-jus-de-poivrons", + "name": "Poelee-basquaise-au-jus-de-poivrons", + "id": "fr:poelee-basquaise-au-jus-de-poivrons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-blanches-miniatures", + "name": "Asperges-blanches-miniatures", + "id": "fr:asperges-blanches-miniatures", + "products": 1 + }, + { + "name": "Quenelles-de-homard", + "id": "fr:quenelles-de-homard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quenelles-de-homard" + }, + { + "id": "fr:lunch-box", + "name": "Lunch-box", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lunch-box" + }, + { + "id": "fr:pommes-de-terre-en-conserve-cuisinees", + "name": "Pommes-de-terre-en-conserve-cuisinees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-en-conserve-cuisinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ko:tuiles-salees", + "name": "ko:Tuiles-salees", + "id": "ko:tuiles-salees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:frucht-und-gemusebasierte-lebensmittel", + "products": 1, + "id": "es:frucht-und-gemusebasierte-lebensmittel", + "name": "es:Frucht-und-gemusebasierte-lebensmittel" + }, + { + "id": "en:yaourts-a-la-cerise", + "name": "en:Yaourts-a-la-cerise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-a-la-cerise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:zucker", + "products": 1, + "id": "en:zucker", + "name": "en:Zucker" + }, + { + "products": 1, + "name": "Sauces-karma", + "id": "fr:sauces-karma", + "url": "https://fr.openfoodfacts.org/categorie/sauces-karma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:chocolats-au-lait", + "id": "ru:chocolats-au-lait", + "name": "ru:Chocolats-au-lait", + "products": 1 + }, + { + "products": 1, + "name": "xx:Congelados", + "id": "xx:congelados", + "url": "https://fr.openfoodfacts.org/categorie/xx:congelados" + }, + { + "products": 1, + "id": "nl:sodas-au-cola-light", + "name": "nl:Sodas-au-cola-light", + "url": "https://fr.openfoodfacts.org/categorie/nl:sodas-au-cola-light" + }, + { + "products": 1, + "id": "ro:cereales-et-pommes-de-terre", + "name": "ro:Cereales-et-pommes-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/ro:cereales-et-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:alimentos-de-origen-vegetal-congelados", + "name": "en:Alimentos-de-origen-vegetal-congelados", + "id": "en:alimentos-de-origen-vegetal-congelados", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:batatas-fritas", + "products": 1, + "id": "pt:batatas-fritas", + "name": "pt:Batatas-fritas" + }, + { + "products": 1, + "name": "en:Fromages-fondus", + "id": "en:fromages-fondus", + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-fondus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-de-millet", + "products": 1, + "id": "fr:graines-de-millet", + "name": "Graines-de-millet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:alubias-blancas", + "name": "ru:Alubias-blancas", + "id": "ru:alubias-blancas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/babas-au-limoncello", + "id": "fr:babas-au-limoncello", + "name": "Babas-au-limoncello", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:porto-branco", + "products": 1, + "name": "pt:Porto-branco", + "id": "pt:porto-branco" + }, + { + "products": 1, + "id": "fr:batonnets-de-pomme-de-terre", + "name": "Batonnets-de-pomme-de-terre", + "url": "https://fr.openfoodfacts.org/categorie/batonnets-de-pomme-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurres-a-la-baratte", + "id": "fr:beurres-a-la-baratte", + "name": "Beurres-a-la-baratte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:coloring-caramel-el-500", + "products": 1, + "name": "en:Coloring-caramel-el-500", + "id": "en:coloring-caramel-el-500" + }, + { + "products": 1, + "id": "fr:vinho-verde-doc", + "name": "Vinho-verde-doc", + "url": "https://fr.openfoodfacts.org/categorie/vinho-verde-doc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:terrines-de-caille", + "name": "en:Terrines-de-caille", + "id": "en:terrines-de-caille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:borba", + "name": "pt:Borba", + "id": "pt:borba", + "products": 1 + }, + { + "products": 1, + "id": "pt:vins-rouges", + "name": "pt:Vins-rouges", + "url": "https://fr.openfoodfacts.org/categorie/pt:vins-rouges" + }, + { + "products": 1, + "id": "pt:bolachas-dieteticas", + "name": "pt:Bolachas-dieteticas", + "url": "https://fr.openfoodfacts.org/categorie/pt:bolachas-dieteticas" + }, + { + "products": 1, + "id": "it:crema", + "name": "it:Crema", + "url": "https://fr.openfoodfacts.org/categorie/it:crema" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cote-d-agneau", + "products": 1, + "name": "Cote-d-agneau", + "id": "fr:cote-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:bresaola", + "products": 1, + "id": "it:bresaola", + "name": "it:Bresaola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:leites", + "id": "pt:leites", + "name": "pt:Leites", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:vegetables-and-derived-products", + "products": 1, + "id": "xx:vegetables-and-derived-products", + "name": "xx:Vegetables-and-derived-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-a-la-vanille", + "name": "Cremes-a-la-vanille", + "id": "fr:cremes-a-la-vanille", + "products": 1 + }, + { + "id": "pt:haricots-en-conserve", + "name": "pt:Haricots-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:haricots-en-conserve" + }, + { + "name": "ar:Eaux-de-table", + "id": "ar:eaux-de-table", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ar:eaux-de-table" + }, + { + "products": 1, + "id": "fr:viande-bovine-fraiche", + "name": "Viande-bovine-fraiche", + "url": "https://fr.openfoodfacts.org/categorie/viande-bovine-fraiche" + }, + { + "products": 1, + "id": "pt:legumes-en-conserve", + "name": "pt:Legumes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/pt:legumes-en-conserve" + }, + { + "name": "pt:Legumes-et-derives", + "id": "pt:legumes-et-derives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:legumes-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poule-aux-cepes", + "products": 1, + "name": "Poule-aux-cepes", + "id": "fr:poule-aux-cepes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saumons", + "name": "de:Saumons", + "id": "de:saumons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kolokythokeftedes", + "id": "fr:kolokythokeftedes", + "name": "Kolokythokeftedes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiture-d-angelique", + "products": 1, + "name": "Confiture-d-angelique", + "id": "fr:confiture-d-angelique" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:amidon-de-mais", + "products": 1, + "id": "en:amidon-de-mais", + "name": "en:Amidon-de-mais" + }, + { + "products": 1, + "name": "de:Yaourts-au-cafe", + "id": "de:yaourts-au-cafe", + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-au-cafe" + }, + { + "products": 1, + "name": "Mais-a-popcorn", + "id": "fr:mais-a-popcorn", + "url": "https://fr.openfoodfacts.org/categorie/mais-a-popcorn" + }, + { + "name": "Pt-pt-vegetables-and-derived-products", + "id": "fr:pt-pt-vegetables-and-derived-products", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt-pt-vegetables-and-derived-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fusili", + "products": 1, + "name": "en:Fusili", + "id": "en:fusili" + }, + { + "products": 1, + "name": "Leite-com-chocolate-uht-1-1-de-materia-gorda", + "id": "fr:leite-com-chocolate-uht-1-1-de-materia-gorda", + "url": "https://fr.openfoodfacts.org/categorie/leite-com-chocolate-uht-1-1-de-materia-gorda" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-boire-gout-noix-de-coco", + "id": "fr:yaourts-a-boire-gout-noix-de-coco", + "name": "Yaourts-a-boire-gout-noix-de-coco", + "products": 1 + }, + { + "products": 1, + "name": "Categories-aliments-a-base-de-plantes-en-conserve", + "id": "fr:categories-aliments-a-base-de-plantes-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/categories-aliments-a-base-de-plantes-en-conserve" + }, + { + "name": "pt:Poissons-en-conserve", + "id": "pt:poissons-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:poissons-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cidres-igp", + "products": 1, + "name": "Cidres-igp", + "id": "fr:cidres-igp" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:thons", + "products": 1, + "name": "pt:Thons", + "id": "pt:thons" + }, + { + "products": 1, + "id": "pt:thons-en-conserve", + "name": "pt:Thons-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/pt:thons-en-conserve" + }, + { + "name": "Sables-pur-beurre", + "id": "fr:sables-pur-beurre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sables-pur-beurre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:thons-a-l-huile", + "products": 1, + "name": "pt:Thons-a-l-huile", + "id": "pt:thons-a-l-huile" + }, + { + "products": 1, + "id": "fr:pistaches-grillees-nature", + "name": "Pistaches-grillees-nature", + "url": "https://fr.openfoodfacts.org/categorie/pistaches-grillees-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:tubercule-de-moutarde-marinee", + "name": "zh:Tubercule-de-moutarde-marinee", + "id": "zh:tubercule-de-moutarde-marinee", + "products": 1 + }, + { + "products": 1, + "name": "Yaourt-nature-au-lait-entier", + "id": "fr:yaourt-nature-au-lait-entier", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-nature-au-lait-entier" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beurre-de-baratte-extra-fin-aop", + "products": 1, + "id": "fr:beurre-de-baratte-extra-fin-aop", + "name": "Beurre-de-baratte-extra-fin-aop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:gum", + "products": 1, + "name": "en:Gum", + "id": "en:gum" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-tomates-cerises-et-au-fromage-frais", + "name": "Tarte-aux-tomates-cerises-et-au-fromage-frais", + "id": "fr:tarte-aux-tomates-cerises-et-au-fromage-frais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-petit-dejeuner", + "id": "fr:preparations-petit-dejeuner", + "name": "Preparations-petit-dejeuner", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/assortiment-de-noix", + "products": 1, + "name": "Assortiment-de-noix", + "id": "fr:assortiment-de-noix" + }, + { + "name": "Nougats noirs", + "id": "en:black-nougat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nougats-noirs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:tomates-et-derives", + "products": 1, + "name": "de:Tomates-et-derives", + "id": "de:tomates-et-derives" + }, + { + "products": 1, + "id": "fi:boissons-aux-fruits", + "name": "fi:Boissons-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/fi:boissons-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tommette-de-savoie", + "id": "fr:tommette-de-savoie", + "name": "Tommette-de-savoie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-thon", + "products": 1, + "name": "Mousses-de-thon", + "id": "fr:mousses-de-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garbure-de-jambon", + "name": "Garbure-de-jambon", + "id": "fr:garbure-de-jambon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-vegetariens", + "products": 1, + "id": "fr:plats-vegetariens", + "name": "Plats-vegetariens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garbure-de-jambon-aux-legumes", + "products": 1, + "name": "Garbure-de-jambon-aux-legumes", + "id": "fr:garbure-de-jambon-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petit-sale-d-oie", + "name": "Petit-sale-d-oie", + "id": "fr:petit-sale-d-oie", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-aigre-douces", + "products": 1, + "name": "en:Sauces-aigre-douces", + "id": "en:sauces-aigre-douces" + }, + { + "products": 1, + "id": "fr:rillons", + "name": "Rillons", + "url": "https://fr.openfoodfacts.org/categorie/rillons" + }, + { + "id": "fr:vegetable-pizzas", + "name": "Vegetable-pizzas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vegetable-pizzas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolate-ice-cream", + "products": 1, + "id": "en:chocolate-ice-cream", + "name": "en:Chocolate-ice-cream" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gelees-au-porto", + "products": 1, + "id": "fr:gelees-au-porto", + "name": "Gelees-au-porto" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauces-tomate-au-poulet", + "products": 1, + "name": "Sauces-tomate-au-poulet", + "id": "fr:sauces-tomate-au-poulet" + }, + { + "products": 1, + "name": "Gratons", + "id": "fr:gratons", + "url": "https://fr.openfoodfacts.org/categorie/gratons" + }, + { + "name": "Eglefins", + "id": "fr:eglefins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/eglefins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremant-de-bordeaux", + "name": "Crémant de Bordeaux", + "id": "fr:cremant-de-bordeaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/anacardos-caramelizados", + "id": "fr:anacardos-caramelizados", + "name": "Anacardos-caramelizados", + "products": 1 + }, + { + "products": 1, + "id": "en:thons-listao", + "name": "en:Thons-listao", + "url": "https://fr.openfoodfacts.org/categorie/en:thons-listao" + }, + { + "name": "Melanges-d-olives-et-legumes", + "id": "fr:melanges-d-olives-et-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-d-olives-et-legumes" + }, + { + "products": 1, + "id": "en:black-eyed-peas", + "name": "Cornilles", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3246973" + ], + "url": "https://fr.openfoodfacts.org/categorie/cornilles" + }, + { + "name": "en:Viandes-sechees", + "id": "en:viandes-sechees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:viandes-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oignon-jaune", + "name": "Oignon-jaune", + "id": "fr:oignon-jaune", + "products": 1 + }, + { + "products": 1, + "name": "Plat-cuisine-surgele-poisson", + "id": "fr:plat-cuisine-surgele-poisson", + "url": "https://fr.openfoodfacts.org/categorie/plat-cuisine-surgele-poisson" + }, + { + "name": "Zanddegen", + "id": "fr:zanddegen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/zanddegen" + }, + { + "name": "Cardamome-moulue", + "id": "fr:cardamome-moulue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cardamome-moulue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-a-la-rhubarbe", + "products": 1, + "name": "Tartes-a-la-rhubarbe", + "id": "fr:tartes-a-la-rhubarbe" + }, + { + "id": "fr:gateau-basque", + "name": "Gateau-basque", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gateau-basque" + }, + { + "id": "fr:paves-de-lama", + "name": "Paves-de-lama", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paves-de-lama" + }, + { + "id": "fr:poulets-prepares", + "name": "Poulets-prepares", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poulets-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-en-conserve", + "id": "de:legumes-en-conserve", + "name": "de:Legumes-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ca:bieres-espagnoles", + "id": "ca:bieres-espagnoles", + "name": "ca:Bieres-espagnoles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vinaigres-au-miel", + "name": "it:Vinaigres-au-miel", + "id": "it:vinaigres-au-miel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-a-base-de-levure-de-biere", + "products": 1, + "name": "Produits-a-base-de-levure-de-biere", + "id": "fr:produits-a-base-de-levure-de-biere" + }, + { + "products": 1, + "name": "Sandwichs au cantal", + "id": "en:cantal-cheese-sandwiches", + "url": "https://fr.openfoodfacts.org/categorie/sandwichs-au-cantal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beurres", + "products": 1, + "id": "en:beurres", + "name": "en:Beurres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:matieres-grasses-animales", + "name": "en:Matieres-grasses-animales", + "id": "en:matieres-grasses-animales", + "products": 1 + }, + { + "products": 1, + "id": "fr:vodkas-premium", + "name": "Vodkas-premium", + "url": "https://fr.openfoodfacts.org/categorie/vodkas-premium" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-de-menthe-glaciale", + "id": "fr:sirops-de-menthe-glaciale", + "name": "Sirops-de-menthe-glaciale", + "products": 1 + }, + { + "products": 1, + "name": "Petales-de-sarrasin", + "id": "fr:petales-de-sarrasin", + "url": "https://fr.openfoodfacts.org/categorie/petales-de-sarrasin" + }, + { + "name": "Decor-gateau", + "id": "fr:decor-gateau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/decor-gateau" + }, + { + "id": "de:encas", + "name": "de:Encas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:encas" + }, + { + "products": 1, + "name": "de:Stieleis", + "id": "de:stieleis", + "url": "https://fr.openfoodfacts.org/categorie/de:stieleis" + }, + { + "products": 1, + "name": "Courgettes-au-basilic", + "id": "fr:courgettes-au-basilic", + "url": "https://fr.openfoodfacts.org/categorie/courgettes-au-basilic" + }, + { + "products": 1, + "name": "de:Pizzas-aux-quatre-fromages", + "id": "de:pizzas-aux-quatre-fromages", + "url": "https://fr.openfoodfacts.org/categorie/de:pizzas-aux-quatre-fromages" + }, + { + "id": "nl:galettes-de-riz", + "name": "nl:Galettes-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:galettes-de-riz" + }, + { + "name": "Epicerie-sans-gluten-sans-lactose", + "id": "fr:epicerie-sans-gluten-sans-lactose", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/epicerie-sans-gluten-sans-lactose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poche-aux-epinards-et-au-fromage", + "name": "Poche-aux-epinards-et-au-fromage", + "id": "fr:poche-aux-epinards-et-au-fromage", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:yaourts-de-soja-a-la-myrtille", + "name": "sv:Yaourts-de-soja-a-la-myrtille", + "id": "sv:yaourts-de-soja-a-la-myrtille", + "products": 1 + }, + { + "id": "fr:pastilles-avec-edulcolorants", + "name": "Pastilles-avec-edulcolorants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pastilles-avec-edulcolorants" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nb:epicerie", + "products": 1, + "name": "nb:Epicerie", + "id": "nb:epicerie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-a-pate-filee", + "products": 1, + "name": "de:Fromages-a-pate-filee", + "id": "de:fromages-a-pate-filee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pigeon", + "products": 1, + "name": "Pigeon", + "id": "en:pigeon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:marmelades-d-oranges-et-d-abricots", + "name": "en:Marmelades-d-oranges-et-d-abricots", + "id": "en:marmelades-d-oranges-et-d-abricots", + "products": 1 + }, + { + "name": "en:Blancs-d-oeufs", + "id": "en:blancs-d-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:blancs-d-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/buttertoffee", + "products": 1, + "id": "fr:buttertoffee", + "name": "Buttertoffee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desser", + "id": "fr:desser", + "name": "Desser", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pepites-de-chocolat-noir", + "id": "fr:pepites-de-chocolat-noir", + "name": "Pepites-de-chocolat-noir", + "products": 1 + }, + { + "id": "de:frutas", + "name": "de:Frutas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:frutas" + }, + { + "products": 1, + "name": "de:Framboises-surgelees", + "id": "de:framboises-surgelees", + "url": "https://fr.openfoodfacts.org/categorie/de:framboises-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-rouges-surgeles", + "products": 1, + "id": "de:fruits-rouges-surgeles", + "name": "de:Fruits-rouges-surgeles" + }, + { + "id": "fr:confitures-d-olives", + "name": "Confitures-d-olives", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-olives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/noix-d-epaule", + "id": "fr:noix-d-epaule", + "name": "Noix-d-epaule", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:wholegrain-mustard", + "id": "en:wholegrain-mustard", + "name": "en:Wholegrain-mustard", + "products": 1 + }, + { + "id": "nl:cafes-en-poudre", + "name": "nl:Cafes-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:cafes-en-poudre" + }, + { + "products": 1, + "id": "es:tomates-et-derives", + "name": "es:Tomates-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/es:tomates-et-derives" + }, + { + "products": 1, + "name": "en:Basilic-seche-moulu", + "id": "en:basilic-seche-moulu", + "url": "https://fr.openfoodfacts.org/categorie/en:basilic-seche-moulu" + }, + { + "id": "fr:jambons-crus-en-tranches", + "name": "Jambons-crus-en-tranches", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jambons-crus-en-tranches" + }, + { + "products": 1, + "name": "Lievre", + "id": "fr:lievre", + "url": "https://fr.openfoodfacts.org/categorie/lievre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rochers-pralines", + "id": "fr:rochers-pralines", + "name": "Rochers-pralines", + "products": 1 + }, + { + "products": 1, + "id": "fr:filet-de-poisson-fume", + "name": "Filet-de-poisson-fume", + "url": "https://fr.openfoodfacts.org/categorie/filet-de-poisson-fume" + }, + { + "products": 1, + "id": "fr:carpes-farcies", + "name": "Carpes-farcies", + "url": "https://fr.openfoodfacts.org/categorie/carpes-farcies" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-degustation", + "products": 1, + "name": "Chocolat-noir-degustation", + "id": "fr:chocolat-noir-degustation" + }, + { + "products": 1, + "id": "en:snackfoods", + "name": "en:Snackfoods", + "url": "https://fr.openfoodfacts.org/categorie/en:snackfoods" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:fermentierte-lebensmittel", + "id": "xx:fermentierte-lebensmittel", + "name": "xx:Fermentierte-lebensmittel", + "products": 1 + }, + { + "products": 1, + "name": "es:Jus-multifruits", + "id": "es:jus-multifruits", + "url": "https://fr.openfoodfacts.org/categorie/es:jus-multifruits" + }, + { + "products": 1, + "name": "Specialite-tartinable-a-base-de-tomates", + "id": "fr:specialite-tartinable-a-base-de-tomates", + "url": "https://fr.openfoodfacts.org/categorie/specialite-tartinable-a-base-de-tomates" + }, + { + "name": "Sirops-pour-ganache", + "id": "fr:sirops-pour-ganache", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirops-pour-ganache" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-belges", + "name": "en:Chocolats-belges", + "id": "en:chocolats-belges", + "products": 1 + }, + { + "products": 1, + "id": "fr:sables", + "name": "Sables", + "url": "https://fr.openfoodfacts.org/categorie/sables" + }, + { + "name": "Agneau-de-nouvelle-zelande", + "id": "fr:agneau-de-nouvelle-zelande", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/agneau-de-nouvelle-zelande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-a-la-bergamote", + "id": "fr:thes-a-la-bergamote", + "name": "Thes-a-la-bergamote", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zh:tofu-seche", + "id": "zh:tofu-seche", + "name": "zh:Tofu-seche", + "products": 1 + }, + { + "products": 1, + "id": "fr:chocolats-au-lait-au-quinoa", + "name": "Chocolats-au-lait-au-quinoa", + "url": "https://fr.openfoodfacts.org/categorie/chocolats-au-lait-au-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:terrines-de-volailles", + "id": "en:terrines-de-volailles", + "name": "en:Terrines-de-volailles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chikwouangue", + "products": 1, + "id": "fr:chikwouangue", + "name": "Chikwouangue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/foie-gras-de-canard-aux-cepes", + "name": "Foie-gras-de-canard-aux-cepes", + "id": "fr:foie-gras-de-canard-aux-cepes", + "products": 1 + }, + { + "name": "Tartinable-au-foie-gras-de-canard", + "id": "fr:tartinable-au-foie-gras-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tartinable-au-foie-gras-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-darjeelings", + "products": 1, + "id": "fr:thes-darjeelings", + "name": "Thes-darjeelings" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:malt", + "products": 1, + "name": "en:Malt", + "id": "en:malt" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mortadelle-de-bologne", + "name": "Mortadelle-de-bologne", + "id": "fr:mortadelle-de-bologne", + "products": 1 + }, + { + "products": 1, + "id": "it:mortadella-bologna", + "name": "it:Mortadella-bologna", + "url": "https://fr.openfoodfacts.org/categorie/it:mortadella-bologna" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/epices-condiments-et-aromates", + "id": "fr:epices-condiments-et-aromates", + "name": "Epices-condiments-et-aromates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-fritos", + "name": "Chips-fritos", + "id": "fr:chips-fritos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gruyeres-rapes", + "products": 1, + "id": "fr:gruyeres-rapes", + "name": "Gruyeres-rapes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soda-aux-ecorces-de-quinquina", + "id": "fr:soda-aux-ecorces-de-quinquina", + "name": "Soda-aux-ecorces-de-quinquina", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateau-de-riz-nappe-de-caramel", + "id": "fr:gateau-de-riz-nappe-de-caramel", + "name": "Gateau-de-riz-nappe-de-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-en-grano", + "name": "Cereales-en-grano", + "id": "fr:cereales-en-grano", + "products": 1 + }, + { + "name": "Sodas-tonic", + "id": "fr:sodas-tonic", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sodas-tonic" + }, + { + "id": "fr:boissons-en-dosettes-compatibles-nespresso", + "name": "Boissons-en-dosettes-compatibles-nespresso", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boissons-en-dosettes-compatibles-nespresso" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:oeufs-plein-air", + "name": "de:Oeufs-plein-air", + "id": "de:oeufs-plein-air", + "products": 1 + }, + { + "products": 1, + "name": "en:Asian-food", + "id": "en:asian-food", + "url": "https://fr.openfoodfacts.org/categorie/en:asian-food" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-aromatise-fraise", + "id": "fr:boisson-gazeuse-aromatise-fraise", + "name": "Boisson-gazeuse-aromatise-fraise", + "products": 1 + }, + { + "name": "Schweppes-zero-fraise", + "id": "fr:schweppes-zero-fraise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/schweppes-zero-fraise" + }, + { + "name": "Schweppes-zero-ananas", + "id": "fr:schweppes-zero-ananas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/schweppes-zero-ananas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oursons-en-guimauve", + "products": 1, + "id": "fr:oursons-en-guimauve", + "name": "Oursons-en-guimauve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourt-sur-lit-de-mangues", + "name": "Yaourt-sur-lit-de-mangues", + "id": "fr:yaourt-sur-lit-de-mangues", + "products": 1 + }, + { + "id": "de:pates-au-ble-complet", + "name": "de:Pates-au-ble-complet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-au-ble-complet" + }, + { + "name": "de:Pates-completes", + "id": "de:pates-completes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-completes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits-d-assaisonnement", + "products": 1, + "name": "Kits-d-assaisonnement", + "id": "fr:kits-d-assaisonnement" + }, + { + "name": "en:Dorrobst", + "id": "en:dorrobst", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:dorrobst" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vins-californiens", + "name": "en:Vins-californiens", + "id": "en:vins-californiens", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-de-calmars", + "products": 1, + "id": "fr:salade-de-calmars", + "name": "Salade-de-calmars" + }, + { + "id": "fr:sirups", + "name": "Sirups", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sirups" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/zuckerhaltige-getranke", + "products": 1, + "name": "Zuckerhaltige-getranke", + "id": "fr:zuckerhaltige-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/halva-aux-pistaches", + "products": 1, + "name": "Halva-aux-pistaches", + "id": "fr:halva-aux-pistaches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:viandes-surgelees", + "products": 1, + "name": "en:Viandes-surgelees", + "id": "en:viandes-surgelees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-orange-sanguine", + "id": "fr:sirops-d-orange-sanguine", + "name": "Sirops-d-orange-sanguine", + "products": 1 + }, + { + "products": 1, + "id": "fr:poires-williams", + "name": "Poires-williams", + "url": "https://fr.openfoodfacts.org/categorie/poires-williams" + }, + { + "id": "fr:produit-kasher", + "name": "Produit-kasher", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/produit-kasher" + }, + { + "products": 1, + "id": "he:aliments-et-boissons-a-base-de-vegetaux", + "name": "he:Aliments-et-boissons-a-base-de-vegetaux", + "url": "https://fr.openfoodfacts.org/categorie/he:aliments-et-boissons-a-base-de-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/he:cereales-et-derives", + "products": 1, + "id": "he:cereales-et-derives", + "name": "he:Cereales-et-derives" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/he:cereales-et-pommes-de-terre", + "products": 1, + "name": "he:Cereales-et-pommes-de-terre", + "id": "he:cereales-et-pommes-de-terre" + }, + { + "products": 1, + "name": "Flocons de millet", + "id": "en:millet-flakes", + "url": "https://fr.openfoodfacts.org/categorie/flocons-de-millet" + }, + { + "name": "en:Gaufres", + "id": "en:gaufres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gaufres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/digestives", + "name": "Digestives", + "id": "fr:digestives", + "products": 1 + }, + { + "products": 1, + "name": "Yaourt-au-jus-de-citron-vert", + "id": "fr:yaourt-au-jus-de-citron-vert", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-au-jus-de-citron-vert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/he:cereales-pour-petit-dejeuner", + "products": 1, + "id": "he:cereales-pour-petit-dejeuner", + "name": "he:Cereales-pour-petit-dejeuner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-doux", + "products": 1, + "id": "fr:miels-doux", + "name": "Miels-doux" + }, + { + "products": 1, + "id": "en:boissons-concentrees", + "name": "en:Boissons-concentrees", + "url": "https://fr.openfoodfacts.org/categorie/en:boissons-concentrees" + }, + { + "products": 1, + "id": "ar:chocolats-suisses", + "name": "ar:Chocolats-suisses", + "url": "https://fr.openfoodfacts.org/categorie/ar:chocolats-suisses" + }, + { + "name": "Eaux-de-coco-en-poudre", + "id": "fr:eaux-de-coco-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/eaux-de-coco-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:maquereaux-en-conserve", + "name": "en:Maquereaux-en-conserve", + "id": "en:maquereaux-en-conserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-cola", + "products": 1, + "name": "en:Sirops-cola", + "id": "en:sirops-cola" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:surgeles", + "id": "es:surgeles", + "name": "es:Surgeles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tomates-cerises-jaunes", + "id": "fr:tomates-cerises-jaunes", + "name": "Tomates-cerises-jaunes", + "products": 1 + }, + { + "id": "fr:minereaux", + "name": "Minereaux", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/minereaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-allumettes-nature", + "id": "fr:lardons-allumettes-nature", + "name": "Lardons-allumettes-nature", + "products": 1 + }, + { + "name": "de:Camemberts-pasteurises", + "id": "de:camemberts-pasteurises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:camemberts-pasteurises" + }, + { + "name": "en:Wasabi-popcorn", + "id": "en:wasabi-popcorn", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:wasabi-popcorn" + }, + { + "products": 1, + "id": "en:boisson-energisante", + "name": "en:Boisson-energisante", + "url": "https://fr.openfoodfacts.org/categorie/en:boisson-energisante" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/carpacio-marinade-basilic", + "id": "fr:carpacio-marinade-basilic", + "name": "Carpacio-marinade-basilic", + "products": 1 + }, + { + "name": "de:Desserts-au-chocolat", + "id": "de:desserts-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:desserts-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:desserts-lactes-au-chocolat", + "products": 1, + "name": "de:Desserts-lactes-au-chocolat", + "id": "de:desserts-lactes-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-fourres", + "products": 1, + "id": "fr:chocolats-blancs-fourres", + "name": "Chocolats-blancs-fourres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:refrigeres", + "products": 1, + "name": "es:Refrigeres", + "id": "es:refrigeres" + }, + { + "products": 1, + "name": "en:Chocoladehazelnootkoekjes", + "id": "en:chocoladehazelnootkoekjes", + "url": "https://fr.openfoodfacts.org/categorie/en:chocoladehazelnootkoekjes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:koekjes", + "products": 1, + "id": "en:koekjes", + "name": "en:Koekjes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:bauernschinken", + "products": 1, + "name": "de:Bauernschinken", + "id": "de:bauernschinken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:koekjes-en-cakes", + "id": "en:koekjes-en-cakes", + "name": "en:Koekjes-en-cakes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:vegetarische-worstjes", + "id": "en:vegetarische-worstjes", + "name": "en:Vegetarische-worstjes", + "products": 1 + }, + { + "id": "fr:curry-de-lentilles-corail-et-legumes", + "name": "Curry-de-lentilles-corail-et-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/curry-de-lentilles-corail-et-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/torti-au-saumon-fume", + "products": 1, + "name": "Torti-au-saumon-fume", + "id": "fr:torti-au-saumon-fume" + }, + { + "products": 1, + "id": "fr:saucisses-de-canard-aux-haricots-lingots", + "name": "Saucisses-de-canard-aux-haricots-lingots", + "url": "https://fr.openfoodfacts.org/categorie/saucisses-de-canard-aux-haricots-lingots" + }, + { + "id": "fr:bananes-en-conserve", + "name": "Bananes-en-conserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bananes-en-conserve" + }, + { + "products": 1, + "id": "es:bouillons-deshydrates", + "name": "es:Bouillons-deshydrates", + "url": "https://fr.openfoodfacts.org/categorie/es:bouillons-deshydrates" + }, + { + "id": "fr:viande-en-sauce", + "name": "Viande-en-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viande-en-sauce" + }, + { + "name": "xx:Fischkonserve", + "id": "xx:fischkonserve", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:fischkonserve" + }, + { + "id": "en:chia-samen", + "name": "en:Chia-samen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:chia-samen" + }, + { + "products": 1, + "id": "en:boisson-energetique", + "name": "en:Boisson-energetique", + "url": "https://fr.openfoodfacts.org/categorie/en:boisson-energetique" + }, + { + "products": 1, + "id": "en:decoration", + "name": "en:Decoration", + "url": "https://fr.openfoodfacts.org/categorie/en:decoration" + }, + { + "name": "Moutardes-au-riesling", + "id": "fr:moutardes-au-riesling", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moutardes-au-riesling" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-fraiche-triee-lavee-puis-essoree", + "name": "Salade-fraiche-triee-lavee-puis-essoree", + "id": "fr:salade-fraiche-triee-lavee-puis-essoree", + "products": 1 + }, + { + "products": 1, + "id": "en:soupes-de-legumes-refrigerees", + "name": "en:Soupes-de-legumes-refrigerees", + "url": "https://fr.openfoodfacts.org/categorie/en:soupes-de-legumes-refrigerees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-au-lait-de-brebis", + "products": 1, + "name": "Cremes-au-lait-de-brebis", + "id": "fr:cremes-au-lait-de-brebis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ecureuils-en-chocolat-au-lait", + "name": "Ecureuils-en-chocolat-au-lait", + "id": "fr:ecureuils-en-chocolat-au-lait", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crunchy-peanut-butter", + "products": 1, + "name": "Crunchy-peanut-butter", + "id": "fr:crunchy-peanut-butter" + }, + { + "id": "en:picpoul-de-pinet", + "name": "en:Picpoul-de-pinet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:picpoul-de-pinet" + }, + { + "id": "de:thes", + "name": "de:Thes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:thes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barres-de-cereales-aux-cacahetes", + "id": "fr:barres-de-cereales-aux-cacahetes", + "name": "Barres-de-cereales-aux-cacahetes", + "products": 1 + }, + { + "products": 1, + "id": "fr:biscuits-a-l-avoine", + "name": "Biscuits-a-l-avoine", + "url": "https://fr.openfoodfacts.org/categorie/biscuits-a-l-avoine" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lapin-saute-aux-deux-moutardes", + "products": 1, + "name": "Lapin-saute-aux-deux-moutardes", + "id": "fr:lapin-saute-aux-deux-moutardes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisses-aux-haricots", + "products": 1, + "id": "fr:saucisses-aux-haricots", + "name": "Saucisses-aux-haricots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poulet-milanaise", + "products": 1, + "name": "Poulet-milanaise", + "id": "fr:poulet-milanaise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tripes-de-porc", + "products": 1, + "id": "fr:tripes-de-porc", + "name": "Tripes-de-porc" + }, + { + "name": "Mouton-saute-flageolets-verts-et-carottes", + "id": "fr:mouton-saute-flageolets-verts-et-carottes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mouton-saute-flageolets-verts-et-carottes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lentilles-cuisinees-a-l-auvergnate", + "products": 1, + "name": "Lentilles-cuisinees-a-l-auvergnate", + "id": "fr:lentilles-cuisinees-a-l-auvergnate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cornichons-aigres-doux-au-vinaigre-de-cidre", + "products": 1, + "id": "fr:cornichons-aigres-doux-au-vinaigre-de-cidre", + "name": "Cornichons-aigres-doux-au-vinaigre-de-cidre" + }, + { + "products": 1, + "id": "fr:entremet", + "name": "Entremet", + "url": "https://fr.openfoodfacts.org/categorie/entremet" + }, + { + "name": "Preparations-de-soja-cuisinees", + "id": "fr:preparations-de-soja-cuisinees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-soja-cuisinees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-pomme-mirabelle", + "id": "fr:compotes-de-pomme-mirabelle", + "name": "Compotes-de-pomme-mirabelle", + "products": 1 + }, + { + "id": "fr:mayonnaises-a-l-huile-de-colza", + "name": "Mayonnaises-a-l-huile-de-colza", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mayonnaises-a-l-huile-de-colza" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:losliche-kaffees", + "name": "en:Losliche-kaffees", + "id": "en:losliche-kaffees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lait-sterilise-demi-ecreme-uht", + "products": 1, + "id": "fr:lait-sterilise-demi-ecreme-uht", + "name": "Lait-sterilise-demi-ecreme-uht" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:vins-mutes", + "name": "de:Vins-mutes", + "id": "de:vins-mutes", + "products": 1 + }, + { + "products": 1, + "name": "Legumes-cuits", + "id": "fr:legumes-cuits", + "url": "https://fr.openfoodfacts.org/categorie/legumes-cuits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pomme-mirabelle", + "id": "fr:compotes-pomme-mirabelle", + "name": "Compotes-pomme-mirabelle", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cotes-de-porc-marinees", + "products": 1, + "name": "Cotes-de-porc-marinees", + "id": "fr:cotes-de-porc-marinees" + }, + { + "products": 1, + "id": "fr:compotes-pommes-groseilles", + "name": "Compotes-pommes-groseilles", + "url": "https://fr.openfoodfacts.org/categorie/compotes-pommes-groseilles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:salze", + "id": "xx:salze", + "name": "xx:Salze", + "products": 1 + }, + { + "products": 1, + "name": "Jus-de-clementines-100-pur-jus", + "id": "fr:jus-de-clementines-100-pur-jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-clementines-100-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tapenades-de-champignons", + "products": 1, + "name": "Tapenades-de-champignons", + "id": "fr:tapenades-de-champignons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biere-belge", + "products": 1, + "name": "en:Biere-belge", + "id": "en:biere-belge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-pomme-nature-bio", + "name": "Compotes-pomme-nature-bio", + "id": "fr:compotes-pomme-nature-bio", + "products": 1 + }, + { + "products": 1, + "name": "Specialites-de-fruits", + "id": "fr:specialites-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/specialites-de-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/crepes-fourrees-a-l-abricot", + "name": "Crepes-fourrees-a-l-abricot", + "id": "fr:crepes-fourrees-a-l-abricot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-framboise", + "products": 1, + "id": "fr:desserts-lactes-framboise", + "name": "Desserts-lactes-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-rouge", + "id": "en:crisps-of-red-potatoes", + "name": "Chips de pommes de terre rouge", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-nappees-de-chocolat", + "id": "fr:galettes-de-riz-nappees-de-chocolat", + "name": "Galettes-de-riz-nappees-de-chocolat", + "products": 1 + }, + { + "name": "Mousses-lactees-framboise", + "id": "fr:mousses-lactees-framboise", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-framboise" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-the", + "products": 1, + "name": "Boissons-au-the", + "id": "fr:boissons-au-the" + }, + { + "id": "de:fruits-a-coque-sales", + "name": "de:Fruits-a-coque-sales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fruits-a-coque-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rillettes-de-saumon", + "id": "en:rillettes-de-saumon", + "name": "en:Rillettes-de-saumon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-thes-glaces", + "products": 1, + "id": "en:iced-teas-preparations", + "name": "Préparations pour thés glacés" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:yogurt-alla-greca", + "products": 1, + "name": "it:Yogurt-alla-greca", + "id": "it:yogurt-alla-greca" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:mango-chutney", + "products": 1, + "id": "en:mango-chutney", + "name": "en:Mango-chutney" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cereales-petit-dejeuner-aux-fruits", + "products": 1, + "name": "Cereales-petit-dejeuner-aux-fruits", + "id": "fr:cereales-petit-dejeuner-aux-fruits" + }, + { + "products": 1, + "name": "Specialites-laitieres-natures", + "id": "fr:specialites-laitieres-natures", + "url": "https://fr.openfoodfacts.org/categorie/specialites-laitieres-natures" + }, + { + "products": 1, + "id": "fr:moutardes-en-graines", + "name": "Moutardes-en-graines", + "url": "https://fr.openfoodfacts.org/categorie/moutardes-en-graines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sans-sucre-ajoute", + "products": 1, + "id": "fr:sans-sucre-ajoute", + "name": "Sans-sucre-ajoute" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/coeurs-de-canard", + "name": "Coeurs-de-canard", + "id": "fr:coeurs-de-canard", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-aperitifs-aux-olives", + "id": "fr:biscuits-aperitifs-aux-olives", + "name": "Biscuits-aperitifs-aux-olives", + "products": 1 + }, + { + "name": "Pizza-raclette-et-jambon-cru", + "id": "fr:pizza-raclette-et-jambon-cru", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pizza-raclette-et-jambon-cru" + }, + { + "id": "fr:jus-de-mangue-et-de-fruit-de-la-passion", + "name": "Jus-de-mangue-et-de-fruit-de-la-passion", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/jus-de-mangue-et-de-fruit-de-la-passion" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sardines-a-l-huile", + "products": 1, + "id": "de:sardines-a-l-huile", + "name": "de:Sardines-a-l-huile" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sardines-a-l-huile-et-au-citron", + "products": 1, + "name": "de:Sardines-a-l-huile-et-au-citron", + "id": "de:sardines-a-l-huile-et-au-citron" + }, + { + "name": "en:Filets-de-sardines", + "id": "en:filets-de-sardines", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:filets-de-sardines" + }, + { + "products": 1, + "name": "Olives-denoyautees-noires-nature", + "id": "fr:olives-denoyautees-noires-nature", + "url": "https://fr.openfoodfacts.org/categorie/olives-denoyautees-noires-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boudins-de-poissons", + "name": "Boudins-de-poissons", + "id": "fr:boudins-de-poissons", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/feuilles-de-vignes-farcies", + "id": "fr:feuilles-de-vignes-farcies", + "name": "Feuilles-de-vignes-farcies", + "products": 1 + }, + { + "products": 1, + "name": "en:Cappuccino-en-poudre", + "id": "en:cappuccino-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/en:cappuccino-en-poudre" + }, + { + "id": "de:gruyeres-suisses", + "name": "de:Gruyeres-suisses", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:gruyeres-suisses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sable-a-la-chataigne", + "name": "Sable-a-la-chataigne", + "id": "fr:sable-a-la-chataigne", + "products": 1 + }, + { + "id": "en:goose-gizzards", + "name": "Gésiers d'oie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gesiers-d-oie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-fritons", + "id": "fr:pate-fritons", + "name": "Pate-fritons", + "products": 1 + }, + { + "id": "fr:confiture-fraises-et-framboises", + "name": "Confiture-fraises-et-framboises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confiture-fraises-et-framboises" + }, + { + "name": "en:Baguette-rolls", + "id": "en:baguette-rolls", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:baguette-rolls" + }, + { + "products": 1, + "id": "fr:tagliatelles-a-la-bolognaise", + "name": "Tagliatelles-a-la-bolognaise", + "url": "https://fr.openfoodfacts.org/categorie/tagliatelles-a-la-bolognaise" + }, + { + "name": "Poires-au-jus", + "id": "fr:poires-au-jus", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/poires-au-jus" + }, + { + "products": 1, + "id": "en:refined-coco-oils", + "name": "Huiles de coco raffinées", + "url": "https://fr.openfoodfacts.org/categorie/huiles-de-coco-raffinees" + }, + { + "products": 1, + "id": "fr:pasta-in-a-box", + "name": "Pasta-in-a-box", + "url": "https://fr.openfoodfacts.org/categorie/pasta-in-a-box" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crevettes", + "products": 1, + "name": "en:Crevettes", + "id": "en:crevettes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:gaufres", + "products": 1, + "name": "nl:Gaufres", + "id": "nl:gaufres" + }, + { + "id": "fr:mini-toasts-graines-de-lin", + "name": "Mini-toasts-graines-de-lin", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mini-toasts-graines-de-lin" + }, + { + "products": 1, + "name": "en:Milk-based-product", + "id": "en:milk-based-product", + "url": "https://fr.openfoodfacts.org/categorie/en:milk-based-product" + }, + { + "id": "de:pates-a-tartiner-aux-noisettes-et-au-cacao", + "name": "de:Pates-a-tartiner-aux-noisettes-et-au-cacao", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pates-a-tartiner-aux-noisettes-et-au-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mini-toasts-pavot-et-graines-de-lin", + "products": 1, + "id": "fr:mini-toasts-pavot-et-graines-de-lin", + "name": "Mini-toasts-pavot-et-graines-de-lin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/parmentier-de-thon", + "name": "Parmentier-de-thon", + "id": "fr:parmentier-de-thon", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/eis-am-stiel", + "products": 1, + "name": "Eis-am-stiel", + "id": "fr:eis-am-stiel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:soft-cheese", + "name": "en:Soft-cheese", + "id": "en:soft-cheese", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sosiskis", + "id": "fr:sosiskis", + "name": "Sosiskis", + "products": 1 + }, + { + "products": 1, + "id": "sv:pates-a-tartiner-vegetales", + "name": "sv:Pates-a-tartiner-vegetales", + "url": "https://fr.openfoodfacts.org/categorie/sv:pates-a-tartiner-vegetales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:frites", + "products": 1, + "id": "it:frites", + "name": "it:Frites" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookies-au-chocolat-noir", + "products": 1, + "name": "Cookies-au-chocolat-noir", + "id": "fr:cookies-au-chocolat-noir" + }, + { + "products": 1, + "name": "en:Aliments-et-boissons-a-base-de-legumes", + "id": "en:aliments-et-boissons-a-base-de-legumes", + "url": "https://fr.openfoodfacts.org/categorie/en:aliments-et-boissons-a-base-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mes-compotes-pommes-fraise-pommes-vanille", + "name": "Mes-compotes-pommes-fraise-pommes-vanille", + "id": "fr:mes-compotes-pommes-fraise-pommes-vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/petoncles", + "name": "Petoncles", + "id": "fr:petoncles", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-en-poudre-instantanee-pour-boisson-chocolates", + "products": 1, + "name": "Preparation-en-poudre-instantanee-pour-boisson-chocolates", + "id": "fr:preparation-en-poudre-instantanee-pour-boisson-chocolates" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rasteau", + "sameAs": [ + "https://www.wikidata.org/wiki/Q3419962" + ], + "products": 1, + "name": "Rasteau", + "id": "fr:rasteau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:yaourts-vegetaux", + "products": 1, + "name": "en:Yaourts-vegetaux", + "id": "en:yaourts-vegetaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cafe-en-dosettes-compatible-senseo", + "name": "de:Cafe-en-dosettes-compatible-senseo", + "id": "de:cafe-en-dosettes-compatible-senseo", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-soja-aux-fruits", + "products": 1, + "name": "Laits-de-soja-aux-fruits", + "id": "fr:laits-de-soja-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:aliments-d-origine-vegetale", + "products": 1, + "id": "sr:aliments-d-origine-vegetale", + "name": "sr:Aliments-d-origine-vegetale" + }, + { + "id": "fr:pain-precuit-a-rechauffer", + "name": "Pain-precuit-a-rechauffer", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pain-precuit-a-rechauffer" + }, + { + "id": "fr:desserts-lactes-saveur-cafe", + "name": "Desserts-lactes-saveur-cafe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/desserts-lactes-saveur-cafe" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-riz-japonais", + "products": 1, + "id": "en:japanese-rice-vinegars", + "name": "Vinaigres de riz japonais" + }, + { + "products": 1, + "name": "Cleme-glacee", + "id": "fr:cleme-glacee", + "url": "https://fr.openfoodfacts.org/categorie/cleme-glacee" + }, + { + "id": "de:malzkaffee", + "name": "de:Malzkaffee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:malzkaffee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pain-suedois", + "name": "Pain-suedois", + "id": "fr:pain-suedois", + "products": 1 + }, + { + "id": "es:agrumes", + "name": "es:Agrumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:agrumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ferments", + "name": "Ferments", + "id": "fr:ferments", + "products": 1 + }, + { + "id": "fr:glaces-creme-brulee", + "name": "Glaces-creme-brulee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-creme-brulee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-instantanes", + "products": 1, + "id": "fr:thes-instantanes", + "name": "Thes-instantanes" + }, + { + "id": "fr:chocolats-fourres-au-genepi", + "name": "Chocolats-fourres-au-genepi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chocolats-fourres-au-genepi" + }, + { + "products": 1, + "id": "fr:gearomatiseerde-theeen", + "name": "Gearomatiseerde-theeen", + "url": "https://fr.openfoodfacts.org/categorie/gearomatiseerde-theeen" + }, + { + "name": "de:Pickles-de-legumes", + "id": "de:pickles-de-legumes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:pickles-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/yaourts-brasses-a-la-vanille", + "id": "fr:yaourts-brasses-a-la-vanille", + "name": "Yaourts-brasses-a-la-vanille", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/farine-a-gateau", + "products": 1, + "name": "Farine-a-gateau", + "id": "fr:farine-a-gateau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kruidentheeen", + "name": "Kruidentheeen", + "id": "fr:kruidentheeen", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cookie-au-fruit-rouges-et-a-la-noisette", + "products": 1, + "name": "Cookie-au-fruit-rouges-et-a-la-noisette", + "id": "fr:cookie-au-fruit-rouges-et-a-la-noisette" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-au-jus-de-fruits", + "products": 1, + "name": "Boissons-au-jus-de-fruits", + "id": "fr:boissons-au-jus-de-fruits" + }, + { + "id": "fr:boisson-gazeuse-aux-fruits", + "name": "Boisson-gazeuse-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-gazeuse-aux-fruits" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-agrumes", + "id": "fr:the-agrumes", + "name": "The-agrumes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-bio-sans-sucres-rajoutes", + "id": "fr:compotes-bio-sans-sucres-rajoutes", + "name": "Compotes-bio-sans-sucres-rajoutes", + "products": 1 + }, + { + "products": 1, + "id": "de:legumes-fermentes", + "name": "de:Legumes-fermentes", + "url": "https://fr.openfoodfacts.org/categorie/de:legumes-fermentes" + }, + { + "products": 1, + "name": "nl:Produits-de-la-ruche", + "id": "nl:produits-de-la-ruche", + "url": "https://fr.openfoodfacts.org/categorie/nl:produits-de-la-ruche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:paste", + "products": 1, + "name": "en:Paste", + "id": "en:paste" + }, + { + "products": 1, + "id": "fr:kakis-seches", + "name": "Kakis-seches", + "url": "https://fr.openfoodfacts.org/categorie/kakis-seches" + }, + { + "products": 1, + "id": "de:preparations-pour-cakes-au-citron", + "name": "de:Preparations-pour-cakes-au-citron", + "url": "https://fr.openfoodfacts.org/categorie/de:preparations-pour-cakes-au-citron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:tomatenpurrees", + "id": "nl:tomatenpurrees", + "name": "nl:Tomatenpurrees", + "products": 1 + }, + { + "name": "nl:Huiles", + "id": "nl:huiles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:huiles" + }, + { + "id": "fr:sucuk", + "name": "Sucuk", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucuk" + }, + { + "products": 1, + "name": "en:Algues-seches", + "id": "en:algues-seches", + "url": "https://fr.openfoodfacts.org/categorie/en:algues-seches" + }, + { + "name": "nl:Chips-de-pommes-de-terre", + "id": "nl:chips-de-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:chips-de-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:snacks-sales", + "products": 1, + "name": "nl:Snacks-sales", + "id": "nl:snacks-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/calzones", + "products": 1, + "name": "Calzones", + "id": "fr:calzones" + }, + { + "products": 1, + "id": "fr:cafe-moulu-en-dosettes", + "name": "Cafe-moulu-en-dosettes", + "url": "https://fr.openfoodfacts.org/categorie/cafe-moulu-en-dosettes" + }, + { + "id": "pt:charcuteries", + "name": "pt:Charcuteries", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:charcuteries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bouillons-de-poisson", + "id": "fr:bouillons-de-poisson", + "name": "Bouillons-de-poisson", + "products": 1 + }, + { + "products": 1, + "name": "Munsters-au-cumin", + "id": "fr:munsters-au-cumin", + "url": "https://fr.openfoodfacts.org/categorie/munsters-au-cumin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-frites", + "name": "Pommes-de-terre-frites", + "id": "fr:pommes-de-terre-frites", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beurres-d-arachide", + "name": "en:Beurres-d-arachide", + "id": "en:beurres-d-arachide", + "products": 1 + }, + { + "id": "fr:plats-a-base-de-viande-d-agneau", + "name": "Plats-a-base-de-viande-d-agneau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-d-agneau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:broodbeleggen", + "products": 1, + "id": "nl:broodbeleggen", + "name": "nl:Broodbeleggen" + }, + { + "products": 1, + "name": "Picalilli", + "id": "fr:picalilli", + "url": "https://fr.openfoodfacts.org/categorie/picalilli" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moules-cuites", + "products": 1, + "name": "Moules-cuites", + "id": "fr:moules-cuites" + }, + { + "id": "fr:vruchtendranken", + "name": "Vruchtendranken", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vruchtendranken" + }, + { + "products": 1, + "name": "Moelleux-de-cidre", + "id": "fr:moelleux-de-cidre", + "url": "https://fr.openfoodfacts.org/categorie/moelleux-de-cidre" + }, + { + "products": 1, + "name": "nl:Augurken", + "id": "nl:augurken", + "url": "https://fr.openfoodfacts.org/categorie/nl:augurken" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/graines-d-haricots-mungos", + "products": 1, + "id": "fr:graines-d-haricots-mungos", + "name": "Graines-d-haricots-mungos" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/blancs-en-neige", + "products": 1, + "name": "Blancs-en-neige", + "id": "fr:blancs-en-neige" + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q382471" + ], + "url": "https://fr.openfoodfacts.org/categorie/saint-julien", + "products": 1, + "id": "fr:saint-julien", + "name": "Saint-Julien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:bieres-fortes", + "products": 1, + "id": "nl:bieres-fortes", + "name": "nl:Bieres-fortes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:salice-salentino", + "name": "it:Salice Salentino", + "id": "it:salice-salentino", + "products": 1 + }, + { + "products": 1, + "name": "Poulet-korma", + "id": "fr:poulet-korma", + "url": "https://fr.openfoodfacts.org/categorie/poulet-korma" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-homard", + "products": 1, + "id": "fr:mousses-de-homard", + "name": "Mousses-de-homard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:spreadable", + "products": 1, + "name": "en:Spreadable", + "id": "en:spreadable" + }, + { + "products": 1, + "id": "fr:bloc-foie-gras-de-canard", + "name": "Bloc-foie-gras-de-canard", + "url": "https://fr.openfoodfacts.org/categorie/bloc-foie-gras-de-canard" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/conserve-de-legumes-cuisines", + "products": 1, + "name": "Conserve-de-legumes-cuisines", + "id": "fr:conserve-de-legumes-cuisines" + }, + { + "products": 1, + "name": "Muscat de Beaumes-de-Venise", + "id": "fr:muscat-de-beaumes-de-venise", + "url": "https://fr.openfoodfacts.org/categorie/muscat-de-beaumes-de-venise", + "sameAs": [ + "https://www.wikidata.org/wiki/Q1236939" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/escargots-prepares-a-la-bourguignonne", + "products": 1, + "id": "fr:escargots-prepares-a-la-bourguignonne", + "name": "Escargots-prepares-a-la-bourguignonne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/brochettes-d-agneau", + "name": "Brochettes-d-agneau", + "id": "fr:brochettes-d-agneau", + "products": 1 + }, + { + "id": "xx:soupes-de-nouilles-instantanees", + "name": "xx:Soupes-de-nouilles-instantanees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:soupes-de-nouilles-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/box-de-ravioli", + "id": "en:ravioli-in-a-box", + "name": "Box de ravioli", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/almidones-de-cereales", + "id": "fr:almidones-de-cereales", + "name": "Almidones-de-cereales", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pisco", + "name": "Pisco", + "id": "fr:pisco", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:koeken", + "name": "nl:Koeken", + "id": "nl:koeken", + "products": 1 + }, + { + "products": 1, + "id": "fr:soupes-au-poulet", + "name": "Soupes-au-poulet", + "url": "https://fr.openfoodfacts.org/categorie/soupes-au-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-aux-cepes", + "products": 1, + "name": "Sauce-aux-cepes", + "id": "fr:sauce-aux-cepes" + }, + { + "name": "Sojasossen", + "id": "fr:sojasossen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sojasossen" + }, + { + "id": "fr:boisson-sans-alcool-aromatisee-au-kiwi", + "name": "Boisson-sans-alcool-aromatisee-au-kiwi", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-sans-alcool-aromatisee-au-kiwi" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-preparees", + "products": 1, + "id": "fr:pommes-de-terre-preparees", + "name": "Pommes-de-terre-preparees" + }, + { + "products": 1, + "name": "Ecorces-d-oranges-confites", + "id": "fr:ecorces-d-oranges-confites", + "url": "https://fr.openfoodfacts.org/categorie/ecorces-d-oranges-confites" + }, + { + "products": 1, + "id": "fr:savigny", + "name": "Savigny", + "url": "https://fr.openfoodfacts.org/categorie/savigny" + }, + { + "id": "fr:raviolis-au-porc", + "name": "Raviolis-au-porc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/raviolis-au-porc" + }, + { + "name": "Pates-de-sate", + "id": "fr:pates-de-sate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-de-sate" + }, + { + "name": "en:Arty-barcode", + "id": "en:arty-barcode", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:arty-barcode" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/rose-bordeaux", + "id": "fr:rose-bordeaux", + "name": "Rose-bordeaux", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/caipirinhas", + "products": 1, + "id": "fr:caipirinhas", + "name": "Caipirinhas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-marinees-au-muscadet-et-aux-aromates", + "id": "fr:sardines-marinees-au-muscadet-et-aux-aromates", + "name": "Sardines-marinees-au-muscadet-et-aux-aromates", + "products": 1 + }, + { + "name": "Emiette-de-thon", + "id": "fr:emiette-de-thon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/emiette-de-thon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisse-de-veau", + "products": 1, + "name": "Saucisse-de-veau", + "id": "fr:saucisse-de-veau" + }, + { + "name": "Sardines-a-l-huile-de-tournesool", + "id": "fr:sardines-a-l-huile-de-tournesool", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sardines-a-l-huile-de-tournesool" + }, + { + "products": 1, + "name": "en:Ovoproduits", + "id": "en:ovoproduits", + "url": "https://fr.openfoodfacts.org/categorie/en:ovoproduits" + }, + { + "id": "fr:rioja", + "name": "Rioja", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rioja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-caprine", + "id": "en:goat-dishes", + "name": "Plats à base de viande caprine", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:pan-de-sandwich", + "id": "es:pan-de-sandwich", + "name": "es:Pan-de-sandwich", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs-de-cage", + "products": 1, + "id": "en:oeufs-de-cage", + "name": "en:Oeufs-de-cage" + }, + { + "id": "fr:vinsobres", + "name": "Vinsobres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vinsobres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:oeufs", + "products": 1, + "name": "en:Oeufs", + "id": "en:oeufs" + }, + { + "name": "Fromages-a-pate-dure-cuite", + "id": "fr:fromages-a-pate-dure-cuite", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-a-pate-dure-cuite" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:citronnades", + "name": "en:Citronnades", + "id": "en:citronnades", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:avion", + "products": 1, + "name": "pt:Avion", + "id": "pt:avion" + }, + { + "products": 1, + "id": "en:pomegranate-nectars", + "name": "Nectars de Grenade", + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-grenade" + }, + { + "name": "Fruit-tropical", + "id": "fr:fruit-tropical", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fruit-tropical" + }, + { + "name": "ru:Пряники-тульские-с-фруктовой-начинкой", + "id": "ru:пряники-тульские-с-фруктовой-начинкой", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BF%D1%80%D1%8F%D0%BD%D0%B8%D0%BA%D0%B8-%D1%82%D1%83%D0%BB%D1%8C%D1%81%D0%BA%D0%B8%D0%B5-%D1%81-%D1%84%D1%80%D1%83%D0%BA%D1%82%D0%BE%D0%B2%D0%BE%D0%B9-%D0%BD%D0%B0%D1%87%D0%B8%D0%BD%D0%BA%D0%BE%D0%B9" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/desserts-lacte-pralines", + "id": "fr:desserts-lacte-pralines", + "name": "Desserts-lacte-pralines", + "products": 1 + }, + { + "id": "fr:pate-miso", + "name": "Pate-miso", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-miso" + }, + { + "products": 1, + "name": "en:Rotis-de-porc", + "id": "en:rotis-de-porc", + "url": "https://fr.openfoodfacts.org/categorie/en:rotis-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousse-de-canard-au-porto-et-a-l-armagnac", + "products": 1, + "id": "fr:mousse-de-canard-au-porto-et-a-l-armagnac", + "name": "Mousse-de-canard-au-porto-et-a-l-armagnac" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/syrah-rose", + "products": 1, + "name": "Syrah-rose", + "id": "fr:syrah-rose" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-nature", + "products": 1, + "name": "Lardons-nature", + "id": "fr:lardons-nature" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:preparations-de-viande-bovine-hachee-fraiches", + "products": 1, + "id": "xx:preparations-de-viande-bovine-hachee-fraiches", + "name": "xx:Preparations-de-viande-bovine-hachee-fraiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:steaks-haches-de-boeuf-frais", + "products": 1, + "name": "en:Steaks-haches-de-boeuf-frais", + "id": "en:steaks-haches-de-boeuf-frais" + }, + { + "name": "Viande-hachee-de-boeuf", + "id": "fr:viande-hachee-de-boeuf", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viande-hachee-de-boeuf" + }, + { + "products": 1, + "id": "fr:miettes-de-thon-blanc-a-la-tomate", + "name": "Miettes-de-thon-blanc-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/miettes-de-thon-blanc-a-la-tomate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-canada", + "products": 1, + "id": "fr:bieres-de-canada", + "name": "Bieres-de-canada" + }, + { + "products": 1, + "id": "fr:riz-blanc-bio", + "name": "Riz-blanc-bio", + "url": "https://fr.openfoodfacts.org/categorie/riz-blanc-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-de-triple-fermentation", + "name": "Bieres-de-triple-fermentation", + "id": "fr:bieres-de-triple-fermentation", + "products": 1 + }, + { + "products": 1, + "name": "de:Levure-de-boulanger", + "id": "de:levure-de-boulanger", + "url": "https://fr.openfoodfacts.org/categorie/de:levure-de-boulanger" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/hollandischer-kase", + "name": "Hollandischer-kase", + "id": "fr:hollandischer-kase", + "products": 1 + }, + { + "products": 1, + "id": "fr:olives-vertes-en-rondelles", + "name": "Olives-vertes-en-rondelles", + "url": "https://fr.openfoodfacts.org/categorie/olives-vertes-en-rondelles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/schnittkase", + "products": 1, + "name": "Schnittkase", + "id": "fr:schnittkase" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-a-la-myrtille", + "id": "fr:chocolats-blancs-a-la-myrtille", + "name": "Chocolats-blancs-a-la-myrtille", + "products": 1 + }, + { + "id": "fr:vins-du-liban", + "name": "Vins-du-liban", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-du-liban" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:frutas-del-bosque", + "products": 1, + "id": "de:frutas-del-bosque", + "name": "de:Frutas-del-bosque" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:frutas-y-verduras-y-sus-productos", + "products": 1, + "id": "de:frutas-y-verduras-y-sus-productos", + "name": "de:Frutas-y-verduras-y-sus-productos" + }, + { + "products": 1, + "id": "ru:alubias", + "name": "ru:Alubias", + "url": "https://fr.openfoodfacts.org/categorie/ru:alubias" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cervelle-de-canut", + "id": "fr:cervelle-de-canut", + "name": "Cervelle-de-canut", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:pains", + "name": "it:Pains", + "id": "it:pains", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/da:sodas-au-cola", + "id": "da:sodas-au-cola", + "name": "da:Sodas-au-cola", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-noir-biologique", + "name": "Chocolat-noir-biologique", + "id": "fr:chocolat-noir-biologique", + "products": 1 + }, + { + "products": 1, + "id": "fr:arome-de-lavande", + "name": "Arome-de-lavande", + "url": "https://fr.openfoodfacts.org/categorie/arome-de-lavande" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-saumon", + "products": 1, + "id": "fr:mousses-de-saumon", + "name": "Mousses-de-saumon" + }, + { + "products": 1, + "id": "fr:mini-penne", + "name": "Mini-penne", + "url": "https://fr.openfoodfacts.org/categorie/mini-penne" + }, + { + "products": 1, + "id": "fr:baton-de-reglisse", + "name": "Baton-de-reglisse", + "url": "https://fr.openfoodfacts.org/categorie/baton-de-reglisse" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/produits-au-miel", + "name": "Produits-au-miel", + "id": "fr:produits-au-miel", + "products": 1 + }, + { + "products": 1, + "id": "fr:barres-aux-figues", + "name": "Barres-aux-figues", + "url": "https://fr.openfoodfacts.org/categorie/barres-aux-figues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-de-miel", + "id": "en:honey-vinegars", + "name": "Vinaigres de miel", + "products": 1 + }, + { + "products": 1, + "id": "fr:pinots", + "name": "Pinots", + "url": "https://fr.openfoodfacts.org/categorie/pinots" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/asperges-pelees-a-la-main", + "products": 1, + "id": "fr:asperges-pelees-a-la-main", + "name": "Asperges pelées à la main" + }, + { + "name": "es:Pains-d-epices", + "id": "es:pains-d-epices", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:pains-d-epices" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:prianiki", + "products": 1, + "name": "es:Prianiki", + "id": "es:prianiki" + }, + { + "products": 1, + "name": "Code-barres-pour-plusieurs-produits", + "id": "fr:code-barres-pour-plusieurs-produits", + "url": "https://fr.openfoodfacts.org/categorie/code-barres-pour-plusieurs-produits" + }, + { + "name": "Biscuits-fourrees", + "id": "fr:biscuits-fourrees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-fourrees" + }, + { + "id": "fr:pate-a-tartiner-sucree", + "name": "Pate-a-tartiner-sucree", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-a-tartiner-sucree" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-canne", + "products": 1, + "id": "fr:jus-de-canne", + "name": "Jus-de-canne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preserve", + "name": "Preserve", + "id": "fr:preserve", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confits-de-poivrons", + "products": 1, + "id": "fr:confits-de-poivrons", + "name": "Confits-de-poivrons" + }, + { + "products": 1, + "name": "Yaourt-au-lait-d-amande", + "id": "fr:yaourt-au-lait-d-amande", + "url": "https://fr.openfoodfacts.org/categorie/yaourt-au-lait-d-amande" + }, + { + "id": "fr:viandes-assaisonnees", + "name": "Viandes-assaisonnees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/viandes-assaisonnees" + }, + { + "name": "de:Des-6-mois", + "id": "de:des-6-mois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:des-6-mois" + }, + { + "products": 1, + "id": "fr:kebabs", + "name": "Kebabs", + "url": "https://fr.openfoodfacts.org/categorie/kebabs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mandeln", + "name": "Mandeln", + "id": "fr:mandeln", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:erdnussbutter", + "id": "en:erdnussbutter", + "name": "en:Erdnussbutter", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartines-grillees", + "products": 1, + "name": "Tartines-grillees", + "id": "fr:tartines-grillees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ail", + "id": "en:ail", + "name": "en:Ail", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sauce-tomate-cuisinee-aux-legumes", + "products": 1, + "name": "Sauce-tomate-cuisinee-aux-legumes", + "id": "fr:sauce-tomate-cuisinee-aux-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-au-nougat", + "id": "fr:chocolats-noirs-fourres-au-nougat", + "name": "Chocolats-noirs-fourres-au-nougat", + "products": 1 + }, + { + "products": 1, + "id": "en:ail-et-derives", + "name": "en:Ail-et-derives", + "url": "https://fr.openfoodfacts.org/categorie/en:ail-et-derives" + }, + { + "products": 1, + "id": "fr:mousses-lactees-menthe", + "name": "Mousses-lactees-menthe", + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-menthe" + }, + { + "products": 1, + "id": "en:plantes-condimentaires", + "name": "en:Plantes-condimentaires", + "url": "https://fr.openfoodfacts.org/categorie/en:plantes-condimentaires" + }, + { + "id": "fr:gelee-au-riesling", + "name": "Gelee-au-riesling", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gelee-au-riesling" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-pain-special-et-patisserie", + "name": "Preparation-pour-pain-special-et-patisserie", + "id": "fr:preparation-pour-pain-special-et-patisserie", + "products": 1 + }, + { + "products": 1, + "id": "fr:cakes-aux-olives", + "name": "Cakes-aux-olives", + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-olives" + }, + { + "id": "fr:boisson-allegee", + "name": "Boisson-allegee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/boisson-allegee" + }, + { + "products": 1, + "id": "fr:poelees-celtiques", + "name": "Poelees-celtiques", + "url": "https://fr.openfoodfacts.org/categorie/poelees-celtiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beurres-demi-sel", + "name": "en:Beurres-demi-sel", + "id": "en:beurres-demi-sel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:label-rouge-products", + "products": 1, + "name": "en:Label-rouge-products", + "id": "en:label-rouge-products" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:emilia", + "products": 1, + "id": "it:emilia", + "name": "it:Emilia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:petit-dejeuner", + "products": 1, + "id": "en:petit-dejeuner", + "name": "en:Petit-dejeuner" + }, + { + "products": 1, + "id": "it:lambrusco-emilia", + "name": "it:Lambrusco-emilia", + "url": "https://fr.openfoodfacts.org/categorie/it:lambrusco-emilia" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/amandes-au-chocolat", + "name": "Amandes-au-chocolat", + "id": "fr:amandes-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:haricots-verts-en-conserve", + "products": 1, + "name": "it:Haricots-verts-en-conserve", + "id": "it:haricots-verts-en-conserve" + }, + { + "id": "fr:vins-du-maroc", + "name": "Vins-du-maroc", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-du-maroc" + }, + { + "products": 1, + "id": "nl:rijstnoedels", + "name": "nl:Rijstnoedels", + "url": "https://fr.openfoodfacts.org/categorie/nl:rijstnoedels" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisson-de-cheval", + "products": 1, + "id": "fr:saucisson-de-cheval", + "name": "Saucisson-de-cheval" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-salade", + "products": 1, + "id": "fr:melanges-de-salade", + "name": "Melanges-de-salade" + }, + { + "id": "fr:cremes-fraiches-crues", + "name": "Cremes-fraiches-crues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremes-fraiches-crues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:medaillons-de-dinde-marines", + "products": 1, + "id": "en:medaillons-de-dinde-marines", + "name": "en:Medaillons-de-dinde-marines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lardons-de-poulet-fumes", + "id": "fr:lardons-de-poulet-fumes", + "name": "Lardons-de-poulet-fumes", + "products": 1 + }, + { + "products": 1, + "id": "es:confitures-de-cerises", + "name": "es:Confitures-de-cerises", + "url": "https://fr.openfoodfacts.org/categorie/es:confitures-de-cerises" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-mignons-fumes", + "products": 1, + "id": "fr:filets-mignons-fumes", + "name": "Filets-mignons-fumes" + }, + { + "name": "de:Yaourts-aux-fruits", + "id": "de:yaourts-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-aux-fruits" + }, + { + "products": 1, + "name": "Filets-de-harengs-a-l-huile-d-olive", + "id": "fr:filets-de-harengs-a-l-huile-d-olive", + "url": "https://fr.openfoodfacts.org/categorie/filets-de-harengs-a-l-huile-d-olive" + }, + { + "products": 1, + "id": "fr:sel-de-camargue", + "name": "Sel-de-camargue", + "url": "https://fr.openfoodfacts.org/categorie/sel-de-camargue" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/burger-vegetali-panati", + "products": 1, + "name": "Burger-vegetali-panati", + "id": "fr:burger-vegetali-panati" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saucisson-de-cheval-amylace-rouge", + "id": "fr:saucisson-de-cheval-amylace-rouge", + "name": "Saucisson-de-cheval-amylace-rouge", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:pates", + "name": "xx:Pates", + "id": "xx:pates", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:elderflower-cordial", + "id": "en:elderflower-cordial", + "name": "en:Elderflower-cordial", + "products": 1 + }, + { + "products": 1, + "id": "fr:spatzle", + "name": "Spatzle", + "url": "https://fr.openfoodfacts.org/categorie/spatzle" + }, + { + "id": "fr:risotto-aux-cepes-et-aux-tomates", + "name": "Risotto-aux-cepes-et-aux-tomates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/risotto-aux-cepes-et-aux-tomates" + }, + { + "name": "Chips-de-banane-sechees", + "id": "fr:chips-de-banane-sechees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-banane-sechees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-farcies", + "id": "es:olives-farcies", + "name": "es:Olives-farcies", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:olives-vertes-farcies", + "products": 1, + "id": "es:olives-vertes-farcies", + "name": "es:Olives-vertes-farcies" + }, + { + "products": 1, + "id": "fr:poulet-sauce-forestiere", + "name": "Poulet-sauce-forestiere", + "url": "https://fr.openfoodfacts.org/categorie/poulet-sauce-forestiere" + }, + { + "id": "fr:penne-sans-gluten", + "name": "Penne-sans-gluten", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/penne-sans-gluten" + }, + { + "name": "Marguerites-ricotta-epinards", + "id": "fr:marguerites-ricotta-epinards", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marguerites-ricotta-epinards" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-amande-enrobee-de-chocolat", + "products": 1, + "name": "Pates-amande-enrobee-de-chocolat", + "id": "fr:pates-amande-enrobee-de-chocolat" + }, + { + "products": 1, + "name": "Salades-de-pates-au-poulet-sauce-caesar", + "id": "fr:salades-de-pates-au-poulet-sauce-caesar", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates-au-poulet-sauce-caesar" + }, + { + "products": 1, + "name": "en:Romarin-en-pot", + "id": "en:romarin-en-pot", + "url": "https://fr.openfoodfacts.org/categorie/en:romarin-en-pot" + }, + { + "name": "es:Olives-vertes-denoyautees", + "id": "es:olives-vertes-denoyautees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:olives-vertes-denoyautees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:beers-from-japan", + "id": "en:beers-from-japan", + "name": "en:Beers-from-japan", + "products": 1 + }, + { + "products": 1, + "id": "en:fish-sauce", + "name": "en:Fish-sauce", + "url": "https://fr.openfoodfacts.org/categorie/en:fish-sauce" + }, + { + "id": "xx:glaces-a-l-eau", + "name": "xx:Glaces-a-l-eau", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/xx:glaces-a-l-eau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:boissons-gazeuses", + "products": 1, + "id": "sv:boissons-gazeuses", + "name": "sv:Boissons-gazeuses" + }, + { + "products": 1, + "name": "Fromages-blancs-saveur-vanille", + "id": "fr:fromages-blancs-saveur-vanille", + "url": "https://fr.openfoodfacts.org/categorie/fromages-blancs-saveur-vanille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moscatos", + "products": 1, + "id": "fr:moscatos", + "name": "Moscatos" + }, + { + "name": "Cremants", + "id": "fr:cremants", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cremants" + }, + { + "name": "Breaded-products-breaded-product", + "id": "fr:breaded-products-breaded-product", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/breaded-products-breaded-product" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/panisses", + "id": "fr:panisses", + "name": "Panisses", + "products": 1 + }, + { + "products": 1, + "id": "fr:four-cheese-pasta-sauce", + "name": "Four-cheese-pasta-sauce", + "url": "https://fr.openfoodfacts.org/categorie/four-cheese-pasta-sauce" + }, + { + "name": "Preparations-a-base-de-tofu", + "id": "fr:preparations-a-base-de-tofu", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-a-base-de-tofu" + }, + { + "id": "fr:preparation-pour-sauce", + "name": "Preparation-pour-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-sauce" + }, + { + "id": "fr:yaourts-a-la-grecque-a-la-stracciatella", + "name": "Yaourts-a-la-grecque-a-la-stracciatella", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-grecque-a-la-stracciatella" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/condiment-japonais", + "id": "fr:condiment-japonais", + "name": "Condiment-japonais", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:thes-verts-glaces", + "products": 1, + "name": "en:Thes-verts-glaces", + "id": "en:thes-verts-glaces" + }, + { + "products": 1, + "id": "fr:salades-de-crevettes", + "name": "Salades-de-crevettes", + "url": "https://fr.openfoodfacts.org/categorie/salades-de-crevettes" + }, + { + "id": "en:fruit-candies", + "name": "en:Fruit-candies", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:fruit-candies" + }, + { + "name": "Gaufres-liegeoises-au-chocolat", + "id": "fr:gaufres-liegeoises-au-chocolat", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/gaufres-liegeoises-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:%E3%82%AD%E3%83%A3%E3%83%B3%E3%83%87%E3%82%A3", + "name": "ja:キャンディ", + "id": "ja:キャンディ", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-japonaise", + "id": "fr:soupe-japonaise", + "name": "Soupe-japonaise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupe-miso-tofu-instantanee-aux-petits-oignons", + "name": "Soupe-miso-tofu-instantanee-aux-petits-oignons", + "id": "fr:soupe-miso-tofu-instantanee-aux-petits-oignons", + "products": 1 + }, + { + "id": "fr:echine-de-porc-assaisonnee", + "name": "Echine-de-porc-assaisonnee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/echine-de-porc-assaisonnee" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:%E3%82%AB%E3%83%83%E3%83%97%E3%83%A9%E3%83%BC%E3%83%A1%E3%83%B3", + "products": 1, + "id": "ja:カップラーメン", + "name": "ja:カップラーメン" + }, + { + "products": 1, + "name": "Origan-deshydrate", + "id": "fr:origan-deshydrate", + "url": "https://fr.openfoodfacts.org/categorie/origan-deshydrate" + }, + { + "id": "en:sauces-au-soja-salees", + "name": "en:Sauces-au-soja-salees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-au-soja-salees" + }, + { + "products": 1, + "name": "Fruits-compote", + "id": "fr:fruits-compote", + "url": "https://fr.openfoodfacts.org/categorie/fruits-compote" + }, + { + "id": "fr:foies-gras-de-canard-cuits-au-torchon", + "name": "Foies-gras-de-canard-cuits-au-torchon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/foies-gras-de-canard-cuits-au-torchon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saucisses-de-francfort", + "id": "de:saucisses-de-francfort", + "name": "de:Saucisses-de-francfort", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/frecinettes", + "name": "Frecinettes", + "id": "fr:frecinettes", + "products": 1 + }, + { + "products": 1, + "name": "Vin-grenache", + "id": "fr:vin-grenache", + "url": "https://fr.openfoodfacts.org/categorie/vin-grenache" + }, + { + "products": 1, + "id": "de:boulghours", + "name": "de:Boulghours", + "url": "https://fr.openfoodfacts.org/categorie/de:boulghours" + }, + { + "id": "fr:souces-pour-les-pates", + "name": "Souces-pour-les-pates", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/souces-pour-les-pates" + }, + { + "id": "fr:farines-de-manioc-fermente", + "name": "Farines-de-manioc-fermente", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-de-manioc-fermente" + }, + { + "products": 1, + "name": "Schokoladenkuchen", + "id": "fr:schokoladenkuchen", + "url": "https://fr.openfoodfacts.org/categorie/schokoladenkuchen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/garden-strawberries", + "products": 1, + "id": "en:garden-strawberries", + "name": "Garden strawberries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/choucroute-d-alsace", + "name": "Choucroute-d-alsace", + "id": "fr:choucroute-d-alsace", + "products": 1 + }, + { + "name": "Farines-d-epeautre-t150", + "id": "fr:farines-d-epeautre-t150", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-d-epeautre-t150" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sv:chocolats", + "name": "sv:Chocolats", + "id": "sv:chocolats", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparations-pour-sandwiches", + "name": "Preparations-pour-sandwiches", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-sandwiches" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/purees-de-fruit", + "products": 1, + "name": "Purees-de-fruit", + "id": "fr:purees-de-fruit" + }, + { + "id": "fr:the-vert-menthe-bio", + "name": "The-vert-menthe-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/the-vert-menthe-bio" + }, + { + "products": 1, + "name": "Muscat-du-ventoux", + "id": "fr:muscat-du-ventoux", + "url": "https://fr.openfoodfacts.org/categorie/muscat-du-ventoux" + }, + { + "name": "Dessert-bio", + "id": "fr:dessert-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dessert-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vins-mousseux-bruts", + "products": 1, + "name": "Vins-mousseux-bruts", + "id": "fr:vins-mousseux-bruts" + }, + { + "name": "Pipe-rigate-aux-oeufs", + "id": "fr:pipe-rigate-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pipe-rigate-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/flageolets-cuisines", + "products": 1, + "id": "fr:flageolets-cuisines", + "name": "Flageolets-cuisines" + }, + { + "products": 1, + "id": "fr:flageolets-cuisines-bio", + "name": "Flageolets-cuisines-bio", + "url": "https://fr.openfoodfacts.org/categorie/flageolets-cuisines-bio" + }, + { + "products": 1, + "id": "fr:igp-cotes-d-auvergne", + "name": "Igp-cotes-d-auvergne", + "url": "https://fr.openfoodfacts.org/categorie/igp-cotes-d-auvergne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-pour-fondant-au-chocolat", + "products": 1, + "id": "fr:preparation-pour-fondant-au-chocolat", + "name": "Preparation-pour-fondant-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chiffonnades", + "products": 1, + "name": "Chiffonnades", + "id": "fr:chiffonnades" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:durum-wheat-pasta-with-meat", + "products": 1, + "name": "en:Durum-wheat-pasta-with-meat", + "id": "en:durum-wheat-pasta-with-meat" + }, + { + "id": "fr:groins", + "name": "Groins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/groins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:picos-de-pan", + "sameAs": [ + "https://www.wikidata.org/wiki/Q6075158" + ], + "products": 1, + "name": "es:Picos de pan", + "id": "es:picos-de-pan" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colins-en-conserve", + "products": 1, + "id": "fr:colins-en-conserve", + "name": "Colins-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:ail-sec-broye", + "products": 1, + "id": "en:ail-sec-broye", + "name": "en:Ail-sec-broye" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/guarana", + "products": 1, + "name": "Guarana", + "id": "fr:guarana" + }, + { + "id": "fr:confitures-de-peches-de-vigne", + "name": "Confitures-de-peches-de-vigne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-peches-de-vigne" + }, + { + "id": "fr:preparation-a-l-huile-d-olive-saveur-truffe-bio", + "name": "Preparation-a-l-huile-d-olive-saveur-truffe-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-a-l-huile-d-olive-saveur-truffe-bio" + }, + { + "products": 1, + "id": "fr:melange-pour-cake", + "name": "Melange-pour-cake", + "url": "https://fr.openfoodfacts.org/categorie/melange-pour-cake" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:pizzas-au-fromage", + "products": 1, + "name": "en:Pizzas-au-fromage", + "id": "en:pizzas-au-fromage" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparation-a-l-huile-d-olive-arome-basilic-bio", + "name": "Preparation-a-l-huile-d-olive-arome-basilic-bio", + "id": "fr:preparation-a-l-huile-d-olive-arome-basilic-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gache-au-chocolat", + "products": 1, + "name": "Gache-au-chocolat", + "id": "fr:gache-au-chocolat" + }, + { + "name": "Parmentier-de-poulet", + "id": "fr:parmentier-de-poulet", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/parmentier-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nl:tartelettes-a-la-fraise", + "name": "nl:Tartelettes-a-la-fraise", + "id": "nl:tartelettes-a-la-fraise", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/basilic-en-tube", + "products": 1, + "name": "Basilic-en-tube", + "id": "fr:basilic-en-tube" + }, + { + "name": "Yaourts-a-la-goyave", + "id": "fr:yaourts-a-la-goyave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/yaourts-a-la-goyave" + }, + { + "products": 1, + "name": "Ongezouten-roomboters", + "id": "fr:ongezouten-roomboters", + "url": "https://fr.openfoodfacts.org/categorie/ongezouten-roomboters" + }, + { + "products": 1, + "name": "Menthe fraîche", + "id": "en:fresh-mint", + "url": "https://fr.openfoodfacts.org/categorie/menthe-fraiche" + }, + { + "products": 1, + "name": "Gelées de citron", + "id": "en:lemon-jellies", + "url": "https://fr.openfoodfacts.org/categorie/gelees-de-citron" + }, + { + "id": "fr:crevettes-bio", + "name": "Crevettes-bio", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/crevettes-bio" + }, + { + "products": 1, + "id": "en:canned-quartered-champignon-mushrooms", + "name": "Quartiers de champignons de Paris en conserve", + "url": "https://fr.openfoodfacts.org/categorie/quartiers-de-champignons-de-paris-en-conserve" + }, + { + "products": 1, + "name": "en:Confitures-de-peches", + "id": "en:confitures-de-peches", + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-de-peches" + }, + { + "products": 1, + "name": "Aiguillettes-de-poulet-roties", + "id": "fr:aiguillettes-de-poulet-roties", + "url": "https://fr.openfoodfacts.org/categorie/aiguillettes-de-poulet-roties" + }, + { + "products": 1, + "id": "fr:compotes-myrtilles-pommes", + "name": "Compotes-myrtilles-pommes", + "url": "https://fr.openfoodfacts.org/categorie/compotes-myrtilles-pommes" + }, + { + "products": 1, + "id": "en:quinoa-crisps", + "name": "Chips au quinoa", + "url": "https://fr.openfoodfacts.org/categorie/chips-au-quinoa" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-au-piment", + "products": 1, + "id": "fr:pates-au-piment", + "name": "Pates-au-piment" + }, + { + "id": "fr:pates-aux-cepes", + "name": "Pates-aux-cepes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pates-aux-cepes" + }, + { + "products": 1, + "id": "en:extra-light-maple-syrups", + "name": "Sirops d'érable extra clair", + "url": "https://fr.openfoodfacts.org/categorie/sirops-d-erable-extra-clair" + }, + { + "products": 1, + "id": "fr:blaye-cotes-de-bordeaux-rouge", + "name": "Blaye-Côtes-de-Bordeaux rouge", + "url": "https://fr.openfoodfacts.org/categorie/blaye-cotes-de-bordeaux-rouge" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:dairy-smoothie", + "products": 1, + "id": "en:dairy-smoothie", + "name": "en:Dairy-smoothie" + }, + { + "id": "fr:compote-pomme-passion-mangue", + "name": "Compote-pomme-passion-mangue", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/compote-pomme-passion-mangue" + }, + { + "products": 1, + "name": "Confitures-de-nectarines", + "id": "fr:confitures-de-nectarines", + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-nectarines" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confits-de-cerises", + "name": "Confits-de-cerises", + "id": "fr:confits-de-cerises", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-oignon", + "products": 1, + "id": "en:onion-jams", + "name": "Confitures d'oignon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cassis-sec", + "products": 1, + "name": "Cassis-sec", + "id": "fr:cassis-sec" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gaufres-pur-beurre", + "id": "fr:gaufres-pur-beurre", + "name": "Gaufres-pur-beurre", + "products": 1 + }, + { + "products": 1, + "name": "Comtés Rhodaniens", + "id": "fr:comtes-rhodaniens", + "sameAs": [ + "https://www.wikidata.org/wiki/Q18745121" + ], + "url": "https://fr.openfoodfacts.org/categorie/comtes-rhodaniens" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-d-abricots", + "id": "fr:pates-d-abricots", + "name": "Pates-d-abricots", + "products": 1 + }, + { + "name": "Muffins aux bleuets", + "id": "fr:muffins-aux-bleuets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/muffins-aux-bleuets" + }, + { + "name": "de:Barre-fruitee", + "id": "de:barre-fruitee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:barre-fruitee" + }, + { + "id": "en:jamaican-jerk", + "name": "en:Jamaican-jerk", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:jamaican-jerk" + }, + { + "products": 1, + "id": "fr:caviars-kaluga", + "name": "Caviars-kaluga", + "url": "https://fr.openfoodfacts.org/categorie/caviars-kaluga" + }, + { + "products": 1, + "id": "fr:mortadella-bologna", + "name": "Mortadella-bologna", + "url": "https://fr.openfoodfacts.org/categorie/mortadella-bologna" + }, + { + "id": "fr:galettes-de-pommes-de-terre-rapees", + "name": "Galettes-de-pommes-de-terre-rapees", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-pommes-de-terre-rapees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/baby-carottes-surgelees", + "name": "Baby carottes surgelées", + "id": "en:frozen-baby-carrots", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:filets-de-cabillaud", + "name": "en:Filets-de-cabillaud", + "id": "en:filets-de-cabillaud", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-cheyenne", + "id": "fr:pommes-de-terre-cheyenne", + "name": "Pommes-de-terre-cheyenne", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:confitures-d-abricot", + "name": "en:Confitures-d-abricot", + "id": "en:confitures-d-abricot", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:blinis", + "products": 1, + "name": "en:Blinis", + "id": "en:blinis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ko:produits-a-tartiner-sales", + "products": 1, + "name": "ko:Produits-a-tartiner-sales", + "id": "ko:produits-a-tartiner-sales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:graines-de-coriandre", + "id": "en:graines-de-coriandre", + "name": "en:Graines-de-coriandre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-rouge", + "products": 1, + "id": "fr:riz-rouge", + "name": "Riz-rouge" + }, + { + "id": "fr:taboules-aux-raisins", + "name": "Taboules-aux-raisins", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/taboules-aux-raisins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:biscuits-sales", + "name": "en:Biscuits-sales", + "id": "en:biscuits-sales", + "products": 1 + }, + { + "products": 1, + "id": "fr:preparations-pour-aligot", + "name": "Preparations-pour-aligot", + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-aligot" + }, + { + "products": 1, + "id": "fr:gelees-d-aloe-vera", + "name": "Gelees-d-aloe-vera", + "url": "https://fr.openfoodfacts.org/categorie/gelees-d-aloe-vera" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pizza-marguarita", + "id": "fr:pizza-marguarita", + "name": "Pizza-marguarita", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-sesame", + "id": "fr:cremes-de-sesame", + "name": "Cremes-de-sesame", + "products": 1 + }, + { + "products": 1, + "name": "Poulet-aux-raisins", + "id": "fr:poulet-aux-raisins", + "url": "https://fr.openfoodfacts.org/categorie/poulet-aux-raisins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:chocolats-noirs", + "products": 1, + "name": "es:Chocolats-noirs", + "id": "es:chocolats-noirs" + }, + { + "products": 1, + "id": "fr:chassagne-montrachet-premier-cru-abbaye-de-morgeot", + "name": "Chassagne-Montrachet premier cru Abbaye de Morgeot", + "url": "https://fr.openfoodfacts.org/categorie/chassagne-montrachet-premier-cru-abbaye-de-morgeot" + }, + { + "products": 1, + "id": "fr:pousses-d-epinard", + "name": "Pousses-d-epinard", + "url": "https://fr.openfoodfacts.org/categorie/pousses-d-epinard" + }, + { + "id": "fr:saint-honores", + "name": "Saint-honores", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saint-honores" + }, + { + "id": "en:goose-confits", + "name": "Confits d'oie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/confits-d-oie" + }, + { + "products": 1, + "name": "en:Gelees-de-fruits", + "id": "en:gelees-de-fruits", + "url": "https://fr.openfoodfacts.org/categorie/en:gelees-de-fruits" + }, + { + "name": "Tarte-aux-poireaux-surgelee", + "id": "fr:tarte-aux-poireaux-surgelee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/tarte-aux-poireaux-surgelee" + }, + { + "id": "en:gelees-de-groseilles", + "name": "en:Gelees-de-groseilles", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:gelees-de-groseilles" + }, + { + "name": "Preparation-orientale", + "id": "fr:preparation-orientale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparation-orientale" + }, + { + "id": "es:picotostes-de-pan-moreno-con-sabor-a-caviar", + "name": "es:Picotostes-de-pan-moreno-con-sabor-a-caviar", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:picotostes-de-pan-moreno-con-sabor-a-caviar" + }, + { + "products": 1, + "id": "fr:pizzas-pates-fines", + "name": "Pizzas-pates-fines", + "url": "https://fr.openfoodfacts.org/categorie/pizzas-pates-fines" + }, + { + "products": 1, + "id": "fr:جبن", + "name": "جبن", + "url": "https://fr.openfoodfacts.org/categorie/%D8%AC%D8%A8%D9%86" + }, + { + "id": "fr:glaces-a-la-banane", + "name": "Glaces-a-la-banane", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/glaces-a-la-banane" + }, + { + "products": 1, + "name": "Pates-de-haricots-rouges", + "id": "fr:pates-de-haricots-rouges", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-haricots-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sardines-citron-basilic", + "id": "fr:sardines-citron-basilic", + "name": "Sardines-citron-basilic", + "products": 1 + }, + { + "id": "fr:ananas-deshydrate", + "name": "Ananas-deshydrate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ananas-deshydrate" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-fraiche-epaisse-entiere", + "products": 1, + "id": "fr:creme-fraiche-epaisse-entiere", + "name": "Creme-fraiche-epaisse-entiere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:bio", + "name": "en:Bio", + "id": "en:bio", + "products": 1 + }, + { + "products": 1, + "id": "en:algues-fraiches", + "name": "en:Algues-fraiches", + "url": "https://fr.openfoodfacts.org/categorie/en:algues-fraiches" + }, + { + "id": "pt:pflanzliche-getranke", + "name": "pt:Pflanzliche-getranke", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pt:pflanzliche-getranke" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/des-4-ans", + "products": 1, + "id": "fr:des-4-ans", + "name": "Des-4-ans" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mousses-lactees-au-chocolat", + "products": 1, + "id": "fr:mousses-lactees-au-chocolat", + "name": "Mousses-lactees-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/colombo-de-porc", + "products": 1, + "name": "Colombo-de-porc", + "id": "fr:colombo-de-porc" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:acqua-minerale", + "name": "it:Acqua-minerale", + "id": "it:acqua-minerale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/endives-rouges", + "products": 1, + "id": "fr:endives-rouges", + "name": "Endives-rouges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:rice-crackers", + "products": 1, + "name": "en:Rice-crackers", + "id": "en:rice-crackers" + }, + { + "products": 1, + "name": "sr:Boissons", + "id": "sr:boissons", + "url": "https://fr.openfoodfacts.org/categorie/sr:boissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:smoothies-aux-fruits", + "products": 1, + "id": "en:smoothies-aux-fruits", + "name": "en:Smoothies-aux-fruits" + }, + { + "name": "Mousses-aux-fruits", + "id": "fr:mousses-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-aux-fruits" + }, + { + "name": "Perles-de-tapioca", + "id": "fr:perles-de-tapioca", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/perles-de-tapioca" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poivre-vert-en-grains", + "name": "Poivre vert en grains", + "id": "en:green-peppercorns", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/concentres-de-tamarin", + "id": "fr:concentres-de-tamarin", + "name": "Concentres-de-tamarin", + "products": 1 + }, + { + "products": 1, + "id": "fr:cidre-fermier", + "name": "Cidre-fermier", + "url": "https://fr.openfoodfacts.org/categorie/cidre-fermier" + }, + { + "name": "Rambutan-au-sirop", + "id": "fr:rambutan-au-sirop", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rambutan-au-sirop" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sucres", + "name": "en:Sucres", + "id": "en:sucres", + "products": 1 + }, + { + "products": 1, + "id": "fr:carottes-et-petits-pois-en-conserve", + "name": "Carottes-et-petits-pois-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/carottes-et-petits-pois-en-conserve" + }, + { + "products": 1, + "name": "Cassoulets-au-mouton", + "id": "fr:cassoulets-au-mouton", + "url": "https://fr.openfoodfacts.org/categorie/cassoulets-au-mouton" + }, + { + "name": "Vins-de-cepage-zinfandel", + "id": "fr:vins-de-cepage-zinfandel", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vins-de-cepage-zinfandel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:juice-drinks", + "name": "en:Juice-drinks", + "id": "en:juice-drinks", + "products": 1 + }, + { + "products": 1, + "id": "fr:vouvray", + "name": "Vouvray", + "url": "https://fr.openfoodfacts.org/categorie/vouvray" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pates-vegetales-a-base-de-aceitunas", + "id": "fr:pates-vegetales-a-base-de-aceitunas", + "name": "Pates-vegetales-a-base-de-aceitunas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sirops-de-fleurs-de-sureau", + "id": "en:sirops-de-fleurs-de-sureau", + "name": "en:Sirops-de-fleurs-de-sureau", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/red-ale", + "id": "fr:red-ale", + "name": "Red-ale", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gouter-au-riz-complet-au-gout-fruite", + "products": 1, + "id": "fr:gouter-au-riz-complet-au-gout-fruite", + "name": "Gouter-au-riz-complet-au-gout-fruite" + }, + { + "products": 1, + "name": "Lambruscos", + "id": "fr:lambruscos", + "url": "https://fr.openfoodfacts.org/categorie/lambruscos" + }, + { + "products": 1, + "id": "fr:purees-pour-bebe", + "name": "Purees-pour-bebe", + "url": "https://fr.openfoodfacts.org/categorie/purees-pour-bebe" + }, + { + "products": 1, + "id": "fr:compotes-de-bananes", + "name": "Compotes-de-bananes", + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-bananes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/compotes-de-prunes", + "products": 1, + "name": "Compotes-de-prunes", + "id": "fr:compotes-de-prunes" + }, + { + "products": 1, + "name": "Pates-de-lapins", + "id": "fr:pates-de-lapins", + "url": "https://fr.openfoodfacts.org/categorie/pates-de-lapins" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:sodas-aux-fruits", + "products": 1, + "name": "de:Sodas-aux-fruits", + "id": "de:sodas-aux-fruits" + }, + { + "products": 1, + "name": "Currys-de-lentilles", + "id": "fr:currys-de-lentilles", + "url": "https://fr.openfoodfacts.org/categorie/currys-de-lentilles" + }, + { + "id": "fr:galette-vegetale", + "name": "Galette-vegetale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/galette-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cafes-lyophilises", + "name": "Cafes-lyophilises", + "id": "fr:cafes-lyophilises", + "products": 1 + }, + { + "id": "fr:currys-de-lentilles-a-la-noix-de-coco", + "name": "Currys-de-lentilles-a-la-noix-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/currys-de-lentilles-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-galettes-de-pois-chiches", + "name": "Preparations-pour-galettes-de-pois-chiches", + "id": "fr:preparations-pour-galettes-de-pois-chiches", + "products": 1 + }, + { + "id": "fr:criquets", + "name": "Criquets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/criquets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:thes", + "products": 1, + "id": "es:thes", + "name": "es:Thes" + }, + { + "id": "en:coconut-cream", + "name": "en:Coconut-cream", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:coconut-cream" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ja:pates-au-wasabi", + "name": "ja:Pates-au-wasabi", + "id": "ja:pates-au-wasabi", + "products": 1 + }, + { + "products": 1, + "name": "Preparations-de-viandes-de-volaille", + "id": "fr:preparations-de-viandes-de-volaille", + "url": "https://fr.openfoodfacts.org/categorie/preparations-de-viandes-de-volaille" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/nonnettes-au-caramel", + "name": "Nonnettes-au-caramel", + "id": "fr:nonnettes-au-caramel", + "products": 1 + }, + { + "products": 1, + "id": "fi:boissons", + "name": "fi:Boissons", + "url": "https://fr.openfoodfacts.org/categorie/fi:boissons" + }, + { + "name": "nl:Pates-alimentaires", + "id": "nl:pates-alimentaires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nl:pates-alimentaires" + }, + { + "products": 1, + "id": "fr:beurres-fermiers", + "name": "Beurres-fermiers", + "url": "https://fr.openfoodfacts.org/categorie/beurres-fermiers" + }, + { + "id": "en:semoules-de-ble-dur", + "name": "en:Semoules-de-ble-dur", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:semoules-de-ble-dur" + }, + { + "id": "fr:melons-de-guadeloupe", + "name": "Melons-de-guadeloupe", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melons-de-guadeloupe" + }, + { + "id": "fr:pate-au-foie-de-canard", + "name": "Pate-au-foie-de-canard", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pate-au-foie-de-canard" + }, + { + "name": "en:Baked-beans", + "id": "en:baked-beans", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:baked-beans" + }, + { + "id": "en:haricots-a-la-tomate", + "name": "en:Haricots-a-la-tomate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:haricots-a-la-tomate" + }, + { + "id": "fr:piments-de-la-jamaique", + "name": "Piments-de-la-jamaique", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/piments-de-la-jamaique" + }, + { + "name": "en:Butter-milk", + "id": "en:butter-milk", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:butter-milk" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-desserts-au-chocolat", + "name": "Preparations-pour-desserts-au-chocolat", + "id": "fr:preparations-pour-desserts-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/soupes-aux-asperges", + "products": 1, + "id": "en:asparagus-soups", + "name": "Soupes aux asperges" + }, + { + "id": "fr:creme-de-cassis", + "name": "Creme-de-cassis", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/creme-de-cassis" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/the-en-sachet", + "products": 1, + "name": "The-en-sachet", + "id": "fr:the-en-sachet" + }, + { + "id": "en:caramels-au-beurre-sale", + "name": "en:Caramels-au-beurre-sale", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:caramels-au-beurre-sale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/laits-de-riz-a-la-noix-de-coco", + "products": 1, + "id": "fr:laits-de-riz-a-la-noix-de-coco", + "name": "Laits-de-riz-a-la-noix-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/huile-vierge-de-colza-biologique", + "products": 1, + "name": "Huile-vierge-de-colza-biologique", + "id": "fr:huile-vierge-de-colza-biologique" + }, + { + "name": "de:Kidneybohnen", + "id": "de:kidneybohnen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:kidneybohnen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartes-pate-sablee", + "id": "fr:tartes-pate-sablee", + "name": "Tartes-pate-sablee", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:vins-effervescents", + "products": 1, + "name": "it:Vins-effervescents", + "id": "it:vins-effervescents" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/oeufs-chocolat", + "name": "Oeufs-chocolat", + "id": "fr:oeufs-chocolat", + "products": 1 + }, + { + "products": 1, + "name": "de:Yaourts-straciatella", + "id": "de:yaourts-straciatella", + "url": "https://fr.openfoodfacts.org/categorie/de:yaourts-straciatella" + }, + { + "products": 1, + "name": "Julienne-de-legumes-bio-surgele", + "id": "fr:julienne-de-legumes-bio-surgele", + "url": "https://fr.openfoodfacts.org/categorie/julienne-de-legumes-bio-surgele" + }, + { + "name": "de:Sons-d-avoine", + "id": "de:sons-d-avoine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sons-d-avoine" + }, + { + "name": "de:Sons-de-cereales", + "id": "de:sons-de-cereales", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:sons-de-cereales" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:harengs", + "products": 1, + "name": "de:Harengs", + "id": "de:harengs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gehackte-tomaten", + "name": "Gehackte-tomaten", + "id": "fr:gehackte-tomaten", + "products": 1 + }, + { + "name": "de:Dinkel-vollkorn-spaghetti", + "id": "de:dinkel-vollkorn-spaghetti", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:dinkel-vollkorn-spaghetti" + }, + { + "products": 1, + "id": "en:chocolats-a-la-fleur-de-sel", + "name": "en:Chocolats-a-la-fleur-de-sel", + "url": "https://fr.openfoodfacts.org/categorie/en:chocolats-a-la-fleur-de-sel" + }, + { + "products": 1, + "id": "de:cornichons", + "name": "de:Cornichons", + "url": "https://fr.openfoodfacts.org/categorie/de:cornichons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:pickles-d-origine-vegetale", + "products": 1, + "id": "de:pickles-d-origine-vegetale", + "name": "de:Pickles-d-origine-vegetale" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:alubias-blancas-cocidas-en-conserva", + "products": 1, + "name": "ru:Alubias-blancas-cocidas-en-conserva", + "id": "ru:alubias-blancas-cocidas-en-conserva" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:miels-cremeux", + "products": 1, + "name": "en:Miels-cremeux", + "id": "en:miels-cremeux" + }, + { + "name": "Quark maigre", + "id": "en:lean-quark", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/quark-maigre" + }, + { + "products": 1, + "name": "de:Boissons-lactees", + "id": "de:boissons-lactees", + "url": "https://fr.openfoodfacts.org/categorie/de:boissons-lactees" + }, + { + "name": "de:Fettarmer-bio-kefir-mild", + "id": "de:fettarmer-bio-kefir-mild", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:fettarmer-bio-kefir-mild" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cerises-au-sirop", + "id": "en:cerises-au-sirop", + "name": "en:Cerises-au-sirop", + "products": 1 + }, + { + "products": 1, + "name": "Cremes-de-noix", + "id": "fr:cremes-de-noix", + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-noix" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/verduras-y-hortalizas-frescas", + "products": 1, + "name": "Verduras-y-hortalizas-frescas", + "id": "fr:verduras-y-hortalizas-frescas" + }, + { + "name": "Mélanges de légumes pour soupes", + "id": "es:mezclas-de-verduras-y-hortalizas-para-sopa", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melanges-de-legumes-pour-soupes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-truie-fumee", + "products": 1, + "id": "fr:filets-de-truie-fumee", + "name": "Filets-de-truie-fumee" + }, + { + "products": 1, + "id": "fr:maquereaux-a-la-tomate", + "name": "Maquereaux-a-la-tomate", + "url": "https://fr.openfoodfacts.org/categorie/maquereaux-a-la-tomate" + }, + { + "products": 1, + "name": "it:Snack", + "id": "it:snack", + "url": "https://fr.openfoodfacts.org/categorie/it:snack" + }, + { + "name": "Preparations-pour-biere", + "id": "fr:preparations-pour-biere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-biere" + }, + { + "name": "Sucre-de-coco", + "id": "fr:sucre-de-coco", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/sucre-de-coco" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sr:boissons-sucrees", + "id": "sr:boissons-sucrees", + "name": "sr:Boissons-sucrees", + "products": 1 + }, + { + "products": 1, + "id": "fr:lyoner", + "name": "Lyoner", + "url": "https://fr.openfoodfacts.org/categorie/lyoner" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/kits-a-brasser", + "products": 1, + "name": "Kits-a-brasser", + "id": "fr:kits-a-brasser" + }, + { + "id": "de:wiener-wurstchen", + "name": "de:Wiener-wurstchen", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/de:wiener-wurstchen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/mangues-en-conserve", + "id": "fr:mangues-en-conserve", + "name": "Mangues-en-conserve", + "products": 1 + }, + { + "id": "es:sels-de-table", + "name": "es:Sels-de-table", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/es:sels-de-table" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tortellini-avec-sauce-a-la-viande", + "name": "Tortellini-avec-sauce-a-la-viande", + "id": "fr:tortellini-avec-sauce-a-la-viande", + "products": 1 + }, + { + "sameAs": [ + "https://www.wikidata.org/wiki/Q3562921" + ], + "url": "https://fr.openfoodfacts.org/categorie/volnay", + "id": "fr:volnay", + "name": "Volnay", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:fromages-d-italie", + "id": "en:fromages-d-italie", + "name": "en:Fromages-d-italie", + "products": 1 + }, + { + "name": "Saucissons-de-parme", + "id": "fr:saucissons-de-parme", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/saucissons-de-parme" + }, + { + "products": 1, + "id": "fr:raisins-verts", + "name": "Raisins-verts", + "url": "https://fr.openfoodfacts.org/categorie/raisins-verts" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vermicelles-de-haricot-mungo", + "id": "fr:vermicelles-de-haricot-mungo", + "name": "Vermicelles-de-haricot-mungo", + "products": 1 + }, + { + "id": "fr:muscadets-sur-lie", + "name": "Muscadets-sur-lie", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/muscadets-sur-lie" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-noirs-fourres-a-l-orange", + "products": 1, + "id": "fr:chocolats-noirs-fourres-a-l-orange", + "name": "Chocolats-noirs-fourres-a-l-orange" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gateau-italien", + "products": 1, + "name": "Gateau-italien", + "id": "fr:gateau-italien" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pflanzenole", + "id": "fr:pflanzenole", + "name": "Pflanzenole", + "products": 1 + }, + { + "products": 1, + "name": "en:Cumin-en-poudre", + "id": "en:cumin-en-poudre", + "url": "https://fr.openfoodfacts.org/categorie/en:cumin-en-poudre" + }, + { + "name": "Couscous-a-la-marocaine", + "id": "fr:couscous-a-la-marocaine", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/couscous-a-la-marocaine" + }, + { + "name": "en:Nectars-de-fraises", + "id": "en:nectars-de-fraises", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:nectars-de-fraises" + }, + { + "name": "Moules-a-la-mariniere", + "id": "fr:moules-a-la-mariniere", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/moules-a-la-mariniere" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:des-6-mois", + "id": "en:des-6-mois", + "name": "en:Des-6-mois", + "products": 1 + }, + { + "products": 1, + "name": "Fruit-de-mer", + "id": "fr:fruit-de-mer", + "url": "https://fr.openfoodfacts.org/categorie/fruit-de-mer" + }, + { + "id": "en:haches-de-saumon", + "name": "en:Haches-de-saumon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:haches-de-saumon" + }, + { + "products": 1, + "name": "Roussillon", + "id": "fr:roussillon", + "url": "https://fr.openfoodfacts.org/categorie/roussillon" + }, + { + "products": 1, + "id": "fr:premixs", + "name": "Premixs", + "url": "https://fr.openfoodfacts.org/categorie/premixs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/longan-au-sirop", + "name": "Longan-au-sirop", + "id": "fr:longan-au-sirop", + "products": 1 + }, + { + "products": 1, + "id": "de:miels-liquides", + "name": "de:Miels-liquides", + "url": "https://fr.openfoodfacts.org/categorie/de:miels-liquides" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:condimentos", + "id": "en:condimentos", + "name": "en:Condimentos", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/additifs", + "products": 1, + "id": "fr:additifs", + "name": "Additifs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/poules", + "name": "Poules", + "id": "fr:poules", + "products": 1 + }, + { + "products": 1, + "id": "fr:entrecote-de-boeuf", + "name": "Entrecote-de-boeuf", + "url": "https://fr.openfoodfacts.org/categorie/entrecote-de-boeuf" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pt:legumineuses-en-conserve", + "products": 1, + "id": "pt:legumineuses-en-conserve", + "name": "pt:Legumineuses-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:saucisses-fumees", + "products": 1, + "name": "de:Saucisses-fumees", + "id": "de:saucisses-fumees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/saute-de-veau", + "products": 1, + "id": "fr:saute-de-veau", + "name": "Saute-de-veau" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/squuezer", + "id": "fr:squuezer", + "name": "Squuezer", + "products": 1 + }, + { + "id": "it:confetti-di-chewing-gum-ripieni", + "name": "it:Confetti-di-chewing-gum-ripieni", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:confetti-di-chewing-gum-ripieni" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chicken-and-sweetcorn-soup", + "name": "en:Chicken-and-sweetcorn-soup", + "id": "en:chicken-and-sweetcorn-soup", + "products": 1 + }, + { + "name": "Ail-en-poudre", + "id": "fr:ail-en-poudre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ail-en-poudre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ar:biscuits-sables", + "name": "ar:Biscuits-sables", + "id": "ar:biscuits-sables", + "products": 1 + }, + { + "products": 1, + "id": "fr:gigots-d-agneau", + "name": "Gigots-d-agneau", + "url": "https://fr.openfoodfacts.org/categorie/gigots-d-agneau" + }, + { + "products": 1, + "id": "en:sauces-soja", + "name": "en:Sauces-soja", + "url": "https://fr.openfoodfacts.org/categorie/en:sauces-soja" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:sodas-au-citron", + "id": "it:sodas-au-citron", + "name": "it:Sodas-au-citron", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:cereales-en-grains", + "products": 1, + "id": "de:cereales-en-grains", + "name": "de:Cereales-en-grains" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/galettes-de-riz-au-chocolat-blanc", + "name": "Galettes de riz au chocolat blanc", + "id": "en:puffed-rice-cakes-with-white-chocolate", + "products": 1 + }, + { + "name": "Salades-de-pates-vegetarienne", + "id": "fr:salades-de-pates-vegetarienne", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-pates-vegetarienne" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:plats-cuisines-surgeles", + "products": 1, + "id": "it:plats-cuisines-surgeles", + "name": "it:Plats-cuisines-surgeles" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:cioccolatini", + "id": "it:cioccolatini", + "name": "it:Cioccolatini", + "products": 1 + }, + { + "products": 1, + "name": "Salsa", + "id": "fr:salsa", + "url": "https://fr.openfoodfacts.org/categorie/salsa" + }, + { + "id": "fr:rahm", + "name": "Rahm", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/rahm" + }, + { + "id": "en:baked-beans-with-pork-sausages-in-tomato-sauce", + "name": "en:Baked-beans-with-pork-sausages-in-tomato-sauce", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:baked-beans-with-pork-sausages-in-tomato-sauce" + }, + { + "id": "ru:крекер", + "name": "ru:Крекер", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BA%D1%80%D0%B5%D0%BA%D0%B5%D1%80" + }, + { + "products": 1, + "name": "en:Beans-with-pork-sausages", + "id": "en:beans-with-pork-sausages", + "url": "https://fr.openfoodfacts.org/categorie/en:beans-with-pork-sausages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/miels-du-limousin", + "id": "fr:miels-du-limousin", + "name": "Miels-du-limousin", + "products": 1 + }, + { + "products": 1, + "id": "fr:olives-de-nice", + "name": "Olives-de-nice", + "url": "https://fr.openfoodfacts.org/categorie/olives-de-nice" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:alimentos-de-origen-vegetal", + "products": 1, + "name": "ru:Alimentos-de-origen-vegetal", + "id": "ru:alimentos-de-origen-vegetal" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viandes-de-boeuf-hachees-surgelees", + "name": "Viandes-de-boeuf-hachees-surgelees", + "id": "fr:viandes-de-boeuf-hachees-surgelees", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:alimentos-de-origen-vegetal-en-conserva", + "name": "ru:Alimentos-de-origen-vegetal-en-conserva", + "id": "ru:alimentos-de-origen-vegetal-en-conserva", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beverages", + "name": "Beverages", + "id": "fr:beverages", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cones-au-chocolat", + "products": 1, + "name": "Cones-au-chocolat", + "id": "fr:cones-au-chocolat" + }, + { + "id": "ru:comidas-preparadas", + "name": "ru:Comidas-preparadas", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:comidas-preparadas" + }, + { + "products": 1, + "id": "ru:haricots-prepares", + "name": "ru:Haricots-prepares", + "url": "https://fr.openfoodfacts.org/categorie/ru:haricots-prepares" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:legumbres-secas", + "products": 1, + "name": "ru:Legumbres-secas", + "id": "ru:legumbres-secas" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:crumpets", + "products": 1, + "id": "en:crumpets", + "name": "en:Crumpets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:leguminosas", + "name": "ru:Leguminosas", + "id": "ru:leguminosas", + "products": 1 + }, + { + "id": "fr:riz-sauvages", + "name": "Riz-sauvages", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/riz-sauvages" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/ru:leguminosas-en-conserva", + "products": 1, + "id": "ru:leguminosas-en-conserva", + "name": "ru:Leguminosas-en-conserva" + }, + { + "products": 1, + "id": "ru:фасоль-в-томатном-соусе", + "name": "ru:Фасоль-в-томатном-соусе", + "url": "https://fr.openfoodfacts.org/categorie/ru:%D1%84%D0%B0%D1%81%D0%BE%D0%BB%D1%8C-%D0%B2-%D1%82%D0%BE%D0%BC%D0%B0%D1%82%D0%BD%D0%BE%D0%BC-%D1%81%D0%BE%D1%83%D1%81%D0%B5" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sk:barres-chocolatees", + "id": "sk:barres-chocolatees", + "name": "sk:Barres-chocolatees", + "products": 1 + }, + { + "products": 1, + "name": "Sauces-au-vin", + "id": "fr:sauces-au-vin", + "url": "https://fr.openfoodfacts.org/categorie/sauces-au-vin" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sk:confiseries", + "products": 1, + "id": "sk:confiseries", + "name": "sk:Confiseries" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/barsche", + "id": "fr:barsche", + "name": "Barsche", + "products": 1 + }, + { + "products": 1, + "name": "en:16-years-old", + "id": "en:16-years-old", + "url": "https://fr.openfoodfacts.org/categorie/en:16-years-old" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:15-years-old", + "id": "en:15-years-old", + "name": "en:15-years-old", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pralines-rouges", + "id": "fr:pralines-rouges", + "name": "Pralines-rouges", + "products": 1 + }, + { + "id": "fr:plats-a-base-de-viande-de-biche", + "name": "Plats-a-base-de-viande-de-biche", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/plats-a-base-de-viande-de-biche" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biscuits-alleges-en-matieres-grasses", + "products": 1, + "name": "Biscuits-alleges-en-matieres-grasses", + "id": "fr:biscuits-alleges-en-matieres-grasses" + }, + { + "name": "Patons", + "id": "fr:patons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/patons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:produits-sans-gluten", + "products": 1, + "name": "it:Produits-sans-gluten", + "id": "it:produits-sans-gluten" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-sesame", + "id": "fr:pate-de-sesame", + "name": "Pate-de-sesame", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/courges-spaghetti", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2142043" + ], + "name": "Courges spaghetti", + "id": "en:spaghetti-squashes", + "products": 1 + }, + { + "id": "fr:farines-completes-de-riz", + "name": "Farines-completes-de-riz", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/farines-completes-de-riz" + }, + { + "products": 1, + "id": "de:spatzle", + "name": "de:Spatzle", + "url": "https://fr.openfoodfacts.org/categorie/de:spatzle" + }, + { + "name": "Colles-alimentaires", + "id": "fr:colles-alimentaires", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/colles-alimentaires" + }, + { + "name": "en:Pates-alimentaires-aux-oeufs", + "id": "en:pates-alimentaires-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:pates-alimentaires-aux-oeufs" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pains-d-epeautre", + "name": "Pains-d-epeautre", + "id": "fr:pains-d-epeautre", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:muffins-au-chocolat", + "products": 1, + "id": "en:muffins-au-chocolat", + "name": "en:Muffins-au-chocolat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/boissons-instantanees-au-cacao", + "products": 1, + "id": "fr:boissons-instantanees-au-cacao", + "name": "Boissons-instantanees-au-cacao" + }, + { + "products": 1, + "id": "fr:cancoillotes", + "name": "Cancoillotes", + "url": "https://fr.openfoodfacts.org/categorie/cancoillotes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/risottos-au-crabe", + "id": "en:crab-risottos", + "name": "Risottos au crabe", + "products": 1 + }, + { + "name": "Preparations-pour-nourissons", + "id": "fr:preparations-pour-nourissons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/preparations-pour-nourissons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/meursault-premier-cru-charmes", + "products": 1, + "id": "fr:meursault-premier-cru-charmes", + "name": "Meursault premier cru Charmes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:ryba", + "name": "pl:Ryba", + "id": "pl:ryba", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/jus-de-raisin-muscat", + "products": 1, + "id": "fr:jus-de-raisin-muscat", + "name": "Jus-de-raisin-muscat" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-de-pasteque", + "products": 1, + "name": "Confitures-de-pasteque", + "id": "fr:confitures-de-pasteque" + }, + { + "id": "fr:salades-de-poulpes", + "name": "Salades-de-poulpes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salades-de-poulpes" + }, + { + "products": 1, + "id": "fr:croque-madame", + "name": "Croque-madame", + "url": "https://fr.openfoodfacts.org/categorie/croque-madame", + "sameAs": [ + "https://www.wikidata.org/wiki/Q746" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/batavia-rouge-bio", + "name": "Batavia-rouge-bio", + "id": "fr:batavia-rouge-bio", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/presures", + "products": 1, + "name": "Presures", + "id": "fr:presures" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-tartiner-sans-huile-de-palme", + "id": "fr:pate-a-tartiner-sans-huile-de-palme", + "name": "Pate-a-tartiner-sans-huile-de-palme", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-tartiner-a-l-huile-de-coprah", + "products": 1, + "id": "fr:pate-a-tartiner-a-l-huile-de-coprah", + "name": "Pate-a-tartiner-a-l-huile-de-coprah" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/couscous-de-riz", + "id": "fr:couscous-de-riz", + "name": "Couscous-de-riz", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/it:lambrusco-dell-emilia", + "id": "it:lambrusco-dell-emilia", + "name": "it:Lambrusco-dell-emilia", + "products": 1 + }, + { + "name": "Biscuits-tendres", + "id": "fr:biscuits-tendres", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/biscuits-tendres" + }, + { + "id": "en:flavoured-milk-chocolate", + "name": "en:Flavoured-milk-chocolate", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/en:flavoured-milk-chocolate" + }, + { + "products": 1, + "id": "fr:boudins-blanc-au-foie-gras", + "name": "Boudins-blanc-au-foie-gras", + "url": "https://fr.openfoodfacts.org/categorie/boudins-blanc-au-foie-gras" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/paniers-garnis", + "products": 1, + "id": "fr:paniers-garnis", + "name": "Paniers-garnis" + }, + { + "products": 1, + "id": "de:fromages-de-vache-prim-holstein", + "name": "de:Fromages-de-vache-prim-holstein", + "url": "https://fr.openfoodfacts.org/categorie/de:fromages-de-vache-prim-holstein" + }, + { + "products": 1, + "id": "en:sandwichs-au-fromage", + "name": "en:Sandwichs-au-fromage", + "url": "https://fr.openfoodfacts.org/categorie/en:sandwichs-au-fromage" + }, + { + "name": "Cocktail", + "id": "fr:cocktail", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cocktail" + }, + { + "id": "fr:no-sugar-added", + "name": "No-sugar-added", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/no-sugar-added" + }, + { + "products": 1, + "id": "fr:poudres-de-cacao", + "name": "Poudres-de-cacao", + "url": "https://fr.openfoodfacts.org/categorie/poudres-de-cacao" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/toffee", + "products": 1, + "name": "Toffee", + "id": "fr:toffee" + }, + { + "id": "fr:salade-batavia", + "name": "Salade-batavia", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/salade-batavia" + }, + { + "products": 1, + "name": "es:Mueslis-aux-fruits", + "id": "es:mueslis-aux-fruits", + "url": "https://fr.openfoodfacts.org/categorie/es:mueslis-aux-fruits" + }, + { + "products": 1, + "id": "fr:flans-vanille", + "name": "Flans-vanille", + "url": "https://fr.openfoodfacts.org/categorie/flans-vanille" + }, + { + "products": 1, + "name": "en:Tomates-en-conserve", + "id": "en:tomates-en-conserve", + "url": "https://fr.openfoodfacts.org/categorie/en:tomates-en-conserve" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/creme-fraiche-epaisse-bio", + "products": 1, + "name": "Creme-fraiche-epaisse-bio", + "id": "fr:creme-fraiche-epaisse-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salade-verte", + "name": "Salade-verte", + "id": "fr:salade-verte", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/beignets-aux-pommes", + "name": "Beignets-aux-pommes", + "id": "fr:beignets-aux-pommes", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cheese-popcorn", + "products": 1, + "id": "en:cheese-popcorn", + "name": "en:Cheese-popcorn" + }, + { + "products": 1, + "id": "fr:salami-de-poulet", + "name": "Salami-de-poulet", + "url": "https://fr.openfoodfacts.org/categorie/salami-de-poulet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pl:pasztet-drobiowy", + "id": "pl:pasztet-drobiowy", + "name": "pl:Pasztet-drobiowy", + "products": 1 + }, + { + "products": 1, + "id": "fr:pates-eureliennes-au-ble-complet", + "name": "Pates-eureliennes-au-ble-complet", + "url": "https://fr.openfoodfacts.org/categorie/pates-eureliennes-au-ble-complet" + }, + { + "id": "fr:paprika-nuts", + "name": "Paprika-nuts", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/paprika-nuts" + }, + { + "id": "fr:seches-crues", + "name": "Seches-crues", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/seches-crues" + }, + { + "name": "Merlan", + "id": "fr:merlan", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/merlan" + }, + { + "name": "Dos-de-cabillaud", + "id": "fr:dos-de-cabillaud", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/dos-de-cabillaud" + }, + { + "id": "fr:morue-dessalee", + "name": "Morue-dessalee", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/morue-dessalee" + }, + { + "name": "Ail-des-ours", + "id": "fr:ail-des-ours", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ail-des-ours" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartinable-au-potimarron", + "products": 1, + "name": "Tartinable-au-potimarron", + "id": "fr:tartinable-au-potimarron" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/moulin-de-poivre-noir", + "id": "en:black-peppercorn-grinders", + "name": "Moulin de poivre noir", + "products": 1 + }, + { + "products": 1, + "name": "Jus-de-poire-pur-jus", + "id": "fr:jus-de-poire-pur-jus", + "url": "https://fr.openfoodfacts.org/categorie/jus-de-poire-pur-jus" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/bieres-biologiques", + "products": 1, + "name": "Bieres-biologiques", + "id": "fr:bieres-biologiques" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:sucres-en-poudre", + "name": "en:Sucres-en-poudre", + "id": "en:sucres-en-poudre", + "products": 1 + }, + { + "products": 1, + "name": "en:Infusions-en-sachets", + "id": "en:infusions-en-sachets", + "url": "https://fr.openfoodfacts.org/categorie/en:infusions-en-sachets" + }, + { + "products": 1, + "name": "Preparations-instantanees", + "id": "fr:preparations-instantanees", + "url": "https://fr.openfoodfacts.org/categorie/preparations-instantanees" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:chicken-breast-curry-with-tomato-spinach-sauce", + "products": 1, + "name": "en:Chicken-breast-curry-with-tomato-spinach-sauce", + "id": "en:chicken-breast-curry-with-tomato-spinach-sauce" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:scottish-salmon", + "products": 1, + "name": "en:Scottish-salmon", + "id": "en:scottish-salmon" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-arbouses", + "products": 1, + "name": "Confitures-d-arbouses", + "id": "fr:confitures-d-arbouses" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-anya", + "name": "Pommes-de-terre-anya", + "id": "fr:pommes-de-terre-anya", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pommes-de-terre-apache", + "name": "Pommes-de-terre-apache", + "id": "fr:pommes-de-terre-apache", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/terrine-de-caille", + "name": "Terrine-de-caille", + "id": "fr:terrine-de-caille", + "products": 1 + }, + { + "products": 1, + "name": "Cité de Carcassonne", + "id": "fr:cite-de-carcassonne", + "url": "https://fr.openfoodfacts.org/categorie/cite-de-carcassonne", + "sameAs": [ + "https://www.wikidata.org/wiki/Q2974607" + ] + }, + { + "url": "https://fr.openfoodfacts.org/categorie/filets-de-maquereaux-au-naturel", + "id": "fr:filets-de-maquereaux-au-naturel", + "name": "Filets-de-maquereaux-au-naturel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-a-gaufres", + "products": 1, + "id": "fr:pate-a-gaufres", + "name": "Pate-a-gaufres" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolats-blancs-edulcores", + "products": 1, + "id": "en:white-chocolates-with-sweeteners", + "name": "Chocolats blancs édulcorés" + }, + { + "products": 1, + "name": "Coquillettes-au-ble-dur-et-petit-epeautre-semi-complets", + "id": "fr:coquillettes-au-ble-dur-et-petit-epeautre-semi-complets", + "url": "https://fr.openfoodfacts.org/categorie/coquillettes-au-ble-dur-et-petit-epeautre-semi-complets" + }, + { + "id": "fr:nouilles-aux-oeufs", + "name": "Nouilles-aux-oeufs", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nouilles-aux-oeufs" + }, + { + "name": "it:Mueslis-aux-fruits", + "id": "it:mueslis-aux-fruits", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/it:mueslis-aux-fruits" + }, + { + "products": 1, + "name": "Specialite-d-oranges", + "id": "fr:specialite-d-oranges", + "url": "https://fr.openfoodfacts.org/categorie/specialite-d-oranges" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/salades-au-maquereau", + "products": 1, + "id": "fr:salades-au-maquereau", + "name": "Salades-au-maquereau" + }, + { + "name": "Bouillon-cube-wok-facon-thai", + "id": "fr:bouillon-cube-wok-facon-thai", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/bouillon-cube-wok-facon-thai" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:purees-de-legumes", + "products": 1, + "name": "en:Purees-de-legumes", + "id": "en:purees-de-legumes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gomasio", + "id": "fr:gomasio", + "name": "Gomasio", + "products": 1 + }, + { + "products": 1, + "name": "Pain-d-epices-au-sirop-d-agave", + "id": "fr:pain-d-epices-au-sirop-d-agave", + "url": "https://fr.openfoodfacts.org/categorie/pain-d-epices-au-sirop-d-agave" + }, + { + "id": "fr:asperges-vertes-miniatures", + "name": "Asperges-vertes-miniatures", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/asperges-vertes-miniatures" + }, + { + "products": 1, + "name": "Cremes-de-caramel-au-beurre-sale", + "id": "fr:cremes-de-caramel-au-beurre-sale", + "url": "https://fr.openfoodfacts.org/categorie/cremes-de-caramel-au-beurre-sale" + }, + { + "products": 1, + "id": "fr:produits-a-tatiner-sales", + "name": "Produits-a-tatiner-sales", + "url": "https://fr.openfoodfacts.org/categorie/produits-a-tatiner-sales" + }, + { + "products": 1, + "name": "Rillettes de truite fumée", + "id": "fr:rillettes-de-truite-fumee", + "url": "https://fr.openfoodfacts.org/categorie/rillettes-de-truite-fumee" + }, + { + "products": 1, + "name": "Pilsen-blonde", + "id": "fr:pilsen-blonde", + "url": "https://fr.openfoodfacts.org/categorie/pilsen-blonde" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/gratins-de-courgettes", + "name": "Gratins-de-courgettes", + "id": "fr:gratins-de-courgettes", + "products": 1 + }, + { + "id": "fr:delice-de-piments", + "name": "Delice-de-piments", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/delice-de-piments" + }, + { + "products": 1, + "id": "de:backerbsen", + "name": "de:Backerbsen", + "url": "https://fr.openfoodfacts.org/categorie/de:backerbsen" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/riz-au-lait-au-caramel", + "id": "fr:riz-au-lait-au-caramel", + "name": "Riz-au-lait-au-caramel", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/extrait-naturel", + "products": 1, + "name": "Extrait-naturel", + "id": "fr:extrait-naturel" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/dattes-mazafati", + "products": 1, + "id": "fr:dattes-mazafati", + "name": "Dattes-mazafati" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/xx:frutas-congeladas", + "id": "xx:frutas-congeladas", + "name": "xx:Frutas-congeladas", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/vinaigres-artisanaux", + "products": 1, + "name": "Vinaigres-artisanaux", + "id": "fr:vinaigres-artisanaux" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/raviolis-japonais-au-poulet-et-aux-legumes", + "name": "Raviolis-japonais-au-poulet-et-aux-legumes", + "id": "fr:raviolis-japonais-au-poulet-et-aux-legumes", + "products": 1 + }, + { + "name": "Lasagne-au-thon", + "id": "fr:lasagne-au-thon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lasagne-au-thon" + }, + { + "name": "Chips-de-pommes-de-terre-a-l-huile-d-arachide", + "id": "fr:chips-de-pommes-de-terre-a-l-huile-d-arachide", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chips-de-pommes-de-terre-a-l-huile-d-arachide" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/biere-de-garde", + "name": "Biere-de-garde", + "id": "fr:biere-de-garde", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confitures-d-olives-noires", + "products": 1, + "name": "Confitures-d-olives-noires", + "id": "fr:confitures-d-olives-noires" + }, + { + "id": "fr:mousses-de-saint-jacques", + "name": "Mousses-de-saint-jacques", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mousses-de-saint-jacques" + }, + { + "id": "fr:nectars-de-citron-vert", + "name": "Nectars-de-citron-vert", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nectars-de-citron-vert" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/sucre-blond-de-canne-en-morceaux-bio", + "products": 1, + "id": "fr:sucre-blond-de-canne-en-morceaux-bio", + "name": "Sucre-blond-de-canne-en-morceaux-bio" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/confiserie-au-chocolat", + "id": "fr:confiserie-au-chocolat", + "name": "Confiserie-au-chocolat", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/chocolat-au-lait-sesame-gingembre", + "name": "Chocolat-au-lait-sesame-gingembre", + "id": "fr:chocolat-au-lait-sesame-gingembre", + "products": 1 + }, + { + "products": 1, + "name": "en:Pates-d-orge", + "id": "en:pates-d-orge", + "url": "https://fr.openfoodfacts.org/categorie/en:pates-d-orge" + }, + { + "name": "Cheesecakes au speculoos", + "id": "en:speculoos-cheesecakes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/cheesecakes-au-speculoos" + }, + { + "products": 1, + "id": "fr:creme-vanille", + "name": "Creme-vanille", + "url": "https://fr.openfoodfacts.org/categorie/creme-vanille" + }, + { + "name": "Ail-surgele", + "id": "fr:ail-surgele", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ail-surgele" + }, + { + "products": 1, + "name": "Ravioli-vegetarien", + "id": "fr:ravioli-vegetarien", + "url": "https://fr.openfoodfacts.org/categorie/ravioli-vegetarien" + }, + { + "name": "Lapins-chasseurs-aux-pommes-de-terre", + "id": "fr:lapins-chasseurs-aux-pommes-de-terre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/lapins-chasseurs-aux-pommes-de-terre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:virutas-de-chocolate-negro", + "name": "es:Virutas-de-chocolate-negro", + "id": "es:virutas-de-chocolate-negro", + "products": 1 + }, + { + "name": "Nonettes-de-dijon", + "id": "fr:nonettes-de-dijon", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/nonettes-de-dijon" + }, + { + "products": 1, + "name": "en:Nectar-de-pommes", + "id": "en:nectar-de-pommes", + "url": "https://fr.openfoodfacts.org/categorie/en:nectar-de-pommes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/tartinade-d-amande", + "id": "fr:tartinade-d-amande", + "name": "Tartinade-d-amande", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/thes-glaces-au-citron", + "id": "fr:thes-glaces-au-citron", + "name": "Thes-glaces-au-citron", + "products": 1 + }, + { + "products": 1, + "id": "es:graines-de-tournesol-grillees", + "name": "es:Graines-de-tournesol-grillees", + "url": "https://fr.openfoodfacts.org/categorie/es:graines-de-tournesol-grillees" + }, + { + "name": "Chairs-de-crabes", + "id": "fr:chairs-de-crabes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/chairs-de-crabes" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:durum-wheat-pasta-with-cheese", + "name": "en:Durum-wheat-pasta-with-cheese", + "id": "en:durum-wheat-pasta-with-cheese", + "products": 1 + }, + { + "id": "fr:potimarrons", + "name": "Potimarrons", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/potimarrons" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:terrine-au-vin-blanc", + "id": "en:terrine-au-vin-blanc", + "name": "en:Terrine-au-vin-blanc", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:plats-a-base-de-dinde", + "id": "de:plats-a-base-de-dinde", + "name": "de:Plats-a-base-de-dinde", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/lucullus", + "name": "Lucullus", + "id": "fr:lucullus", + "products": 1 + }, + { + "url": "https://fr.openfoodfacts.org/categorie/de:biscuits-sables", + "products": 1, + "name": "de:Biscuits-sables", + "id": "de:biscuits-sables" + }, + { + "products": 1, + "name": "Fromage-a-pate-pressee", + "id": "fr:fromage-a-pate-pressee", + "url": "https://fr.openfoodfacts.org/categorie/fromage-a-pate-pressee" + }, + { + "name": "Cévennes", + "id": "fr:cevennes", + "products": 1, + "sameAs": [ + "https://www.wikidata.org/wiki/Q3010553" + ], + "url": "https://fr.openfoodfacts.org/categorie/cevennes" + }, + { + "products": 1, + "id": "fr:jus-d-hibiscus", + "name": "Jus-d-hibiscus", + "url": "https://fr.openfoodfacts.org/categorie/jus-d-hibiscus" + }, + { + "products": 1, + "id": "fr:sels-a-la-truffe", + "name": "Sels-a-la-truffe", + "url": "https://fr.openfoodfacts.org/categorie/sels-a-la-truffe" + }, + { + "id": "fr:vin-de-pays-des-cotes-catalanes", + "name": "Vin-de-pays-des-cotes-catalanes", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/vin-de-pays-des-cotes-catalanes" + }, + { + "id": "fr:pains-pave", + "name": "Pains-pave", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/pains-pave" + }, + { + "name": "ru:Крупа-гречневая-ядрица-экстра", + "id": "ru:крупа-гречневая-ядрица-экстра", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/ru:%D0%BA%D1%80%D1%83%D0%BF%D0%B0-%D0%B3%D1%80%D0%B5%D1%87%D0%BD%D0%B5%D0%B2%D0%B0%D1%8F-%D1%8F%D0%B4%D1%80%D0%B8%D1%86%D0%B0-%D1%8D%D0%BA%D1%81%D1%82%D1%80%D0%B0" + }, + { + "name": "Fromages-fondus-au-chevre", + "id": "fr:fromages-fondus-au-chevre", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fromages-fondus-au-chevre" + }, + { + "name": "Fuseau-lorrain", + "id": "fr:fuseau-lorrain", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/fuseau-lorrain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:barres-chocolatees-biscuitees-aux-noisettes", + "name": "en:Barres-chocolatees-biscuitees-aux-noisettes", + "id": "en:barres-chocolatees-biscuitees-aux-noisettes", + "products": 1 + }, + { + "products": 1, + "id": "en:vinaigres-de-cidre", + "name": "en:Vinaigres-de-cidre", + "url": "https://fr.openfoodfacts.org/categorie/en:vinaigres-de-cidre" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/es:spaghetti-au-ble-dur-complet", + "products": 1, + "id": "es:spaghetti-au-ble-dur-complet", + "name": "es:Spaghetti-au-ble-dur-complet" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:cordials", + "products": 1, + "name": "en:Cordials", + "id": "en:cordials" + }, + { + "name": "Marinade-de-poulpes-et-d-encornets", + "id": "fr:marinade-de-poulpes-et-d-encornets", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/marinade-de-poulpes-et-d-encornets" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/viande-de-renne", + "id": "fr:viande-de-renne", + "name": "Viande-de-renne", + "products": 1 + }, + { + "products": 1, + "name": "Sandwich-au-jambon-et-au-coleslaw", + "id": "fr:sandwich-au-jambon-et-au-coleslaw", + "url": "https://fr.openfoodfacts.org/categorie/sandwich-au-jambon-et-au-coleslaw" + }, + { + "products": 1, + "name": "Gingembre lyophilisée", + "id": "en:lyophilized-ginger", + "url": "https://fr.openfoodfacts.org/categorie/gingembre-lyophilisee" + }, + { + "products": 1, + "id": "fr:poussins", + "name": "Poussins", + "url": "https://fr.openfoodfacts.org/categorie/poussins" + }, + { + "name": "Mouline-de-legumes-d-autrefois", + "id": "fr:mouline-de-legumes-d-autrefois", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/mouline-de-legumes-d-autrefois" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/en:tarama", + "name": "en:Tarama", + "id": "en:tarama", + "products": 1 + }, + { + "products": 1, + "id": "fr:stollens-au-massepain", + "name": "Stollens-au-massepain", + "url": "https://fr.openfoodfacts.org/categorie/stollens-au-massepain" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/cakes-aux-figues", + "products": 1, + "id": "fr:cakes-aux-figues", + "name": "Cakes-aux-figues" + }, + { + "url": "https://fr.openfoodfacts.org/categorie/pate-de-jambon", + "name": "Pate-de-jambon", + "id": "fr:pate-de-jambon", + "products": 1 + }, + { + "id": "fr:melange-de-pommes-de-terre-prefrites", + "name": "Melange-de-pommes-de-terre-prefrites", + "products": 1, + "url": "https://fr.openfoodfacts.org/categorie/melange-de-pommes-de-terre-prefrites" + } + ] +} diff --git a/openclassrooms-trainings/pytestdiscovering/sample/category-biscuits.json b/openclassrooms-trainings/pytestdiscovering/sample/category-biscuits.json new file mode 100644 index 0000000..4d7345e --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/category-biscuits.json @@ -0,0 +1,18258 @@ +{ + "skip": 0, + "page": 1, + "products": [ + { + "image_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.400.jpg", + "ingredients_text_with_allergens_fr": null, + "additives_old_n": 0, + "quality_tags": [ + "ingredients-unknown-score-above-10", + "ingredients-100-percent-unknown" + ], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "origins_tags": [], + "languages_tags": [ + "en:french", + "en:spanish", + "en:2", + "en:multilingual" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "sortkey": 532456158, + "last_image_t": 1532456158, + "rev": 14, + "correctors_tags": [ + "moorgate88", + "kiliweb", + "openfoodfacts-contributors", + "yukafix" + ], + "purchase_places": "", + "additives_tags": [ + "en:e223", + "en:e306", + "en:e322" + ], + "origins": "", + "ingredients_debug": [ + "Harina de trigo 63%", + ",", + null, + null, + " azúcar", + ",", + null, + null, + " aceite refinado de girasol 13", + ",", + null, + null, + "8%", + ",", + null, + null, + " jarabe de glucosa", + ",", + null, + null, + " suero lácteo en polvo", + ",", + null, + null, + " sal", + ",", + null, + null, + " gasificantes ", + "(", + null, + null, + "bicarbonato sódico y amónico)", + ",", + null, + null, + " emulgente ", + "(", + null, + null, + "lecitina de girasol)", + ",", + null, + null, + " antioxidantes ", + "(", + null, + null, + "metabisulfito sódico", + ",", + null, + null, + " extracto rico en tocoferoles)", + ",", + null, + null, + " aroma", + ". ", + null, + null, + "Contiene gluten", + ",", + null, + null, + " leche", + ",", + null, + null, + " sulfitos", + ". " + ], + "last_editor": "openfoodfacts-contributors", + "new_additives_n": 2, + "purchase_places_tags": [], + "codes_tags": [ + "code-13", + "8480000141323", + "848000014132x", + "84800001413xx", + "8480000141xxx", + "848000014xxxx", + "84800001xxxxx", + "8480000xxxxxx", + "848000xxxxxxx", + "84800xxxxxxxx", + "8480xxxxxxxxx", + "848xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "additives_tags_n": null, + "selected_images": { + "front": { + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.100.jpg", + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_fr.7.200.jpg", + "es": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_fr.7.400.jpg", + "es": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/nutrition_fr.11.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/nutrition_fr.11.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/nutrition_fr.11.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/ingredients_fr.13.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/ingredients_fr.13.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/848/000/014/1323/ingredients_fr.13.400.jpg" + } + } + }, + "ingredients_text_es": "Harina de trigo 63%, azúcar, aceite refinado de girasol 13,8%, jarabe de glucosa, suero lácteo en polvo, sal, gasificantes (bicarbonato sódico y amónico), emulgente (lecitina de girasol), antioxidantes (metabisulfito sódico, extracto rico en tocoferoles), aroma. Contiene gluten, leche, sulfitos. ", + "allergens_tags": [], + "languages_codes": { + "fr": 3, + "es": 4 + }, + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [], + "languages": { + "en:french": 3, + "en:spanish": 4 + }, + "emb_codes_20141016": "", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e322", + "en:e223", + "en:e306" + ], + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france", + "en:spain" + ], + "_id": "8480000141323", + "max_imgid": 4, + "vitamins_tags": [], + "serving_size": "", + "additives_prev_tags": [ + "en:e223", + "en:e306", + "en:e322" + ], + "allergens_hierarchy": [], + "ingredients_text_with_allergens_es": "Harina de trigo 63%, azúcar, aceite refinado de girasol 13,8%, jarabe de glucosa, suero lácteo en polvo, sal, gasificantes (bicarbonato sódico y amónico), emulgente (lecitina de girasol), antioxidantes (metabisulfito sódico, extracto rico en tocoferoles), aroma. Contiene gluten, leche, sulfitos. ", + "nucleotides_tags": [], + "additives_prev_n": 3, + "ingredients_n": "17", + "ingredients_text_debug": "Harina de trigo 63%, azúcar, aceite refinado de girasol 13,8%, jarabe de glucosa, suero lácteo en polvo, sal, gasificantes (bicarbonato sódico y amónico), emulgente (lecitina de girasol), antioxidantes (metabisulfito sódico, extracto rico en tocoferoles), aroma. Contiene gluten, leche, sulfitos. ", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nutrient_levels": { + "saturated-fat": "low", + "fat": "moderate", + "sugars": "high", + "salt": "moderate" + }, + "editors": [ + "date-limite-app", + "moorgate88" + ], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 5 + sat-fat 1 + fr-sat-fat-for-fats 1 + sugars 5 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 4 -- fsa 13 -- fr 13", + "pnns_groups_1": "Sugary snacks", + "id": "8480000141323", + "informers_tags": [ + "date-limite-app", + "moorgate88", + "kiliweb", + "openfoodfacts-contributors" + ], + "nutriments": { + "proteins_100g": "7", + "sugars": "23", + "saturated-fat": 1.4, + "fiber_serving": "", + "saturated-fat_100g": 1.4, + "sugars_value": "23", + "energy_unit": "kcal", + "salt_unit": "", + "salt": "1", + "fat_serving": "", + "proteins_value": "7", + "proteins_unit": "", + "sodium_serving": "", + "carbohydrates_serving": "", + "fiber_value": "2.2", + "carbohydrates": "76", + "fat": "14", + "saturated-fat_unit": "", + "carbohydrates_100g": "76", + "sodium_100g": 0.393700787401575, + "nutrition-score-fr_100g": "13", + "fat_unit": "", + "saturated-fat_value": "1.4", + "fat_value": "14", + "nutrition-score-uk_100g": "13", + "proteins": "7", + "nutrition-score-uk": "13", + "energy_100g": "1929", + "carbohydrates_unit": "", + "fiber_unit": "", + "salt_value": "1", + "carbohydrates_value": "76", + "saturated-fat_serving": "", + "fiber_100g": 2.2, + "sodium": 0.393700787401575, + "proteins_serving": "", + "sugars_unit": "", + "fat_100g": "14", + "energy_value": "461", + "energy_serving": "", + "sugars_100g": "23", + "salt_serving": "", + "fiber": 2.2, + "salt_100g": "1", + "energy": "1929", + "nutrition-score-fr": "13", + "sugars_serving": "" + }, + "editors_tags": [ + "tacite-mass-editor", + "kiliweb", + "moorgate88", + "yukafix", + "openfoodfacts-contributors", + "date-limite-app" + ], + "photographers_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [], + "manufacturing_places_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "nutrition_data_per": "100g", + "link": "", + "update_key": "20180706-categories", + "stores_tags": [ + "mercadona" + ], + "categories": "en:sugary-snacks, en:biscuits-and-cakes, en:biscuits", + "cities_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "traces": "sésamo,huevo,frutos de cáscara.,soja", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "es:harina-de-trigo", + "es:azucar", + "es:aceite-refinado-de-girasol", + "es:jarabe-de-glucosa", + "es:suero-lacteo-en-polvo", + "es:sal", + "es:gasificantes", + "es:bicarbonato-sodico-y-amonico", + "es:emulgente", + "es:lecitina-de-girasol", + "es:antioxidantes", + "es:aroma", + "es:contiene-gluten", + "es:leche", + "es:sulfitos", + "es:metabisulfito-sodico", + "es:extracto-rico-en-tocoferoles" + ], + "ingredients_ids_debug": [ + "harina-de-trigo-63", + "azucar", + "aceite-refinado-de-girasol-13", + "8", + "jarabe-de-glucosa", + "suero-lacteo-en-polvo", + "sal", + "gasificantes", + "bicarbonato-sodico-y-amonico", + "emulgente", + "lecitina-de-girasol", + "antioxidantes", + "metabisulfito-sodico", + "extracto-rico-en-tocoferoles", + "aroma", + "contiene-gluten", + "leche", + "sulfitos" + ], + "additives_prev_original_tags": [ + "en:e322", + "en:e223", + "en:e306" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.200.jpg", + "manufacturing_places": "", + "product_quantity": 800, + "last_modified_by": null, + "lc": "es", + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 83 + }, + "400": { + "h": 334, + "w": 400 + }, + "full": { + "h": 1360, + "w": 1629 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1506449947" + }, + "2": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 65 + }, + "400": { + "w": 258, + "h": 400 + }, + "full": { + "h": 2767, + "w": 1785 + } + }, + "uploaded_t": 1532455232 + }, + "3": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 100, + "h": 45 + }, + "400": { + "h": 181, + "w": 400 + }, + "full": { + "h": 1879, + "w": 4160 + } + }, + "uploaded_t": 1532456079 + }, + "4": { + "uploaded_t": 1532456157, + "sizes": { + "100": { + "w": 100, + "h": 63 + }, + "400": { + "h": 252, + "w": 400 + }, + "full": { + "h": 1575, + "w": 2496 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "front_es": { + "y2": -1, + "imgid": "1", + "rev": "6", + "angle": 0, + "geometry": "0x0--4--4", + "normalize": null, + "white_magic": null, + "sizes": { + "100": { + "w": "100", + "h": "83" + }, + "200": { + "h": 167, + "w": 200 + }, + "400": { + "w": 400, + "h": 334 + }, + "full": { + "h": 1360, + "w": 1629 + } + }, + "x2": -1, + "y1": -1, + "x1": -1 + }, + "ingredients_fr": { + "y1": "-1", + "x2": "-1", + "x1": "-1", + "white_magic": null, + "normalize": null, + "sizes": { + "100": { + "h": 45, + "w": 100 + }, + "200": { + "h": 90, + "w": 200 + }, + "400": { + "w": 400, + "h": 181 + }, + "full": { + "h": 1879, + "w": 4160 + } + }, + "geometry": "0x0--10--10", + "angle": 0, + "imgid": "3", + "rev": "13", + "y2": "-1" + }, + "front_fr": { + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 83, + "w": 100 + }, + "200": { + "h": 167, + "w": 200 + }, + "400": { + "h": 334, + "w": 400 + }, + "full": { + "w": 1629, + "h": 1360 + } + }, + "geometry": "0x0-0-0", + "x2": null, + "y1": null, + "x1": null, + "y2": null, + "angle": null, + "imgid": "1", + "rev": "7" + }, + "nutrition_fr": { + "rev": "11", + "imgid": "2", + "angle": 0, + "y2": "-1", + "x1": "-1", + "y1": "-1", + "x2": "-1", + "geometry": "0x0--6--6", + "sizes": { + "100": { + "h": 100, + "w": 65 + }, + "200": { + "w": 129, + "h": 200 + }, + "400": { + "h": 400, + "w": 258 + }, + "full": { + "w": 1785, + "h": 2767 + } + }, + "normalize": null, + "white_magic": null + } + }, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Harina de trigo 63%, azúcar, aceite refinado de girasol 13,8%, jarabe de glucosa, suero lácteo en polvo, sal, gasificantes (bicarbonato sódico y amónico), emulgente (lecitina de girasol), antioxidantes (metabisulfito sódico, extracto rico en tocoferoles), aroma. Contiene gluten, leche, sulfitos. ", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.200.jpg", + "checkers_tags": [], + "labels_prev_tags": [], + "additives_debug_tags": [], + "allergens": "", + "image_front_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.400.jpg", + "quantity": "800 g", + "nucleotides_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "countries": "en:france, en:spain", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "traces_tags": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "emb_codes": "", + "labels": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [], + "ingredients_n_tags": [ + "17", + "11-20" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.100.jpg", + "nutrition_grade_fr": "d", + "serving_quantity": 0, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "traces_hierarchy": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "countries_tags": [ + "en:france", + "en:spain" + ], + "url": "https://fr-en.openfoodfacts.org/product/8480000141323/galletas-maria-dorada-hacendado", + "entry_dates_tags": [ + "2015-06-21", + "2015-06", + "2015" + ], + "labels_prev_hierarchy": [], + "ingredients_text_with_allergens": "Harina de trigo 63%, azúcar, aceite refinado de girasol 13,8%, jarabe de glucosa, suero lácteo en polvo, sal, gasificantes (bicarbonato sódico y amónico), emulgente (lecitina de girasol), antioxidantes (metabisulfito sódico, extracto rico en tocoferoles), aroma. Contiene gluten, leche, sulfitos. ", + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "categories_debug_tags": [], + "complete": 0, + "ingredients_from_palm_oil_tags": [], + "brands": "Hacendado", + "interface_version_created": "20130323.jqm", + "generic_name": "Galletas María Dorada", + "amino_acids_prev_tags": [], + "creator": "date-limite-app", + "vitamins_prev_tags": [], + "packaging": "", + "interface_version_modified": "20150316.jqm2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/848/000/014/1323/front_es.6.100.jpg", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "expiration_date": "01 nov 2015", + "stores": "Mercadona", + "ingredients": [ + { + "rank": 1, + "text": "Harina de trigo", + "percent": "63", + "id": "harina-de-trigo" + }, + { + "text": "azúcar", + "rank": 2, + "id": "azucar" + }, + { + "percent": "13.8", + "id": "aceite-refinado-de-girasol", + "rank": 3, + "text": "aceite refinado de girasol" + }, + { + "text": "jarabe de glucosa", + "rank": 4, + "id": "jarabe-de-glucosa" + }, + { + "id": "suero-lacteo-en-polvo", + "text": "suero lácteo en polvo", + "rank": 5 + }, + { + "text": "sal", + "rank": 6, + "id": "sal" + }, + { + "text": "gasificantes", + "rank": 7, + "id": "gasificantes" + }, + { + "id": "bicarbonato-sodico-y-amonico", + "rank": 8, + "text": "bicarbonato sódico y amónico" + }, + { + "id": "emulgente", + "text": "emulgente", + "rank": 9 + }, + { + "id": "lecitina-de-girasol", + "rank": 10, + "text": "lecitina de girasol" + }, + { + "rank": 11, + "text": "antioxidantes", + "id": "antioxidantes" + }, + { + "text": "aroma", + "rank": 12, + "id": "aroma" + }, + { + "text": "Contiene gluten", + "rank": 13, + "id": "contiene-gluten" + }, + { + "id": "leche", + "text": "leche", + "rank": 14 + }, + { + "id": "sulfitos", + "text": "sulfitos", + "rank": 15 + }, + { + "text": "metabisulfito sódico", + "id": "metabisulfito-sodico" + }, + { + "id": "extracto-rico-en-tocoferoles", + "text": "extracto rico en tocoferoles" + } + ], + "created_t": 1434893296, + "languages_hierarchy": [ + "en:french", + "en:spanish" + ], + "additives_old_tags": [], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "last_modified_t": 1532456158, + "product_name": "Galletas María Dorada Hacendado", + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "es:harina-de-trigo", + "es:azucar", + "es:aceite-refinado-de-girasol", + "es:jarabe-de-glucosa", + "es:suero-lacteo-en-polvo", + "es:sal", + "es:gasificantes", + "es:bicarbonato-sodico-y-amonico", + "es:emulgente", + "es:lecitina-de-girasol", + "es:antioxidantes", + "es:aroma", + "es:contiene-gluten", + "es:leche", + "es:sulfitos", + "es:metabisulfito-sodico", + "es:extracto-rico-en-tocoferoles" + ], + "lang": "es", + "brands_tags": [ + "hacendado" + ], + "generic_name_es": "Galletas María Dorada", + "unknown_ingredients_n": 17, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 3, + "emb_codes_tags": [], + "code": "8480000141323", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "product_name_es": "Galletas María Dorada Hacendado", + "nutrition_grades": "d", + "_keywords": [ + "sugary-snack", + "dorada", + "biscuits-and-cake", + "hacendado", + "galleta", + "biscuit", + "maria" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ] + }, + { + "allergens_hierarchy": [], + "nucleotides_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "high", + "fat": "high", + "sugars": "high" + }, + "editors": [ + "cyrildotcc" + ], + "additives_prev_n": 0, + "ingredients_n": "5", + "ingredients_text_debug": "Farine de blé, Beurre AOP Charentes-Poitou 25,7 %, sucre, oeufs, sel marin de l'Ile de Ré", + "max_imgid": 8, + "serving_size": "4 biscuits", + "additives_prev_tags": [], + "vitamins_tags": [], + "emb_codes_orig": "EMB 79012", + "countries_hierarchy": [ + "en:france" + ], + "_id": "3593551174971", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [], + "nutrition_grades_tags": [ + "e" + ], + "update_key": "20180706-categories", + "nutrition_data_per": "100g", + "fruits-vegetables-nuts_100g_estimate": 0, + "photographers_tags": [ + "cyrildotcc", + "asmoth" + ], + "packaging_tags": [ + "carton", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "nutriments": { + "sugars_unit": "", + "fat_100g": "26", + "proteins_serving": "", + "sodium": 0.181102362204724, + "carbohydrates_value": "67", + "fiber_100g": 1.6, + "saturated-fat_serving": "", + "fiber_unit": "", + "salt_value": "0.46", + "energy_100g": "2222", + "carbohydrates_unit": "", + "nutrition-score-uk": "23", + "sugars_serving": "", + "nutrition-score-fr": "23", + "salt_100g": 0.46, + "energy": "2222", + "sugars_100g": "30", + "salt_serving": "", + "fiber": 1.6, + "energy_value": "531", + "energy_serving": "", + "proteins_unit": "", + "fiber_value": "1.6", + "sodium_serving": "", + "carbohydrates_serving": "", + "salt_unit": "", + "salt": 0.46, + "energy_unit": "kcal", + "proteins_value": "6.5", + "fat_serving": "", + "sugars_value": "30", + "saturated-fat": "17", + "fiber_serving": "", + "saturated-fat_100g": "17", + "proteins_100g": 6.5, + "sugars": "30", + "proteins": 6.5, + "fat_value": "26", + "nutrition-score-uk_100g": "23", + "saturated-fat_value": "17", + "nutrition-score-fr_100g": "23", + "fat_unit": "", + "sodium_100g": 0.181102362204724, + "carbohydrates_100g": "67", + "saturated-fat_unit": "", + "fat": "26", + "carbohydrates": "67" + }, + "informers_tags": [ + "cyrildotcc", + "kiliweb" + ], + "editors_tags": [ + "asmoth", + "cyrildotcc", + "kiliweb" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 10 + sugars 6 + sodium 2 - fruits 0% 0 - fiber 1 - proteins 4 -- fsa 23 -- fr 23", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "id": "3593551174971", + "purchase_places": "Eure-et-Loir,France", + "additives_tags": [], + "correctors_tags": [ + "cyrildotcc", + "kiliweb" + ], + "ingredients_debug": [ + "Farine de blé", + ",", + null, + null, + " Beurre AOP Charentes-Poitou 25", + ",", + null, + null, + "7 %", + ",", + null, + null, + " sucre", + ",", + null, + null, + " oeufs", + ",", + null, + null, + " sel marin de l'Ile de Ré" + ], + "origins": "Poitou-Charentes,France", + "sortkey": 532455213, + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "brands_debug_tags": [], + "rev": 16, + "last_image_t": 1532455213, + "unique_scans_n": 3, + "quality_tags": [ + "quantity-not-recognized" + ], + "origins_tags": [ + "poitou-charentes", + "france" + ], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "ingredients_text_with_allergens_fr": "Farine de blé, Beurre AOP Charentes-Poitou 25,7 %, sucre, oeufs, sel marin de l'Ile de Ré", + "image_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.400.jpg", + "additives_old_n": 0, + "languages": { + "en:french": 3 + }, + "labels_tags": [], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "emb_codes_20141016": "EMB 79012", + "allergens_tags": [], + "languages_codes": { + "fr": 3 + }, + "codes_tags": [ + "code-13", + "3593551174971", + "359355117497x", + "35935511749xx", + "3593551174xxx", + "359355117xxxx", + "35935511xxxxx", + "3593551xxxxxx", + "359355xxxxxxx", + "35935xxxxxxxx", + "3593xxxxxxxxx", + "359xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.100.jpg" + } + } + }, + "scans_n": 4, + "last_editor": "asmoth", + "purchase_places_tags": [ + "eure-et-loir", + "france" + ], + "new_additives_n": 0, + "expiration_date": "13/12/2013", + "stores": "", + "creator": "cyrildotcc", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.100.jpg", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "vitamins_prev_tags": [], + "interface_version_modified": "20150316.jqm2", + "packaging": "Carton,Plastique", + "complete": 0, + "ingredients_from_palm_oil_tags": [], + "product_name_fr": "Les Broyés du Poitou", + "brands": "Les mousquetaires,Les p´tits amoureux", + "interface_version_created": "20120622", + "generic_name": "", + "labels_prev_hierarchy": [], + "ingredients_text_with_allergens": "Farine de blé, Beurre AOP Charentes-Poitou 25,7 %, sucre, oeufs, sel marin de l'Ile de Ré", + "url": "https://fr-en.openfoodfacts.org/product/3593551174971/les-broyes-du-poitou-les-mousquetaires", + "entry_dates_tags": [ + "2013-09-09", + "2013-09", + "2013" + ], + "generic_name_fr": "", + "categories_debug_tags": [], + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "code": "3593551174971", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "emb_codes_tags": [ + "emb-79012" + ], + "nutrition_grades": "e", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "_keywords": [ + "poitou-charente", + "france", + "du", + "biscuit", + "amoureux", + "le", + "biscuits-and-cake", + "sugary-snack", + "p-tit", + "poitou", + "broye", + "mousquetaire" + ], + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:farine-de-ble", + "fr:beurre-aop-charentes-poitou", + "en:sugar", + "fr:oeuf", + "fr:sel-marin-de-l-ile-de-re" + ], + "product_name": "Les Broyés du Poitou", + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 2, + "additives_n": 0, + "lang": "fr", + "brands_tags": [ + "les-mousquetaires", + "les-p-tits-amoureux" + ], + "last_modified_t": 1532455213, + "created_t": 1378720132, + "ingredients": [ + { + "id": "farine-de-ble", + "text": "Farine de blé", + "rank": 1 + }, + { + "text": "Beurre AOP Charentes-Poitou", + "rank": 2, + "percent": "25.7", + "id": "beurre-aop-charentes-poitou" + }, + { + "text": "sucre", + "rank": 3, + "id": "sucre" + }, + { + "id": "oeufs", + "text": "oeufs", + "rank": 4 + }, + { + "rank": 5, + "text": "sel marin de l'Ile de Ré", + "id": "sel-marin-de-l-ile-de-re" + } + ], + "ingredients_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.200.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.200.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Farine de blé, Beurre AOP Charentes-Poitou 25,7 %, sucre, oeufs, sel marin de l'Ile de Ré", + "last_modified_by": "asmoth", + "lc": "fr", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "cyrildotcc", + "uploaded_t": 1378720133 + }, + "2": { + "uploaded_t": 1378720172, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + }, + "uploader": "cyrildotcc" + }, + "3": { + "uploader": "cyrildotcc", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": 1378720208 + }, + "4": { + "uploaded_t": 1532455113, + "sizes": { + "100": { + "w": 100, + "h": 37 + }, + "400": { + "w": 400, + "h": 148 + }, + "full": { + "w": 3331, + "h": 1231 + } + }, + "uploader": "asmoth" + }, + "5": { + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 43 + }, + "400": { + "w": 400, + "h": 171 + }, + "full": { + "w": 2656, + "h": 1136 + } + }, + "uploaded_t": 1532455132 + }, + "6": { + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 37 + }, + "400": { + "w": 400, + "h": 150 + }, + "full": { + "w": 3380, + "h": 1264 + } + }, + "uploaded_t": 1532455160 + }, + "7": { + "uploaded_t": 1532455193, + "sizes": { + "100": { + "w": 100, + "h": 36 + }, + "400": { + "w": 400, + "h": 144 + }, + "full": { + "h": 786, + "w": 2188 + } + }, + "uploader": "asmoth" + }, + "8": { + "uploader": "asmoth", + "sizes": { + "100": { + "h": 57, + "w": 100 + }, + "400": { + "h": 226, + "w": 400 + }, + "full": { + "h": 1036, + "w": 1830 + } + }, + "uploaded_t": 1532455213 + }, + "front": { + "imgid": "1", + "rev": "10", + "geometry": "0x0-0-0", + "normalize": null, + "white_magic": "checked", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + } + }, + "front_fr": { + "imgid": "1", + "rev": "10", + "normalize": null, + "white_magic": "checked", + "sizes": { + "100": { + "h": "75", + "w": "100" + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + }, + "geometry": "0x0-0-0" + } + }, + "countries_debug_tags": [], + "traces": "Fruits à coque", + "additives_prev_original_tags": [], + "ingredients_ids_debug": [ + "farine-de-ble", + "beurre-aop-charentes-poitou-25", + "7", + "sucre", + "oeufs", + "sel-marin-de-l-ile-de-re" + ], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "fr:beurre-aop-charentes-poitou", + "en:sugar", + "fr:oeuf", + "fr:sel-marin-de-l-ile-de-re" + ], + "stores_tags": [], + "categories": "en:sugary-snacks, en:biscuits-and-cakes, en:biscuits", + "no_nutrition_data": "", + "cities_tags": [ + "ardin-deux-sevres-france" + ], + "minerals_prev_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [ + "en:nuts" + ], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "serving_quantity": 0, + "labels_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "ingredients_n_tags": [ + "5", + "1-10" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.100.jpg", + "nutrition_grade_fr": "e", + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "countries": "France", + "nucleotides_prev_tags": [], + "quantity": "220g", + "traces_tags": [ + "en:nuts" + ], + "emb_codes": "EMB 79012", + "labels": "", + "ingredients_text_fr": "Farine de blé, Beurre AOP Charentes-Poitou 25,7 %, sucre, oeufs, sel marin de l'Ile de Ré", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_prev_tags": [], + "additives_debug_tags": [], + "checkers_tags": [], + "allergens": "", + "image_front_url": "https://static.openfoodfacts.org/images/products/359/355/117/4971/front_fr.10.400.jpg" + }, + { + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e450i", + "en:e500ii", + "en:e500i" + ], + "_id": "2000000052047", + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "max_imgid": "4", + "vitamins_tags": [], + "additives_prev_tags": [ + "en:e450i", + "en:e500" + ], + "serving_size": "20 g (2 biscuits)", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.100.jpg", + "ingredients_text_debug": "Farine de _froment_, sucre, _beurre_ concentré (18%), raisins secs macérés au Rhum (17%), _œufs_ frais, poudre à lever : (diphosphate disodique ( - e450i - ), carbonate acide de sodium ( - e500i - ), farine de _blé_), sel.", + "ingredients_n": 12, + "origins_debug_tags": [], + "additives_prev_n": 2, + "nutrient_levels": { + "salt": "low", + "fat": "high", + "sugars": "high", + "saturated-fat": "high" + }, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 10 + sugars 8 + sodium 0 - fruits 0% 0 - fiber 1 - proteins 3 -- fsa 23 -- fr 23", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "id": "2000000052047", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.100.jpg", + "link_debug_tags": [], + "informers_tags": [ + "asmoth", + "sophiecool62" + ], + "nutriments": { + "energy_100g": 2087.4, + "carbohydrates_unit": "g", + "fiber_unit": "g", + "salt_value": "0.15", + "nutrition-score-uk": 23, + "proteins_serving": 1.1, + "sugars_unit": "g", + "fat_100g": 24.5, + "saturated-fat_serving": 3.26, + "carbohydrates_value": "64.4", + "fiber_100g": 1.7, + "sodium": 0.0590551181102362, + "salt_serving": 0.03, + "sugars_100g": 37.3, + "fiber": 1.7, + "sodium_unit": "g", + "energy_value": "2087.4", + "energy_serving": 417, + "nutrition-score-fr": 23, + "sugars_serving": 7.46, + "salt_100g": 0.15, + "energy": 2087.4, + "sugars_value": "37.3", + "salt_unit": "g", + "salt": 0.15, + "energy_unit": "kJ", + "fat_serving": 4.9, + "proteins_value": "5.5", + "proteins_100g": 5.5, + "sugars": 37.3, + "saturated-fat": 16.3, + "fiber_serving": 0.34, + "saturated-fat_100g": 16.3, + "proteins_unit": "g", + "sodium_serving": 0.0118, + "carbohydrates_serving": 12.9, + "fiber_value": "1.7", + "sodium_100g": 0.0590551181102362, + "nutrition-score-fr_100g": 23, + "fat_unit": "g", + "saturated-fat_value": "16.3", + "carbohydrates": 64.4, + "fat": 24.5, + "carbohydrates_100g": 64.4, + "saturated-fat_unit": "g", + "nutrition-score-uk_100g": 23, + "fat_value": "24.5", + "proteins": 5.5, + "sodium_value": "0.05905511811023621" + }, + "editors_tags": [ + "sophiecool62", + "asmoth" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [ + "boite", + "carton" + ], + "photographers_tags": [ + "asmoth" + ], + "allergens_debug_tags": [], + "manufacturing_places_tags": [ + "41250", + "maslives", + "loir-et-cher", + "france" + ], + "nutrition_grades_tags": [ + "e" + ], + "link": "", + "nutrition_data_per": "100g", + "update_key": "20180706-categories", + "image_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.400.jpg", + "ingredients_text_with_allergens_fr": "Farine de froment, sucre, beurre concentré (18%), raisins secs macérés au Rhum (17%), œufs frais, poudre à lever (diphosphate disodique (E450i), carbonate acide de sodium (E500i), farine de blé), sel.", + "serving_size_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 2, + "quality_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:biscuits-sables" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "brands_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:biscuits-sables" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_debug_tags": [], + "sortkey": 1532445220, + "last_image_t": 1504372697, + "rev": 13, + "completed_t": 1504373110, + "correctors_tags": [ + "asmoth", + "sophiecool62" + ], + "additives_tags": [ + "en:e450", + "en:e450i", + "en:e500", + "en:e500i", + "en:e500ii" + ], + "purchase_places": "Blois,France", + "origins": "", + "ingredients_debug": [ + "Farine de _froment_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _beurre_ concentré ", + "(", + "(", + null, + null, + "18%)", + ",", + null, + null, + null, + " raisins secs macérés au Rhum ", + "(", + "(", + null, + null, + "17%)", + ",", + null, + null, + null, + " _œufs_ frais", + ",", + null, + null, + null, + " poudre à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "diphosphate disodique ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e450i", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " carbonate acide de sodium ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e500i", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " farine de _blé_)", + ",", + null, + null, + null, + " sel." + ], + "last_editor": "sophiecool62", + "purchase_places_tags": [ + "blois", + "france" + ], + "codes_tags": [ + "code-13", + 2000000052047, + "200000005204x", + "20000000520xx", + "2000000052xxx", + "200000005xxxx", + "20000000xxxxx", + "2000000xxxxxx", + "200000xxxxxxx", + "20000xxxxxxxx", + "2000xxxxxxxxx", + "200xxxxxxxxxx", + "20xxxxxxxxxxx", + "2xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "manufacturing_places_debug_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.400.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.200.jpg", + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "languages_codes": { + "fr": 6 + }, + "labels_tags": [], + "last_image_dates_tags": [ + "2017-09-02", + "2017-09", + "2017" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 6 + }, + "generic_name_fr": "Biscuits aux raisins et au Rhum", + "entry_dates_tags": [ + "2017-09-02", + "2017-09", + "2017" + ], + "url": "https://fr-en.openfoodfacts.org/product/2000000052047/palets-solognots-biscuiterie-de-chambord", + "ingredients_text_with_allergens": "Farine de froment, sucre, beurre concentré (18%), raisins secs macérés au Rhum (17%), œufs frais, poudre à lever (diphosphate disodique (E450i), carbonate acide de sodium (E500i), farine de blé), sel.", + "labels_prev_hierarchy": [], + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "categories_debug_tags": [ + "added-fr-biscuits-sables", + "removed-en-shortbread-cookies" + ], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "interface_version_created": "20120622", + "brands": "Biscuiterie de Chambord", + "generic_name": "Biscuits aux raisins et au Rhum", + "product_name_fr": "Palets solognots", + "amino_acids_prev_tags": [], + "creator": "asmoth", + "emb_codes_debug_tags": [], + "packaging": "boîte,carton", + "interface_version_modified": "20120622", + "vitamins_prev_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:shortbread-cookies" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.100.jpg", + "expiration_date": "", + "stores": "Leclerc", + "ingredients": [ + { + "rank": 1, + "text": "Farine de _froment_", + "id": "farine-de-froment" + }, + { + "id": "sucre", + "text": "sucre", + "rank": 2 + }, + { + "rank": 3, + "text": "_beurre_ concentré", + "id": "beurre-concentre", + "percent": "18" + }, + { + "percent": "17", + "id": "raisins-secs-maceres-au-rhum", + "text": "raisins secs macérés au Rhum", + "rank": 4 + }, + { + "text": "_œufs_ frais", + "rank": 5, + "id": "oeufs-frais" + }, + { + "id": "poudre-a-lever", + "rank": 6, + "text": "poudre à lever" + }, + { + "id": "carbonate-acide-de-sodium", + "rank": 7, + "text": "carbonate acide de sodium" + }, + { + "id": "e500i", + "text": "E500i", + "rank": 8 + }, + { + "text": "farine de _blé_", + "rank": 9, + "id": "farine-de-ble" + }, + { + "text": "sel", + "rank": 10, + "id": "sel" + }, + { + "id": "diphosphate-disodique", + "text": "diphosphate disodique" + }, + { + "text": "E450i", + "id": "e450i" + } + ], + "created_t": 1504372659, + "additives_old_tags": [ + "en:e450", + "en:e500" + ], + "allergens_from_ingredients": "froment, beurre, œufs, blé", + "languages_hierarchy": [ + "en:french" + ], + "packaging_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "last_modified_t": 1532445220, + "nutrition_data": "on", + "product_name": "Palets solognots", + "ingredients_tags": [ + "fr:farine-de-froment", + "en:sugar", + "fr:beurre-concentre", + "fr:raisins-secs-maceres-au-rhum", + "fr:oeufs-frais", + "fr:poudre-a-lever", + "fr:carbonate-acide-de-sodium", + "fr:e500i", + "fr:farine-de-ble", + "en:salt", + "fr:diphosphate-disodique", + "fr:e450i" + ], + "nutrition_data_per_debug_tags": [], + "brands_tags": [ + "biscuiterie-de-chambord" + ], + "lang": "fr", + "additives_n": 3, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 2, + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "code": "2000000052047", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "_keywords": [ + "snack", + "solognot", + "sucre", + "gateaux", + "rhum", + "aux", + "sable", + "chambord", + "raisin", + "biscuit", + "et", + "palet", + "de", + "au", + "biscuiterie" + ], + "traces_debug_tags": [], + "nutrition_grades": "e", + "nutrition_data_prepared": "", + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits sablés", + "stores_tags": [ + "leclerc" + ], + "cities_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "traces": "", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "fr:farine-de-froment", + "en:sugar", + "fr:beurre-concentre", + "fr:raisins-secs-maceres-au-rhum", + "fr:oeufs-frais", + "fr:poudre-a-lever", + "fr:carbonate-acide-de-sodium", + "fr:e500i", + "fr:farine-de-ble", + "en:salt", + "fr:diphosphate-disodique", + "fr:e450i" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.400.jpg", + "ingredients_ids_debug": [ + "farine-de-froment", + "sucre", + "beurre-concentre", + "18", + "raisins-secs-maceres-au-rhum", + "17", + "oeufs-frais", + "poudre-a-lever", + "diphosphate-disodique", + "e450i", + "carbonate-acide-de-sodium", + "e500i", + "farine-de-ble", + "sel" + ], + "additives_prev_original_tags": [ + "en:e450i", + "en:e500" + ], + "manufacturing_places": "41250,Maslives,Loir-et-Cher,France", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/nutrition_fr.11.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.200.jpg", + "product_quantity": 120, + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 57 + }, + "400": { + "w": 400, + "h": 226 + }, + "full": { + "w": 2000, + "h": 1130 + } + }, + "uploader": "asmoth", + "uploaded_t": "1504372688" + }, + "2": { + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 57 + }, + "400": { + "h": 226, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1130 + } + }, + "uploaded_t": "1504372689" + }, + "3": { + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 57 + }, + "400": { + "h": 226, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1130 + } + }, + "uploaded_t": "1504372696" + }, + "4": { + "uploaded_t": "1504372696", + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 57 + }, + "400": { + "w": 400, + "h": 226 + }, + "full": { + "h": 1130, + "w": 2000 + } + } + }, + "front_fr": { + "y2": "182.316650390625", + "angle": "0", + "rev": "7", + "imgid": "1", + "sizes": { + "100": { + "h": "35", + "w": "100" + }, + "200": { + "w": 200, + "h": 71 + }, + "400": { + "w": 400, + "h": 141 + }, + "full": { + "h": 610, + "w": 1730 + } + }, + "white_magic": "false", + "normalize": "false", + "geometry": "1730x610-134-301", + "x1": "26.83331298828125", + "x2": "372.83331298828125", + "y1": "60.316650390625" + }, + "ingredients_fr": { + "normalize": "true", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 88 + }, + "200": { + "h": 175, + "w": 200 + }, + "400": { + "w": 400, + "h": 350 + }, + "full": { + "h": 385, + "w": 440 + } + }, + "geometry": "440x385-359-847", + "x2": "159.83331298828125", + "y1": "169.48333740234375", + "x1": "71.83331298828126", + "y2": "246.48333740234375", + "angle": "90", + "imgid": "3", + "rev": "9" + }, + "nutrition_fr": { + "x1": "63.833312988281264", + "x2": "175.83331298828125", + "y1": "135.96665954589844", + "sizes": { + "100": { + "h": 98, + "w": 100 + }, + "200": { + "h": 196, + "w": 200 + }, + "400": { + "h": 393, + "w": 400 + }, + "full": { + "w": 560, + "h": 550 + } + }, + "white_magic": "false", + "normalize": "true", + "geometry": "560x550-319-679", + "angle": "270", + "rev": "11", + "imgid": "2", + "y2": "245.96665954589844" + } + }, + "lc": "fr", + "last_modified_by": "sophiecool62", + "ingredients_text": "Farine de _froment_, sucre, _beurre_ concentré (18%), raisins secs macérés au Rhum (17%), _œufs_ frais, poudre à lever (diphosphate disodique (E450i), carbonate acide de sodium (E500i), farine de _blé_), sel.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/ingredients_fr.9.200.jpg", + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [ + "en-e450-added", + "en-e500i-added", + "en-e500ii-added" + ], + "labels_prev_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.400.jpg", + "quantity_debug_tags": [], + "allergens": "Œufs,Gluten,Lait", + "nucleotides_prev_tags": [], + "quantity": "120 g", + "countries": "France", + "nutrition_data_prepared_per": "100g", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _froment_, sucre, _beurre_ concentré (18%), raisins secs macérés au Rhum (17%), _œufs_ frais, poudre à lever (diphosphate disodique (E450i), carbonate acide de sodium (E500i), farine de _blé_), sel.", + "labels": "", + "emb_codes": "", + "traces_tags": [], + "ingredients_n_tags": [ + "12", + "11-20" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/200/000/005/2047/front_fr.7.100.jpg", + "nutrition_grade_fr": "e", + "labels_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces_from_ingredients": "", + "serving_quantity": 20, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:shortbread-cookies" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "traces_hierarchy": [], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france" + ] + }, + { + "last_modified_t": 1532444053, + "nutrition_data": "on", + "ingredients": [ + { + "id": "pomme", + "percent": "26.9", + "rank": 1, + "text": "Pomme" + }, + { + "percent": "12.7", + "id": "farine-de-ble", + "text": "farine de _blé_", + "rank": 2 + }, + { + "text": "huile de colza", + "rank": 3, + "id": "huile-de-colza" + }, + { + "id": "sucre-de-canne", + "text": "sucre de canne", + "rank": 4 + }, + { + "text": "flocons d'_avoine_ complète", + "rank": 5, + "id": "flocons-d-avoine-complete" + }, + { + "rank": 6, + "text": "stabilisant", + "id": "stabilisant" + }, + { + "rank": 7, + "text": "glycérol d'origine végétale", + "id": "glycerol-d-origine-vegetale" + }, + { + "rank": 8, + "text": "sirop de glucose-fructose", + "id": "sirop-de-glucose-fructose" + }, + { + "rank": 9, + "text": "sirop de sucre inverti", + "id": "sirop-de-sucre-inverti" + }, + { + "rank": 10, + "text": "germe de _blé_", + "percent": "4.7", + "id": "germe-de-ble" + }, + { + "id": "ble", + "rank": 11, + "text": "_blé_" + }, + { + "id": "noix-de-coco-rapee", + "rank": 12, + "text": "noix de coco râpée" + }, + { + "id": "raisins-secs", + "rank": 13, + "text": "raisins secs" + }, + { + "text": "_œuf_ entier concentré", + "rank": 14, + "id": "oeuf-entier-concentre" + }, + { + "id": "abricots-secs", + "text": "abricots secs", + "rank": 15 + }, + { + "rank": 16, + "text": "_lactosérum_ en poudre", + "id": "lactoserum-en-poudre" + }, + { + "id": "gluten-de-ble", + "text": "gluten de _blé_", + "rank": 17 + }, + { + "percent": "0.75", + "id": "concentre-de-framboise", + "text": "concentré de framboise", + "rank": 18 + }, + { + "id": "soit-4-1-equivalent-framboise", + "text": "soit 4.1% équivalent framboise", + "rank": 19 + }, + { + "id": "magnesium", + "text": "magnésium", + "rank": 20 + }, + { + "id": "jus-de-raisin", + "text": "jus de raisin", + "rank": 21 + }, + { + "text": "arôme naturel", + "rank": 22, + "id": "arome-naturel" + }, + { + "rank": 23, + "text": "arôme naturel de framboise avec autres arômes naturels", + "id": "arome-naturel-de-framboise-avec-autres-aromes-naturels" + }, + { + "rank": 24, + "text": "arôme naturel de vanille", + "id": "arome-naturel-de-vanille" + }, + { + "text": "poudres à lever", + "rank": 25, + "id": "poudres-a-lever" + }, + { + "text": "calcium", + "rank": 26, + "id": "calcium" + }, + { + "id": "jus-concentre-de-citron", + "rank": 27, + "text": "jus concentré de citron" + }, + { + "id": "sel", + "rank": 28, + "text": "sel" + }, + { + "id": "extrait-de-malt-d-orge", + "text": "extrait de malt d'_orge_", + "rank": 29 + }, + { + "id": "vitamine-b9-et-e", + "text": "vitamine B9 et E", + "rank": 30 + }, + { + "id": "puree", + "text": "purée" + }, + { + "text": "concentré", + "id": "concentre" + }, + { + "id": "cube-et-semoule", + "text": "cube et semoule" + }, + { + "id": "amidon-de-ble", + "text": "amidon de _blé_" + }, + { + "id": "conservateur", + "text": "conservateur" + }, + { + "text": "_anhydre sulfureux_", + "id": "anhydre-sulfureux" + }, + { + "text": "diphosphates", + "id": "diphosphates" + }, + { + "text": "carbonates de sodium", + "id": "carbonates-de-sodium" + }, + { + "id": "lactose", + "text": "_lactose_" + }, + { + "id": "proteines-de-lait", + "text": "protéines de _lait_" + } + ], + "created_t": 1450960035, + "allergens_from_ingredients": "blé, blé, avoine, blé, blé, œuf, anhydre sulfureux, lactosérum, blé, orge, lactose, lait", + "additives_old_tags": [ + "en:e1403", + "en:e422", + "en:e450", + "en:e500", + "en:e306" + ], + "languages_hierarchy": [ + "en:french" + ], + "ingredients_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "emb_codes_tags": [], + "code": "3175681771772", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "_keywords": [ + "arome", + "riche", + "colorant", + "magnesium", + "pomme", + "en", + "et", + "biscuit", + "b9", + "vitamine", + "snack", + "framboise", + "moelleux", + "source", + "gateaux", + "sucre", + "san", + "la", + "artificiel", + "calcium", + "de", + "gerble" + ], + "traces_debug_tags": [], + "nutrition_grades": "c", + "product_name": "Moelleux POMME FRAMBOISE", + "ingredients_tags": [ + "fr:pomme", + "fr:farine-de-ble", + "fr:huile-de-colza", + "fr:sucre-de-canne", + "fr:flocons-d-avoine-complete", + "fr:stabilisant", + "fr:glycerol-d-origine-vegetale", + "fr:sirop-de-glucose-fructose", + "fr:sirop-de-sucre-inverti", + "fr:germe-de-ble", + "fr:ble", + "fr:noix-de-coco-rapee", + "fr:raisins-sec", + "fr:oeuf-entier-concentre", + "fr:abricots-secs", + "fr:lactoserum-en-poudre", + "fr:gluten-de-ble", + "fr:concentre-de-framboise", + "fr:soit-4-1-equivalent-framboise", + "fr:magnesium", + "fr:jus-de-raisin", + "fr:arome-naturel", + "fr:arome-naturel-de-framboise-avec-autres-aromes-naturels", + "fr:arome-naturel-de-vanille", + "fr:poudre-a-lever", + "fr:calcium", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:extrait-de-malt-d-orge", + "fr:vitamine-b9-et-e", + "fr:puree", + "fr:concentre", + "fr:cube-et-semoule", + "fr:amidon-de-ble", + "fr:conservateur", + "fr:anhydre-sulfureux", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:lactose", + "fr:proteines-de-lait" + ], + "nutrition_data_per_debug_tags": [], + "brands_tags": [ + "gerble" + ], + "lang": "fr", + "additives_n": 3, + "unknown_ingredients_n": 10, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "generic_name": "Biscuit moelleux à la pomme et à la framboise, riche en magnésium et en vitamine E, source de calcium et de vitamine B9", + "interface_version_created": "20120622", + "brands": "Gerblé", + "product_name_fr": "Moelleux POMME FRAMBOISE", + "generic_name_fr": "Biscuit moelleux à la pomme et à la framboise, riche en magnésium et en vitamine E, source de calcium et de vitamine B9", + "entry_dates_tags": [ + "2015-12-24", + "2015-12", + "2015" + ], + "url": "https://fr-en.openfoodfacts.org/product/3175681771772/moelleux-pomme-framboise-gerble", + "ingredients_text_with_allergens": "Pomme 26,9% (purée, concentré, cube et semoule (amidon de blé), farine de blé 12,7%, huile de colza, sucre de canne, flocons d'avoine complète, stabilisant : glycérol d'origine végétale, sirop de glucose-fructose, sirop de sucre inverti, germe de blé 4,7%, blé, noix de coco râpée, raisins secs, œuf entier concentré, abricots secs (conservateur : anhydre sulfureux), lactosérum en poudre, gluten de blé, concentré de framboise 0,75% (soit 4,1% équivalent framboise), magnésium, jus de raisin, arôme naturel, arôme naturel de framboise avec autres arômes naturels, arôme naturel de vanille, poudres à lever (diphosphates, carbonates de sodium), calcium, jus concentré de citron, sel, extrait de malt d'orge, vitamine B9 et E (lactose, protéines de lait).", + "labels_prev_hierarchy": [ + "en:no-artificial-flavors", + "en:no-colorings" + ], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [ + "en:magnesium", + "en:calcium" + ], + "categories_debug_tags": [], + "expiration_date": "", + "stores": "", + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "gendy54", + "packaging": "Carton", + "interface_version_modified": "20150316.jqm2", + "vitamins_prev_tags": [ + "en:folic-acid", + "en:vitamin-e" + ], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.100.jpg", + "nucleotides_prev_tags": [], + "quantity": "138 g", + "countries": "en:france", + "nutrition_data_prepared_per": "100g", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Pomme 26,9% (purée, concentré, cube et semoule (amidon de _blé_), farine de _blé_ 12,7%, huile de colza, sucre de canne, flocons d'_avoine_ complète, stabilisant : glycérol d'origine végétale, sirop de glucose-fructose, sirop de sucre inverti, germe de _blé_ 4,7%, _blé_, noix de coco râpée, raisins secs, _œuf_ entier concentré, abricots secs (conservateur : _anhydre sulfureux_), _lactosérum_ en poudre, gluten de _blé_, concentré de framboise 0,75% (soit 4,1% équivalent framboise), magnésium, jus de raisin, arôme naturel, arôme naturel de framboise avec autres arômes naturels, arôme naturel de vanille, poudres à lever (diphosphates, carbonates de sodium), calcium, jus concentré de citron, sel, extrait de malt d'_orge_, vitamine B9 et E (_lactose_, protéines de _lait_).", + "emb_codes": "", + "labels": "Sans colorants,Sans arômes artificiels", + "traces_tags": [ + "en:lupin", + "en:nuts", + "en:soybeans" + ], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "stores_debug_tags": [], + "labels_prev_tags": [ + "en:no-artificial-flavors", + "en:no-colorings" + ], + "additives_debug_tags": [ + "en-e341-removed", + "en-e504-removed" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.400.jpg", + "quantity_debug_tags": [], + "allergens": "blé, blé, avoine, blé, blé, œuf, anhydre sulfureux, lactosérum, blé, orge, lactose, lait, blé, blé, avoine, blé, blé, œuf, anhydre sulfureux, lactosérum, blé, orge, lactose, lait", + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "traces_hierarchy": [ + "en:lupin", + "en:nuts", + "en:soybeans" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_grade_fr": "c", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.100.jpg", + "ingredients_n_tags": [ + "40", + "31-40" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [ + "en:no-colorings", + "en:no-artificial-flavors" + ], + "traces_from_ingredients": "", + "serving_quantity": 23, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "traces": "Lupin,Fruits à coque,Soja", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "fr:pomme", + "fr:farine-de-ble", + "fr:huile-de-colza", + "fr:sucre-de-canne", + "fr:flocons-d-avoine-complete", + "fr:stabilisant", + "fr:glycerol-d-origine-vegetale", + "fr:sirop-de-glucose-fructose", + "fr:sirop-de-sucre-inverti", + "fr:germe-de-ble", + "fr:ble", + "fr:noix-de-coco-rapee", + "fr:raisins-sec", + "fr:oeuf-entier-concentre", + "fr:abricots-secs", + "fr:lactoserum-en-poudre", + "fr:gluten-de-ble", + "fr:concentre-de-framboise", + "fr:soit-4-1-equivalent-framboise", + "fr:magnesium", + "fr:jus-de-raisin", + "fr:arome-naturel", + "fr:arome-naturel-de-framboise-avec-autres-aromes-naturels", + "fr:arome-naturel-de-vanille", + "fr:poudre-a-lever", + "fr:calcium", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:extrait-de-malt-d-orge", + "fr:vitamine-b9-et-e", + "fr:puree", + "fr:concentre", + "fr:cube-et-semoule", + "fr:amidon-de-ble", + "fr:conservateur", + "fr:anhydre-sulfureux", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:lactose", + "fr:proteines-de-lait" + ], + "ingredients_ids_debug": [ + "pomme-26", + "9", + "puree", + "concentre", + "cube-et-semoule", + "amidon-de-ble", + "farine-de-ble-12", + "7", + "huile-de-colza", + "sucre-de-canne", + "flocons-d-avoine-complete", + "stabilisant", + "glycerol-d-origine-vegetale", + "sirop-de-glucose-fructose", + "sirop-de-sucre-inverti", + "germe-de-ble-4", + "7", + "ble", + "noix-de-coco-rapee", + "raisins-secs", + "oeuf-entier-concentre", + "abricots-secs", + "conservateur", + "anhydre-sulfureux", + "lactoserum-en-poudre", + "gluten-de-ble", + "concentre-de-framboise-0", + "75", + "soit-4", + "1-equivalent-framboise", + "magnesium", + "jus-de-raisin", + "arome-naturel", + "arome-naturel-de-framboise-avec-autres-aromes-naturels", + "arome-naturel-de-vanille", + "poudres-a-lever", + "diphosphates", + "carbonates-de-sodium", + "calcium", + "jus-concentre-de-citron", + "sel", + "extrait-de-malt-d-orge", + "vitamines", + "vitamine-b9", + "vitamine-e", + "lactose", + "proteines-de-lait" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.400.jpg", + "additives_prev_original_tags": [ + "en:e422", + "en:e504", + "en:e450", + "en:e500", + "en:e341" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits", + "nutrition_data_prepared": "", + "stores_tags": [], + "cities_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.200.jpg", + "manufacturing_places": "", + "image_small_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.400.jpg", + "product_quantity": 138, + "lc": "fr", + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "gendy54", + "uploaded_t": "1450960035" + }, + "2": { + "uploader": "gendy54", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploaded_t": "1450960182" + }, + "3": { + "uploaded_t": "1450960223", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "gendy54" + }, + "4": { + "uploaded_t": "1450960278", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploader": "gendy54" + }, + "5": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 299 + }, + "full": { + "h": 1936, + "w": 2592 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1452269372" + }, + "6": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 299 + }, + "full": { + "h": 1936, + "w": 2592 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1452269397" + }, + "7": { + "sizes": { + "100": { + "h": 57, + "w": 100 + }, + "400": { + "w": 400, + "h": 226 + }, + "full": { + "w": 2000, + "h": 1130 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1499033676" + }, + "8": { + "uploaded_t": "1499064409", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "9": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 24 + }, + "400": { + "h": 98, + "w": 400 + }, + "full": { + "w": 4007, + "h": 981 + } + }, + "uploaded_t": "1526927474" + }, + "10": { + "uploaded_t": 1532444051, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 71, + "w": 100 + }, + "400": { + "w": 400, + "h": 283 + }, + "full": { + "w": 1699, + "h": 1200 + } + } + }, + "front_fr": { + "x2": null, + "y1": null, + "x1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": "71", + "w": "100" + }, + "200": { + "h": 141, + "w": 200 + }, + "400": { + "h": 283, + "w": 400 + }, + "full": { + "w": 1699, + "h": 1200 + } + }, + "imgid": "10", + "rev": "27", + "angle": null, + "y2": null + }, + "ingredients": { + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 34 + }, + "200": { + "w": 200, + "h": 69 + }, + "400": { + "w": 400, + "h": 138 + }, + "full": { + "w": 2400, + "h": 827 + } + }, + "geometry": "2400x827-132-744", + "imgid": "2", + "rev": "11" + }, + "nutrition": { + "sizes": { + "100": { + "h": 39, + "w": 100 + }, + "200": { + "h": 79, + "w": 200 + }, + "400": { + "h": 157, + "w": 400 + }, + "full": { + "h": 596, + "w": 1515 + } + }, + "white_magic": "false", + "normalize": "false", + "geometry": "1515x596-177-731", + "rev": "12", + "imgid": "5" + }, + "nutrition_fr": { + "geometry": "1515x596-177-731", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 39 + }, + "200": { + "w": 200, + "h": 79 + }, + "400": { + "w": 400, + "h": 157 + }, + "full": { + "w": 1515, + "h": 596 + } + }, + "imgid": "5", + "rev": "12" + }, + "front": { + "geometry": "2373x1013-79-487", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "h": 43, + "w": 100 + }, + "200": { + "w": 200, + "h": 85 + }, + "400": { + "h": 171, + "w": 400 + }, + "full": { + "h": 1013, + "w": 2373 + } + }, + "imgid": "1", + "rev": "10" + }, + "ingredients_fr": { + "imgid": "9", + "rev": "21", + "angle": null, + "y2": null, + "y1": null, + "x2": null, + "x1": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "h": 24, + "w": 100 + }, + "200": { + "h": 49, + "w": 200 + }, + "400": { + "h": 98, + "w": 400 + }, + "full": { + "h": 981, + "w": 4007 + } + } + } + }, + "last_modified_by": null, + "ingredients_text": "Pomme 26,9% (purée, concentré, cube et semoule (amidon de _blé_), farine de _blé_ 12,7%, huile de colza, sucre de canne, flocons d'_avoine_ complète, stabilisant : glycérol d'origine végétale, sirop de glucose-fructose, sirop de sucre inverti, germe de _blé_ 4,7%, _blé_, noix de coco râpée, raisins secs, _œuf_ entier concentré, abricots secs (conservateur : _anhydre sulfureux_), _lactosérum_ en poudre, gluten de _blé_, concentré de framboise 0,75% (soit 4,1% équivalent framboise), magnésium, jus de raisin, arôme naturel, arôme naturel de framboise avec autres arômes naturels, arôme naturel de vanille, poudres à lever (diphosphates, carbonates de sodium), calcium, jus concentré de citron, sel, extrait de malt d'_orge_, vitamine B9 et E (_lactose_, protéines de _lait_).", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "informers_tags": [ + "gendy54", + "segundo", + "sebleouf" + ], + "nutriments": { + "energy_serving": "374", + "calcium_100g": 0.152, + "vitamin-e_serving": 0.000828, + "salt_serving": 0.092, + "calcium_label": "Calcium", + "magnesium": 0.175, + "nutrition-score-fr": "10", + "salt_value": "0.4", + "vitamin-e_unit": "mg", + "sodium": 0.15748031496063, + "fiber_100g": 4.6, + "carbohydrates_value": "59", + "vitamin-e_value": "3.6", + "vitamin-b9_serving": 0.00000805, + "sugars_unit": "", + "fat_100g": "14", + "vitamin-e_label": "Vitamine E (tocophérol)", + "proteins_serving": 1.63, + "fat": "14", + "saturated-fat_value": "3.4", + "nutrition-score-fr_100g": "10", + "sodium_100g": 0.15748031496063, + "magnesium_unit": "mg", + "fat_unit": "", + "vitamin-e": 0.0036, + "proteins": 7.1, + "nutrition-score-uk_100g": "10", + "fat_value": "14", + "fiber_serving": 1.06, + "saturated-fat": 3.4, + "saturated-fat_100g": 3.4, + "calcium_value": "152", + "proteins_100g": 7.1, + "sugars": "31", + "salt": 0.4, + "calcium": 0.152, + "sugars_value": "31", + "calcium_unit": "mg", + "vitamin-e_100g": 0.0036, + "proteins_unit": "", + "sodium_serving": 0.0362, + "magnesium_value": "175", + "energy_value": "389", + "magnesium_label": "Magnésium", + "sugars_100g": "31", + "fiber": 4.6, + "salt_100g": 0.4, + "energy": "1628", + "sugars_serving": 7.13, + "vitamin-b9_value": "35", + "nutrition-score-uk": "10", + "vitamin-b9_unit": "µg", + "fiber_unit": "g", + "energy_100g": "1628", + "carbohydrates_unit": "", + "saturated-fat_serving": 0.782, + "vitamin-b9": 0.000035, + "magnesium_100g": 0.175, + "saturated-fat_unit": "", + "calcium_serving": 0.035, + "carbohydrates_100g": "59", + "carbohydrates": "59", + "vitamin-b9_label": "Vitamine B9 (Acide folique)", + "magnesium_serving": 0.0402, + "vitamin-b9_100g": 0.000035, + "energy_unit": "kcal", + "salt_unit": "", + "proteins_value": "7.1", + "fat_serving": 3.22, + "carbohydrates_serving": 13.6, + "fiber_value": "4.6" + }, + "editors_tags": [ + "sebleouf", + "kiliweb", + "gendy54", + "segundo", + "openfoodfacts-contributors" + ], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 4 + sat-fat 3 + fr-sat-fat-for-fats 3 + sugars 6 + sodium 1 - fruits 0% 0 - fiber 4 - proteins 4 -- fsa 10 -- fr 10", + "pnns_groups_1": "Sugary snacks", + "id": "3175681771772", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.100.jpg", + "link_debug_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "link": "", + "nutrition_data_per": "100g", + "update_key": "20180706-categories", + "packaging_tags": [ + "carton" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "photographers_tags": [ + "gendy54", + "openfoodfacts-contributors", + "kiliweb" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "manufacturing_places_tags": [], + "_id": "3175681771772", + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e422", + "en:e450", + "en:e500" + ], + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "fr:anhydre sulfureux" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.100.jpg", + "ingredients_text_debug": "Pomme 26,9% (purée, concentré, cube et semoule (amidon de _blé_), farine de _blé_ 12,7%, huile de colza, sucre de canne, flocons d'_avoine_ complète, stabilisant : glycérol d'origine végétale, sirop de glucose-fructose, sirop de sucre inverti, germe de _blé_ 4,7%, _blé_, noix de coco râpée, raisins secs, _œuf_ entier concentré, abricots secs (conservateur : _anhydre sulfureux_), _lactosérum_ en poudre, gluten de _blé_, concentré de framboise 0,75% (soit 4,1% équivalent framboise), magnésium, jus de raisin, arôme naturel, arôme naturel de framboise avec autres arômes naturels, arôme naturel de vanille, poudres à lever : (diphosphates, carbonates de sodium), calcium, jus concentré de citron, sel, extrait de malt d'_orge_, vitamine B9 et E (_lactose_, protéines de _lait_).", + "ingredients_n": "40", + "additives_prev_n": 5, + "origins_debug_tags": [], + "nutrient_levels": { + "saturated-fat": "moderate", + "sugars": "high", + "fat": "moderate", + "salt": "moderate" + }, + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "max_imgid": "10", + "vitamins_tags": [ + "en:folic-acid", + "en:vitamin-e" + ], + "additives_prev_tags": [ + "en:e341", + "en:e422", + "en:e450", + "en:e500", + "en:e504" + ], + "serving_size": "23 g", + "codes_tags": [ + "code-13", + "3175681771772", + "317568177177x", + "31756817717xx", + "3175681771xxx", + "317568177xxxx", + "31756817xxxxx", + "3175681xxxxxx", + "317568xxxxxxx", + "31756xxxxxxxx", + "3175xxxxxxxxx", + "317xxxxxxxxxx", + "31xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "scans_n": 19, + "manufacturing_places_debug_tags": [], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/568/177/1772/ingredients_fr.21.400.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "last_editor": null, + "purchase_places_tags": [], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [ + "en:no-colorings", + "en:no-artificial-flavors" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 6 + }, + "emb_codes_20141016": "", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/nutrition_fr.12.200.jpg", + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "fr:anhydre-sulfureux" + ], + "languages_codes": { + "fr": 6 + }, + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50" + ], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "generic_name_fr_debug_tags": [], + "origins_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/317/568/177/1772/front_fr.27.400.jpg", + "ingredients_text_with_allergens_fr": "Pomme 26,9% (purée, concentré, cube et semoule (amidon de blé), farine de blé 12,7%, huile de colza, sucre de canne, flocons d'avoine complète, stabilisant : glycérol d'origine végétale, sirop de glucose-fructose, sirop de sucre inverti, germe de blé 4,7%, blé, noix de coco râpée, raisins secs, œuf entier concentré, abricots secs (conservateur : anhydre sulfureux), lactosérum en poudre, gluten de blé, concentré de framboise 0,75% (soit 4,1% équivalent framboise), magnésium, jus de raisin, arôme naturel, arôme naturel de framboise avec autres arômes naturels, arôme naturel de vanille, poudres à lever (diphosphates, carbonates de sodium), calcium, jus concentré de citron, sel, extrait de malt d'orge, vitamine B9 et E (lactose, protéines de lait).", + "serving_size_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 5, + "completed_t": 1458469102, + "correctors_tags": [ + "segundo", + "kiliweb", + "openfoodfacts-contributors", + "sebleouf" + ], + "additives_tags": [ + "en:e422", + "en:e450", + "en:e500" + ], + "purchase_places": "", + "origins": "", + "ingredients_debug": [ + "Pomme 26", + ",", + null, + null, + null, + "9% ", + "(", + "(", + null, + null, + "purée", + ",", + null, + null, + null, + " concentré", + ",", + null, + null, + null, + " cube et semoule ", + "(", + "(", + null, + null, + "amidon de _blé_)", + ",", + null, + null, + null, + " farine de _blé_ 12", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " sucre de canne", + ",", + null, + null, + null, + " flocons d'_avoine_ complète", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " glycérol d'origine végétale", + ",", + null, + null, + null, + " sirop de glucose-fructose", + ",", + null, + null, + null, + " sirop de sucre inverti", + ",", + null, + null, + null, + " germe de _blé_ 4", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " _blé_", + ",", + null, + null, + null, + " noix de coco râpée", + ",", + null, + null, + null, + " raisins secs", + ",", + null, + null, + null, + " _œuf_ entier concentré", + ",", + null, + null, + null, + " abricots secs ", + "(", + "(", + null, + null, + "conservateur ", + ":", + ":", + null, + null, + " _anhydre sulfureux_)", + ",", + null, + null, + null, + " _lactosérum_ en poudre", + ",", + null, + null, + null, + " gluten de _blé_", + ",", + null, + null, + null, + " concentré de framboise 0", + ",", + null, + null, + null, + "75% ", + "(", + "(", + null, + null, + "soit 4", + ",", + null, + null, + null, + "1% équivalent framboise)", + ",", + null, + null, + null, + " magnésium", + ",", + null, + null, + null, + " jus de raisin", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " arôme naturel de framboise avec autres arômes naturels", + ",", + null, + null, + null, + " arôme naturel de vanille", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "diphosphates", + ",", + null, + null, + null, + " carbonates de sodium)", + ",", + null, + null, + null, + " calcium", + ",", + null, + null, + null, + " jus concentré de citron", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " extrait de malt d'_orge_", + ",", + null, + null, + null, + " vitamines", + ",", + null, + null, + null, + "vitamine B9", + ",", + null, + null, + null, + "vitamine E ", + "(", + "(", + null, + null, + "_lactose_", + ",", + null, + null, + null, + " protéines de _lait_)." + ], + "brands_debug_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "purchase_places_debug_tags": [], + "sortkey": 1532444053, + "unique_scans_n": 18, + "last_image_t": 1532444051, + "rev": 27 + }, + { + "manufacturing_places_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "photographers_tags": [ + "domdom26", + "openfoodfacts-contributors", + "kiliweb" + ], + "packaging_tags": [ + "carton", + "boite", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "update_key": "20180706-categories", + "nutrition_data_per": "100g", + "link": "", + "nutrition_grades_tags": [ + "e" + ], + "link_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.100.jpg", + "id": "26035642", + "pnns_groups_1": "Sugary snacks", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 7 + sugars 7 + sodium 5 - fruits 0% 0 - fiber 0 - proteins 3 -- fsa 28 -- fr 28", + "editors_tags": [ + "beniben", + "openfoodfacts-contributors", + "domdom26", + "kiliweb", + "tacite" + ], + "nutriments": { + "sugars_unit": "", + "fat_100g": "26", + "proteins_serving": 1.83, + "sodium": 0.47244094488189, + "saturated-fat_serving": 4.33, + "carbohydrates_value": "58", + "salt_value": "1.2", + "energy_100g": "2046", + "carbohydrates_unit": "", + "nutrition-score-uk": "28", + "sugars_serving": 10.7, + "nutrition-score-fr": "28", + "salt_100g": 1.2, + "energy": "2046", + "sugars_100g": "32", + "salt_serving": 0.4, + "energy_value": "489", + "energy_serving": "681", + "proteins_unit": "", + "carbohydrates_serving": 19.3, + "sodium_serving": 0.157, + "salt_unit": "", + "energy_unit": "kcal", + "salt": 1.2, + "fat_serving": 8.66, + "proteins_value": "5.5", + "sugars_value": "32", + "saturated-fat": "13", + "saturated-fat_100g": "13", + "proteins_100g": 5.5, + "sugars": "32", + "proteins": 5.5, + "nutrition-score-uk_100g": "28", + "fat_value": "26", + "saturated-fat_value": "13", + "nutrition-score-fr_100g": "28", + "fat_unit": "", + "sodium_100g": 0.47244094488189, + "carbohydrates_100g": "58", + "saturated-fat_unit": "", + "carbohydrates": "58", + "fat": "26" + }, + "informers_tags": [ + "domdom26", + "beniben" + ], + "serving_size": "33.3 g", + "additives_prev_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503" + ], + "vitamins_tags": [], + "max_imgid": "8", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nutrient_levels": { + "fat": "high", + "sugars": "high", + "saturated-fat": "high", + "salt": "moderate" + }, + "editors": [ + "domdom26" + ], + "additives_prev_n": 4, + "origins_debug_tags": [], + "ingredients_n": "51", + "ingredients_text_debug": "Cookies aux pépites de chocolat et à la nougatine : Farine de _blé_, pépites de chocolat 22% (sucre, pâte de cacao, beurre de cacao, émulsifiant : lécithines (_soja_), arôme), sucre, huile végétale (palme), praliné nougatine 8 % (sucre, _noisettes_), poudres à lever : diphosphates, carbonates de sodium, _lactosérum_ en poudre, sel, _œufs_, émulsifiant : lécithines (dont _blé_).\r\n\r\nCookies Tout Chocolat : Farine de _blé_, chocolat 35.5 % (pépites de chocolat 27 % (sucre, pâte de cacao, beurre de cacao, émulsifiant : _soja_), arôme), chocolat en poudre 8.5 % (sucre, cacao et cacao maigre en poudre, pâte de cacao)), huile végétale (palme), sucre, _œufs_ et blancs d'_œufs_, poudres à lever : diphosphates, carbonates de sodium, carbonates d'ammonium, _lactosérum_, en poudre, sel, arôme", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.100.jpg", + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:nuts", + "en:soybeans" + ], + "nucleotides_tags": [], + "additives_original_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "_id": "26035642", + "languages_codes": { + "fr": 6 + }, + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:nuts", + "en:soybeans" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.200.jpg", + "emb_codes_20141016": "", + "languages": { + "en:french": 6 + }, + "lang_debug_tags": [], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [ + "en:sustainable-farming", + "en:utz-certified", + "en:utz-certified-cacao" + ], + "purchase_places_tags": [ + "france" + ], + "new_additives_n": 3, + "last_editor": null, + "product_name_fr_debug_tags": [], + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.200.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.100.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "scans_n": 8, + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-8", + "26035642", + "2603564x", + "260356xx", + "26035xxx", + "2603xxxx", + "260xxxxx", + "26xxxxxx", + "2xxxxxxx" + ], + "rev": 34, + "last_image_t": 1532443345, + "unique_scans_n": 5, + "sortkey": 1532443346, + "purchase_places_debug_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "brands_debug_tags": [], + "ingredients_debug": [ + "Cookies aux pépites de chocolat et à la nougatine ", + ":", + ":", + null, + null, + " Farine de _blé_", + ",", + null, + null, + null, + " pépites de chocolat 22% ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines ", + "(", + "(", + null, + null, + "_soja_)", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huile végétale ", + "(", + "(", + null, + null, + "palme)", + ",", + null, + null, + null, + " praliné nougatine 8 % ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " _noisettes_)", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " diphosphates", + ",", + null, + null, + null, + " carbonates de sodium", + ",", + null, + null, + null, + " _lactosérum_ en poudre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " _œufs_", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines ", + "(", + "(", + null, + null, + "dont _blé_)", + ".\r", + null, + null, + null, + "\n\r\nCookies Tout Chocolat ", + ":", + ":", + null, + null, + " Farine de _blé_", + ",", + null, + null, + null, + " chocolat 35.5 % ", + "(", + "(", + null, + null, + "pépites de chocolat 27 % ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " _soja_)", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + " chocolat en poudre 8.5 % ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " cacao et cacao maigre en poudre", + ",", + null, + null, + null, + " pâte de cacao))", + ",", + null, + null, + null, + " huile végétale ", + "(", + "(", + null, + null, + "palme)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _œufs_ et blancs d'_œufs_", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " diphosphates", + ",", + null, + null, + null, + " carbonates de sodium", + ",", + null, + null, + null, + " carbonates d'ammonium", + ",", + null, + null, + null, + " _lactosérum_", + ",", + null, + null, + null, + " en poudre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " arôme" + ], + "origins": "", + "purchase_places": "France", + "additives_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503" + ], + "correctors_tags": [ + "domdom26", + "tacite", + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "completed_t": 1430497030, + "additives_old_n": 6, + "ingredients_text_fr_debug_tags": [], + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "Cookies aux pépites de chocolat et à la nougatine : Farine de blé, pépites de chocolat 22% (sucre, pâte de cacao, beurre de cacao, émulsifiant : lécithines (soja), arôme), sucre, huile végétale (palme), praliné nougatine 8 % (sucre, noisettes), poudres à lever : diphosphates, carbonates de sodium, lactosérum en poudre, sel, œufs, émulsifiant : lécithines (dont blé).\r\n\r\nCookies Tout Chocolat : Farine de blé, chocolat 35.5 % (pépites de chocolat 27 % (sucre, pâte de cacao, beurre de cacao, émulsifiant : soja), arôme), chocolat en poudre 8.5 % (sucre, cacao et cacao maigre en poudre, pâte de cacao)), huile végétale (palme), sucre, œufs et blancs d'œufs, poudres à lever : diphosphates, carbonates de sodium, carbonates d'ammonium, lactosérum, en poudre, sel, arôme", + "image_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.400.jpg", + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-contains-e" + ], + "unknown_ingredients_n": 7, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 4, + "lang": "fr", + "brands_tags": [ + "arizona", + "aldi" + ], + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:cookies-aux-pepites-de-chocolat-et-a-la-nougatine", + "fr:farine-de-ble", + "fr:pepites-de-chocolat", + "fr:arome", + "en:sugar", + "fr:huile-vegetale", + "fr:palme", + "fr:praline-nougatine", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:lactoserum-en-poudre", + "en:salt", + "fr:oeuf", + "fr:emulsifiant", + "fr:lecithine", + "fr:dont-ble", + "fr:cookies-tout-chocolat", + "fr:farine-de-ble", + "fr:chocolat", + "fr:arome", + "fr:chocolat-en-poudre", + "fr:huile-vegetale", + "fr:palme", + "en:sugar", + "fr:oeufs-et-blancs-d-oeufs", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:carbonates-d-ammonium", + "fr:lactoserum", + "fr:en-poudre", + "en:salt", + "fr:arome", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine", + "fr:soja", + "en:sugar", + "fr:noisette", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:soja", + "en:sugar", + "fr:cacao-et-cacao-maigre-en-poudre", + "fr:pate-de-cacao" + ], + "product_name": "Cookies nougatine + pépites de chocolat", + "nutrition_grades": "e", + "traces_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "_keywords": [ + "certified", + "de", + "tout", + "cookie", + "utz", + "gateaux", + "sucre", + "arizona", + "chocolat", + "snack", + "nougatine", + "au", + "ou", + "cacao", + "pepite", + "et", + "biscuit", + "aldi" + ], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "26035642", + "emb_codes_tags": [], + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "ingredients_from_palm_oil_n": 1, + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e322", + "en:e450", + "en:e500", + "en:e502", + "en:e503" + ], + "allergens_from_ingredients": "blé, soja, noisettes, lactosérum, œufs, blé, blé, soja, œufs, œufs, lactosérum", + "created_t": 1430401348, + "ingredients": [ + { + "rank": 1, + "text": "Cookies aux pépites de chocolat et à la nougatine", + "id": "cookies-aux-pepites-de-chocolat-et-a-la-nougatine" + }, + { + "id": "farine-de-ble", + "text": "Farine de _blé_", + "rank": 2 + }, + { + "percent": "22", + "id": "pepites-de-chocolat", + "text": "pépites de chocolat", + "rank": 3 + }, + { + "id": "arome", + "rank": 4, + "text": "arôme" + }, + { + "text": "sucre", + "rank": 5, + "id": "sucre" + }, + { + "rank": 6, + "text": "huile végétale", + "id": "huile-vegetale" + }, + { + "id": "palme", + "text": "palme", + "rank": 7 + }, + { + "id": "praline-nougatine", + "percent": "8", + "rank": 8, + "text": "praliné nougatine" + }, + { + "id": "poudres-a-lever", + "text": "poudres à lever", + "rank": 9 + }, + { + "text": "diphosphates", + "rank": 10, + "id": "diphosphates" + }, + { + "rank": 11, + "text": "carbonates de sodium", + "id": "carbonates-de-sodium" + }, + { + "text": "_lactosérum_ en poudre", + "rank": 12, + "id": "lactoserum-en-poudre" + }, + { + "id": "sel", + "text": "sel", + "rank": 13 + }, + { + "rank": 14, + "text": "_œufs_", + "id": "oeufs" + }, + { + "id": "emulsifiant", + "rank": 15, + "text": "émulsifiant" + }, + { + "rank": 16, + "text": "lécithines", + "id": "lecithines" + }, + { + "id": "dont-ble", + "text": "dont _blé_", + "rank": 17 + }, + { + "text": "Cookies Tout Chocolat", + "rank": 18, + "id": "cookies-tout-chocolat" + }, + { + "text": "Farine de _blé_", + "rank": 19, + "id": "farine-de-ble" + }, + { + "id": "chocolat", + "percent": "35.5", + "text": "chocolat", + "rank": 20 + }, + { + "id": "arome", + "text": "arôme", + "rank": 21 + }, + { + "percent": "8.5", + "id": "chocolat-en-poudre", + "text": "chocolat en poudre", + "rank": 22 + }, + { + "rank": 23, + "text": "huile végétale", + "id": "huile-vegetale" + }, + { + "id": "palme", + "text": "palme", + "rank": 24 + }, + { + "text": "sucre", + "rank": 25, + "id": "sucre" + }, + { + "id": "oeufs-et-blancs-d-oeufs", + "rank": 26, + "text": "_œufs_ et blancs d'_œufs_" + }, + { + "text": "poudres à lever", + "rank": 27, + "id": "poudres-a-lever" + }, + { + "id": "diphosphates", + "text": "diphosphates", + "rank": 28 + }, + { + "rank": 29, + "text": "carbonates de sodium", + "id": "carbonates-de-sodium" + }, + { + "id": "carbonates-d-ammonium", + "rank": 30, + "text": "carbonates d'ammonium" + }, + { + "id": "lactoserum", + "rank": 31, + "text": "_lactosérum_" + }, + { + "id": "en-poudre", + "text": "en poudre", + "rank": 32 + }, + { + "id": "sel", + "rank": 33, + "text": "sel" + }, + { + "id": "arome", + "text": "arôme", + "rank": 34 + }, + { + "id": "sucre", + "text": "sucre" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao" + }, + { + "text": "beurre de cacao", + "id": "beurre-de-cacao" + }, + { + "text": "émulsifiant", + "id": "emulsifiant" + }, + { + "text": "lécithines", + "id": "lecithines" + }, + { + "text": "_soja_", + "id": "soja" + }, + { + "id": "sucre", + "text": "sucre" + }, + { + "id": "noisettes", + "text": "_noisettes_" + }, + { + "text": "pépites de chocolat", + "percent": "27", + "id": "pepites-de-chocolat" + }, + { + "text": "sucre", + "id": "sucre" + }, + { + "text": "pâte de cacao", + "id": "pate-de-cacao" + }, + { + "id": "beurre-de-cacao", + "text": "beurre de cacao" + }, + { + "id": "emulsifiant", + "text": "émulsifiant" + }, + { + "text": "_soja_", + "id": "soja" + }, + { + "id": "sucre", + "text": "sucre" + }, + { + "text": "cacao et cacao maigre en poudre", + "id": "cacao-et-cacao-maigre-en-poudre" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao" + } + ], + "nutrition_data": "on", + "last_modified_t": 1532443346, + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.100.jpg", + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "vitamins_prev_tags": [], + "packaging": "carton,boîte,plastique", + "interface_version_modified": "20150316.jqm2", + "creator": "domdom26", + "emb_codes_debug_tags": [], + "amino_acids_prev_tags": [], + "stores": "Aldi", + "expiration_date": "30/06/2018", + "categories_debug_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "ingredients_text_with_allergens": "Cookies aux pépites de chocolat et à la nougatine : Farine de blé, pépites de chocolat 22% (sucre, pâte de cacao, beurre de cacao, émulsifiant : lécithines (soja), arôme), sucre, huile végétale (palme), praliné nougatine 8 % (sucre, noisettes), poudres à lever : diphosphates, carbonates de sodium, lactosérum en poudre, sel, œufs, émulsifiant : lécithines (dont blé).\r\n\r\nCookies Tout Chocolat : Farine de blé, chocolat 35.5 % (pépites de chocolat 27 % (sucre, pâte de cacao, beurre de cacao, émulsifiant : soja), arôme), chocolat en poudre 8.5 % (sucre, cacao et cacao maigre en poudre, pâte de cacao)), huile végétale (palme), sucre, œufs et blancs d'œufs, poudres à lever : diphosphates, carbonates de sodium, carbonates d'ammonium, lactosérum, en poudre, sel, arôme", + "labels_prev_hierarchy": [ + "en:sustainable-farming", + "en:utz-certified", + "en:utz-certified-cacao" + ], + "url": "https://fr-en.openfoodfacts.org/product/26035642/cookies-nougatine-pepites-de-chocolat-arizona", + "entry_dates_tags": [ + "2015-04-30", + "2015-04", + "2015" + ], + "generic_name_fr": "Cookies Tout Chocolat ou Nougatine et Pépites de Chocolat", + "product_name_fr": "Cookies nougatine + pépites de chocolat", + "generic_name": "Cookies Tout Chocolat ou Nougatine et Pépites de Chocolat", + "interface_version_created": "20120622", + "brands": "Arizona,Aldi", + "complete": 1, + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "serving_quantity": 33.3, + "traces_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [ + "en:sustainable-farming", + "en:utz-certified", + "en:utz-certified-cacao" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.100.jpg", + "nutrition_grade_fr": "e", + "ingredients_n_tags": [ + "51", + "51-60" + ], + "countries_tags": [ + "en:france" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "traces_hierarchy": [ + "en:nuts", + "en:peanuts" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "allergens": "blé, soja, noisettes, lactosérum, œufs, blé, blé, soja, œufs, œufs, lactosérum", + "quantity_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.400.jpg", + "additives_debug_tags": [], + "labels_prev_tags": [ + "en:sustainable-farming", + "en:utz-certified", + "en:utz-certified-cacao" + ], + "stores_debug_tags": [], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "traces_tags": [ + "en:nuts", + "en:peanuts" + ], + "labels": "en:UTZ Certified Cacao", + "emb_codes": "", + "ingredients_text_fr": "Cookies aux pépites de chocolat et à la nougatine : Farine de _blé_, pépites de chocolat 22% (sucre, pâte de cacao, beurre de cacao, émulsifiant : lécithines (_soja_), arôme), sucre, huile végétale (palme), praliné nougatine 8 % (sucre, _noisettes_), poudres à lever : diphosphates, carbonates de sodium, _lactosérum_ en poudre, sel, _œufs_, émulsifiant : lécithines (dont _blé_).\r\n\r\nCookies Tout Chocolat : Farine de _blé_, chocolat 35.5 % (pépites de chocolat 27 % (sucre, pâte de cacao, beurre de cacao, émulsifiant : _soja_), arôme), chocolat en poudre 8.5 % (sucre, cacao et cacao maigre en poudre, pâte de cacao)), huile végétale (palme), sucre, _œufs_ et blancs d'_œufs_, poudres à lever : diphosphates, carbonates de sodium, carbonates d'ammonium, _lactosérum_, en poudre, sel, arôme", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "nutrition_data_prepared_per": "100g", + "countries": "France", + "nucleotides_prev_tags": [], + "quantity": "200 g e", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Cookies aux pépites de chocolat et à la nougatine : Farine de _blé_, pépites de chocolat 22% (sucre, pâte de cacao, beurre de cacao, émulsifiant : lécithines (_soja_), arôme), sucre, huile végétale (palme), praliné nougatine 8 % (sucre, _noisettes_), poudres à lever : diphosphates, carbonates de sodium, _lactosérum_ en poudre, sel, _œufs_, émulsifiant : lécithines (dont _blé_).\r\n\r\nCookies Tout Chocolat : Farine de _blé_, chocolat 35.5 % (pépites de chocolat 27 % (sucre, pâte de cacao, beurre de cacao, émulsifiant : _soja_), arôme), chocolat en poudre 8.5 % (sucre, cacao et cacao maigre en poudre, pâte de cacao)), huile végétale (palme), sucre, _œufs_ et blancs d'_œufs_, poudres à lever : diphosphates, carbonates de sodium, carbonates d'ammonium, _lactosérum_, en poudre, sel, arôme", + "last_modified_by": null, + "lc": "fr", + "images": { + "1": { + "uploader": "domdom26", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "uploaded_t": 1430401348 + }, + "2": { + "uploader": "domdom26", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "uploaded_t": 1430401369 + }, + "3": { + "uploaded_t": 1430401384, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploader": "domdom26" + }, + "4": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1473953708" + }, + "5": { + "uploaded_t": "1507989540", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 46, + "w": 100 + }, + "400": { + "w": 400, + "h": 182 + }, + "full": { + "w": 2353, + "h": 1071 + } + } + }, + "6": { + "uploaded_t": "1524815269", + "sizes": { + "100": { + "w": 37, + "h": 100 + }, + "400": { + "h": 400, + "w": 148 + }, + "full": { + "h": 1200, + "w": 443 + } + }, + "uploader": "kiliweb" + }, + "7": { + "uploaded_t": "1528475752", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 38, + "h": 100 + }, + "400": { + "h": 400, + "w": 151 + }, + "full": { + "w": 452, + "h": 1200 + } + } + }, + "8": { + "sizes": { + "100": { + "w": 37, + "h": 100 + }, + "400": { + "w": 148, + "h": 400 + }, + "full": { + "w": 445, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532443344 + }, + "nutrition": { + "rev": "16", + "imgid": "3", + "sizes": { + "100": { + "h": 100, + "w": 80 + }, + "200": { + "w": 161, + "h": 200 + }, + "400": { + "w": 321, + "h": 400 + }, + "full": { + "h": 1190, + "w": 955 + } + }, + "white_magic": null, + "normalize": null, + "geometry": "955x1190-25-345" + }, + "ingredients_fr": { + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 46, + "w": 100 + }, + "200": { + "w": 200, + "h": 91 + }, + "400": { + "w": 400, + "h": 182 + }, + "full": { + "h": 1071, + "w": 2353 + } + }, + "geometry": "0x0-0-0", + "y1": null, + "x2": null, + "x1": null, + "y2": null, + "angle": null, + "imgid": "5", + "rev": "23" + }, + "ingredients": { + "rev": "14", + "imgid": "2", + "sizes": { + "100": { + "h": 72, + "w": 100 + }, + "200": { + "h": 143, + "w": 200 + }, + "400": { + "w": 400, + "h": 287 + }, + "full": { + "h": 745, + "w": 1040 + } + }, + "white_magic": null, + "normalize": null, + "geometry": "1040x745-0-335" + }, + "front": { + "geometry": "655x1840-230-160", + "sizes": { + "100": { + "w": 36, + "h": 100 + }, + "200": { + "h": 200, + "w": 71 + }, + "400": { + "w": 142, + "h": 400 + }, + "full": { + "w": 655, + "h": 1840 + } + }, + "normalize": "checked", + "white_magic": null, + "rev": "10", + "imgid": "1" + }, + "nutrition_fr": { + "normalize": null, + "white_magic": null, + "sizes": { + "100": { + "h": 100, + "w": 80 + }, + "200": { + "w": 161, + "h": 200 + }, + "400": { + "h": 400, + "w": 321 + }, + "full": { + "w": 955, + "h": 1190 + } + }, + "geometry": "955x1190-25-345", + "imgid": "3", + "rev": "16" + }, + "front_fr": { + "x2": null, + "y1": null, + "x1": null, + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "h": "100", + "w": "37" + }, + "200": { + "w": 74, + "h": 200 + }, + "400": { + "w": 148, + "h": 400 + }, + "full": { + "w": 445, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "angle": null, + "imgid": "8", + "rev": "34", + "y2": null + } + }, + "product_quantity": 200, + "image_small_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/26035642/nutrition_fr.16.400.jpg", + "manufacturing_places": "", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/26035642/front_fr.34.200.jpg", + "no_nutrition_data": "", + "cities_tags": [], + "minerals_prev_tags": [], + "stores_tags": [ + "aldi" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat,Cookies,Cookies au chocolat", + "nutrition_data_prepared": "", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/26035642/ingredients_fr.23.400.jpg", + "ingredients_ids_debug": [ + "cookies-aux-pepites-de-chocolat-et-a-la-nougatine", + "farine-de-ble", + "pepites-de-chocolat-22", + "sucre", + "pate-de-cacao", + "beurre-de-cacao", + "emulsifiant", + "lecithines", + "soja", + "arome", + "sucre", + "huile-vegetale", + "palme", + "praline-nougatine-8", + "sucre", + "noisettes", + "poudres-a-lever", + "diphosphates", + "carbonates-de-sodium", + "lactoserum-en-poudre", + "sel", + "oeufs", + "emulsifiant", + "lecithines", + "dont-ble", + "cookies-tout-chocolat", + "farine-de-ble", + "chocolat-35-5", + "pepites-de-chocolat-27", + "sucre", + "pate-de-cacao", + "beurre-de-cacao", + "emulsifiant", + "soja", + "arome", + "chocolat-en-poudre-8-5", + "sucre", + "cacao-et-cacao-maigre-en-poudre", + "pate-de-cacao", + "huile-vegetale", + "palme", + "sucre", + "oeufs-et-blancs-d-oeufs", + "poudres-a-lever", + "diphosphates", + "carbonates-de-sodium", + "carbonates-d-ammonium", + "lactoserum", + "en-poudre", + "sel", + "arome" + ], + "additives_prev_original_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503" + ], + "ingredients_hierarchy": [ + "fr:cookies-aux-pepites-de-chocolat-et-a-la-nougatine", + "fr:farine-de-ble", + "fr:pepites-de-chocolat", + "fr:arome", + "en:sugar", + "fr:huile-vegetale", + "fr:palme", + "fr:praline-nougatine", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:lactoserum-en-poudre", + "en:salt", + "fr:oeuf", + "fr:emulsifiant", + "fr:lecithine", + "fr:dont-ble", + "fr:cookies-tout-chocolat", + "fr:farine-de-ble", + "fr:chocolat", + "fr:arome", + "fr:chocolat-en-poudre", + "fr:huile-vegetale", + "fr:palme", + "en:sugar", + "fr:oeufs-et-blancs-d-oeufs", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:carbonates-d-ammonium", + "fr:lactoserum", + "fr:en-poudre", + "en:salt", + "fr:arome", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine", + "fr:soja", + "en:sugar", + "fr:noisette", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:soja", + "en:sugar", + "fr:cacao-et-cacao-maigre-en-poudre", + "fr:pate-de-cacao" + ], + "countries_debug_tags": [], + "traces": "Fruits à coque,Arachides" + }, + { + "packaging": "sachet,plastique", + "interface_version_modified": "20120622", + "vitamins_prev_tags": [], + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "creator": "kiliweb", + "emb_codes_debug_tags": [], + "stores": "Delhaize", + "expiration_date": "", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "entry_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "generic_name_fr": "", + "url": "https://fr-en.openfoodfacts.org/product/5400113606420/mini-cookies-chocolat-delhaize", + "ingredients_text_with_allergens": "", + "labels_prev_hierarchy": [], + "interface_version_created": "20150316.jqm2", + "brands": "Delhaize", + "generic_name": "", + "product_name_fr": "Mini Cookies Chocolat", + "ingredients_from_palm_oil_tags": [], + "complete": 0, + "brands_tags": [ + "delhaize" + ], + "lang": "fr", + "unknown_ingredients_n": 0, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "product_name": "Mini Cookies Chocolat", + "ingredients_tags": [], + "nutrition_data_per_debug_tags": [], + "traces_debug_tags": [], + "_keywords": [ + "au", + "cookie", + "chocolat", + "mini", + "delhaize" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_grades": "e", + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "5400113606420", + "additives_old_tags": [], + "allergens_from_ingredients": "", + "languages_hierarchy": [ + "en:french" + ], + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "ingredients": [], + "created_t": 1532439973, + "last_modified_t": 1532440844, + "nutrition_data": "on", + "images": { + "1": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 55, + "h": 100 + }, + "400": { + "h": 400, + "w": 219 + }, + "full": { + "h": 1200, + "w": 658 + } + }, + "uploaded_t": 1532439977 + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 41 + }, + "400": { + "w": 400, + "h": 162 + }, + "full": { + "w": 2882, + "h": 1170 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532439986 + }, + "3": { + "uploaded_t": 1532439992, + "sizes": { + "100": { + "w": 100, + "h": 69 + }, + "400": { + "w": 400, + "h": 276 + }, + "full": { + "h": 1200, + "w": 1742 + } + }, + "uploader": "kiliweb" + }, + "front_fr": { + "angle": null, + "rev": "4", + "imgid": "1", + "y2": null, + "x1": null, + "y1": null, + "x2": null, + "sizes": { + "100": { + "w": "55", + "h": "100" + }, + "200": { + "h": 200, + "w": 110 + }, + "400": { + "w": 219, + "h": 400 + }, + "full": { + "w": 658, + "h": 1200 + } + }, + "white_magic": "0", + "normalize": "0", + "geometry": "0x0-0-0" + }, + "ingredients_fr": { + "y2": null, + "angle": null, + "imgid": "2", + "rev": "7", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "w": 100, + "h": 41 + }, + "200": { + "w": 200, + "h": 81 + }, + "400": { + "h": 162, + "w": 400 + }, + "full": { + "w": 2882, + "h": 1170 + } + }, + "geometry": "0x0-0-0", + "y1": null, + "x2": null, + "x1": null + }, + "nutrition_fr": { + "x1": null, + "x2": null, + "y1": null, + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": 100, + "h": 69 + }, + "200": { + "h": 138, + "w": 200 + }, + "400": { + "h": 276, + "w": 400 + }, + "full": { + "w": 1742, + "h": 1200 + } + }, + "normalize": "0", + "white_magic": "0", + "rev": "10", + "imgid": "3", + "angle": null, + "y2": null + } + }, + "lc": "fr", + "last_modified_by": "beniben", + "ingredients_text": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.200.jpg", + "no_nutrition_data": "", + "cities_tags": [], + "minerals_prev_tags": [], + "categories": "Cookies au chocolat", + "nutrition_data_prepared": "", + "stores_tags": [ + "delhaize" + ], + "ingredients_hierarchy": [], + "ingredients_ids_debug": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.400.jpg", + "additives_prev_original_tags": [], + "traces": "soja,Fruits à coque,Graines de sésame", + "countries_debug_tags": [], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "nutrition_grade_fr": "e", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.100.jpg", + "labels_hierarchy": [], + "traces_from_ingredients": "", + "serving_quantity": 0, + "traces_hierarchy": [ + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "countries_tags": [ + "en:belgium", + "en:france" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.400.jpg", + "allergens": "", + "quantity_debug_tags": [], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "", + "emb_codes": "", + "labels": "", + "traces_tags": [ + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "nucleotides_prev_tags": [], + "quantity": "", + "countries": "France,Belgique", + "nutrition_data_prepared_per": "100g", + "vitamins_tags": [], + "additives_prev_tags": [], + "serving_size": "", + "max_imgid": "3", + "ingredients_text_debug": "", + "origins_debug_tags": [], + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "high", + "fat": "high", + "sugars": "high" + }, + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nucleotides_tags": [], + "allergens_hierarchy": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.100.jpg", + "additives_original_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "_id": "5400113606420", + "countries_hierarchy": [ + "en:belgium", + "en:france" + ], + "emb_codes_orig": "", + "manufacturing_places_tags": [], + "packaging_tags": [ + "sachet", + "plastique" + ], + "photographers_tags": [ + "kiliweb" + ], + "allergens_debug_tags": [], + "link": "", + "nutrition_data_per": "100g", + "nutrition_grades_tags": [ + "e" + ], + "id": "5400113606420", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.100.jpg", + "link_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 8 + sugars 8 + sodium 2 - fruits 0% 0 - fiber 0 - proteins 3 -- fsa 26 -- fr 26", + "editors_tags": [ + "kiliweb", + "beniben", + "openfoodfacts-contributors" + ], + "informers_tags": [ + "kiliweb", + "beniben" + ], + "nutriments": { + "energy_value": "504", + "energy_serving": "", + "sodium_unit": "g", + "sugars_100g": 37.6, + "salt_serving": "", + "salt_100g": 0.6, + "energy": 2109, + "sugars_serving": "", + "nutrition-score-fr": 26, + "nutrition-score-uk": 26, + "salt_value": "0.6", + "energy_100g": 2109, + "carbohydrates_unit": "g", + "sodium": 0.236220472440945, + "saturated-fat_serving": "", + "carbohydrates_value": "61.5", + "sugars_unit": "g", + "fat_100g": 25.3, + "proteins_serving": "", + "saturated-fat_unit": "g", + "carbohydrates_100g": 61.5, + "fat": 25.3, + "carbohydrates": 61.5, + "saturated-fat_value": "13.2", + "fat_unit": "g", + "sodium_100g": 0.236220472440945, + "nutrition-score-fr_100g": 26, + "sodium_value": "0.236220472440945", + "proteins": 5.8, + "nutrition-score-uk_100g": 26, + "fat_value": "25.3", + "saturated-fat": 13.2, + "saturated-fat_100g": 13.2, + "proteins_100g": 5.8, + "sugars": 37.6, + "salt": 0.6, + "energy_unit": "kcal", + "salt_unit": "g", + "proteins_value": "5.8", + "fat_serving": "", + "sugars_value": "37.6", + "proteins_unit": "g", + "carbohydrates_serving": "", + "sodium_serving": "" + }, + "last_image_t": 1532439993, + "rev": 11, + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "purchase_places_debug_tags": [], + "sortkey": 532440844, + "origins": "", + "ingredients_debug": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "additives_tags": [], + "purchase_places": "Belgique", + "ingredients_text_fr_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.400.jpg", + "ingredients_text_with_allergens_fr": "", + "serving_size_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "quality_tags": [ + "quantity-not-recognized" + ], + "languages_codes": { + "fr": 4 + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.200.jpg", + "allergens_tags": [], + "labels_tags": [], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 4 + }, + "purchase_places_tags": [ + "belgique" + ], + "last_editor": "beniben", + "manufacturing_places_debug_tags": [], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/ingredients_fr.7.200.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/front_fr.4.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/540/011/360/6420/nutrition_fr.10.200.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + 5400113606420, + "540011360642x", + "54001136064xx", + "5400113606xxx", + "540011360xxxx", + "54001136xxxxx", + "5400113xxxxxx", + "540011xxxxxxx", + "54001xxxxxxxx", + "5400xxxxxxxxx", + "540xxxxxxxxxx", + "54xxxxxxxxxxx", + "5xxxxxxxxxxxx" + ] + }, + { + "interface_version_created": "20120622", + "brands": "Chabrior", + "generic_name": "Biscuit au chocolat", + "product_name_fr": "Goûter crok", + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "complete": 1, + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "generic_name_fr": "Biscuit au chocolat", + "entry_dates_tags": [ + "2015-04-04", + "2015-04", + "2015" + ], + "url": "https://fr-en.openfoodfacts.org/product/3250390009573/gouter-crok-chabrior", + "ingredients_text_with_allergens": "Farines de céréales 49.7% (farine de blé, farine de seigle 0.7%), sucre, graisses végétales (palme, palmiste), sirop de glucose, cacao maigre en poudre 4%, lactose (dont lait), et protéines de lait, poudres à lever (carbonates d'ammonium, carbonates de sodium, phosphates de calcium), amidon de blé, sel, arômes, poudre de lait écrémé", + "labels_prev_hierarchy": [], + "stores": "", + "expiration_date": "", + "packaging": "carton,plastique", + "interface_version_modified": "20150316.jqm2", + "vitamins_prev_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.100.jpg", + "amino_acids_prev_tags": [], + "creator": "domdom26", + "last_modified_t": 1532440269, + "allergens_from_ingredients": "blé, seigle, lait, lait, blé, lait, lactose", + "additives_old_tags": [ + "en:e503", + "en:e500", + "en:e341" + ], + "languages_hierarchy": [ + "en:french" + ], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 1, + "ingredients": [ + { + "percent": "49.7", + "id": "farines-de-cereales", + "rank": 1, + "text": "Farines de céréales" + }, + { + "text": "sucre", + "rank": 2, + "id": "sucre" + }, + { + "id": "graisses-vegetales", + "text": "graisses végétales", + "rank": 3 + }, + { + "text": "sirop de glucose", + "rank": 4, + "id": "sirop-de-glucose" + }, + { + "rank": 5, + "text": "cacao maigre en poudre", + "percent": "4", + "id": "cacao-maigre-en-poudre" + }, + { + "rank": 6, + "text": "lactose", + "id": "lactose" + }, + { + "rank": 7, + "text": "dont _lait_", + "id": "dont-lait" + }, + { + "rank": 8, + "text": "et protéines de _lait_", + "id": "et-proteines-de-lait" + }, + { + "id": "poudres-a-lever", + "text": "poudres à lever", + "rank": 9 + }, + { + "rank": 10, + "text": "amidon de _blé_", + "id": "amidon-de-ble" + }, + { + "text": "sel", + "rank": 11, + "id": "sel" + }, + { + "rank": 12, + "text": "arômes", + "id": "aromes" + }, + { + "rank": 13, + "text": "poudre de _lait_ écrémé", + "id": "poudre-de-lait-ecreme" + }, + { + "text": "farine de _blé_", + "id": "farine-de-ble" + }, + { + "id": "farine-de-seigle", + "percent": "0.7", + "text": "farine de _seigle_" + }, + { + "text": "palme", + "id": "palme" + }, + { + "text": "palmiste", + "id": "palmiste" + }, + { + "text": "carbonates d'ammonium", + "id": "carbonates-d-ammonium" + }, + { + "text": "carbonates de sodium", + "id": "carbonates-de-sodium" + }, + { + "text": "phosphates de calcium", + "id": "phosphates-de-calcium" + } + ], + "created_t": 1428158835, + "_keywords": [ + "chocolat", + "chabrior", + "crok", + "sucre", + "gateaux", + "snack", + "gouter", + "au", + "biscuit", + "et" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_grades": "d", + "emb_codes_tags": [ + "emb-82121" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "3250390009573", + "brands_tags": [ + "chabrior" + ], + "lang": "fr", + "additives_n": 3, + "unknown_ingredients_n": 2, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "product_name": "Goûter crok", + "ingredients_tags": [ + "fr:farines-de-cereales", + "en:sugar", + "fr:graisse-vegetale", + "fr:sirop-de-glucose", + "fr:cacao-maigre-en-poudre", + "fr:lactose", + "fr:dont-lait", + "fr:et-proteines-de-lait", + "fr:poudre-a-lever", + "fr:amidon-de-ble", + "en:salt", + "fr:arome", + "fr:poudre-de-lait-ecreme", + "fr:farine-de-ble", + "fr:farine-de-seigle", + "fr:palme", + "fr:palmiste", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:phosphate-de-calcium" + ], + "nutrition_data_per_debug_tags": [], + "ingredients_hierarchy": [ + "fr:farines-de-cereales", + "en:sugar", + "fr:graisse-vegetale", + "fr:sirop-de-glucose", + "fr:cacao-maigre-en-poudre", + "fr:lactose", + "fr:dont-lait", + "fr:et-proteines-de-lait", + "fr:poudre-a-lever", + "fr:amidon-de-ble", + "en:salt", + "fr:arome", + "fr:poudre-de-lait-ecreme", + "fr:farine-de-ble", + "fr:farine-de-seigle", + "fr:palme", + "fr:palmiste", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:phosphate-de-calcium" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.400.jpg", + "ingredients_ids_debug": [ + "farines-de-cereales-49-7", + "farine-de-ble", + "farine-de-seigle-0-7", + "sucre", + "graisses-vegetales", + "palme", + "palmiste", + "sirop-de-glucose", + "cacao-maigre-en-poudre-4", + "lactose", + "dont-lait", + "et-proteines-de-lait", + "poudres-a-lever", + "carbonates-d-ammonium", + "carbonates-de-sodium", + "phosphates-de-calcium", + "amidon-de-ble", + "sel", + "aromes", + "poudre-de-lait-ecreme" + ], + "additives_prev_original_tags": [ + "en:e503", + "en:e500", + "en:e341" + ], + "traces": "gluten,oeufs,fruits à coque", + "countries_debug_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "cities_tags": [ + "montauban-tarn-et-garonne-france" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits", + "stores_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.200.jpg", + "lc": "fr", + "images": { + "1": { + "uploader": "domdom26", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploaded_t": 1428158835 + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "domdom26", + "uploaded_t": 1428158860 + }, + "3": { + "uploaded_t": 1428158913, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploader": "domdom26" + }, + "4": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "domdom26", + "uploaded_t": 1428158933 + }, + "5": { + "uploaded_t": 1428158957, + "uploader": "domdom26", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "6": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1200, + "w": 2135 + } + }, + "uploaded_t": 1532440238 + }, + "7": { + "uploaded_t": 1532440257, + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 1200, + "w": 675 + } + }, + "uploader": "kiliweb" + }, + "nutrition": { + "imgid": "3", + "rev": "11", + "normalize": null, + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 65 + }, + "200": { + "h": 129, + "w": 200 + }, + "400": { + "h": 259, + "w": 400 + }, + "full": { + "w": 1700, + "h": 1100 + } + }, + "geometry": "1700x1100-446-486" + }, + "ingredients_fr": { + "angle": null, + "imgid": "6", + "rev": "18", + "y2": null, + "y1": null, + "x2": null, + "x1": null, + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "200": { + "h": 112, + "w": 200 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2135, + "h": 1200 + } + }, + "geometry": "0x0-0-0" + }, + "ingredients": { + "rev": "10", + "imgid": "2", + "geometry": "2039x1313-133-420", + "sizes": { + "100": { + "h": 64, + "w": 100 + }, + "200": { + "w": 200, + "h": 129 + }, + "400": { + "h": 258, + "w": 400 + }, + "full": { + "w": 2039, + "h": 1313 + } + }, + "white_magic": null, + "normalize": null + }, + "front": { + "rev": "8", + "imgid": "1", + "sizes": { + "100": { + "w": 39, + "h": 100 + }, + "200": { + "h": 200, + "w": 78 + }, + "400": { + "w": 157, + "h": 400 + }, + "full": { + "h": 2366, + "w": 926 + } + }, + "normalize": null, + "white_magic": null, + "geometry": "926x2366-540-166" + }, + "nutrition_fr": { + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "200": { + "h": 200, + "w": 113 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 1200, + "w": 675 + } + }, + "geometry": "0x0-0-0", + "y1": null, + "x2": null, + "x1": null, + "y2": null, + "angle": null, + "imgid": "7", + "rev": "20" + }, + "front_fr": { + "sizes": { + "100": { + "h": "100", + "w": "39" + }, + "200": { + "h": 200, + "w": 78 + }, + "400": { + "w": 157, + "h": 400 + }, + "full": { + "w": 926, + "h": 2366 + } + }, + "normalize": null, + "white_magic": null, + "geometry": "926x2366-540-166", + "rev": "8", + "imgid": "1" + } + }, + "last_modified_by": null, + "ingredients_text": "Farines de céréales 49.7% (farine de _blé_, farine de _seigle_ 0.7%), sucre, graisses végétales (palme, palmiste), sirop de glucose, cacao maigre en poudre 4%, lactose (dont _lait_), et protéines de _lait_, poudres à lever (carbonates d'ammonium, carbonates de sodium, phosphates de calcium), amidon de _blé_, sel, arômes, poudre de _lait_ écrémé", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.200.jpg", + "product_quantity": 330, + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farines de céréales 49.7% (farine de _blé_, farine de _seigle_ 0.7%), sucre, graisses végétales (palme, palmiste), sirop de glucose, cacao maigre en poudre 4%, lactose (dont _lait_), et protéines de _lait_, poudres à lever (carbonates d'ammonium, carbonates de sodium, phosphates de calcium), amidon de _blé_, sel, arômes, poudre de _lait_ écrémé", + "labels": "", + "emb_codes": "EMB 82121", + "traces_tags": [ + "en:eggs", + "en:gluten", + "en:nuts" + ], + "nucleotides_prev_tags": [], + "quantity": "330 g", + "countries": "en:france", + "nutrition_data_prepared_per": "100g", + "image_front_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.400.jpg", + "allergens": "blé, seigle, lait, lait, blé, lait", + "checkers_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "traces_hierarchy": [ + "en:eggs", + "en:gluten", + "en:nuts" + ], + "countries_tags": [ + "en:france" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.100.jpg", + "nutrition_grade_fr": "d", + "ingredients_n_tags": [ + "20", + "11-20" + ], + "labels_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces_from_ingredients": "", + "serving_quantity": 0, + "_id": "3250390009573", + "emb_codes_orig": "EMB 82121", + "countries_hierarchy": [ + "en:france" + ], + "additives_original_tags": [ + "en:e503", + "en:e500", + "en:e341" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "ingredients_text_debug": "Farines de céréales 49.7% (farine de _blé_, farine de _seigle_ 0.7%), sucre, graisses végétales (palme, palmiste), sirop de glucose, cacao maigre en poudre 4%, lactose (dont _lait_), et protéines de _lait_, poudres à lever : (carbonates d'ammonium, carbonates de sodium, phosphates de calcium), amidon de _blé_, sel, arômes, poudre de _lait_ écrémé", + "additives_prev_n": 3, + "ingredients_n": "20", + "nutrient_levels": { + "salt": "moderate", + "fat": "moderate", + "sugars": "high", + "saturated-fat": "high" + }, + "editors": [ + "domdom26" + ], + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.100.jpg", + "vitamins_tags": [], + "additives_prev_tags": [ + "en:e341", + "en:e500", + "en:e503" + ], + "serving_size": "", + "max_imgid": "7", + "editors_tags": [ + "domdom26", + "openfoodfacts-contributors", + "kiliweb" + ], + "informers_tags": [ + "domdom26" + ], + "nutriments": { + "proteins_unit": "", + "carbohydrates_serving": "", + "fiber_value": "2.9", + "sodium_serving": "", + "fiber_serving": "", + "saturated-fat": 6.4, + "saturated-fat_100g": 6.4, + "proteins_100g": 6.6, + "sugars": 30.3, + "salt_unit": "", + "energy_unit": "kcal", + "salt": 0.64, + "proteins_value": "6.6", + "fat_serving": "", + "sugars_value": "30.3", + "proteins": 6.6, + "fat_value": "17.2", + "nutrition-score-uk_100g": "16", + "saturated-fat_unit": "", + "carbohydrates_100g": "69", + "carbohydrates": "69", + "fat": 17.2, + "saturated-fat_value": "6.4", + "sodium_100g": 0.251968503937008, + "nutrition-score-fr_100g": "16", + "fat_unit": "", + "sodium": 0.251968503937008, + "fiber_100g": 2.9, + "carbohydrates_value": "69", + "saturated-fat_serving": "", + "sugars_unit": "", + "fat_100g": 17.2, + "proteins_serving": "", + "nutrition-score-uk": "16", + "fiber_unit": "g", + "salt_value": "0.64", + "energy_100g": "1941", + "carbohydrates_unit": "", + "salt_100g": 0.64, + "energy": "1941", + "sugars_serving": "", + "nutrition-score-fr": "16", + "energy_value": "464", + "energy_serving": "", + "salt_serving": "", + "sugars_100g": 30.3, + "fiber": "2.9" + }, + "id": "3250390009573", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.100.jpg", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 5 + sat-fat 6 + fr-sat-fat-for-fats 5 + sugars 6 + sodium 2 - fruits 0% 0 - fiber 3 - proteins 4 -- fsa 16 -- fr 16", + "link": "", + "nutrition_data_per": "100g", + "update_key": "20180706-categories", + "nutrition_grades_tags": [ + "d" + ], + "manufacturing_places_tags": [], + "packaging_tags": [ + "carton", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "photographers_tags": [ + "domdom26", + "kiliweb" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "origins_tags": [], + "quality_tags": [], + "additives_old_n": 3, + "image_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.400.jpg", + "ingredients_text_with_allergens_fr": "Farines de céréales 49.7% (farine de blé, farine de seigle 0.7%), sucre, graisses végétales (palme, palmiste), sirop de glucose, cacao maigre en poudre 4%, lactose (dont lait), et protéines de lait, poudres à lever (carbonates d'ammonium, carbonates de sodium, phosphates de calcium), amidon de blé, sel, arômes, poudre de lait écrémé", + "origins": "", + "ingredients_debug": [ + "Farines de céréales 49.7% ", + "(", + "(", + null, + null, + "farine de _blé_", + ",", + null, + null, + null, + " farine de _seigle_ 0.7%)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " graisses végétales ", + "(", + "(", + null, + null, + "palme", + ",", + null, + null, + null, + " palmiste)", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " cacao maigre en poudre 4%", + ",", + null, + null, + null, + " lactose ", + "(", + "(", + null, + null, + "dont _lait_)", + ",", + null, + null, + null, + " et protéines de _lait_", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "carbonates d'ammonium", + ",", + null, + null, + null, + " carbonates de sodium", + ",", + null, + null, + null, + " phosphates de calcium)", + ",", + null, + null, + null, + " amidon de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " arômes", + ",", + null, + null, + null, + " poudre de _lait_ écrémé" + ], + "completed_t": 1428193428, + "correctors_tags": [ + "domdom26", + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_tags": [ + "en:e341", + "en:e500", + "en:e503" + ], + "purchase_places": "", + "unique_scans_n": 3, + "last_image_t": 1532440258, + "rev": 20, + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 1532440269, + "scans_n": 3, + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/ingredients_fr.18.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/000/9573/front_fr.8.400.jpg" + } + } + }, + "codes_tags": [ + "code-13", + "3250390009573", + "325039000957x", + "32503900095xx", + "3250390009xxx", + "325039000xxxx", + "32503900xxxxx", + "3250390xxxxxx", + "325039xxxxxxx", + "32503xxxxxxxx", + "3250xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 3, + "purchase_places_tags": [], + "last_editor": null, + "emb_codes_20141016": "EMB 82121", + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [], + "languages": { + "en:french": 6 + }, + "languages_codes": { + "fr": 6 + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/039/000/9573/nutrition_fr.20.200.jpg", + "allergens_tags": [ + "en:gluten", + "en:milk" + ] + }, + { + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:wafers" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "detected-category-from-brand-en-cigarettes" + ], + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 6, + "image_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.400.jpg", + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "chocolat blanc 36% (sucre, beurre de cacao, poudre de LAIT entier, LACTOSERUM en poudre, émulsifiant : lécithines de tournesol, arôme), farine de BLE 27.8%, sucre, chocolat noir 12% (pâte de cacao, sucre, beurre de cacao, LACTOSE, poudre de LAIT écrémé, matière grasse de LAI, émulsifiant : lécithines de tournesol, arôme), huile de tournesol, cacao maigre en poudre 5.2%, sirop de glucose, LACTOSERUM en poudre, poudres à lever : carbonates d'ammonium - carbonates de sodium - diphosphates, sel, pâte de cacao, émulsifiant : mono- et diglycérides d'acides gras, antioxydants : esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols.\nTraces éventuelles d'oeufs, de fruits à coques, de soja et de graines de sésame.", + "origins": "", + "ingredients_debug": [ + "chocolat blanc 36% ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " poudre de LAIT entier", + ",", + null, + null, + null, + " LACTOSERUM en poudre", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines de tournesol", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + " farine de BLE 27.8%", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " chocolat noir 12% ", + "(", + "(", + null, + null, + "pâte de cacao", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " LACTOSE", + ",", + null, + null, + null, + " poudre de LAIT écrémé", + ",", + null, + null, + null, + " matière grasse de LAI", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines de tournesol", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " cacao maigre en poudre 5.2%", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " LACTOSERUM en poudre", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " carbonates d'ammonium", + " - ", + " - ", + " - ", + null, + "carbonates de sodium", + " - ", + " - ", + " - ", + null, + "diphosphates", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " mono- et diglycérides d'acides gras", + ",", + null, + null, + null, + " antioxydants ", + ":", + ":", + null, + null, + " esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols", + ".\n", + null, + null, + null, + "Traces éventuelles d'oeufs", + ",", + null, + null, + null, + " de fruits à coques", + ",", + null, + null, + null, + " de soja et de graines de sésame." + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "teolemon", + "systeme-u" + ], + "purchase_places": "", + "additives_tags": [ + "en:e304", + "en:e322", + "en:e450", + "en:e471", + "en:e500", + "en:e503" + ], + "last_image_t": 1532439960, + "rev": 29, + "ingredients_that_may_be_from_palm_oil_tags": [ + "e471-mono-et-diglycerides-d-acides-gras-alimentaires" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:wafers" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "brands_debug_tags": [], + "sortkey": 532439961, + "purchase_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.100.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + "3256224760078", + "325622476007x", + "32562247600xx", + "3256224760xxx", + "325622476xxxx", + "32562247xxxxx", + "3256224xxxxxx", + "325622xxxxxxx", + "32562xxxxxxxx", + "3256xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "purchase_places_tags": [], + "last_editor": null, + "labels_tags": [ + "en:sustainable-palm-oil", + "en:roundtable-on-sustainable-palm-oil", + "en:rspo-mass-balance-or-book-and-claim" + ], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "languages": { + "en:french": 5 + }, + "lang_debug_tags": [], + "languages_codes": { + "fr": 5 + }, + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.200.jpg", + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "_id": "3256224760078", + "additives_original_tags": [ + "en:e322", + "en:e503", + "en:e500", + "en:e450", + "en:e471", + "en:e304" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_prev_n": 6, + "ingredients_n": "38", + "origins_debug_tags": [], + "ingredients_text_debug": "chocolat blanc 36% (sucre, beurre de cacao, poudre de LAIT entier, LACTOSERUM en poudre, émulsifiant : lécithines de tournesol, arôme), farine de BLE 27.8%, sucre, chocolat noir 12% (pâte de cacao, sucre, beurre de cacao, LACTOSE, poudre de LAIT écrémé, matière grasse de LAI, émulsifiant : lécithines de tournesol, arôme), huile de tournesol, cacao maigre en poudre 5.2%, sirop de glucose, LACTOSERUM en poudre, poudres à lever : carbonates d'ammonium - carbonates de sodium - diphosphates, sel, pâte de cacao, émulsifiant : mono- et diglycérides d'acides gras, antioxydants : esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols.\nTraces éventuelles d'oeufs, de fruits à coques, de soja et de graines de sésame.", + "amino_acids_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nutrient_levels": { + "salt": "moderate", + "sugars": "high", + "fat": "high", + "saturated-fat": "high" + }, + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nucleotides_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.100.jpg", + "vitamins_tags": [], + "serving_size": "13 g", + "additives_prev_tags": [ + "en:e304", + "en:e322", + "en:e450", + "en:e471", + "en:e500", + "en:e503" + ], + "max_imgid": "9", + "nutrition_facts_100g_fr_imported": "pour 100g :\nEnergie (kJ) : 2110\nEnergie (kcal) : 504\nGraisses (g) : 24.7\ndont acides gras saturés (g) : 11.7\nGlucides (g) : 62.2\ndont sucres (g) : 41.3\nFibres alimentaires (g) : 2.9\nProtéines (g) : 6.8\nSel (g) : 0.73", + "editors_tags": [ + "teolemon", + "openfoodfacts-contributors", + "kiliweb", + "systeme-u" + ], + "ingredients_text_debug_tags": [], + "informers_tags": [ + "kiliweb", + "systeme-u" + ], + "nutriments": { + "fiber_serving": 0.377, + "saturated-fat": 11.7, + "saturated-fat_100g": 11.7, + "proteins_100g": 6.8, + "sugars": 41.3, + "salt_unit": "g", + "salt": 0.73, + "energy_unit": "kj", + "fat_serving": 3.21, + "proteins_value": 6.8, + "sugars_value": 41.3, + "proteins_unit": "g", + "sodium_serving": 0.0374, + "carbohydrates_serving": 8.09, + "fiber_value": 2.9, + "saturated-fat_unit": "g", + "carbohydrates_100g": 62.2, + "fat": 24.7, + "carbohydrates": 62.2, + "saturated-fat_value": 11.7, + "sodium_100g": 0.28740157480315, + "fat_unit": "g", + "nutrition-score-fr_100g": "25", + "sodium_value": "0", + "proteins": 6.8, + "fat_value": 24.7, + "nutrition-score-uk_100g": "25", + "nutrition-score-uk": "25", + "fiber_unit": "g", + "salt_value": 0.73, + "energy_100g": "2110", + "carbohydrates_unit": "g", + "sodium": 0.28740157480315, + "fiber_100g": 2.9, + "saturated-fat_serving": 1.52, + "carbohydrates_value": 62.2, + "sugars_unit": "g", + "fat_100g": 24.7, + "proteins_serving": 0.884, + "energy_value": "2110", + "energy_serving": "274", + "sodium_unit": "g", + "sugars_100g": 41.3, + "salt_serving": 0.0949, + "fiber": 2.9, + "salt_100g": 0.73, + "energy": "2110", + "sugars_serving": 5.37, + "nutrition-score-fr": "25" + }, + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.100.jpg", + "id": "3256224760078", + "link_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 7 + sugars 9 + sodium 3 - fruits 0% 0 - fiber 3 - proteins 4 -- fsa 25 -- fr 25", + "pnns_groups_1": "Sugary snacks", + "nutrition_data_per": "100g", + "link": "", + "update_key": "20180706-categories", + "nutrition_grades_tags": [ + "e" + ], + "manufacturing_places_tags": [], + "photographers_tags": [ + "kiliweb", + "systeme-u" + ], + "packaging_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "allergens_debug_tags": [], + "ingredients_hierarchy": [ + "fr:chocolat-blanc", + "fr:farine-de-ble", + "en:sugar", + "fr:chocolat-noir", + "fr:huile-de-tournesol", + "fr:cacao-maigre-en-poudre", + "fr:sirop-de-glucose", + "fr:lactoserum-en-poudre", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:diphosphate", + "en:salt", + "fr:pate-de-cacao", + "fr:emulsifiant", + "fr:mono", + "fr:et-diglycerides-d-acides-gras", + "fr:anti-oxydant", + "fr:esters-d-acides-gras-de-l-acide-ascorbique-et-extrait-riche-en-tocopherols", + "fr:traces-eventuelles-d-oeufs", + "fr:de-fruits-a-coques", + "fr:de-soja-et-de-graines-de-sesame", + "en:sugar", + "fr:beurre-de-cacao", + "fr:poudre-de-lait-entier", + "fr:lactoserum-en-poudre", + "fr:emulsifiant", + "fr:lecithine-de-tournesol", + "fr:arome", + "fr:pate-de-cacao", + "en:sugar", + "fr:beurre-de-cacao", + "fr:lactose", + "fr:poudre-de-lait-ecreme", + "fr:matiere-grasse-de-lai", + "fr:emulsifiant", + "fr:lecithine-de-tournesol", + "fr:arome" + ], + "ingredients_ids_debug": [ + "chocolat-blanc-36", + "sucre", + "beurre-de-cacao", + "poudre-de-lait-entier", + "lactoserum-en-poudre", + "emulsifiant", + "lecithines-de-tournesol", + "arome", + "farine-de-ble-27-8", + "sucre", + "chocolat-noir-12", + "pate-de-cacao", + "sucre", + "beurre-de-cacao", + "lactose", + "poudre-de-lait-ecreme", + "matiere-grasse-de-lai", + "emulsifiant", + "lecithines-de-tournesol", + "arome", + "huile-de-tournesol", + "cacao-maigre-en-poudre-5-2", + "sirop-de-glucose", + "lactoserum-en-poudre", + "poudres-a-lever", + "carbonates-d-ammonium", + "carbonates-de-sodium", + "diphosphates", + "sel", + "pate-de-cacao", + "emulsifiant", + "mono-et-diglycerides-d-acides-gras", + "antioxydants", + "esters-d-acides-gras-de-l-acide-ascorbique-et-extrait-riche-en-tocopherols", + "traces-eventuelles-d-oeufs", + "de-fruits-a-coques", + "de-soja-et-de-graines-de-sesame" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.400.jpg", + "additives_prev_original_tags": [ + "en:e322", + "en:e503", + "en:e500", + "en:e450", + "en:e471", + "en:e304" + ], + "traces": "", + "countries_debug_tags": [], + "no_nutrition_data": "", + "minerals_prev_tags": [], + "cities_tags": [], + "sources": [ + { + "import_t": 1523717062, + "id": "systemeu", + "images": [], + "name": "Systeme U", + "url": "https://www.magasins-u.com/", + "fields": [ + "product_name_fr", + "quantity", + "categories", + "labels", + "serving_size", + "ingredients_text_fr" + ], + "manufacturer": 1 + }, + { + "fields": [ + "stores", + "ingredients_text_fr" + ], + "url": "https://www.magasins-u.com/", + "manufacturer": 1, + "name": "Systeme U", + "id": "systemeu", + "import_t": 1529949107, + "images": [] + }, + { + "manufacturer": 1, + "url": "https://www.magasins-u.com/", + "fields": [ + "allergens" + ], + "images": [], + "name": "Systeme U", + "id": "systemeu", + "import_t": 1531840909 + } + ], + "stores_tags": [ + "magasins-u" + ], + "categories": "Gaufrettes, fr:Biscuits", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/ingredients_fr.29.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.200.jpg", + "last_modified_by": null, + "lc": "fr", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1360, + "w": 1021 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1508004894" + }, + "2": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1360, + "w": 1021 + } + }, + "uploaded_t": "1508004896" + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4030, + "w": 3024 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1508004898" + }, + "4": { + "uploaded_t": 1523717053, + "uploader": "systeme-u", + "sizes": { + "100": { + "w": 100, + "h": 43 + }, + "400": { + "w": 400, + "h": 171 + }, + "full": { + "h": 352, + "w": 823 + } + } + }, + "5": { + "uploader": "systeme-u", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 987, + "h": 556 + } + }, + "uploaded_t": 1523717054 + }, + "6": { + "uploaded_t": 1523717059, + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "400": { + "h": 202, + "w": 400 + }, + "full": { + "w": 999, + "h": 505 + } + }, + "uploader": "systeme-u" + }, + "7": { + "uploader": "systeme-u", + "sizes": { + "100": { + "w": 100, + "h": 43 + }, + "400": { + "h": 171, + "w": 400 + }, + "full": { + "h": 352, + "w": 823 + } + }, + "uploaded_t": 1525526075 + }, + "8": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 33 + }, + "400": { + "w": 400, + "h": 130 + }, + "full": { + "w": 2050, + "h": 668 + } + }, + "uploaded_t": 1532439946 + }, + "9": { + "sizes": { + "100": { + "w": 100, + "h": 48 + }, + "400": { + "w": 400, + "h": 190 + }, + "full": { + "w": 2448, + "h": 1164 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532439959 + }, + "ingredients_fr": { + "angle": null, + "imgid": "9", + "rev": "29", + "y2": null, + "x2": null, + "y1": null, + "x1": null, + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "w": 100, + "h": 48 + }, + "200": { + "h": 95, + "w": 200 + }, + "400": { + "w": 400, + "h": 190 + }, + "full": { + "w": 2448, + "h": 1164 + } + }, + "geometry": "0x0-0-0" + }, + "nutrition_fr": { + "sizes": { + "100": { + "w": 100, + "h": 51 + }, + "200": { + "w": 200, + "h": 101 + }, + "400": { + "w": 400, + "h": 202 + }, + "full": { + "h": 505, + "w": 999 + } + }, + "white_magic": null, + "normalize": null, + "geometry": "0x0--2--2", + "x1": -1, + "x2": -1, + "y1": -1, + "y2": -1, + "angle": 0, + "rev": "20", + "imgid": "6" + }, + "front_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "h": "33", + "w": "100" + }, + "200": { + "w": 200, + "h": 65 + }, + "400": { + "h": 130, + "w": 400 + }, + "full": { + "h": 668, + "w": 2050 + } + }, + "x2": null, + "y1": null, + "x1": null, + "y2": null, + "imgid": "8", + "rev": "27", + "angle": null + } + }, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "chocolat blanc 36% (sucre, beurre de cacao, poudre de LAIT entier, LACTOSERUM en poudre, émulsifiant : lécithines de tournesol, arôme), farine de BLE 27.8%, sucre, chocolat noir 12% (pâte de cacao, sucre, beurre de cacao, LACTOSE, poudre de LAIT écrémé, matière grasse de LAI, émulsifiant : lécithines de tournesol, arôme), huile de tournesol, cacao maigre en poudre 5.2%, sirop de glucose, LACTOSERUM en poudre, poudres à lever : carbonates d'ammonium - carbonates de sodium - diphosphates, sel, pâte de cacao, émulsifiant : mono- et diglycérides d'acides gras, antioxydants : esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols.\nTraces éventuelles d'oeufs, de fruits à coques, de soja et de graines de sésame.", + "image_small_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/nutrition_fr.20.400.jpg", + "manufacturing_places": "", + "product_quantity": 110, + "ingredients_text_fr": "chocolat blanc 36% (sucre, beurre de cacao, poudre de LAIT entier, LACTOSERUM en poudre, émulsifiant : lécithines de tournesol, arôme), farine de BLE 27.8%, sucre, chocolat noir 12% (pâte de cacao, sucre, beurre de cacao, LACTOSE, poudre de LAIT écrémé, matière grasse de LAI, émulsifiant : lécithines de tournesol, arôme), huile de tournesol, cacao maigre en poudre 5.2%, sirop de glucose, LACTOSERUM en poudre, poudres à lever : carbonates d'ammonium - carbonates de sodium - diphosphates, sel, pâte de cacao, émulsifiant : mono- et diglycérides d'acides gras, antioxydants : esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols.\nTraces éventuelles d'oeufs, de fruits à coques, de soja et de graines de sésame.", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "traces_tags": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "emb_codes": "", + "labels": "RSPO MB/BC", + "nucleotides_prev_tags": [], + "quantity": "110 g", + "nutrition_data_prepared_per": "100g", + "countries": "France", + "quantity_debug_tags": [], + "allergens": "Lait, Lait, Gluten", + "image_front_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.400.jpg", + "checkers_tags": [], + "labels_prev_tags": [ + "fr:rspo-mb-bc" + ], + "additives_debug_tags": [], + "stores_debug_tags": [], + "unknown_nutrients_tags": [], + "labels_debug_tags": [ + "added-en-sustainable-palm-oil", + "added-en-roundtable-on-sustainable-palm-oil", + "added-en-rspo-mass-balance-or-book-and-claim", + "removed-fr-rspo-mb-bc" + ], + "traces_hierarchy": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "countries_tags": [ + "en:france" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:waffles", + "en:wafers" + ], + "labels_hierarchy": [ + "en:sustainable-palm-oil", + "en:roundtable-on-sustainable-palm-oil", + "en:rspo-mass-balance-or-book-and-claim" + ], + "ingredients_that_may_be_from_palm_oil_n": 1, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.100.jpg", + "ingredients_n_tags": [ + "38", + "31-40" + ], + "nutrition_grade_fr": "e", + "serving_quantity": 13, + "traces_from_ingredients": "oeufs, fruits à coques, soja, sésame", + "interface_version_created": "20150316.jqm2", + "brands": "U", + "generic_name": "", + "product_name_fr": "Gaufrettes fourrées à la fraise", + "complete": 0, + "ingredients_from_palm_oil_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [ + "removed-en-waffles" + ], + "url": "https://fr-en.openfoodfacts.org/product/3256224760078/gaufrettes-fourrees-a-la-fraise-u", + "entry_dates_tags": [ + "2017-10-14", + "2017-10", + "2017" + ], + "generic_name_fr": "", + "labels_prev_hierarchy": [ + "fr:RSPO MB/BC" + ], + "ingredients_text_with_allergens": "chocolat blanc 36% (sucre, beurre de cacao, poudre de LAIT entier, LACTOSERUM en poudre, émulsifiant : lécithines de tournesol, arôme), farine de BLE 27.8%, sucre, chocolat noir 12% (pâte de cacao, sucre, beurre de cacao, LACTOSE, poudre de LAIT écrémé, matière grasse de LAI, émulsifiant : lécithines de tournesol, arôme), huile de tournesol, cacao maigre en poudre 5.2%, sirop de glucose, LACTOSERUM en poudre, poudres à lever : carbonates d'ammonium - carbonates de sodium - diphosphates, sel, pâte de cacao, émulsifiant : mono- et diglycérides d'acides gras, antioxydants : esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols.\nTraces éventuelles d'oeufs, de fruits à coques, de soja et de graines de sésame.", + "stores": "Magasins U", + "expiration_date": "", + "vitamins_prev_tags": [], + "interface_version_modified": "20120622", + "packaging": "", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/476/0078/front_fr.27.100.jpg", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:waffles", + "en:wafers" + ], + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "last_modified_t": 1532439961, + "languages_hierarchy": [ + "en:french" + ], + "allergens_from_ingredients": "LAIT, LACTOSERUM, BLE, LACTOSE, LAIT, LACTOSERUM", + "additives_old_tags": [ + "en:e1403", + "en:e322", + "en:e503", + "en:e500", + "en:e450", + "en:e471" + ], + "ingredients_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "ingredients": [ + { + "percent": "36", + "id": "chocolat-blanc", + "rank": 1, + "text": "chocolat blanc" + }, + { + "rank": 2, + "text": "farine de BLE", + "id": "farine-de-ble", + "percent": "27.8" + }, + { + "id": "sucre", + "rank": 3, + "text": "sucre" + }, + { + "rank": 4, + "text": "chocolat noir", + "id": "chocolat-noir", + "percent": "12" + }, + { + "id": "huile-de-tournesol", + "text": "huile de tournesol", + "rank": 5 + }, + { + "text": "cacao maigre en poudre", + "rank": 6, + "id": "cacao-maigre-en-poudre", + "percent": "5.2" + }, + { + "id": "sirop-de-glucose", + "rank": 7, + "text": "sirop de glucose" + }, + { + "id": "lactoserum-en-poudre", + "text": "LACTOSERUM en poudre", + "rank": 8 + }, + { + "id": "poudres-a-lever", + "rank": 9, + "text": "poudres à lever" + }, + { + "id": "carbonates-d-ammonium", + "text": "carbonates d'ammonium", + "rank": 10 + }, + { + "text": "carbonates de sodium", + "rank": 11, + "id": "carbonates-de-sodium" + }, + { + "id": "diphosphates", + "rank": 12, + "text": "diphosphates" + }, + { + "id": "sel", + "text": "sel", + "rank": 13 + }, + { + "text": "pâte de cacao", + "rank": 14, + "id": "pate-de-cacao" + }, + { + "id": "emulsifiant", + "rank": 15, + "text": "émulsifiant" + }, + { + "text": "mono", + "rank": 16, + "id": "mono" + }, + { + "id": "et-diglycerides-d-acides-gras", + "rank": 17, + "text": "et diglycérides d'acides gras" + }, + { + "rank": 18, + "text": "antioxydants", + "id": "antioxydants" + }, + { + "id": "esters-d-acides-gras-de-l-acide-ascorbique-et-extrait-riche-en-tocopherols", + "text": "esters d'acides gras de l'acide ascorbique et extrait riche en tocophérols", + "rank": 19 + }, + { + "text": "Traces éventuelles d'oeufs", + "rank": 20, + "id": "traces-eventuelles-d-oeufs" + }, + { + "id": "de-fruits-a-coques", + "rank": 21, + "text": "de fruits à coques" + }, + { + "rank": 22, + "text": "de soja et de graines de sésame", + "id": "de-soja-et-de-graines-de-sesame" + }, + { + "text": "sucre", + "id": "sucre" + }, + { + "text": "beurre de cacao", + "id": "beurre-de-cacao" + }, + { + "id": "poudre-de-lait-entier", + "text": "poudre de LAIT entier" + }, + { + "text": "LACTOSERUM en poudre", + "id": "lactoserum-en-poudre" + }, + { + "id": "emulsifiant", + "text": "émulsifiant" + }, + { + "id": "lecithines-de-tournesol", + "text": "lécithines de tournesol" + }, + { + "id": "arome", + "text": "arôme" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao" + }, + { + "text": "sucre", + "id": "sucre" + }, + { + "id": "beurre-de-cacao", + "text": "beurre de cacao" + }, + { + "text": "LACTOSE", + "id": "lactose" + }, + { + "id": "poudre-de-lait-ecreme", + "text": "poudre de LAIT écrémé" + }, + { + "text": "matière grasse de LAI", + "id": "matiere-grasse-de-lai" + }, + { + "id": "emulsifiant", + "text": "émulsifiant" + }, + { + "text": "lécithines de tournesol", + "id": "lecithines-de-tournesol" + }, + { + "text": "arôme", + "id": "arome" + } + ], + "created_t": 1508004893, + "nutrition_grades": "e", + "_keywords": [ + "rspo", + "la", + "gaufrette", + "fourree", + "biscuit", + "fraise", + "mb-bc" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "nutrition_facts_serving_fr_imported": "A la portion (13g) :\nEnergie (kJ) : 275\nEnergie (kcal) : 66\nGraisses (g) : 3.2\ndont acides gras saturés (g) : 1.5\nGlucides (g) : 8.1\ndont sucres (g) : 5.4\nFibres alimentaires (g) : 0.4\nProtéines (g) : 0.9\nSel (g) : 0.09\nCe paquet contient 9 portions de 13 g environ", + "emb_codes_tags": [], + "code": "3256224760078", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "lang": "fr", + "brands_tags": [ + "u" + ], + "unknown_ingredients_n": 7, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 6, + "product_name": "Gaufrettes fourrées à la fraise", + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:chocolat-blanc", + "fr:farine-de-ble", + "en:sugar", + "fr:chocolat-noir", + "fr:huile-de-tournesol", + "fr:cacao-maigre-en-poudre", + "fr:sirop-de-glucose", + "fr:lactoserum-en-poudre", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:diphosphate", + "en:salt", + "fr:pate-de-cacao", + "fr:emulsifiant", + "fr:mono", + "fr:et-diglycerides-d-acides-gras", + "fr:anti-oxydant", + "fr:esters-d-acides-gras-de-l-acide-ascorbique-et-extrait-riche-en-tocopherols", + "fr:traces-eventuelles-d-oeufs", + "fr:de-fruits-a-coques", + "fr:de-soja-et-de-graines-de-sesame", + "en:sugar", + "fr:beurre-de-cacao", + "fr:poudre-de-lait-entier", + "fr:lactoserum-en-poudre", + "fr:emulsifiant", + "fr:lecithine-de-tournesol", + "fr:arome", + "fr:pate-de-cacao", + "en:sugar", + "fr:beurre-de-cacao", + "fr:lactose", + "fr:poudre-de-lait-ecreme", + "fr:matiere-grasse-de-lai", + "fr:emulsifiant", + "fr:lecithine-de-tournesol", + "fr:arome" + ] + }, + { + "max_imgid": "3", + "vitamins_tags": [], + "serving_size": "", + "additives_prev_tags": [ + "en:e322", + "en:e450i", + "en:e500" + ], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "nucleotides_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.100.jpg", + "origins_debug_tags": [], + "additives_prev_n": 3, + "ingredients_n": 16, + "ingredients_text_debug": "Farine de _blé_, sucre, _beurre_ concentré : 20 % (24.5 % de beurre reconstitué), pépites de chocolat : 8 % (pâte de cacao, sucre, beurre de cacao, émulsifiant : lécithine de _soja_), _œufs_ entiers, arôme, sel, poudres à lever : (diphosphate disodique, carbonate acide de sodium).", + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nutrient_levels": { + "saturated-fat": "high", + "fat": "high", + "sugars": "high", + "salt": "moderate" + }, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e322i", + "en:e450i", + "en:e500ii" + ], + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "_id": "3260260032549", + "photographers_tags": [ + "jog-2012", + "kiliweb" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [ + "sachet", + "plastique" + ], + "allergens_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "manufacturing_places_tags": [ + "france", + "bretagne" + ], + "nutrition_grades_tags": [ + "e" + ], + "nutrition_data_per": "100g", + "link": "", + "update_key": "20180706-categories", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 10 + sugars 6 + sodium 2 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 24 -- fr 24", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.100.jpg", + "id": "3260260032549", + "link_debug_tags": [], + "informers_tags": [ + "jog-2012", + "kiliweb", + "beniben" + ], + "nutriments": { + "saturated-fat_value": "16", + "fat_unit": "g", + "sodium_100g": 0.216535433070866, + "nutrition-score-fr_100g": 24, + "saturated-fat_unit": "g", + "carbohydrates_100g": 66, + "fat": 24, + "carbohydrates": 66, + "proteins": 6.5, + "fat_value": "24", + "nutrition-score-uk_100g": 24, + "sodium_value": "0.216535433070866", + "salt": 0.55, + "energy_unit": "kcal", + "salt_unit": "g", + "fat_serving": "", + "proteins_value": "6.5", + "sugars_value": "30", + "fiber_serving": "", + "saturated-fat": 16, + "saturated-fat_100g": 16, + "proteins_100g": 6.5, + "sugars": 30, + "proteins_unit": "g", + "carbohydrates_serving": "", + "sodium_serving": "", + "fiber_value": "0", + "sodium_unit": "g", + "salt_serving": "", + "sugars_100g": 30, + "fiber": 0, + "energy_value": "513", + "energy_serving": "", + "sugars_serving": "", + "nutrition-score-fr": 24, + "salt_100g": 0.55, + "energy": 2146, + "fiber_unit": "g", + "salt_value": "0.55", + "energy_100g": 2146, + "carbohydrates_unit": "g", + "nutrition-score-uk": 24, + "sugars_unit": "g", + "fat_100g": 24, + "proteins_serving": "", + "sodium": 0.216535433070866, + "saturated-fat_serving": "", + "fiber_100g": 0, + "carbohydrates_value": "66" + }, + "editors_tags": [ + "kiliweb", + "jog-2012", + "openfoodfacts-contributors", + "beniben" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:biscuits-sables" + ], + "brands_debug_tags": [], + "sortkey": 1532435275, + "purchase_places_debug_tags": [], + "last_image_t": 1532429171, + "rev": 15, + "correctors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "completed_t": 1532435275, + "purchase_places": "France", + "additives_tags": [ + "en:e322", + "en:e322i", + "en:e450", + "en:e450i", + "en:e500", + "en:e500ii" + ], + "origins": "", + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _beurre_ concentré ", + ":", + ":", + null, + null, + " 20 % ", + "(", + "(", + null, + null, + "24.5 % de beurre reconstitué)", + ",", + null, + null, + null, + " pépites de chocolat ", + ":", + ":", + null, + null, + " 8 % ", + "(", + "(", + null, + null, + "pâte de cacao", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithine de _soja_)", + ",", + null, + null, + null, + " _œufs_ entiers", + ",", + null, + null, + null, + " arôme", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "diphosphate disodique", + ",", + null, + null, + null, + " carbonate acide de sodium)." + ], + "image_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.400.jpg", + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé, sucre, beurre concentré : 20 % (24.5 % de beurre reconstitué), pépites de chocolat : 8 % (pâte de cacao, sucre, beurre de cacao, émulsifiant : lécithine de soja), œufs entiers, arôme, sel, poudres à lever (diphosphate disodique, carbonate acide de sodium).", + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 4, + "quality_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:biscuits-sables" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.200.jpg", + "languages_codes": { + "fr": 5 + }, + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [ + "en:green-dot", + "en:made-in-france", + "en:pure-butter" + ], + "languages": { + "en:french": 5 + }, + "lang_debug_tags": [], + "emb_codes_20141016": "", + "last_editor": "beniben", + "purchase_places_tags": [ + "france" + ], + "codes_tags": [ + "code-13", + 3260260032549, + "326026003254x", + "32602600325xx", + "3260260032xxx", + "326026003xxxx", + "32602600xxxxx", + "3260260xxxxxx", + "326026xxxxxxx", + "32602xxxxxxxx", + "3260xxxxxxxxx", + "326xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.400.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.100.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "amino_acids_prev_tags": [], + "creator": "jog-2012", + "emb_codes_debug_tags": [], + "vitamins_prev_tags": [], + "interface_version_modified": "20120622", + "packaging": "sachet,plastique", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.100.jpg", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:shortbread-cookies" + ], + "expiration_date": "25/09/2018", + "stores": "", + "url": "https://fr-en.openfoodfacts.org/product/3260260032549/galettes-pur-beurre-aux-pepites-de-chocolat-erminig", + "entry_dates_tags": [ + "2016-04-30", + "2016-04", + "2016" + ], + "generic_name_fr": "", + "labels_prev_hierarchy": [ + "en:green-dot", + "en:made-in-france", + "en:pure-butter" + ], + "ingredients_text_with_allergens": "Farine de blé, sucre, beurre concentré : 20 % (24.5 % de beurre reconstitué), pépites de chocolat : 8 % (pâte de cacao, sucre, beurre de cacao, émulsifiant : lécithine de soja), œufs entiers, arôme, sel, poudres à lever (diphosphate disodique, carbonate acide de sodium).", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [ + "added-fr-biscuits-sables", + "removed-en-shortbread-cookies" + ], + "complete": 1, + "ingredients_from_palm_oil_tags": [], + "interface_version_created": "20120622", + "generic_name": "", + "brands": "Erminig,Le Palais de la Gourmandise", + "product_name_fr": "Galettes Pur Beurre aux Pépites de Chocolat", + "product_name": "Galettes Pur Beurre aux Pépites de Chocolat", + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:farine-de-ble", + "en:sugar", + "fr:beurre-concentre", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:oeuf-entier", + "fr:arome", + "en:salt", + "fr:poudre-a-lever", + "fr:beurre-reconstitue", + "fr:pate-de-cacao", + "fr:diphosphate-disodique", + "fr:carbonate-acide-de-sodium" + ], + "lang": "fr", + "brands_tags": [ + "erminig", + "le-palais-de-la-gourmandise" + ], + "unknown_ingredients_n": 1, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 3, + "emb_codes_tags": [], + "code": "3260260032549", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_grades": "e", + "traces_debug_tags": [], + "_keywords": [ + "pur", + "galette", + "beurre", + "fabrique", + "erminig", + "gourmandise", + "le", + "au", + "point", + "biscuit", + "en", + "pepite", + "palai", + "sable", + "aux", + "chocolat", + "de", + "la", + "france", + "vert" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients": [ + { + "id": "farine-de-ble", + "text": "Farine de _blé_", + "rank": 1 + }, + { + "text": "sucre", + "rank": 2, + "id": "sucre" + }, + { + "id": "beurre-concentre", + "text": "_beurre_ concentré", + "rank": 3 + }, + { + "id": "pepites-de-chocolat", + "text": "pépites de chocolat", + "rank": 4 + }, + { + "text": "sucre", + "rank": 5, + "id": "sucre" + }, + { + "id": "beurre-de-cacao", + "rank": 6, + "text": "beurre de cacao" + }, + { + "id": "emulsifiant", + "rank": 7, + "text": "émulsifiant" + }, + { + "id": "lecithine-de-soja", + "text": "lécithine de _soja_", + "rank": 8 + }, + { + "text": "_œufs_ entiers", + "rank": 9, + "id": "oeufs-entiers" + }, + { + "rank": 10, + "text": "arôme", + "id": "arome" + }, + { + "rank": 11, + "text": "sel", + "id": "sel" + }, + { + "id": "poudres-a-lever", + "text": "poudres à lever", + "rank": 12 + }, + { + "id": "beurre-reconstitue", + "percent": "24.5", + "text": "beurre reconstitué" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao" + }, + { + "text": "diphosphate disodique", + "id": "diphosphate-disodique" + }, + { + "text": "carbonate acide de sodium", + "id": "carbonate-acide-de-sodium" + } + ], + "created_t": 1461982558, + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e322", + "en:e450", + "en:e500" + ], + "allergens_from_ingredients": "blé, beurre, soja, œufs", + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "nutrition_data": "on", + "last_modified_t": 1532435275, + "image_small_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/nutrition_fr.14.400.jpg", + "manufacturing_places": "France,Bretagne", + "product_quantity": 350, + "last_modified_by": "beniben", + "images": { + "1": { + "uploaded_t": "1461982558", + "uploader": "jog-2012", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "2": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1599 + } + }, + "uploaded_t": 1532429162 + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 82 + }, + "400": { + "h": 327, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1469 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532429170 + }, + "ingredients_fr": { + "x1": "37.25000000000001", + "y1": "98.81249999999999", + "x2": "283.25000000000006", + "geometry": "984x327-149-395", + "sizes": { + "100": { + "h": 33, + "w": 100 + }, + "200": { + "w": 200, + "h": 66 + }, + "400": { + "w": 400, + "h": 133 + }, + "full": { + "w": 984, + "h": 327 + } + }, + "white_magic": "false", + "normalize": "false", + "rev": "13", + "imgid": "2", + "angle": "90", + "y2": "180.8125" + }, + "front_fr": { + "geometry": "0x0--5--5", + "white_magic": null, + "normalize": null, + "sizes": { + "100": { + "h": "56", + "w": "100" + }, + "200": { + "w": 200, + "h": 113 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "imgid": "1", + "rev": "3" + }, + "nutrition_fr": { + "geometry": "481x103-724-419", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "h": 21, + "w": 100 + }, + "200": { + "h": 43, + "w": 200 + }, + "400": { + "w": 400, + "h": 86 + }, + "full": { + "w": 481, + "h": 103 + } + }, + "x2": "328.25", + "y1": "114.3125", + "x1": "197.25", + "y2": "142.3125", + "imgid": "3", + "rev": "14", + "angle": "0" + }, + "front": { + "rev": "3", + "imgid": "1", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "200": { + "h": 113, + "w": 200 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "normalize": null, + "white_magic": null, + "geometry": "0x0--5--5" + } + }, + "lc": "fr", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Farine de _blé_, sucre, _beurre_ concentré : 20 % (24.5 % de beurre reconstitué), pépites de chocolat : 8 % (pâte de cacao, sucre, beurre de cacao, émulsifiant : lécithine de _soja_), _œufs_ entiers, arôme, sel, poudres à lever (diphosphate disodique, carbonate acide de sodium).", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.200.jpg", + "stores_tags": [], + "categories": "Biscuits sablés,Biscuits au chocolat", + "nutrition_data_prepared": "", + "cities_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "traces": "", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "en:sugar", + "fr:beurre-concentre", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:oeuf-entier", + "fr:arome", + "en:salt", + "fr:poudre-a-lever", + "fr:beurre-reconstitue", + "fr:pate-de-cacao", + "fr:diphosphate-disodique", + "fr:carbonate-acide-de-sodium" + ], + "additives_prev_original_tags": [ + "en:e322", + "en:e450i", + "en:e500" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/ingredients_fr.13.400.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "sucre", + "beurre-concentre", + "20", + "24-5-de-beurre-reconstitue", + "pepites-de-chocolat", + "8", + "pate-de-cacao", + "sucre", + "beurre-de-cacao", + "emulsifiant", + "lecithine-de-soja", + "oeufs-entiers", + "arome", + "sel", + "poudres-a-lever", + "diphosphate-disodique", + "carbonate-acide-de-sodium" + ], + "labels_hierarchy": [ + "en:green-dot", + "en:made-in-france", + "en:pure-butter" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "ingredients_n_tags": [ + "16", + "11-20" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.100.jpg", + "nutrition_grade_fr": "e", + "serving_quantity": 0, + "traces_from_ingredients": "", + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:shortbread-cookies" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "unknown_nutrients_tags": [], + "traces_hierarchy": [], + "labels_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "additives_debug_tags": [ + "en-e322i-added", + "en-e450-added", + "en-e500ii-added" + ], + "labels_prev_tags": [ + "en:green-dot", + "en:made-in-france", + "en:pure-butter" + ], + "stores_debug_tags": [], + "quantity_debug_tags": [], + "allergens": "", + "image_front_url": "https://static.openfoodfacts.org/images/products/326/026/003/2549/front_fr.3.400.jpg", + "nucleotides_prev_tags": [], + "quantity": "350 g", + "nutrition_data_prepared_per": "100g", + "countries": "France", + "ingredients_text_fr": "Farine de _blé_, sucre, _beurre_ concentré : 20 % (24.5 % de beurre reconstitué), pépites de chocolat : 8 % (pâte de cacao, sucre, beurre de cacao, émulsifiant : lécithine de _soja_), _œufs_ entiers, arôme, sel, poudres à lever (diphosphate disodique, carbonate acide de sodium).", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "traces_tags": [], + "emb_codes": "", + "labels": "Pur Beurre,point vert,Fabriqué en France" + }, + { + "countries_debug_tags": [], + "traces": "Fruits à coque", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.400.jpg", + "additives_prev_original_tags": [], + "ingredients_ids_debug": [ + "farine-de-ble", + "gluten", + "sucre", + "beurre", + "22", + "lait", + "sel", + "farine-de-malt-d-orge" + ], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "fr:gluten", + "en:sugar", + "fr:beurre", + "fr:lait", + "en:salt", + "fr:farine-de-malt-d-orge" + ], + "nutrition_data_prepared": "", + "categories": "Palmiers", + "stores_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "cities_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.200.jpg", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "manufacturing_places": "", + "image_small_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.400.jpg", + "ingredients_text": "Farine de _blé_ (_gluten_), sucre, _beurre_ (22 %) (_lait_), sel, farine de malt d'_orge_.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "images": { + "1": { + "uploaded_t": 1532430340, + "sizes": { + "100": { + "h": 100, + "w": 64 + }, + "400": { + "w": 256, + "h": 400 + }, + "full": { + "h": 1200, + "w": 769 + } + }, + "uploader": "kiliweb" + }, + "2": { + "uploaded_t": 1532430348, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "400": { + "w": 400, + "h": 175 + }, + "full": { + "w": 2737, + "h": 1200 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 302, + "w": 400 + }, + "full": { + "w": 1592, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532430354 + }, + "front_fr": { + "x1": null, + "x2": null, + "y1": null, + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": "64", + "h": "100" + }, + "200": { + "h": 200, + "w": 128 + }, + "400": { + "h": 400, + "w": 256 + }, + "full": { + "h": 1200, + "w": 769 + } + }, + "white_magic": "0", + "normalize": "0", + "rev": "4", + "imgid": "1", + "angle": null, + "y2": null + }, + "ingredients_fr": { + "y1": null, + "x2": null, + "x1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "200": { + "w": 200, + "h": 88 + }, + "400": { + "w": 400, + "h": 175 + }, + "full": { + "w": 2737, + "h": 1200 + } + }, + "imgid": "2", + "rev": "7", + "angle": null, + "y2": null + }, + "nutrition_fr": { + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "h": 151, + "w": 200 + }, + "400": { + "w": 400, + "h": 302 + }, + "full": { + "w": 1592, + "h": 1200 + } + }, + "normalize": "0", + "white_magic": "0", + "x1": null, + "x2": null, + "y1": null, + "y2": null, + "rev": "10", + "imgid": "3", + "angle": null + } + }, + "lc": "fr", + "last_modified_by": "beniben", + "countries": "France", + "nutrition_data_prepared_per": "100g", + "quantity": "Variable", + "nucleotides_prev_tags": [], + "emb_codes": "", + "labels": "", + "traces_tags": [ + "en:nuts" + ], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _blé_ (_gluten_), sucre, _beurre_ (22 %) (_lait_), sel, farine de malt d'_orge_.", + "stores_debug_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.400.jpg", + "quantity_debug_tags": [], + "allergens": "", + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [ + "en:nuts" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "traces_from_ingredients": "", + "serving_quantity": 0, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.100.jpg", + "ingredients_n_tags": [ + "7", + "1-10" + ], + "nutrition_grade_fr": "e", + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:flaky-biscuits", + "fr:palmiers" + ], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "product_name_fr": "Palmier au Beurre", + "interface_version_created": "20150316.jqm2", + "generic_name": "Biscuits feuilletés sucrés, au beurre.", + "brands": "Cornu", + "ingredients_text_with_allergens": "Farine de blé (gluten), sucre, beurre (22 %) (lait), sel, farine de malt d'orge.", + "labels_prev_hierarchy": [], + "generic_name_fr": "Biscuits feuilletés sucrés, au beurre.", + "entry_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "url": "https://fr-en.openfoodfacts.org/product/0200177013845/palmier-au-beurre-cornu", + "categories_debug_tags": [], + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "expiration_date": "25/08/2018", + "stores": "", + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "amino_acids_prev_tags": [], + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:flaky-biscuits", + "fr:palmiers" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.100.jpg", + "packaging": "sachet,plastique", + "interface_version_modified": "20120622", + "vitamins_prev_tags": [], + "last_modified_t": 1532434274, + "nutrition_data": "on", + "created_t": 1532430334, + "ingredients": [ + { + "rank": 1, + "text": "Farine de _blé_", + "id": "farine-de-ble" + }, + { + "rank": 2, + "text": "_gluten_", + "id": "gluten" + }, + { + "text": "sucre", + "rank": 3, + "id": "sucre" + }, + { + "rank": 4, + "text": "_beurre_", + "percent": "22", + "id": "beurre" + }, + { + "rank": 5, + "text": "_lait_", + "id": "lait" + }, + { + "text": "sel", + "rank": 6, + "id": "sel" + }, + { + "id": "farine-de-malt-d-orge", + "rank": 7, + "text": "farine de malt d'_orge_" + } + ], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "allergens_from_ingredients": "blé, gluten, beurre, lait, orge", + "additives_old_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "code": "0200177013845", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "emb_codes_tags": [], + "_keywords": [ + "cornu", + "biscuit", + "sucre", + "au", + "feuillete", + "beurre", + "palmier" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "nutrition_grades": "e", + "ingredients_tags": [ + "fr:farine-de-ble", + "fr:gluten", + "en:sugar", + "fr:beurre", + "fr:lait", + "en:salt", + "fr:farine-de-malt-d-orge" + ], + "nutrition_data_per_debug_tags": [], + "product_name": "Palmier au Beurre", + "additives_n": 0, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 0, + "brands_tags": [ + "cornu" + ], + "lang": "fr", + "quality_tags": [ + "quantity-contains-e", + "quantity-not-recognized" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:flaky-biscuits", + "fr:palmiers" + ], + "ingredients_text_with_allergens_fr": "Farine de blé (gluten), sucre, beurre (22 %) (lait), sel, farine de malt d'orge.", + "serving_size_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.400.jpg", + "additives_old_n": 0, + "ingredients_text_fr_debug_tags": [], + "additives_tags": [], + "purchase_places": "France", + "completed_t": 1532434274, + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "ingredients_debug": [ + "Farine de _blé_ ", + "(", + "(", + null, + null, + "_gluten_)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _beurre_ ", + "(", + "(", + null, + null, + "22 %) ", + "(", + "(", + null, + null, + "_lait_)", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " farine de malt d'_orge_." + ], + "origins": "", + "purchase_places_debug_tags": [], + "sortkey": 1532434274, + "brands_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:flaky-biscuits", + "fr:palmiers" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "rev": 11, + "last_image_t": 1532430354, + "codes_tags": [ + "code-13", + 200177013845, + "020017701384x", + "02001770138xx", + "0200177013xxx", + "020017701xxxx", + "02001770xxxxx", + "0200177xxxxxx", + "020017xxxxxxx", + "02001xxxxxxxx", + "0200xxxxxxxxx", + "020xxxxxxxxxx", + "02xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "manufacturing_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.200.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/front_fr.4.100.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.100.jpg" + } + } + }, + "last_editor": "beniben", + "purchase_places_tags": [ + "france" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 6 + }, + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.200.jpg", + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "languages_codes": { + "fr": 6 + }, + "_id": "0200177013845", + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/ingredients_fr.7.100.jpg", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrient_levels": { + "saturated-fat": "high", + "fat": "moderate", + "sugars": "high", + "salt": "moderate" + }, + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "ingredients_text_debug": "Farine de _blé_ (_gluten_), sucre, _beurre_ (22 %) (_lait_), sel, farine de malt d'_orge_.", + "origins_debug_tags": [], + "ingredients_n": 7, + "additives_prev_n": 0, + "max_imgid": "3", + "additives_prev_tags": [], + "serving_size": "", + "vitamins_tags": [], + "nutriments": { + "proteins_unit": "g", + "sodium_serving": "", + "carbohydrates_serving": "", + "saturated-fat": 12, + "saturated-fat_100g": 12, + "proteins_100g": 8, + "sugars": 24, + "salt": 1.13, + "salt_unit": "g", + "energy_unit": "kJ", + "fat_serving": "", + "proteins_value": "8", + "sugars_value": "24", + "sodium_value": "0.444881889763779", + "proteins": 8, + "fat_value": "19", + "nutrition-score-uk_100g": 24, + "carbohydrates_100g": 68, + "saturated-fat_unit": "g", + "fat": 19, + "carbohydrates": 68, + "saturated-fat_value": "12", + "fat_unit": "g", + "sodium_100g": 0.444881889763779, + "nutrition-score-fr_100g": 24, + "sodium": 0.444881889763779, + "carbohydrates_value": "68", + "saturated-fat_serving": "", + "sugars_unit": "g", + "fat_100g": 19, + "proteins_serving": "", + "nutrition-score-uk": 24, + "salt_value": "1.13", + "energy_100g": 2007, + "carbohydrates_unit": "g", + "salt_100g": 1.13, + "energy": 2007, + "sugars_serving": "", + "nutrition-score-fr": 24, + "energy_value": "2007", + "energy_serving": "", + "sodium_unit": "g", + "salt_serving": "", + "sugars_100g": 24 + }, + "informers_tags": [ + "kiliweb", + "beniben" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "beniben", + "kiliweb" + ], + "nutrition_score_debug": " -- energy 5 + sat-fat 10 + fr-sat-fat-for-fats 9 + sugars 5 + sodium 4 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 24 -- fr 24", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "link_debug_tags": [], + "id": "0200177013845", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/020/017/701/3845/nutrition_fr.10.100.jpg", + "nutrition_grades_tags": [ + "e" + ], + "link": "", + "nutrition_data_per": "100g", + "allergens_debug_tags": [], + "packaging_tags": [ + "sachet", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "manufacturing_places_tags": [] + }, + { + "max_imgid": "1", + "vitamins_tags": [], + "additives_prev_tags": [], + "serving_size": "1 sachet de 3 biscuits 50 g", + "nucleotides_tags": [], + "allergens_hierarchy": [], + "ingredients_text_debug": "", + "origins_debug_tags": [], + "nutrient_levels": { + "saturated-fat": "high", + "sugars": "high", + "fat": "high", + "salt": "low" + }, + "amino_acids_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [], + "_id": "3472860404828", + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "packaging_tags": [ + "boite", + "metal", + "sachet", + "plastique" + ], + "photographers_tags": [ + "openfoodfacts-contributors" + ], + "manufacturing_places_tags": [ + "france" + ], + "nutrition_grades_tags": [ + "e" + ], + "link": "", + "nutrition_data_per": "100g", + "update_key": "20180706-categories", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 10 + sugars 4 + sodium 0 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 20 -- fr 20", + "pnns_groups_1": "Sugary snacks", + "id": "3472860404828", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.100.jpg", + "link_debug_tags": [], + "informers_tags": [ + "openfoodfacts-contributors", + "keragui", + "kiliweb" + ], + "nutriments": { + "sugars_unit": "", + "fat_100g": 24, + "proteins_serving": 3.4, + "sodium": 0.078740157480315, + "carbohydrates_value": "66", + "saturated-fat_serving": 8.35, + "salt_value": "0.2", + "energy_100g": 2121, + "carbohydrates_unit": "", + "nutrition-score-uk": 20, + "sugars_serving": 11.2, + "nutrition-score-fr": 20, + "salt_100g": 0.2, + "energy": 2121, + "sugars_100g": 22.4, + "salt_serving": 0.1, + "energy_value": "507", + "energy_serving": 1060, + "proteins_unit": "", + "sodium_serving": 0.0394, + "carbohydrates_serving": 33, + "salt": 0.2, + "energy_unit": "kcal", + "salt_unit": "", + "fat_serving": 12, + "proteins_value": "6.8", + "sugars_value": "22.4", + "saturated-fat": 16.7, + "saturated-fat_100g": 16.7, + "proteins_100g": 6.8, + "sugars": 22.4, + "proteins": 6.8, + "nutrition-score-uk_100g": 20, + "fat_value": "24", + "saturated-fat_value": "16.7", + "fat_unit": "", + "sodium_100g": 0.078740157480315, + "nutrition-score-fr_100g": 20, + "saturated-fat_unit": "", + "carbohydrates_100g": 66, + "fat": 24, + "carbohydrates": 66 + }, + "editors_tags": [ + "openfoodfacts-contributors", + "keragui", + "kiliweb" + ], + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "purchase_places_debug_tags": [], + "sortkey": 532425357, + "last_image_t": 1514388318, + "rev": 6, + "correctors_tags": [ + "keragui", + "kiliweb" + ], + "additives_tags": [], + "purchase_places": "", + "origins": "", + "ingredients_debug": [], + "image_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.400.jpg", + "ingredients_text_with_allergens_fr": "", + "serving_size_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "quality_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.200.jpg", + "allergens_tags": [], + "languages_codes": { + "fr": 3 + }, + "last_image_dates_tags": [ + "2017-12-27", + "2017-12", + "2017" + ], + "labels_tags": [ + "en:no-preservatives", + "en:green-dot", + "en:no-artificial-colors", + "en:no-artificial-flavors" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 3 + }, + "last_editor": "kiliweb", + "purchase_places_tags": [], + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + 3472860404828, + "347286040482x", + "34728604048xx", + "3472860404xxx", + "347286040xxxx", + "34728604xxxxx", + "3472860xxxxxx", + "347286xxxxxxx", + "34728xxxxxxxx", + "3472xxxxxxxxx", + "347xxxxxxxxxx", + "34xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "manufacturing_places_debug_tags": [], + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.200.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "amino_acids_prev_tags": [], + "creator": "openfoodfacts-contributors", + "emb_codes_debug_tags": [], + "packaging": "Boîte,Métal,Sachet,Plastique", + "interface_version_modified": "20150316.jqm2", + "vitamins_prev_tags": [], + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.100.jpg", + "expiration_date": "13/07/2018", + "stores": "", + "entry_dates_tags": [ + "2017-12-27", + "2017-12", + "2017" + ], + "generic_name_fr": "", + "url": "https://fr-en.openfoodfacts.org/product/3472860404828/coffret-fer-grandes-galettes-faience-500g-biscuiterie-la-mere-poulard", + "labels_prev_hierarchy": [ + "en:green-dot", + "en:no-artificial-colors", + "en:no-artificial-flavors", + "en:no-preservatives" + ], + "ingredients_text_with_allergens": "", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "ingredients_from_palm_oil_tags": [], + "complete": 0, + "interface_version_created": "20120622", + "generic_name": "", + "brands": "Biscuiterie La Mère Poulard", + "product_name_fr": "Coffret fer grandes galettes faience 500g", + "product_name": "Coffret fer grandes galettes faience 500g", + "ingredients_tags": [], + "nutrition_data_per_debug_tags": [], + "brands_tags": [ + "biscuiterie-la-mere-poulard" + ], + "lang": "fr", + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 0, + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "code": "3472860404828", + "traces_debug_tags": [], + "_keywords": [ + "point", + "biscuit", + "galette", + "colorant", + "faience", + "arome", + "conservateur", + "fer", + "artificiel", + "biscuiterie", + "grande", + "la", + "san", + "vert", + "coffret", + "mere", + "poulard", + "500g" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrition_grades": "e", + "ingredients": [], + "created_t": 1514388318, + "additives_old_tags": [], + "allergens_from_ingredients": "", + "languages_hierarchy": [ + "en:french" + ], + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "last_modified_t": 1532425357, + "manufacturing_places": "France", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/nutrition_fr.4.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.200.jpg", + "product_quantity": 500, + "lc": "fr", + "images": { + "1": { + "uploaded_t": "1514388318", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + } + }, + "nutrition_fr": { + "angle": "0", + "rev": "4", + "imgid": "1", + "y2": "213.06666564941406", + "x1": "0", + "x2": "161", + "y1": "78.06666564941406", + "sizes": { + "100": { + "w": 100, + "h": 84 + }, + "200": { + "h": 168, + "w": 200 + }, + "400": { + "w": 400, + "h": 335 + }, + "full": { + "w": 805, + "h": 675 + } + }, + "normalize": "true", + "white_magic": "false", + "geometry": "805x675-0-390" + }, + "front_fr": { + "x1": -1, + "x2": -1, + "y1": -1, + "sizes": { + "100": { + "h": "56", + "w": "100" + }, + "200": { + "w": 200, + "h": 113 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "white_magic": null, + "normalize": null, + "geometry": "0x0--5--5", + "angle": 0, + "rev": "3", + "imgid": "1", + "y2": -1 + } + }, + "last_modified_by": "kiliweb", + "ingredients_text": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "categories": "Biscuits", + "stores_tags": [], + "no_nutrition_data": "", + "cities_tags": [], + "minerals_prev_tags": [], + "traces": "", + "countries_debug_tags": [], + "ingredients_hierarchy": [], + "ingredients_ids_debug": [], + "additives_prev_original_tags": [], + "nutrition_grade_fr": "e", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.100.jpg", + "labels_hierarchy": [ + "en:no-preservatives", + "en:green-dot", + "en:no-artificial-colors", + "en:no-artificial-flavors" + ], + "traces_from_ingredients": "", + "serving_quantity": 50, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "checkers_tags": [], + "stores_debug_tags": [], + "labels_prev_tags": [ + "en:green-dot", + "en:no-artificial-colors", + "en:no-artificial-flavors", + "en:no-preservatives" + ], + "additives_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/347/286/040/4828/front_fr.3.400.jpg", + "quantity_debug_tags": [], + "allergens": "", + "nucleotides_prev_tags": [], + "quantity": "500 g", + "countries": "France", + "nutrition_data_prepared_per": "100g", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "", + "emb_codes": "", + "labels": "Point Vert,Sans conservateurs,Sans arômes artificiels,Sans colorants artificiels", + "traces_tags": [] + }, + { + "categories_debug_tags": [], + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "labels_prev_hierarchy": [ + "en:vegetarian" + ], + "ingredients_text_with_allergens": "Chocolat au lait (48 %) (sucre, beurre de cacao, pâte de cacao, lait écrémé en poudre, matière grasse de lait, émulsifiants (lécithine de soja, E476)), farine de blé, huile de palme, sucre, sirop de sucre partiellement inverti, sel, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium), arôme.", + "generic_name_fr": "Biscuits craquants enrobés de chocolat au lait Cadbury - Fingers l'Original", + "entry_dates_tags": [ + "2014-11-03", + "2014-11", + "2014" + ], + "url": "https://fr-en.openfoodfacts.org/product/0072417152924/fingers-l-original-cadbury", + "product_name_fr": "Fingers l'Original", + "generic_name": "Biscuits craquants enrobés de chocolat au lait Cadbury - Fingers l'Original", + "brands": "Cadbury", + "interface_version_created": "20120622", + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.100.jpg", + "packaging": "Etui,Carton,PAP,Plastique", + "interface_version_modified": "20150316.jqm2", + "vitamins_prev_tags": [], + "creator": "openfoodfacts-contributors", + "emb_codes_debug_tags": [], + "amino_acids_prev_tags": [], + "stores": "", + "expiration_date": "04/08/2018", + "ingredients_from_palm_oil_n": 1, + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "allergens_from_ingredients": "lait, lait, lait, soja, blé", + "additives_old_tags": [ + "en:e322", + "en:e476", + "en:e503", + "en:e500" + ], + "languages_hierarchy": [ + "en:french" + ], + "created_t": 1415015086, + "ingredients": [ + { + "text": "Chocolat au _lait_", + "rank": 1, + "percent": "48", + "id": "chocolat-au-lait" + }, + { + "id": "farine-de-ble", + "rank": 2, + "text": "farine de _blé_" + }, + { + "id": "huile-de-palme", + "text": "huile de palme", + "rank": 3 + }, + { + "id": "sucre", + "rank": 4, + "text": "sucre" + }, + { + "text": "sirop de sucre partiellement inverti", + "rank": 5, + "id": "sirop-de-sucre-partiellement-inverti" + }, + { + "rank": 6, + "text": "sel", + "id": "sel" + }, + { + "id": "poudres-a-lever", + "rank": 7, + "text": "poudres à lever" + }, + { + "rank": 8, + "text": "arôme", + "id": "arome" + }, + { + "text": "sucre", + "id": "sucre" + }, + { + "text": "beurre de cacao", + "id": "beurre-de-cacao" + }, + { + "text": "pâte de cacao", + "id": "pate-de-cacao" + }, + { + "text": "_lait_ écrémé en poudre", + "id": "lait-ecreme-en-poudre" + }, + { + "text": "matière grasse de _lait_", + "id": "matiere-grasse-de-lait" + }, + { + "text": "émulsifiants", + "id": "emulsifiants" + }, + { + "text": "lécithine de _soja_", + "id": "lecithine-de-soja" + }, + { + "text": "E476", + "id": "e476" + }, + { + "id": "bicarbonate-d-ammonium", + "text": "bicarbonate d'ammonium" + }, + { + "text": "bicarbonate de sodium", + "id": "bicarbonate-de-sodium" + } + ], + "last_modified_t": 1532421427, + "nutrition_data": "on", + "additives_n": 4, + "unknown_ingredients_n": 1, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "brands_tags": [ + "cadbury" + ], + "lang": "fr", + "ingredients_tags": [ + "fr:chocolat-au-lait", + "fr:farine-de-ble", + "fr:huile-de-palme", + "en:sugar", + "fr:sirop-de-sucre-partiellement-inverti", + "en:salt", + "fr:poudre-a-lever", + "fr:arome", + "en:sugar", + "fr:beurre-de-cacao", + "fr:pate-de-cacao", + "fr:lait-ecreme-en-poudre", + "fr:matiere-grasse-de-lait", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:e476", + "fr:bicarbonate-d-ammonium", + "fr:bicarbonate-de-sodium" + ], + "nutrition_data_per_debug_tags": [], + "product_name": "Fingers l'Original", + "traces_debug_tags": [], + "_keywords": [ + "sucre", + "gateaux", + "lait", + "cadbury", + "chocolat", + "snack", + "finger", + "enrobe", + "de", + "vegetarien", + "craquant", + "original", + "au", + "biscuit", + "et" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_grades": "e", + "code": "0072417152924", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "emb_codes_tags": [], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "cities_tags": [], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat,Biscuits au chocolat au lait", + "nutrition_data_prepared": "", + "stores_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.400.jpg", + "additives_prev_original_tags": [ + "en:e322", + "en:e476", + "en:e503", + "en:e500" + ], + "ingredients_ids_debug": [ + "chocolat-au-lait", + "48", + "sucre", + "beurre-de-cacao", + "pate-de-cacao", + "lait-ecreme-en-poudre", + "matiere-grasse-de-lait", + "emulsifiants", + "lecithine-de-soja", + "e476", + "farine-de-ble", + "huile-de-palme", + "sucre", + "sirop-de-sucre-partiellement-inverti", + "sel", + "poudres-a-lever", + "bicarbonate-d-ammonium", + "bicarbonate-de-sodium", + "arome" + ], + "ingredients_hierarchy": [ + "fr:chocolat-au-lait", + "fr:farine-de-ble", + "fr:huile-de-palme", + "en:sugar", + "fr:sirop-de-sucre-partiellement-inverti", + "en:salt", + "fr:poudre-a-lever", + "fr:arome", + "en:sugar", + "fr:beurre-de-cacao", + "fr:pate-de-cacao", + "fr:lait-ecreme-en-poudre", + "fr:matiere-grasse-de-lait", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:e476", + "fr:bicarbonate-d-ammonium", + "fr:bicarbonate-de-sodium" + ], + "countries_debug_tags": [], + "traces": "Fruits à coque", + "ingredients_text": "Chocolat au _lait_ (48 %) (sucre, beurre de cacao, pâte de cacao, _lait_ écrémé en poudre, matière grasse de _lait_, émulsifiants (lécithine de _soja_, E476)), farine de _blé_, huile de palme, sucre, sirop de sucre partiellement inverti, sel, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium), arôme.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "lc": "fr", + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1415015086 + }, + "2": { + "uploaded_t": 1432989588, + "uploader": "tacite", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "3": { + "uploaded_t": 1432989591, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "tacite" + }, + "4": { + "uploaded_t": 1432989597, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "tacite" + }, + "5": { + "uploader": "tacinte", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploaded_t": "1415014625" + }, + "6": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 43 + }, + "400": { + "w": 170, + "h": 400 + }, + "full": { + "w": 579, + "h": 1360 + } + }, + "uploaded_t": "1492422141" + }, + "7": { + "sizes": { + "100": { + "h": 100, + "w": 52 + }, + "400": { + "h": 400, + "w": 209 + }, + "full": { + "h": 1994, + "w": 1040 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1492422142" + }, + "9": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 48 + }, + "400": { + "w": 194, + "h": 400 + }, + "full": { + "w": 581, + "h": 1200 + } + }, + "uploaded_t": "1523947503" + }, + "10": { + "uploaded_t": "1523962665", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 70 + }, + "400": { + "h": 280, + "w": 400 + }, + "full": { + "w": 1713, + "h": 1200 + } + } + }, + "11": { + "uploaded_t": "1526399887", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 49 + }, + "400": { + "h": 400, + "w": 194 + }, + "full": { + "w": 583, + "h": 1200 + } + } + }, + "12": { + "uploaded_t": "1526399890", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 49 + }, + "400": { + "w": 194, + "h": 400 + }, + "full": { + "h": 1200, + "w": 583 + } + } + }, + "13": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 52, + "h": 100 + }, + "400": { + "w": 209, + "h": 400 + }, + "full": { + "w": 628, + "h": 1200 + } + }, + "uploaded_t": "1526620937" + }, + "14": { + "uploaded_t": "1526967401", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + } + }, + "15": { + "uploaded_t": "1529075809", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 44 + }, + "400": { + "h": 400, + "w": 176 + }, + "full": { + "w": 527, + "h": 1200 + } + } + }, + "16": { + "uploaded_t": "1529481358", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 61 + }, + "400": { + "w": 243, + "h": 400 + }, + "full": { + "h": 1200, + "w": 729 + } + } + }, + "ingredients_fr": { + "x1": null, + "y1": null, + "x2": null, + "sizes": { + "100": { + "w": 61, + "h": 100 + }, + "200": { + "w": 122, + "h": 200 + }, + "400": { + "w": 243, + "h": 400 + }, + "full": { + "h": 1200, + "w": 729 + } + }, + "normalize": "0", + "white_magic": "0", + "geometry": "0x0-0-0", + "angle": null, + "rev": "68", + "imgid": "16", + "y2": null + }, + "front": { + "sizes": { + "100": { + "h": 45, + "w": 100 + }, + "200": { + "h": 89, + "w": 200 + }, + "400": { + "w": 400, + "h": 178 + }, + "full": { + "h": 1379, + "w": 3093 + } + }, + "white_magic": "false", + "normalize": "false", + "geometry": "3093x1379-140-545", + "rev": "8", + "imgid": "4" + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 100, + "w": 79 + }, + "200": { + "w": 158, + "h": 200 + }, + "400": { + "h": 400, + "w": 317 + }, + "full": { + "h": 1216, + "w": 963 + } + }, + "normalize": "false", + "white_magic": "false", + "geometry": "963x1216-850-789", + "rev": "10", + "imgid": "3" + }, + "nutrition": { + "rev": "10", + "imgid": "3", + "sizes": { + "100": { + "w": 79, + "h": 100 + }, + "200": { + "w": 158, + "h": 200 + }, + "400": { + "w": 317, + "h": 400 + }, + "full": { + "w": 963, + "h": 1216 + } + }, + "normalize": "false", + "white_magic": "false", + "geometry": "963x1216-850-789" + }, + "front_fr": { + "rev": "64", + "imgid": "11", + "angle": "90", + "y2": "0", + "x1": "0", + "x2": "0", + "y1": "0", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": "100", + "h": "49" + }, + "200": { + "h": 97, + "w": 200 + }, + "400": { + "w": 400, + "h": 194 + }, + "full": { + "w": 1200, + "h": 583 + } + }, + "normalize": "false", + "white_magic": "false" + }, + "ingredients": { + "imgid": "3", + "rev": "9", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "h": 100, + "w": 55 + }, + "200": { + "h": 200, + "w": 111 + }, + "400": { + "w": 221, + "h": 400 + }, + "full": { + "h": 1167, + "w": 645 + } + }, + "geometry": "645x1167-246-822" + } + }, + "last_modified_by": "kiliweb", + "product_quantity": 138, + "manufacturing_places": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.400.jpg", + "debug_tags": [ + "43" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.200.jpg", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.400.jpg", + "allergens": "lait, lait, lait, soja, blé, lait, lait, lait, soja, blé", + "quantity_debug_tags": [], + "stores_debug_tags": [], + "labels_prev_tags": [ + "en:vegetarian" + ], + "additives_debug_tags": [ + "en-e322i-added", + "en-e500ii-added" + ], + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "labels": "Végétarien", + "emb_codes": "", + "traces_tags": [ + "en:nuts" + ], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Chocolat au _lait_ (48 %) (sucre, beurre de cacao, pâte de cacao, _lait_ écrémé en poudre, matière grasse de _lait_, émulsifiants (lécithine de _soja_, E476)), farine de _blé_, huile de palme, sucre, sirop de sucre partiellement inverti, sel, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium), arôme.", + "countries": "France", + "nutrition_data_prepared_per": "100g", + "quantity": "138 g e", + "nucleotides_prev_tags": [], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "traces_from_ingredients": "", + "serving_quantity": 21, + "nutrition_grade_fr": "e", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.100.jpg", + "ingredients_n_tags": [ + "18", + "11-20" + ], + "labels_hierarchy": [ + "en:vegetarian" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [ + "en:nuts" + ], + "unknown_nutrients_tags": [], + "labels_debug_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "additives_original_tags": [ + "en:e322i", + "en:e476", + "en:e503", + "en:e500ii" + ], + "_id": "0072417152924", + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "additives_prev_tags": [ + "en:e322", + "en:e476", + "en:e500", + "en:e503" + ], + "serving_size": "4 biscuits (21 g)", + "vitamins_tags": [], + "max_imgid": "16", + "editors": [ + "", + "tacinte", + "tacite" + ], + "nutrient_levels": { + "salt": "moderate", + "fat": "high", + "sugars": "high", + "saturated-fat": "high" + }, + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "ingredients_text_debug": "Chocolat au _lait_ (48 %) (sucre, beurre de cacao, pâte de cacao, _lait_ écrémé en poudre, matière grasse de _lait_, émulsifiants : (lécithine de _soja_, - e476 - )), farine de _blé_, huile de palme, sucre, sirop de sucre partiellement inverti, sel, poudres à lever : (bicarbonate d'ammonium, bicarbonate de sodium), arôme.", + "additives_prev_n": 4, + "ingredients_n": 18, + "origins_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.100.jpg", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "link_debug_tags": [], + "id": "0072417152924", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.100.jpg", + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 8 + sugars 8 + sodium 1 - fruits 0% 0 - fiber 3 - proteins 4 -- fsa 22 -- fr 22", + "pnns_groups_1": "Sugary snacks", + "editors_tags": [ + "kiliweb", + "sebleouf", + "tacite", + "openfoodfacts-contributors", + "keragui", + "tacinte", + "beniben", + "asmoth" + ], + "nutriments": { + "nutrition-score-uk": 22, + "energy_100g": 2134, + "carbohydrates_unit": "", + "fiber_unit": "g", + "salt_value": "0.4", + "carbohydrates_value": "63.6", + "saturated-fat_serving": 2.83, + "fiber_100g": 3.1, + "sodium": 0.15748031496063, + "fruits-vegetables-nuts_serving": 0, + "proteins_serving": 1.41, + "sugars_unit": "", + "fat_100g": 24.8, + "energy_value": "510", + "energy_serving": 448, + "sugars_100g": 39.3, + "salt_serving": 0.084, + "fruits-vegetables-nuts_100g": 0, + "fiber": 3.1, + "fruits-vegetables-nuts_value": "0", + "salt_100g": 0.4, + "energy": 2134, + "nutrition-score-fr": 22, + "sugars_serving": 8.25, + "proteins_100g": 6.7, + "sugars": 39.3, + "saturated-fat": 13.5, + "fiber_serving": 0.651, + "saturated-fat_100g": 13.5, + "sugars_value": "39.3", + "salt_unit": "", + "salt": 0.4, + "energy_unit": "kcal", + "proteins_value": "6.7", + "fat_serving": 5.21, + "proteins_unit": "", + "fiber_value": "3.1", + "carbohydrates_serving": 13.4, + "sodium_serving": 0.0331, + "fruits-vegetables-nuts_unit": "g", + "carbohydrates": 63.6, + "fat": 24.8, + "saturated-fat_unit": "", + "carbohydrates_100g": 63.6, + "fat_unit": "", + "sodium_100g": 0.15748031496063, + "nutrition-score-fr_100g": 22, + "saturated-fat_value": "13.5", + "fruits-vegetables-nuts": 0, + "fat_value": "24.8", + "nutrition-score-uk_100g": 22, + "proteins": 6.7 + }, + "informers_tags": [ + "openfoodfacts-contributors", + "tacite", + "kiliweb", + "keragui", + "beniben" + ], + "ingredients_text_debug_tags": [], + "manufacturing_places_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "packaging_tags": [ + "etui", + "carton", + "pap", + "plastique" + ], + "photographers_tags": [ + "openfoodfacts-contributors", + "tacite", + "tacinte", + "kiliweb" + ], + "update_key": "20180706-categories", + "link": "", + "nutrition_data_per": "100g", + "nutrition_grades_tags": [ + "e" + ], + "additives_old_n": 4, + "ingredients_text_fr_debug_tags": [], + "ingredients_text_with_allergens_fr": "Chocolat au lait (48 %) (sucre, beurre de cacao, pâte de cacao, lait écrémé en poudre, matière grasse de lait, émulsifiants (lécithine de soja, E476)), farine de blé, huile de palme, sucre, sirop de sucre partiellement inverti, sel, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium), arôme.", + "serving_size_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.400.jpg", + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "quality_tags": [ + "quantity-contains-e" + ], + "rev": 70, + "unique_scans_n": 32, + "last_image_t": 1529481358, + "purchase_places_debug_tags": [], + "sortkey": 1532421427, + "brands_debug_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_debug": [ + "Chocolat au _lait_ ", + "(", + "(", + null, + null, + "48 %) ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " _lait_ écrémé en poudre", + ",", + null, + null, + null, + " matière grasse de _lait_", + ",", + null, + null, + null, + " émulsifiants ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "lécithine de _soja_", + ",", + null, + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e476", + " - ", + " - ", + " - ", + null, + "))", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " huile de palme", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " sirop de sucre partiellement inverti", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "bicarbonate d'ammonium", + ",", + null, + null, + null, + " bicarbonate de sodium)", + ",", + null, + null, + null, + " arôme." + ], + "origins": "", + "additives_tags": [ + "en:e322", + "en:e322i", + "en:e476", + "en:e500", + "en:e500ii", + "en:e503" + ], + "purchase_places": "France", + "completed_t": 1433094085, + "correctors_tags": [ + "tacite", + "kiliweb", + "openfoodfacts-contributors", + "keragui", + "asmoth", + "sebleouf", + "beniben" + ], + "purchase_places_tags": [ + "france" + ], + "new_additives_n": 3, + "last_editor": "kiliweb", + "manufacturing_places_debug_tags": [], + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/front_fr.64.100.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/007/241/715/2924/ingredients_fr.68.100.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "scans_n": 39, + "codes_tags": [ + "code-13", + 72417152924, + "007241715292x", + "00724171529xx", + "0072417152xxx", + "007241715xxxx", + "00724171xxxxx", + "0072417xxxxxx", + "007241xxxxxxx", + "00724xxxxxxxx", + "0072xxxxxxxxx", + "007xxxxxxxxxx", + "00xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/007/241/715/2924/nutrition_fr.10.200.jpg", + "allergens_tags": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "emb_codes_20141016": "", + "lang_debug_tags": [], + "languages": { + "en:french": 6 + }, + "labels_tags": [ + "en:vegetarian" + ], + "last_image_dates_tags": [ + "2018-06-20", + "2018-06", + "2018" + ] + }, + { + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "nutrition_grade_fr": "e", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.100.jpg", + "ingredients_n_tags": [ + "11", + "11-20" + ], + "labels_hierarchy": [ + "en:pure-butter", + "fr:origine-france" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces_from_ingredients": "", + "serving_quantity": 0, + "traces_hierarchy": [ + "en:nuts" + ], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.400.jpg", + "quantity_debug_tags": [], + "allergens": "blé, beurre, œufs, lait", + "checkers_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [ + "en:pure-butter", + "fr:origine-france" + ], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _blé_ 65%, sucre, _beurre_ 18%, _œufs_ frais, arôme naturel, sel, poudres à lever : carbonates d'ammonium, carbonates de sodium, tartrates de potassium et acide tartrique, _lait_ écrémé en poudre.", + "emb_codes": "", + "labels": "en:pure-butter, fr:origine-france", + "traces_tags": [ + "en:nuts" + ], + "quantity": "230 g e", + "nucleotides_prev_tags": [], + "countries": "en:france", + "nutrition_data_prepared_per": "100g", + "lc": "fr", + "images": { + "1": { + "uploader": "bobinna", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3560, + "w": 2000 + } + }, + "uploaded_t": 1424775639 + }, + "2": { + "uploaded_t": 1424775726, + "uploader": "bobinna", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2000, + "h": 3560 + } + } + }, + "3": { + "uploaded_t": "1459101447", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 960, + "w": 720 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "4": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 36, + "h": 100 + }, + "400": { + "h": 400, + "w": 142 + }, + "full": { + "h": 1360, + "w": 483 + } + }, + "uploaded_t": "1517750240" + }, + "5": { + "uploaded_t": "1523371865", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 301 + }, + "full": { + "h": 1200, + "w": 1595 + } + }, + "uploader": "kiliweb" + }, + "6": { + "uploaded_t": "1518199695", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "7": { + "uploaded_t": "1518199728", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "8": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1518199754" + }, + "9": { + "uploaded_t": "1521818173", + "sizes": { + "100": { + "w": 100, + "h": 40 + }, + "400": { + "h": 158, + "w": 400 + }, + "full": { + "h": 812, + "w": 2050 + } + }, + "uploader": "kiliweb" + }, + "10": { + "uploaded_t": "1521818174", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 12, + "h": 100 + }, + "400": { + "w": 49, + "h": 400 + }, + "full": { + "h": 1200, + "w": 147 + } + } + }, + "front_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "w": "100", + "h": "75" + }, + "200": { + "h": 150, + "w": 200 + }, + "400": { + "w": 400, + "h": 301 + }, + "full": { + "h": 1200, + "w": 1595 + } + }, + "x2": null, + "y1": null, + "x1": null, + "y2": null, + "imgid": "5", + "rev": "30", + "angle": null + }, + "ingredients": { + "imgid": "2", + "rev": "9", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "h": 30, + "w": 100 + }, + "200": { + "w": 200, + "h": 60 + }, + "400": { + "h": 120, + "w": 400 + }, + "full": { + "w": 1626, + "h": 489 + } + }, + "geometry": "1626x489-226-1952" + }, + "nutrition": { + "rev": "10", + "imgid": "2", + "geometry": "1475x1131-226-544", + "sizes": { + "100": { + "w": 100, + "h": 77 + }, + "200": { + "h": 153, + "w": 200 + }, + "400": { + "h": 307, + "w": 400 + }, + "full": { + "w": 1475, + "h": 1131 + } + }, + "normalize": "false", + "white_magic": "false" + }, + "nutrition_fr": { + "rev": "10", + "imgid": "2", + "sizes": { + "100": { + "h": 77, + "w": 100 + }, + "200": { + "w": 200, + "h": 153 + }, + "400": { + "h": 307, + "w": 400 + }, + "full": { + "h": 1131, + "w": 1475 + } + }, + "normalize": "false", + "white_magic": "false", + "geometry": "1475x1131-226-544" + }, + "front": { + "imgid": "1", + "rev": "8", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "h": 38, + "w": 100 + }, + "200": { + "w": 200, + "h": 77 + }, + "400": { + "w": 400, + "h": 153 + }, + "full": { + "w": 3391, + "h": 1298 + } + }, + "geometry": "3391x1298-26-288" + }, + "ingredients_fr": { + "imgid": "2", + "rev": "9", + "geometry": "1626x489-226-1952", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "h": 30, + "w": 100 + }, + "200": { + "w": 200, + "h": 60 + }, + "400": { + "w": 400, + "h": 120 + }, + "full": { + "h": 489, + "w": 1626 + } + } + } + }, + "last_modified_by": "kiliweb", + "ingredients_text": "Farine de _blé_ 65%, sucre, _beurre_ 18%, _œufs_ frais, arôme naturel, sel, poudres à lever : carbonates d'ammonium, carbonates de sodium, tartrates de potassium et acide tartrique, _lait_ écrémé en poudre.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places": "Saint-Michel-Chef-Chef,France", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.200.jpg", + "product_quantity": 230, + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.200.jpg", + "minerals_prev_tags": [], + "cities_tags": [], + "no_nutrition_data": "", + "categories": "en:sugary-snacks,en:biscuits-and-cakes,en:biscuits,fr:biscuits-secs", + "stores_tags": [ + "bi1" + ], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "en:sugar", + "fr:beurre", + "fr:oeufs-frais", + "fr:arome-naturel", + "en:salt", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:tartrates-de-potassium-et-acide-tartrique", + "fr:lait-ecreme-en-poudre" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.400.jpg", + "additives_prev_original_tags": [ + "en:e503", + "en:e500", + "en:e336" + ], + "ingredients_ids_debug": [ + "farine-de-ble-65", + "sucre", + "beurre-18", + "oeufs-frais", + "arome-naturel", + "sel", + "poudres-a-lever", + "carbonates-d-ammonium", + "carbonates-de-sodium", + "tartrates-de-potassium-et-acide-tartrique", + "lait-ecreme-en-poudre" + ], + "traces": "Fruits à coque", + "countries_debug_tags": [], + "brands_tags": [ + "st-michel" + ], + "lang": "fr", + "additives_n": 3, + "unknown_ingredients_n": 1, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "product_name": "36 Galettes", + "ingredients_tags": [ + "fr:farine-de-ble", + "en:sugar", + "fr:beurre", + "fr:oeufs-frais", + "fr:arome-naturel", + "en:salt", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "fr:tartrates-de-potassium-et-acide-tartrique", + "fr:lait-ecreme-en-poudre" + ], + "nutrition_data_per_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "_keywords": [ + "origine-france", + "beurre", + "galette", + "michel", + "st", + "pure-butter", + "pur", + "36", + "biscuit", + "sugary-snack", + "biscuits-and-cake", + "biscuits-sec" + ], + "nutrition_grades": "e", + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "3178530407563", + "allergens_from_ingredients": "blé, beurre, œufs, lait", + "additives_old_tags": [ + "en:e503", + "en:e500", + "en:e336" + ], + "languages_hierarchy": [ + "en:french" + ], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "ingredients": [ + { + "id": "farine-de-ble", + "percent": "65", + "rank": 1, + "text": "Farine de _blé_" + }, + { + "id": "sucre", + "text": "sucre", + "rank": 2 + }, + { + "text": "_beurre_", + "rank": 3, + "percent": "18", + "id": "beurre" + }, + { + "rank": 4, + "text": "_œufs_ frais", + "id": "oeufs-frais" + }, + { + "id": "arome-naturel", + "rank": 5, + "text": "arôme naturel" + }, + { + "text": "sel", + "rank": 6, + "id": "sel" + }, + { + "id": "poudres-a-lever", + "text": "poudres à lever", + "rank": 7 + }, + { + "text": "carbonates d'ammonium", + "rank": 8, + "id": "carbonates-d-ammonium" + }, + { + "text": "carbonates de sodium", + "rank": 9, + "id": "carbonates-de-sodium" + }, + { + "text": "tartrates de potassium et acide tartrique", + "rank": 10, + "id": "tartrates-de-potassium-et-acide-tartrique" + }, + { + "text": "_lait_ écrémé en poudre", + "rank": 11, + "id": "lait-ecreme-en-poudre" + } + ], + "created_t": 1424775638, + "last_modified_t": 1532420790, + "packaging": "Boîte,Carton,Sachet,Plastique", + "interface_version_modified": "20150316.jqm2", + "vitamins_prev_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.100.jpg", + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "bobinna", + "stores": "Bi1", + "expiration_date": "20/04/18", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "entry_dates_tags": [ + "2015-02-24", + "2015-02", + "2015", + "open-food-hunt-2015" + ], + "generic_name_fr": "Galettes pur beurre", + "url": "https://fr-en.openfoodfacts.org/product/3178530407563/36-galettes-st-michel", + "ingredients_text_with_allergens": "Farine de blé 65%, sucre, beurre 18%, œufs frais, arôme naturel, sel, poudres à lever : carbonates d'ammonium, carbonates de sodium, tartrates de potassium et acide tartrique, lait écrémé en poudre.", + "labels_prev_hierarchy": [ + "en:pure-butter", + "fr:origine-france" + ], + "generic_name": "Galettes pur beurre", + "interface_version_created": "20120622", + "brands": "St Michel", + "product_name_fr": "36 Galettes", + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "languages_codes": { + "fr": 6 + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.200.jpg", + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "emb_codes_20141016": "", + "labels_tags": [ + "en:pure-butter", + "fr:origine-france" + ], + "last_image_dates_tags": [ + "2018-04-19", + "2018-04", + "2018" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 6 + }, + "new_additives_n": 4, + "purchase_places_tags": [ + "f-77480-mousseaux-les-bray" + ], + "last_editor": "kiliweb", + "scans_n": 26, + "manufacturing_places_debug_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.400.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.100.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "codes_tags": [ + "code-13", + 3178530407563, + "317853040756x", + "31785304075xx", + "3178530407xxx", + "317853040xxxx", + "31785304xxxxx", + "3178530xxxxxx", + "317853xxxxxxx", + "31785xxxxxxxx", + "3178xxxxxxxxx", + "317xxxxxxxxxx", + "31xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "unique_scans_n": 24, + "last_image_t": 1524151534, + "rev": 37, + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "purchase_places_debug_tags": [], + "sortkey": 1532420790, + "origins": "", + "ingredients_debug": [ + "Farine de _blé_ 65%", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _beurre_ 18%", + ",", + null, + null, + null, + " _œufs_ frais", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " carbonates d'ammonium", + ",", + null, + null, + null, + " carbonates de sodium", + ",", + null, + null, + null, + " tartrates de potassium et acide tartrique", + ",", + null, + null, + null, + " _lait_ écrémé en poudre." + ], + "completed_t": 1448315035, + "correctors_tags": [ + "segundo", + "date-limite-app", + "kch", + "nouky20", + "kiliweb", + "openfoodfacts-contributors", + "sebleouf", + "tacite-mass-editor" + ], + "additives_tags": [ + "en:e336", + "en:e500", + "en:e503" + ], + "purchase_places": "F-77480 Mousseaux-les-Bray", + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 3, + "image_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/front_fr.30.400.jpg", + "ingredients_text_with_allergens_fr": "Farine de blé 65%, sucre, beurre 18%, œufs frais, arôme naturel, sel, poudres à lever : carbonates d'ammonium, carbonates de sodium, tartrates de potassium et acide tartrique, lait écrémé en poudre.", + "serving_size_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "manufacturing_places_tags": [ + "saint-michel-chef-chef", + "france" + ], + "packaging_tags": [ + "boite", + "carton", + "sachet", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "photographers_tags": [ + "bobinna", + "openfoodfacts-contributors", + "kiliweb" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "link": "http://www.stmichel.fr/produit/galette-tout-au-beurre", + "nutrition_data_per": "100g", + "update_key": "20180706-categories", + "nutrition_grades_tags": [ + "e" + ], + "id": "3178530407563", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/nutrition_fr.10.100.jpg", + "link_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_score_debug": " -- energy 5 + sat-fat 10 + fr-sat-fat-for-fats 10 + sugars 5 + sodium 3 - fruits 0% 0 - fiber 2 - proteins 4 -- fsa 21 -- fr 21", + "pnns_groups_1": "Sugary snacks", + "editors_tags": [ + "nouky20", + "date-limite-app", + "bobinna", + "kch", + "tacite-mass-editor", + "openfoodfacts-contributors", + "segundo", + "sebleouf", + "kiliweb" + ], + "informers_tags": [ + "bobinna", + "segundo", + "kch", + "nouky20" + ], + "nutriments": { + "fat_100g": 16, + "sugars_unit": "", + "proteins_serving": "", + "sodium": 0.354330708661417, + "carbohydrates_value": "74", + "saturated-fat_serving": "", + "fiber_100g": 2, + "salt_value": "0.9", + "fiber_unit": "", + "carbohydrates_unit": "", + "energy_100g": 1975, + "nutrition-score-uk": 21, + "sugars_serving": "", + "nutrition-score-fr": 21, + "energy": 1975, + "salt_100g": 0.9, + "fiber": "2", + "sugars_100g": 25, + "salt_serving": "", + "energy_serving": "", + "energy_value": "472", + "sodium_serving": "", + "fiber_value": "2", + "carbohydrates_serving": "", + "proteins_unit": "", + "proteins_value": "7", + "fat_serving": "", + "energy_unit": "kcal", + "salt_unit": "", + "salt": 0.9, + "sugars_value": "25", + "saturated-fat_100g": 11, + "fiber_serving": "", + "saturated-fat": 11, + "sugars": 25, + "proteins_100g": 7, + "proteins": 7, + "fat_value": "16", + "nutrition-score-uk_100g": 21, + "saturated-fat_value": "11", + "sodium_100g": 0.354330708661417, + "fat_unit": "", + "nutrition-score-fr_100g": 21, + "saturated-fat_unit": "", + "carbohydrates_100g": 74, + "carbohydrates": 74, + "fat": 16 + }, + "vitamins_tags": [], + "additives_prev_tags": [ + "en:e336", + "en:e500", + "en:e503" + ], + "serving_size": "", + "max_imgid": "10", + "ingredients_text_debug": "Farine de _blé_ 65%, sucre, _beurre_ 18%, _œufs_ frais, arôme naturel, sel, poudres à lever : carbonates d'ammonium, carbonates de sodium, tartrates de potassium et acide tartrique, _lait_ écrémé en poudre.", + "origins_debug_tags": [], + "ingredients_n": 11, + "additives_prev_n": 3, + "editors": [ + "bobinna", + "segundo" + ], + "nutrient_levels": { + "fat": "moderate", + "sugars": "high", + "saturated-fat": "high", + "salt": "moderate" + }, + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/317/853/040/7563/ingredients_fr.9.100.jpg", + "additives_original_tags": [ + "en:e503", + "en:e500", + "en:e336" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "_id": "3178530407563", + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "" + }, + { + "nutrition_grades_tags": [ + "d" + ], + "update_key": "20180706-categories", + "link": "", + "nutrition_data_per": "100g", + "fruits-vegetables-nuts_100g_estimate": 0, + "allergens_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [ + "sachet", + "plastique", + "carton" + ], + "photographers_tags": [ + "openfood-ch-import", + "kiliweb" + ], + "manufacturing_places_tags": [ + "suisse" + ], + "nutriments": { + "fat_100g": 25, + "sugars_unit": "g", + "proteins_serving": "", + "sodium": 0.137795275590551, + "fiber_100g": 3, + "carbohydrates_value": "61", + "saturated-fat_serving": "", + "salt_value": "0.35", + "fiber_unit": "g", + "carbohydrates_unit": "g", + "energy_100g": 2142, + "nutrition-score-uk": 18, + "sugars_serving": "", + "nutrition-score-fr": 18, + "energy": 2142, + "salt_100g": 0.35, + "sodium_unit": "g", + "fiber": 3, + "sugars_100g": 28, + "salt_serving": "", + "energy_serving": "", + "energy_value": "512", + "sodium_serving": "", + "fiber_value": "3", + "carbohydrates_serving": "", + "proteins_unit": "g", + "proteins_value": "8", + "fat_serving": "", + "salt": 0.35, + "energy_unit": "kcal", + "salt_unit": "g", + "sugars_value": "28", + "saturated-fat_100g": 9, + "saturated-fat": 9, + "fiber_serving": "", + "sugars": 28, + "proteins_100g": 8, + "proteins": 8, + "nutrition-score-uk_100g": 18, + "fat_value": "25", + "sodium_value": "0.137795275590551", + "saturated-fat_value": "9", + "fat_unit": "g", + "nutrition-score-fr_100g": 18, + "sodium_100g": 0.137795275590551, + "saturated-fat_unit": "g", + "carbohydrates_100g": 61, + "fat": 25, + "carbohydrates": 61 + }, + "informers_tags": [ + "openfood-ch-import", + "kiliweb", + "beniben" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "beniben", + "openfood-ch-import", + "kiliweb" + ], + "nutrition_score_debug": " -- energy 6 + sat-fat 8 + fr-sat-fat-for-fats 5 + sugars 6 + sodium 1 - fruits 0% 0 - fiber 3 - proteins 4 -- fsa 18 -- fr 18", + "pnns_groups_1": "Sugary snacks", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "link_debug_tags": [], + "id": "7610032066054", + "generic_name_de": "", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.100.jpg", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:nuts" + ], + "nutrient_levels": { + "salt": "moderate", + "fat": "high", + "sugars": "high", + "saturated-fat": "high" + }, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "ingredients_text_debug": "Farine de _froment_, sucre, _noisettes_ 17 %, _beurre_ 13 %, _œufs_, beurre de cacao, poudres à lever : carbonates de sodium et carbonates d'ammonium, _lait_ entier en poudre, _œuf_, en poudre, sel de cuisine, _lait_ écrémé en poudre, pâte de cacao, jus de citron, émulsifiant : lécithine de soja, zeste de citron (avec arôme naturel), extrait de vanille.", + "ingredients_n": 20, + "additives_prev_n": 2, + "origins_debug_tags": [], + "max_imgid": "6", + "additives_prev_tags": [ + "en:e322", + "en:e500" + ], + "serving_size": "", + "vitamins_tags": [], + "_id": "7610032066054", + "countries_hierarchy": [ + "en:france", + "en:switzerland" + ], + "emb_codes_orig": "", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e500", + "en:e322i" + ], + "lang_debug_tags": [], + "generic_name_de_debug_tags": [], + "languages": { + "en:french": 6, + "en:german": 2 + }, + "labels_tags": [ + "en:made-in-swiss" + ], + "last_image_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.200.jpg", + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:nuts" + ], + "languages_codes": { + "fr": 6, + "de": 2 + }, + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + 7610032066054, + "761003206605x", + "76100320660xx", + "7610032066xxx", + "761003206xxxx", + "76100320xxxxx", + "7610032xxxxxx", + "761003xxxxxxx", + "76100xxxxxxxx", + "7610xxxxxxxxx", + "761xxxxxxxxxx", + "76xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "manufacturing_places_debug_tags": [], + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.200.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "last_editor": "beniben", + "purchase_places_tags": [ + "suisse" + ], + "additives_tags": [ + "en:e322", + "en:e322i", + "en:e500" + ], + "purchase_places": "Suisse", + "completed_t": 1532410285, + "correctors_tags": [ + "openfood-ch-import", + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "ingredients_debug": [ + "Farine de _froment_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _noisettes_ 17 %", + ",", + null, + null, + null, + " _beurre_ 13 %", + ",", + null, + null, + null, + " _œufs_", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " carbonates de sodium et carbonates d'ammonium", + ",", + null, + null, + null, + " _lait_ entier en poudre", + ",", + null, + null, + null, + " _œuf_", + ",", + null, + null, + null, + " en poudre", + ",", + null, + null, + null, + " sel de cuisine", + ",", + null, + null, + null, + " _lait_ écrémé en poudre", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " jus de citron", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithine de soja", + ",", + null, + null, + null, + " zeste de citron ", + "(", + "(", + null, + null, + "avec arôme naturel)", + ",", + null, + null, + null, + " extrait de vanille." + ], + "origins": "Suisse", + "purchase_places_debug_tags": [], + "sortkey": 1532410307, + "brands_debug_tags": [], + "languages_tags": [ + "en:german", + "en:french", + "en:2", + "en:multilingual" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "rev": 19, + "last_image_t": 1532347855, + "quality_tags": [ + "ingredients-de-4-consonants", + "quantity-contains-e" + ], + "origins_tags": [ + "suisse" + ], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "ingredients_text_with_allergens_fr": "Farine de froment, sucre, noisettes 17 %, beurre 13 %, œufs, beurre de cacao, poudres à lever : carbonates de sodium et carbonates d'ammonium, lait entier en poudre, œuf, en poudre, sel de cuisine, lait écrémé en poudre, pâte de cacao, jus de citron, émulsifiant: lécithine de soja, zeste de citron (avec arôme naturel), extrait de vanille.", + "serving_size_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.400.jpg", + "additives_old_n": 4, + "ingredients_text_fr_debug_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "7610032066054", + "emb_codes_tags": [], + "_keywords": [ + "fabrique", + "snack", + "nuss-harzli", + "gateaux", + "sucre", + "noisette", + "suisse", + "sec", + "coeur", + "et", + "en", + "biscuit", + "hug" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "nutrition_grades": "d", + "ingredients_tags": [ + "fr:farine-de-froment", + "en:sugar", + "fr:noisette", + "fr:beurre", + "fr:oeuf", + "fr:beurre-de-cacao", + "fr:poudre-a-lever", + "fr:carbonates-de-sodium-et-carbonates-d-ammonium", + "fr:lait-entier-en-poudre", + "fr:oeuf", + "fr:en-poudre", + "fr:sel-de-cuisine", + "fr:lait-ecreme-en-poudre", + "fr:pate-de-cacao", + "fr:jus-de-citron", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:zeste-de-citron", + "fr:avec-arome-naturel", + "fr:extrait-de-vanille" + ], + "nutrition_data_per_debug_tags": [], + "product_name": "Cœurs Noisettes", + "additives_n": 2, + "unknown_ingredients_n": 4, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "brands_tags": [ + "hug" + ], + "lang": "fr", + "last_modified_t": 1532410307, + "nutrition_data": "on", + "created_t": 1486495527, + "ingredients": [ + { + "rank": 1, + "text": "Farine de _froment_", + "id": "farine-de-froment" + }, + { + "rank": 2, + "text": "sucre", + "id": "sucre" + }, + { + "id": "noisettes", + "percent": "17", + "rank": 3, + "text": "_noisettes_" + }, + { + "id": "beurre", + "percent": "13", + "rank": 4, + "text": "_beurre_" + }, + { + "text": "_œufs_", + "rank": 5, + "id": "oeufs" + }, + { + "id": "beurre-de-cacao", + "text": "beurre de cacao", + "rank": 6 + }, + { + "id": "poudres-a-lever", + "text": "poudres à lever", + "rank": 7 + }, + { + "id": "carbonates-de-sodium-et-carbonates-d-ammonium", + "rank": 8, + "text": "carbonates de sodium et carbonates d'ammonium" + }, + { + "id": "lait-entier-en-poudre", + "text": "_lait_ entier en poudre", + "rank": 9 + }, + { + "rank": 10, + "text": "_œuf_", + "id": "oeuf" + }, + { + "text": "en poudre", + "rank": 11, + "id": "en-poudre" + }, + { + "rank": 12, + "text": "sel de cuisine", + "id": "sel-de-cuisine" + }, + { + "text": "_lait_ écrémé en poudre", + "rank": 13, + "id": "lait-ecreme-en-poudre" + }, + { + "id": "pate-de-cacao", + "rank": 14, + "text": "pâte de cacao" + }, + { + "text": "jus de citron", + "rank": 15, + "id": "jus-de-citron" + }, + { + "rank": 16, + "text": "émulsifiant", + "id": "emulsifiant" + }, + { + "text": "lécithine de soja", + "rank": 17, + "id": "lecithine-de-soja" + }, + { + "text": "zeste de citron", + "rank": 18, + "id": "zeste-de-citron" + }, + { + "rank": 19, + "text": "avec arôme naturel", + "id": "avec-arome-naturel" + }, + { + "id": "extrait-de-vanille", + "rank": 20, + "text": "extrait de vanille" + } + ], + "packaging_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "additives_old_tags": [ + "en:e502", + "en:e500", + "en:e1403", + "en:e322" + ], + "allergens_from_ingredients": "froment, noisettes, beurre, œufs, lait, œuf, lait", + "languages_hierarchy": [ + "en:german", + "en:french" + ], + "expiration_date": "20/09/2018", + "stores": "", + "product_name_de": "Nuss-Härzli", + "ingredients_text_de": "Weizenmehl, Zucker, Haselnüsse 17 %, Butter 13 %, Eier*, Milchschokolade (Vollmilchpulver, Emulgator: Sojalecithin, Vanilleextrakt), Eipulver*, Kochsalz, Backtriebmittel: Ammoniumcarbonate, Magermilchpulver, Zitronensaft, Zitronenschalen (mit natürlichem Aroma).\r\n*Eier aus Bodenhaltung.\r\nKann Spuren von Mandeln enthalten.", + "creator": "openfood-ch-import", + "emb_codes_debug_tags": [], + "amino_acids_prev_tags": [], + "ingredients_text_with_allergens_de": "Weizenmehl, Zucker, Haselnüsse 17 %, Butter 13 %, Eier*, Milchschokolade (Vollmilchpulver, Emulgator: Sojalecithin, Vanilleextrakt), Eipulver*, Kochsalz, Backtriebmittel: Ammoniumcarbonate, Magermilchpulver, Zitronensaft, Zitronenschalen (mit natürlichem Aroma).\r\n*Eier aus Bodenhaltung.\r\nKann Spuren von Mandeln enthalten.", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.100.jpg", + "interface_version_modified": "20120622", + "packaging": "sachet,plastique,carton", + "vitamins_prev_tags": [], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "product_name_fr": "Cœurs Noisettes", + "ingredients_text_de_debug_tags": [], + "brands": "HUG", + "generic_name": "Nuss-Härzli", + "interface_version_created": "import_openfood_ch.pl - version 2017/02/06", + "labels_prev_hierarchy": [ + "fr:Fabriqué en Suisse" + ], + "ingredients_text_with_allergens": "Farine de froment, sucre, noisettes 17 %, beurre 13 %, œufs, beurre de cacao, poudres à lever : carbonates de sodium et carbonates d'ammonium, lait entier en poudre, œuf, en poudre, sel de cuisine, lait écrémé en poudre, pâte de cacao, jus de citron, émulsifiant: lécithine de soja, zeste de citron (avec arôme naturel), extrait de vanille.", + "entry_dates_tags": [ + "2017-02-07", + "2017-02", + "2017" + ], + "generic_name_fr": "Nuss-Härzli", + "url": "https://fr-en.openfoodfacts.org/product/7610032066054/coeurs-noisettes-hug", + "categories_debug_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "countries_tags": [ + "en:france", + "en:switzerland" + ], + "labels_debug_tags": [ + "added-en-made-in-swiss", + "removed-fr-fabrique-en-suisse" + ], + "unknown_nutrients_tags": [], + "traces_hierarchy": [ + "en:nuts" + ], + "traces_from_ingredients": "", + "serving_quantity": 0, + "nutrition_grade_fr": "d", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.100.jpg", + "ingredients_n_tags": [ + "20", + "11-20" + ], + "labels_hierarchy": [ + "en:made-in-swiss" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "countries": "France,Suisse", + "nutrition_data_prepared_per": "100g", + "nucleotides_prev_tags": [], + "quantity": "200 g e", + "labels": "Fabriqué en Suisse", + "emb_codes": "", + "traces_tags": [ + "en:nuts" + ], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _froment_, sucre, _noisettes_ 17 %, _beurre_ 13 %, _œufs_, beurre de cacao, poudres à lever : carbonates de sodium et carbonates d'ammonium, _lait_ entier en poudre, _œuf_, en poudre, sel de cuisine, _lait_ écrémé en poudre, pâte de cacao, jus de citron, émulsifiant: lécithine de soja, zeste de citron (avec arôme naturel), extrait de vanille.", + "stores_debug_tags": [], + "additives_debug_tags": [ + "en-e322i-added" + ], + "labels_prev_tags": [ + "fr:fabrique-en-suisse" + ], + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.400.jpg", + "allergens": "Œufs,Gluten,Lait,Fruits à coque", + "quantity_debug_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.200.jpg", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.200.jpg", + "debug_param_sorted_langs": [ + "fr", + "de" + ], + "product_quantity": 200, + "manufacturing_places": "Suisse", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/nutrition_fr.16.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/front_fr.10.200.jpg", + "ingredients_text": "Farine de _froment_, sucre, _noisettes_ 17 %, _beurre_ 13 %, _œufs_, beurre de cacao, poudres à lever : carbonates de sodium et carbonates d'ammonium, _lait_ entier en poudre, _œuf_, en poudre, sel de cuisine, _lait_ écrémé en poudre, pâte de cacao, jus de citron, émulsifiant: lécithine de soja, zeste de citron (avec arôme naturel), extrait de vanille.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "images": { + "1": { + "uploader": "openfood-ch-import", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "uploaded_t": 1486495528 + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486495528 + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 1000, + "w": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486495528 + }, + "4": { + "uploaded_t": 1532347831, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 66, + "h": 100 + }, + "400": { + "w": 262, + "h": 400 + }, + "full": { + "w": 786, + "h": 1200 + } + } + }, + "5": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 38, + "h": 100 + }, + "400": { + "w": 151, + "h": 400 + }, + "full": { + "h": 1200, + "w": 452 + } + }, + "uploaded_t": 1532347846 + }, + "6": { + "sizes": { + "100": { + "h": 55, + "w": 100 + }, + "400": { + "w": 400, + "h": 218 + }, + "full": { + "w": 2050, + "h": 1119 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532347854 + }, + "front_fr": { + "angle": null, + "rev": "10", + "imgid": "4", + "y2": null, + "x1": null, + "x2": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "66" + }, + "200": { + "h": 200, + "w": 131 + }, + "400": { + "h": 400, + "w": 262 + }, + "full": { + "h": 1200, + "w": 786 + } + }, + "white_magic": "0", + "normalize": "0", + "geometry": "0x0-0-0" + }, + "nutrition_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "h": 55, + "w": 100 + }, + "200": { + "h": 109, + "w": 200 + }, + "400": { + "w": 400, + "h": 218 + }, + "full": { + "h": 1119, + "w": 2050 + } + }, + "x2": null, + "y1": null, + "x1": null, + "y2": null, + "imgid": "6", + "rev": "16", + "angle": null + }, + "ingredients_fr": { + "y1": "0", + "x2": "0", + "x1": "0", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 38 + }, + "200": { + "h": 75, + "w": 200 + }, + "400": { + "h": 151, + "w": 400 + }, + "full": { + "h": 452, + "w": 1200 + } + }, + "geometry": "0x0-0-0", + "angle": "90", + "imgid": "5", + "rev": "17", + "y2": "0" + } + }, + "lc": "fr", + "last_modified_by": "beniben", + "product_name_de_debug_tags": [], + "countries_debug_tags": [], + "traces": "Fruits à coque", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/761/003/206/6054/ingredients_fr.17.400.jpg", + "ingredients_ids_debug": [ + "farine-de-froment", + "sucre", + "noisettes-17", + "beurre-13", + "oeufs", + "beurre-de-cacao", + "poudres-a-lever", + "carbonates-de-sodium-et-carbonates-d-ammonium", + "lait-entier-en-poudre", + "oeuf", + "en-poudre", + "sel-de-cuisine", + "lait-ecreme-en-poudre", + "pate-de-cacao", + "jus-de-citron", + "emulsifiant", + "lecithine-de-soja", + "zeste-de-citron", + "avec-arome-naturel", + "extrait-de-vanille" + ], + "additives_prev_original_tags": [ + "en:e500", + "en:e322" + ], + "ingredients_hierarchy": [ + "fr:farine-de-froment", + "en:sugar", + "fr:noisette", + "fr:beurre", + "fr:oeuf", + "fr:beurre-de-cacao", + "fr:poudre-a-lever", + "fr:carbonates-de-sodium-et-carbonates-d-ammonium", + "fr:lait-entier-en-poudre", + "fr:oeuf", + "fr:en-poudre", + "fr:sel-de-cuisine", + "fr:lait-ecreme-en-poudre", + "fr:pate-de-cacao", + "fr:jus-de-citron", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:zeste-de-citron", + "fr:avec-arome-naturel", + "fr:extrait-de-vanille" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits secs", + "nutrition_data_prepared": "", + "stores_tags": [], + "sources": [ + { + "id": "openfood-ch", + "images": [ + "1", + "2", + "3" + ], + "import_t": 1486495528, + "fields": [ + "product_name_fr", + "brands", + "countries", + "ingredients_text_fr", + "ingredients_text_de", + "nutrients.energy", + "nutrients.fat", + "nutrients.saturated-fat", + "nutrients.carbohydrates", + "nutrients.sugars", + "nutrients.fiber", + "nutrients.proteins", + "nutrients.salt" + ], + "url": "https://www.openfood.ch/en/products/2684" + } + ], + "minerals_prev_tags": [], + "no_nutrition_data": "", + "cities_tags": [] + }, + { + "manufacturing_places_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 2, + "packaging_tags": [ + "sachet", + "plastique" + ], + "photographers_tags": [ + "kiliweb" + ], + "allergens_debug_tags": [], + "link": "", + "nutrition_data_per": "100g", + "nutrition_grades_tags": [ + "e" + ], + "id": "8906033745050", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.100.jpg", + "link_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 5 + sat-fat 7 + fr-sat-fat-for-fats 6 + sugars 5 + sodium 3 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 20 -- fr 20", + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "informers_tags": [ + "kiliweb", + "beniben" + ], + "nutriments": { + "salt_100g": 0.762, + "energy": 1962, + "nutrition-score-fr": 20, + "monounsaturated-fat_100g": 6.2, + "monounsaturated-fat_serving": 0.471, + "sugars_serving": 1.89, + "calcium_label": "Calcium", + "polyunsaturated-fat_value": "1.8", + "energy_value": "469", + "energy_serving": 149, + "salt_serving": 0.0579, + "sugars_100g": 24.9, + "calcium_100g": 0.5, + "sodium_unit": "mg", + "carbohydrates_value": "68.9", + "saturated-fat_serving": 0.608, + "polyunsaturated-fat_100g": 1.8, + "sodium": 0.3, + "proteins_serving": 0.585, + "sugars_unit": "g", + "fat_100g": 18.2, + "monounsaturated-fat_unit": "g", + "polyunsaturated-fat": 1.8, + "nutrition-score-uk": 20, + "energy_100g": 1962, + "carbohydrates_unit": "g", + "monounsaturated-fat": 6.2, + "salt_value": "762", + "monounsaturated-fat_value": "6.2", + "sodium_value": "300", + "nutrition-score-uk_100g": 20, + "fat_value": "18.2", + "proteins": 7.7, + "carbohydrates": 68.9, + "fat": 18.2, + "calcium_serving": 0.038, + "carbohydrates_100g": 68.9, + "saturated-fat_unit": "g", + "fat_unit": "g", + "sodium_100g": 0.3, + "nutrition-score-fr_100g": 20, + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "saturated-fat_value": "8", + "polyunsaturated-fat_serving": 0.137, + "calcium_unit": "mg", + "proteins_unit": "g", + "carbohydrates_serving": 5.24, + "sodium_serving": 0.0228, + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "polyunsaturated-fat_unit": "g", + "calcium_value": "500", + "proteins_100g": 7.7, + "sugars": 24.9, + "saturated-fat": 8, + "saturated-fat_100g": 8, + "sugars_value": "24.9", + "salt_unit": "mg", + "energy_unit": "kcal", + "salt": 0.762, + "fat_serving": 1.38, + "proteins_value": "7.7", + "calcium": 0.5 + }, + "vitamins_tags": [], + "additives_prev_tags": [ + "en:e170", + "en:e223", + "en:e319", + "en:e322", + "en:e450i", + "en:e471", + "en:e500", + "en:e503" + ], + "serving_size": "Un biscuit 7,6 g", + "max_imgid": "3", + "ingredients_text_debug": "Farine de _froment_, sucre, huile végétale (palme (antioxydant : - e319 - )), _beurre_ 3 %, sirop de sucre partiellement inverti, fécule de maïs, poudres à lever : (bicarbonate d'ammonium, bicarbonate de sodium, pyrophosphate acide de sodium,), carbonate de calcium (1 %), lait écrémé en poudre, sel, monostéarate de glycérol, lécithine de _soja_), arômes artificiels (_beurre_, vanille), antioxydant : (métabisulfite de sodium).", + "origins_debug_tags": [], + "ingredients_n": 22, + "additives_prev_n": 8, + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "high", + "sugars": "high", + "fat": "moderate" + }, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.100.jpg", + "additives_original_tags": [ + "en:e319", + "en:e503", + "en:e500ii", + "en:e450i", + "en:e471", + "en:e322i", + "en:e223" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "_id": "8906033745050", + "countries_hierarchy": [ + "en:france", + "en:india" + ], + "emb_codes_orig": "", + "languages_codes": { + "fr": 5 + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.200.jpg", + "allergens_tags": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [ + "en:vegetarian", + "de:reich-an-kalzium", + "en:green-dot-india" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 5 + }, + "purchase_places_tags": [ + "inde" + ], + "last_editor": "beniben", + "manufacturing_places_debug_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.400.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "codes_tags": [ + "code-13", + 8906033745050, + "890603374505x", + "89060337450xx", + "8906033745xxx", + "890603374xxxx", + "89060337xxxxx", + "8906033xxxxxx", + "890603xxxxxxx", + "89060xxxxxxxx", + "8906xxxxxxxxx", + "890xxxxxxxxxx", + "89xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "last_image_t": 1532383739, + "rev": 14, + "brands_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_that_may_be_from_palm_oil_tags": [ + "monostearate-de-glycerol" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:biscuits-sables" + ], + "purchase_places_debug_tags": [], + "sortkey": 1532409411, + "origins": "", + "ingredients_debug": [ + "Farine de _froment_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huile végétale ", + "(", + "(", + null, + null, + "palme ", + "(", + "(", + null, + null, + "antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e319", + " - ", + " - ", + " - ", + null, + "))", + ",", + null, + null, + null, + " _beurre_ 3 %", + ",", + null, + null, + null, + " sirop de sucre partiellement inverti", + ",", + null, + null, + null, + " fécule de maïs", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "bicarbonate d'ammonium", + ",", + null, + null, + null, + " bicarbonate de sodium", + ",", + null, + null, + null, + " pyrophosphate acide de sodium", + ",", + null, + null, + null, + ")", + ",", + null, + null, + null, + " carbonate de calcium ", + "(", + "(", + null, + null, + "1 %)", + ",", + null, + null, + null, + " lait écrémé en poudre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " monostéarate de glycérol", + ",", + null, + null, + null, + " lécithine de _soja_)", + ",", + null, + null, + null, + " arômes artificiels ", + "(", + "(", + null, + null, + "_beurre_", + ",", + null, + null, + null, + " vanille)", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "métabisulfite de sodium)." + ], + "completed_t": 1532409411, + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "additives_tags": [ + "en:e223", + "en:e319", + "en:e322", + "en:e322i", + "en:e450", + "en:e450i", + "en:e471", + "en:e500", + "en:e500ii", + "en:e503" + ], + "purchase_places": "Inde", + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 7, + "image_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.400.jpg", + "ingredients_text_with_allergens_fr": "Farine de froment, sucre, huile végétale (palme (antioxydant E319)), beurre 3 %, sirop de sucre partiellement inverti, fécule de maïs, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium, pyrophosphate acide de sodium,), carbonate de calcium (1 %), lait écrémé en poudre, sel, monostéarate de glycérol, lécithine de soja), arômes artificiels (beurre, vanille), antioxydant (métabisulfite de sodium).", + "serving_size_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:biscuits-sables" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "quality_tags": [], + "brands_tags": [ + "mcvities" + ], + "lang": "fr", + "additives_n": 7, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 6, + "product_name": "Butter Cookie", + "ingredients_tags": [ + "fr:farine-de-froment", + "en:sugar", + "fr:huile-vegetale", + "fr:beurre", + "fr:sirop-de-sucre-partiellement-inverti", + "fr:fecule-de-mais", + "fr:poudre-a-lever", + "fr:carbonate-de-calcium", + "fr:lait-ecreme-en-poudre", + "en:salt", + "fr:monostearate-de-glycerol", + "fr:lecithine-de-soja", + "fr:aromes-artificiels", + "fr:antioxydant", + "fr:metabisulfite-de-sodium", + "fr:palme", + "fr:antioxydant-e319", + "fr:bicarbonate-d-ammonium", + "fr:bicarbonate-de-sodium", + "fr:pyrophosphate-acide-de-sodium", + "fr:beurre", + "fr:vanille" + ], + "nutrition_data_per_debug_tags": [], + "traces_debug_tags": [], + "_keywords": [ + "biscuit", + "en", + "mcvitie", + "butter", + "cookie", + "green", + "calcium", + "dot", + "sable", + "riche", + "india" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_grades": "e", + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "8906033745050", + "additives_old_tags": [ + "en:e319", + "en:e503", + "en:e500", + "en:e450-i", + "en:e170", + "en:e322", + "en:e223" + ], + "allergens_from_ingredients": "froment, beurre, soja, beurre", + "languages_hierarchy": [ + "en:french" + ], + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 1, + "ingredients": [ + { + "id": "farine-de-froment", + "text": "Farine de _froment_", + "rank": 1 + }, + { + "id": "sucre", + "text": "sucre", + "rank": 2 + }, + { + "rank": 3, + "text": "huile végétale", + "id": "huile-vegetale" + }, + { + "id": "beurre", + "percent": "3", + "text": "_beurre_", + "rank": 4 + }, + { + "id": "sirop-de-sucre-partiellement-inverti", + "text": "sirop de sucre partiellement inverti", + "rank": 5 + }, + { + "rank": 6, + "text": "fécule de maïs", + "id": "fecule-de-mais" + }, + { + "rank": 7, + "text": "poudres à lever", + "id": "poudres-a-lever" + }, + { + "percent": "1", + "id": "carbonate-de-calcium", + "rank": 8, + "text": "carbonate de calcium" + }, + { + "text": "lait écrémé en poudre", + "rank": 9, + "id": "lait-ecreme-en-poudre" + }, + { + "rank": 10, + "text": "sel", + "id": "sel" + }, + { + "text": "monostéarate de glycérol", + "rank": 11, + "id": "monostearate-de-glycerol" + }, + { + "text": "lécithine de _soja_", + "rank": 12, + "id": "lecithine-de-soja" + }, + { + "rank": 13, + "text": "arômes artificiels", + "id": "aromes-artificiels" + }, + { + "id": "antioxydant", + "rank": 14, + "text": "antioxydant" + }, + { + "id": "metabisulfite-de-sodium", + "rank": 15, + "text": "métabisulfite de sodium" + }, + { + "text": "palme", + "id": "palme" + }, + { + "id": "antioxydant-e319", + "text": "antioxydant E319" + }, + { + "text": "bicarbonate d'ammonium", + "id": "bicarbonate-d-ammonium" + }, + { + "text": "bicarbonate de sodium", + "id": "bicarbonate-de-sodium" + }, + { + "text": "pyrophosphate acide de sodium", + "id": "pyrophosphate-acide-de-sodium" + }, + { + "text": "_beurre_", + "id": "beurre" + }, + { + "text": "vanille", + "id": "vanille" + } + ], + "created_t": 1532383727, + "last_modified_t": 1532409411, + "nutrition_data": "on", + "interface_version_modified": "20120622", + "packaging": "sachet,plastique", + "vitamins_prev_tags": [], + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:shortbread-cookies" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "stores": "", + "expiration_date": "20/03/2019", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [ + "en:calcium-carbonate" + ], + "categories_debug_tags": [ + "added-fr-biscuits-sables", + "removed-en-shortbread-cookies" + ], + "generic_name_fr": "", + "entry_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "url": "https://fr-en.openfoodfacts.org/product/8906033745050/butter-cookie-mcvities", + "labels_prev_hierarchy": [ + "en:vegetarian", + "en:green-dot-india", + "fr:Riche en calcium" + ], + "ingredients_text_with_allergens": "Farine de froment, sucre, huile végétale (palme (antioxydant E319)), beurre 3 %, sirop de sucre partiellement inverti, fécule de maïs, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium, pyrophosphate acide de sodium,), carbonate de calcium (1 %), lait écrémé en poudre, sel, monostéarate de glycérol, lécithine de soja), arômes artificiels (beurre, vanille), antioxydant (métabisulfite de sodium).", + "interface_version_created": "20150316.jqm2", + "brands": "McVities", + "generic_name": "", + "product_name_fr": "Butter Cookie", + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "complete": 1, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:shortbread-cookies" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.100.jpg", + "nutrition_grade_fr": "e", + "ingredients_n_tags": [ + "22", + "21-30" + ], + "ingredients_that_may_be_from_palm_oil_n": 1, + "labels_hierarchy": [ + "en:vegetarian", + "de:reich-an-kalzium", + "en:green-dot-india" + ], + "traces_from_ingredients": "", + "serving_quantity": 7.6, + "traces_hierarchy": [ + "en:nuts" + ], + "labels_debug_tags": [ + "added-de-reich-an-kalzium", + "removed-fr-riche-en-calcium" + ], + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france", + "en:india" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.400.jpg", + "quantity_debug_tags": [], + "allergens": "", + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [ + "en-e322i-added", + "en-e450-added", + "en-e500ii-added", + "en-e170-removed" + ], + "labels_prev_tags": [ + "en:vegetarian", + "en:green-dot-india", + "fr:riche-en-calcium" + ], + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _froment_, sucre, huile végétale (palme (antioxydant E319)), _beurre_ 3 %, sirop de sucre partiellement inverti, fécule de maïs, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium, pyrophosphate acide de sodium,), carbonate de calcium (1 %), lait écrémé en poudre, sel, monostéarate de glycérol, lécithine de _soja_), arômes artificiels (_beurre_, vanille), antioxydant (métabisulfite de sodium).", + "labels": "Riche en calcium,en:Green Dot India", + "emb_codes": "", + "traces_tags": [ + "en:nuts" + ], + "nucleotides_prev_tags": [], + "quantity": "68 g", + "countries": "France,Inde", + "nutrition_data_prepared_per": "100g", + "lc": "fr", + "images": { + "1": { + "sizes": { + "100": { + "h": 60, + "w": 100 + }, + "400": { + "h": 240, + "w": 400 + }, + "full": { + "w": 1995, + "h": 1198 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532383730 + }, + "2": { + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "400": { + "w": 400, + "h": 178 + }, + "full": { + "h": 995, + "w": 2241 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532383735 + }, + "3": { + "sizes": { + "100": { + "h": 88, + "w": 100 + }, + "400": { + "h": 353, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1360 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532383739 + }, + "nutrition_fr": { + "y1": "0", + "x2": "0", + "x1": "0", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 88 + }, + "200": { + "h": 176, + "w": 200 + }, + "400": { + "h": 353, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1360 + } + }, + "geometry": "0x0-0-0", + "angle": "0", + "imgid": "3", + "rev": "13", + "y2": "0" + }, + "front_fr": { + "angle": null, + "rev": "4", + "imgid": "1", + "y2": null, + "x1": null, + "x2": null, + "y1": null, + "sizes": { + "100": { + "w": "100", + "h": "60" + }, + "200": { + "h": 120, + "w": 200 + }, + "400": { + "h": 240, + "w": 400 + }, + "full": { + "h": 1198, + "w": 1995 + } + }, + "white_magic": "0", + "normalize": "0", + "geometry": "0x0-0-0" + }, + "ingredients_fr": { + "rev": "11", + "imgid": "2", + "angle": "0", + "y2": "160.421875", + "x1": "7.57421875", + "y1": "77.26171875", + "x2": "400", + "geometry": "2199x465-42-431", + "sizes": { + "100": { + "w": 100, + "h": 21 + }, + "200": { + "h": 42, + "w": 200 + }, + "400": { + "w": 400, + "h": 85 + }, + "full": { + "h": 465, + "w": 2199 + } + }, + "white_magic": "false", + "normalize": "false" + } + }, + "last_modified_by": "beniben", + "ingredients_text": "Farine de _froment_, sucre, huile végétale (palme (antioxydant E319)), _beurre_ 3 %, sirop de sucre partiellement inverti, fécule de maïs, poudres à lever (bicarbonate d'ammonium, bicarbonate de sodium, pyrophosphate acide de sodium,), carbonate de calcium (1 %), lait écrémé en poudre, sel, monostéarate de glycérol, lécithine de _soja_), arômes artificiels (_beurre_, vanille), antioxydant (métabisulfite de sodium).", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/nutrition_fr.13.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.200.jpg", + "product_quantity": 68, + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/front_fr.4.200.jpg", + "cities_tags": [], + "no_nutrition_data": "", + "minerals_prev_tags": [], + "nutrition_data_prepared": "", + "categories": "Biscuits sablés", + "stores_tags": [], + "ingredients_hierarchy": [ + "fr:farine-de-froment", + "en:sugar", + "fr:huile-vegetale", + "fr:beurre", + "fr:sirop-de-sucre-partiellement-inverti", + "fr:fecule-de-mais", + "fr:poudre-a-lever", + "fr:carbonate-de-calcium", + "fr:lait-ecreme-en-poudre", + "en:salt", + "fr:monostearate-de-glycerol", + "fr:lecithine-de-soja", + "fr:aromes-artificiels", + "fr:antioxydant", + "fr:metabisulfite-de-sodium", + "fr:palme", + "fr:antioxydant-e319", + "fr:bicarbonate-d-ammonium", + "fr:bicarbonate-de-sodium", + "fr:pyrophosphate-acide-de-sodium", + "fr:beurre", + "fr:vanille" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/890/603/374/5050/ingredients_fr.11.400.jpg", + "ingredients_ids_debug": [ + "farine-de-froment", + "sucre", + "huile-vegetale", + "palme", + "antioxydant", + "e319", + "beurre-3", + "sirop-de-sucre-partiellement-inverti", + "fecule-de-mais", + "poudres-a-lever", + "bicarbonate-d-ammonium", + "bicarbonate-de-sodium", + "pyrophosphate-acide-de-sodium", + "carbonate-de-calcium", + "1", + "lait-ecreme-en-poudre", + "sel", + "monostearate-de-glycerol", + "lecithine-de-soja", + "aromes-artificiels", + "beurre", + "vanille", + "antioxydant", + "metabisulfite-de-sodium" + ], + "additives_prev_original_tags": [ + "en:e319", + "en:e503", + "en:e500", + "en:e450i", + "en:e170", + "en:e471", + "en:e322", + "en:e223" + ], + "traces": "Fruits à coque", + "countries_debug_tags": [] + }, + { + "product_name_fr_debug_tags": [], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.400.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.100.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "codes_tags": [ + "code-13", + "3256224375470", + "325622437547x", + "32562243754xx", + "3256224375xxx", + "325622437xxxx", + "32562243xxxxx", + "3256224xxxxxx", + "325622xxxxxxx", + "32562xxxxxxxx", + "3256xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "purchase_places_tags": [], + "last_editor": null, + "languages": { + "en:french": 5 + }, + "lang_debug_tags": [], + "last_image_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "labels_tags": [ + "de:ohne-palmol", + "en:transformed-in-france", + "fr:farine-de-ble-francais", + "fr:ble-issu-d-une-culture-maitrisee" + ], + "languages_codes": { + "fr": 5 + }, + "allergens_tags": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.200.jpg", + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:Biscuits du petit déjeuner" + ], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "ingredients-fr-4-consonants", + "detected-category-from-brand-en-cigarettes" + ], + "additives_old_n": 6, + "ingredients_text_fr_debug_tags": [], + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "Céréales 61% [farine de BLE (France), flflocons d'AVOINE,\nfarine complète de BLE, farine de SEIGLE, farine d'ORGE],\nsucre, pépites de chocolat 13% (sucre, pâte de cacao,\nbeurre de cacao, émulsifiant : lécithines de SOJA, arôme),\nhuile de tournesol, amidon de BLE, poudres à lever :\ndiphosphates - carbonates de sodium - carbonates\nd'ammonium, arômes, LAIT écrémé en poudre, LAIT entier\nen poudre (équivalent LAIT entier 6,2%), LACTOSERUM en poudre, concentré de minéraux du LAIT, sel, émulsififiant :E472e.\nCertains ingrédients de ce produit ne proviennent pas de\nFrance.\nTraces éventuelles d'oeufs et de fruits à coque.", + "image_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.400.jpg", + "ingredients_debug": [ + "Céréales 61% ", + "[", + "[", + null, + null, + "farine de BLE ", + "(", + "(", + null, + null, + "France)", + ",", + null, + null, + null, + " flflocons d'AVOINE", + ",", + null, + null, + null, + "\nfarine complète de BLE", + ",", + null, + null, + null, + " farine de SEIGLE", + ",", + null, + null, + null, + " farine d'ORGE]", + ",", + null, + null, + null, + "\nsucre", + ",", + null, + null, + null, + " pépites de chocolat 13% ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + "\nbeurre de cacao", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines de SOJA", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + "\nhuile de tournesol", + ",", + null, + null, + null, + " amidon de BLE", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " \ndiphosphates", + " - ", + " - ", + " - ", + null, + "carbonates de sodium", + " - ", + " - ", + " - ", + null, + "carbonates\nd'ammonium", + ",", + null, + null, + null, + " arômes", + ",", + null, + null, + null, + " LAIT écrémé en poudre", + ",", + null, + null, + null, + " LAIT entier\nen poudre ", + "(", + "(", + null, + null, + "équivalent LAIT entier 6", + ",", + null, + null, + null, + "2%)", + ",", + null, + null, + null, + " LACTOSERUM en poudre", + ",", + null, + null, + null, + " concentré de minéraux du LAIT", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " émulsififiant ", + ":", + ":", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e472e", + " - ", + " - ", + " - ", + null, + "", + ".\n", + null, + null, + null, + "Certains ingrédients de ce produit ne proviennent pas de\nFrance", + ".\n", + null, + null, + null, + "Traces éventuelles d'oeufs et de fruits à coque." + ], + "origins": "", + "purchase_places": "", + "additives_tags": [ + "en:e322", + "en:e450", + "en:e472e", + "en:e500", + "en:e503" + ], + "correctors_tags": [ + "tacite-mass-editor", + "systeme-u", + "tacite", + "openfoodfacts-contributors" + ], + "completed_t": 1525973250, + "rev": 15, + "last_image_t": 1532409145, + "sortkey": 1532409147, + "purchase_places_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [ + "e472e-ester-monoacethyltartrique-de-mono-et-diglycerides-d-acides-gras" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:biscuits-du-petit-dejeuner" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "brands_debug_tags": [], + "nutrition_facts_100g_fr_imported": "", + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "tacite-mass-editor", + "systeme-u", + "tacite" + ], + "nutriments": { + "sugars": "24", + "proteins_100g": 8.5, + "saturated-fat_100g": 3.5, + "saturated-fat": 3.5, + "fiber_serving": 2.25, + "sugars_value": "24", + "fat_serving": 8.5, + "proteins_value": "8.5", + "salt": 0.9, + "salt_unit": "g", + "energy_unit": "kcal", + "carbohydrates_serving": 34.2, + "sodium_serving": 0.177, + "fiber_value": "4.5", + "proteins_unit": "g", + "carbohydrates": 68.5, + "fat": "17", + "carbohydrates_100g": 68.5, + "saturated-fat_unit": "g", + "fat_unit": "g", + "nutrition-score-fr_100g": "12", + "sodium_100g": 0.354330708661417, + "saturated-fat_value": "3.5", + "sodium_value": "0.354330708661417", + "nutrition-score-uk_100g": "12", + "fat_value": "17", + "proteins": 8.5, + "nutrition-score-uk": "12", + "carbohydrates_unit": "g", + "energy_100g": "1966", + "salt_value": "0.9", + "fiber_unit": "g", + "carbohydrates_value": "68.5", + "fiber_100g": 4.5, + "saturated-fat_serving": 1.75, + "sodium": 0.354330708661417, + "proteins_serving": 4.25, + "fat_100g": "17", + "sugars_unit": "g", + "energy_serving": "983", + "energy_value": "470", + "fiber": 4.5, + "sugars_100g": "24", + "salt_serving": 0.45, + "sodium_unit": "g", + "energy": "1966", + "salt_100g": 0.9, + "nutrition-score-fr": "12", + "sugars_serving": "12" + }, + "informers_tags": [ + "kiliweb", + "systeme-u", + "tacite" + ], + "link_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.100.jpg", + "id": "3256224375470", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 5 + sat-fat 3 + fr-sat-fat-for-fats 2 + sugars 5 + sodium 3 - fruits 0% 0 - fiber 4 - proteins 5 -- fsa 12 -- fr 12", + "update_key": "20180706-categories", + "nutrition_data_per": "100g", + "link": "", + "nutrition_grades_tags": [ + "d" + ], + "manufacturing_places_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "photographers_tags": [ + "systeme-u", + "kiliweb" + ], + "packaging_tags": [ + "carton" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "_id": "3256224375470", + "additives_original_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503", + "en:e472e" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nutrient_levels": { + "sugars": "high", + "fat": "moderate", + "saturated-fat": "moderate", + "salt": "moderate" + }, + "ingredients_n": "32", + "origins_debug_tags": [], + "additives_prev_n": 5, + "ingredients_text_debug": "Céréales 61% [farine de BLE (France), flflocons d'AVOINE,\nfarine complète de BLE, farine de SEIGLE, farine d'ORGE],\nsucre, pépites de chocolat 13% (sucre, pâte de cacao,\nbeurre de cacao, émulsifiant : lécithines de SOJA, arôme),\nhuile de tournesol, amidon de BLE, poudres à lever : \ndiphosphates - carbonates de sodium - carbonates\nd'ammonium, arômes, LAIT écrémé en poudre, LAIT entier\nen poudre (équivalent LAIT entier 6,2%), LACTOSERUM en poudre, concentré de minéraux du LAIT, sel, émulsififiant : - e472e - .\nCertains ingrédients de ce produit ne proviennent pas de\nFrance.\nTraces éventuelles d'oeufs et de fruits à coque.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.100.jpg", + "allergens_hierarchy": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "nucleotides_tags": [], + "serving_size": "50 g", + "additives_prev_tags": [ + "en:e322", + "en:e450", + "en:e472e", + "en:e500", + "en:e503" + ], + "vitamins_tags": [], + "max_imgid": "5", + "traces_tags": [ + "en:eggs", + "en:nuts" + ], + "labels": "Sans huile de palme,Transformé en France,Farine de blé français,Blé issu d'une culture maitrisée", + "emb_codes": "", + "ingredients_text_fr": "Céréales 61% [farine de BLE (France), flflocons d'AVOINE,\nfarine complète de BLE, farine de SEIGLE, farine d'ORGE],\nsucre, pépites de chocolat 13% (sucre, pâte de cacao,\nbeurre de cacao, émulsifiant : lécithines de SOJA, arôme),\nhuile de tournesol, amidon de BLE, poudres à lever :\ndiphosphates - carbonates de sodium - carbonates\nd'ammonium, arômes, LAIT écrémé en poudre, LAIT entier\nen poudre (équivalent LAIT entier 6,2%), LACTOSERUM en poudre, concentré de minéraux du LAIT, sel, émulsififiant :E472e.\nCertains ingrédients de ce produit ne proviennent pas de\nFrance.\nTraces éventuelles d'oeufs et de fruits à coque.", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "nutrition_data_prepared_per": "100g", + "countries": "France", + "quantity": "400 g", + "nucleotides_prev_tags": [], + "allergens": "BLE, AVOINE, BLE, SEIGLE, ORGE, SOJA, BLE, LAIT, LAIT, LAIT, LACTOSERUM, LAIT, BLE, AVOINE, BLE, SEIGLE, ORGE, SOJA, BLE, LAIT, LAIT, LAIT, LACTOSERUM, LAIT", + "quantity_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.400.jpg", + "labels_prev_tags": [ + "en:palm-oil-free", + "fr:ble-issu-d-une-culture-maitrisee", + "fr:farine-de-ble-francais", + "fr:transforme-en-france" + ], + "additives_debug_tags": [], + "stores_debug_tags": [], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "labels_debug_tags": [ + "added-de-ohne-palmol", + "added-en-transformed-in-france", + "removed-en-palm-oil-free", + "removed-fr-transforme-en-france" + ], + "unknown_nutrients_tags": [], + "traces_hierarchy": [ + "en:eggs", + "en:nuts" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:biscuits-du-petit-dejeuner" + ], + "serving_quantity": 50, + "ingredients_that_may_be_from_palm_oil_n": 1, + "labels_hierarchy": [ + "de:ohne-palmol", + "en:transformed-in-france", + "fr:farine-de-ble-francais", + "fr:Blé issu d'une culture maitrisée" + ], + "nutrition_grade_fr": "d", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.100.jpg", + "ingredients_n_tags": [ + "32", + "31-40" + ], + "additives_prev_original_tags": [ + "en:e322", + "en:e450", + "en:e500", + "en:e503", + "en:e472e" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.400.jpg", + "ingredients_ids_debug": [ + "cereales-61", + "farine-de-ble", + "france", + "flflocons-d-avoine", + "farine-complete-de-ble", + "farine-de-seigle", + "farine-d-orge", + "sucre", + "pepites-de-chocolat-13", + "sucre", + "pate-de-cacao", + "beurre-de-cacao", + "emulsifiant", + "lecithines-de-soja", + "arome", + "huile-de-tournesol", + "amidon-de-ble", + "poudres-a-lever", + "diphosphates", + "carbonates-de-sodium", + "carbonates-d-ammonium", + "aromes", + "lait-ecreme-en-poudre", + "lait-entier-en-poudre", + "equivalent-lait-entier-6", + "2", + "lactoserum-en-poudre", + "concentre-de-mineraux-du-lait", + "sel", + "emulsififiant", + "e472e", + "certains-ingredients-de-ce-produit-ne-proviennent-pas-de-france", + "traces-eventuelles-d-oeufs-et-de-fruits-a-coque" + ], + "ingredients_hierarchy": [ + "fr:cereale", + "fr:farine-de-ble", + "fr:france", + "fr:flflocons-d-avoine", + "fr:farine-complete-de-ble", + "fr:farine-de-seigle", + "fr:farine-d-orge", + "en:sugar", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:arome", + "fr:huile-de-tournesol", + "fr:amidon-de-ble", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:carbonates-d-ammonium", + "fr:arome", + "fr:lait-ecreme-en-poudre", + "fr:lait-entier-en-poudre", + "fr:equivalent-lait-entier", + "fr:lactoserum-en-poudre", + "fr:concentre-de-mineraux-du-lait", + "en:salt", + "fr:emulsififiant", + "fr:e472e", + "fr:certains-ingredients-de-ce-produit-ne-proviennent-pas-de-france", + "fr:traces-eventuelles-d-oeufs-et-de-fruits-a-coque" + ], + "countries_debug_tags": [], + "traces": "oeuf,fruits à coque, oeufs, fruits à coque", + "minerals_prev_tags": [], + "no_nutrition_data": "", + "cities_tags": [], + "stores_tags": [ + "magasins-u" + ], + "nutrition_data_prepared": "", + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat, Biscuits du petit déjeuner", + "sources": [ + { + "import_t": 1523716861, + "id": "systemeu", + "name": "Systeme U", + "images": [], + "manufacturer": 1, + "url": "https://www.magasins-u.com/", + "fields": [ + "product_name_fr", + "quantity", + "categories", + "labels", + "ingredients_text_fr" + ] + }, + { + "import_t": 1529948701, + "images": [], + "name": "Systeme U", + "id": "systemeu", + "fields": [ + "categories", + "stores", + "ingredients_text_fr" + ], + "url": "https://www.magasins-u.com/", + "manufacturer": 1 + } + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/ingredients_fr.15.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.200.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Céréales 61% [farine de BLE (France), flflocons d'AVOINE,\nfarine complète de BLE, farine de SEIGLE, farine d'ORGE],\nsucre, pépites de chocolat 13% (sucre, pâte de cacao,\nbeurre de cacao, émulsifiant : lécithines de SOJA, arôme),\nhuile de tournesol, amidon de BLE, poudres à lever :\ndiphosphates - carbonates de sodium - carbonates\nd'ammonium, arômes, LAIT écrémé en poudre, LAIT entier\nen poudre (équivalent LAIT entier 6,2%), LACTOSERUM en poudre, concentré de minéraux du LAIT, sel, émulsififiant :E472e.\nCertains ingrédients de ce produit ne proviennent pas de\nFrance.\nTraces éventuelles d'oeufs et de fruits à coque.", + "last_modified_by": null, + "lc": "fr", + "images": { + "1": { + "uploader": "systeme-u", + "sizes": { + "100": { + "w": 59, + "h": 100 + }, + "400": { + "h": 400, + "w": 236 + }, + "full": { + "h": 856, + "w": 506 + } + }, + "uploaded_t": 1523716857 + }, + "2": { + "uploaded_t": 1523716859, + "sizes": { + "100": { + "h": 73, + "w": 100 + }, + "400": { + "w": 400, + "h": 291 + }, + "full": { + "h": 679, + "w": 934 + } + }, + "uploader": "systeme-u" + }, + "3": { + "uploaded_t": 1523716860, + "uploader": "systeme-u", + "sizes": { + "100": { + "w": 79, + "h": 100 + }, + "400": { + "w": 318, + "h": 400 + }, + "full": { + "w": 713, + "h": 897 + } + } + }, + "4": { + "uploaded_t": 1525525746, + "uploader": "systeme-u", + "sizes": { + "100": { + "w": 59, + "h": 100 + }, + "400": { + "h": 400, + "w": 236 + }, + "full": { + "h": 856, + "w": 506 + } + } + }, + "5": { + "uploaded_t": 1532409144, + "sizes": { + "100": { + "w": 100, + "h": 72 + }, + "400": { + "w": 400, + "h": 289 + }, + "full": { + "h": 1200, + "w": 1662 + } + }, + "uploader": "kiliweb" + }, + "front_fr": { + "y2": -1, + "angle": 0, + "imgid": "4", + "rev": "11", + "white_magic": null, + "normalize": null, + "sizes": { + "100": { + "h": "100", + "w": "59" + }, + "200": { + "h": 200, + "w": 118 + }, + "400": { + "w": 236, + "h": 400 + }, + "full": { + "w": 506, + "h": 856 + } + }, + "geometry": "0x0--2--2", + "x2": -1, + "y1": -1, + "x1": -1 + }, + "nutrition_fr": { + "geometry": "0x0--2--2", + "sizes": { + "100": { + "w": 79, + "h": 100 + }, + "200": { + "h": 200, + "w": 159 + }, + "400": { + "h": 400, + "w": 318 + }, + "full": { + "h": 897, + "w": 713 + } + }, + "normalize": null, + "white_magic": null, + "x1": -1, + "y1": -1, + "x2": -1, + "y2": -1, + "rev": "8", + "imgid": "3", + "angle": 0 + }, + "ingredients_fr": { + "angle": null, + "imgid": "5", + "rev": "15", + "y2": null, + "y1": null, + "x2": null, + "x1": null, + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "w": 100, + "h": 72 + }, + "200": { + "h": 144, + "w": 200 + }, + "400": { + "w": 400, + "h": 289 + }, + "full": { + "w": 1662, + "h": 1200 + } + }, + "geometry": "0x0-0-0" + } + }, + "product_quantity": 400, + "image_small_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.200.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/nutrition_fr.8.400.jpg", + "manufacturing_places": "", + "nutrition_data": "on", + "last_modified_t": 1532409147, + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e322", + "en:e450", + "en:e500", + "en:e503", + "en:e472e" + ], + "created_t": 1486506934, + "ingredients": [ + { + "rank": 1, + "text": "Céréales", + "id": "cereales", + "percent": "61" + }, + { + "id": "farine-de-ble", + "rank": 2, + "text": "farine de BLE" + }, + { + "id": "france", + "rank": 3, + "text": "France" + }, + { + "id": "flflocons-d-avoine", + "rank": 4, + "text": "flflocons d'AVOINE" + }, + { + "rank": 5, + "text": "farine complète de BLE", + "id": "farine-complete-de-ble" + }, + { + "id": "farine-de-seigle", + "text": "farine de SEIGLE", + "rank": 6 + }, + { + "rank": 7, + "text": "farine d'ORGE", + "id": "farine-d-orge" + }, + { + "id": "sucre", + "text": "sucre", + "rank": 8 + }, + { + "percent": "13", + "id": "pepites-de-chocolat", + "rank": 9, + "text": "pépites de chocolat" + }, + { + "id": "sucre", + "rank": 10, + "text": "sucre" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao", + "rank": 11 + }, + { + "rank": 12, + "text": "beurre de cacao", + "id": "beurre-de-cacao" + }, + { + "id": "emulsifiant", + "rank": 13, + "text": "émulsifiant" + }, + { + "text": "lécithines de SOJA", + "rank": 14, + "id": "lecithines-de-soja" + }, + { + "rank": 15, + "text": "arôme", + "id": "arome" + }, + { + "text": "huile de tournesol", + "rank": 16, + "id": "huile-de-tournesol" + }, + { + "text": "amidon de BLE", + "rank": 17, + "id": "amidon-de-ble" + }, + { + "rank": 18, + "text": "poudres à lever", + "id": "poudres-a-lever" + }, + { + "id": "diphosphates", + "rank": 19, + "text": "diphosphates" + }, + { + "rank": 20, + "text": "carbonates de sodium", + "id": "carbonates-de-sodium" + }, + { + "id": "carbonates-d-ammonium", + "rank": 21, + "text": "carbonates\nd'ammonium" + }, + { + "rank": 22, + "text": "arômes", + "id": "aromes" + }, + { + "id": "lait-ecreme-en-poudre", + "text": "LAIT écrémé en poudre", + "rank": 23 + }, + { + "text": "LAIT entier\nen poudre", + "rank": 24, + "id": "lait-entier-en-poudre" + }, + { + "text": "équivalent LAIT entier", + "rank": 25, + "percent": "6.2", + "id": "equivalent-lait-entier" + }, + { + "id": "lactoserum-en-poudre", + "rank": 26, + "text": "LACTOSERUM en poudre" + }, + { + "rank": 27, + "text": "concentré de minéraux du LAIT", + "id": "concentre-de-mineraux-du-lait" + }, + { + "text": "sel", + "rank": 28, + "id": "sel" + }, + { + "id": "emulsififiant", + "text": "émulsififiant", + "rank": 29 + }, + { + "id": "e472e", + "rank": 30, + "text": "E472e" + }, + { + "rank": 31, + "text": "Certains ingrédients de ce produit ne proviennent pas de\nFrance", + "id": "certains-ingredients-de-ce-produit-ne-proviennent-pas-de-france" + }, + { + "text": "Traces éventuelles d'oeufs et de fruits à coque", + "rank": 32, + "id": "traces-eventuelles-d-oeufs-et-de-fruits-a-coque" + } + ], + "nutrition_grades": "d", + "_keywords": [ + "dejeuner", + "francai", + "au", + "biscuit", + "et", + "en", + "transforme", + "palme", + "pepite", + "maitrisee", + "lait", + "une", + "huile", + "culture", + "petit", + "ble", + "issu", + "de", + "france", + "du", + "san", + "farine", + "chocolat", + "gateaux", + "sucre", + "tit", + "snack" + ], + "traces_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "3256224375470", + "nutrition_facts_serving_fr_imported": "", + "emb_codes_tags": [], + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 6, + "additives_n": 5, + "lang": "fr", + "brands_tags": [ + "u" + ], + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:cereale", + "fr:farine-de-ble", + "fr:france", + "fr:flflocons-d-avoine", + "fr:farine-complete-de-ble", + "fr:farine-de-seigle", + "fr:farine-d-orge", + "en:sugar", + "fr:pepites-de-chocolat", + "en:sugar", + "fr:pate-de-cacao", + "fr:beurre-de-cacao", + "fr:emulsifiant", + "fr:lecithine-de-soja", + "fr:arome", + "fr:huile-de-tournesol", + "fr:amidon-de-ble", + "fr:poudre-a-lever", + "fr:diphosphate", + "fr:carbonates-de-sodium", + "fr:carbonates-d-ammonium", + "fr:arome", + "fr:lait-ecreme-en-poudre", + "fr:lait-entier-en-poudre", + "fr:equivalent-lait-entier", + "fr:lactoserum-en-poudre", + "fr:concentre-de-mineraux-du-lait", + "en:salt", + "fr:emulsififiant", + "fr:e472e", + "fr:certains-ingredients-de-ce-produit-ne-proviennent-pas-de-france", + "fr:traces-eventuelles-d-oeufs-et-de-fruits-a-coque" + ], + "product_name": "P'tit déjeuner lait pépites de chocolat", + "product_name_fr": "P'tit déjeuner lait pépites de chocolat", + "generic_name": "", + "interface_version_created": "20150316.jqm2", + "brands": "U", + "complete": 1, + "ingredients_from_palm_oil_tags": [], + "categories_debug_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "labels_prev_hierarchy": [ + "en:palm-oil-free", + "fr:Blé issu d'une culture maitrisée", + "fr:Farine de blé français", + "fr:Transformé en France" + ], + "ingredients_text_with_allergens": "Céréales 61% [farine de BLE (France), flflocons d'AVOINE,\nfarine complète de BLE, farine de SEIGLE, farine d'ORGE],\nsucre, pépites de chocolat 13% (sucre, pâte de cacao,\nbeurre de cacao, émulsifiant : lécithines de SOJA, arôme),\nhuile de tournesol, amidon de BLE, poudres à lever :\ndiphosphates - carbonates de sodium - carbonates\nd'ammonium, arômes, LAIT écrémé en poudre, LAIT entier\nen poudre (équivalent LAIT entier 6,2%), LACTOSERUM en poudre, concentré de minéraux du LAIT, sel, émulsififiant :E472e.\nCertains ingrédients de ce produit ne proviennent pas de\nFrance.\nTraces éventuelles d'oeufs et de fruits à coque.", + "url": "https://fr-en.openfoodfacts.org/product/3256224375470/p-tit-dejeuner-lait-pepites-de-chocolat-u", + "entry_dates_tags": [ + "2017-02-07", + "2017-02", + "2017" + ], + "generic_name_fr": "", + "stores": "Magasins U", + "expiration_date": "", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/622/437/5470/front_fr.11.100.jpg", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "fr:Biscuits du petit déjeuner" + ], + "vitamins_prev_tags": [], + "packaging": "carton", + "interface_version_modified": "20120622", + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "amino_acids_prev_tags": [] + }, + { + "last_editor": "beniben", + "purchase_places_tags": [ + "france" + ], + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + 3760045460234, + "376004546023x", + "37600454602xx", + "3760045460xxx", + "376004546xxxx", + "37600454xxxxx", + "3760045xxxxxx", + "376004xxxxxxx", + "37600xxxxxxxx", + "3760xxxxxxxxx", + "376xxxxxxxxxx", + "37xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "manufacturing_places_debug_tags": [], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.100.jpg" + } + } + }, + "product_name_fr_debug_tags": [], + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "languages_codes": { + "fr": 4 + }, + "labels_tags": [ + "en:green-dot", + "en:pure-butter", + "fr:fabrication-artisanale" + ], + "last_image_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "lang_debug_tags": [], + "languages": { + "en:french": 4 + }, + "image_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.400.jpg", + "ingredients_text_with_allergens_fr": "Farine de blé, sucre, blanc d'œufs, beurre 19 %, miel de châtaignier 8 %.", + "serving_size_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 0, + "quality_tags": [ + "no-nutrition-data" + ], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:cat-tongue" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "brands_debug_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:cat-tongue" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "purchase_places_debug_tags": [], + "sortkey": 1532408944, + "last_image_t": 1532378915, + "rev": 9, + "completed_t": 1532408944, + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "additives_tags": [], + "purchase_places": "France", + "origins": "", + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " blanc d'_œufs_", + ",", + null, + null, + null, + " _beurre_ 19 %", + ",", + null, + null, + null, + " miel de châtaignier 8 %." + ], + "nutrition_score_debug": "missing energy", + "misc_tags": [ + "en:nutriscore-not-computed", + "en:nutrition-not-enough-data-to-compute-nutrition-score", + "en:nutrition-no-saturated-fat" + ], + "pnns_groups_1": "Sugary snacks", + "id": "3760045460234", + "link_debug_tags": [], + "informers_tags": [ + "kiliweb", + "beniben" + ], + "nutriments": {}, + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "packaging_tags": [ + "sachet", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "allergens_debug_tags": [], + "manufacturing_places_tags": [], + "nutrition_grades_tags": [ + "unknown" + ], + "link": "", + "nutrition_data_per": "100g", + "additives_original_tags": [], + "_id": "3760045460234", + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "max_imgid": "2", + "vitamins_tags": [], + "additives_prev_tags": [], + "serving_size": "", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.100.jpg", + "ingredients_text_debug": "Farine de _blé_, sucre, blanc d'_œufs_, _beurre_ 19 %, miel de châtaignier 8 %.", + "origins_debug_tags": [], + "ingredients_n": 5, + "additives_prev_n": 0, + "nutrient_levels": {}, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "stores_debug_tags": [], + "labels_prev_tags": [ + "en:green-dot", + "en:pure-butter", + "fr:fabrication-artisanale" + ], + "additives_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.400.jpg", + "allergens": "", + "quantity_debug_tags": [], + "quantity": "180 g", + "nucleotides_prev_tags": [], + "countries": "France", + "nutrition_data_prepared_per": "100g", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _blé_, sucre, blanc d'_œufs_, _beurre_ 19 %, miel de châtaignier 8 %.", + "labels": "Point Vert,Pur beurre,Fabrication artisanale", + "emb_codes": "", + "traces_tags": [ + "en:nuts" + ], + "ingredients_n_tags": [ + "5", + "1-10" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.100.jpg", + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [ + "en:green-dot", + "en:pure-butter", + "fr:fabrication-artisanale" + ], + "traces_from_ingredients": "", + "serving_quantity": 0, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:langues-de-chat" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "labels_debug_tags": [], + "traces_hierarchy": [ + "en:nuts" + ], + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france" + ], + "categories": "Langues de chat", + "nutrition_data_prepared": "", + "stores_tags": [], + "cities_tags": [], + "no_nutrition_data": "on", + "minerals_prev_tags": [], + "traces": "Fruits à coque", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "en:sugar", + "fr:blanc-d-oeuf", + "fr:beurre", + "fr:miel-de-chataignier" + ], + "additives_prev_original_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.400.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "sucre", + "blanc-d-oeufs", + "beurre-19", + "miel-de-chataignier-8" + ], + "manufacturing_places": "", + "image_small_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.200.jpg", + "product_quantity": 180, + "images": { + "1": { + "uploaded_t": 1532378912, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 71 + }, + "400": { + "h": 400, + "w": 284 + }, + "full": { + "h": 1200, + "w": 851 + } + } + }, + "2": { + "uploaded_t": 1532378915, + "sizes": { + "100": { + "h": 100, + "w": 90 + }, + "400": { + "w": 358, + "h": 400 + }, + "full": { + "w": 1074, + "h": 1200 + } + }, + "uploader": "kiliweb" + }, + "front_fr": { + "rev": "4", + "imgid": "1", + "angle": null, + "y2": null, + "x1": null, + "y1": null, + "x2": null, + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": "71", + "h": "100" + }, + "200": { + "w": 142, + "h": 200 + }, + "400": { + "h": 400, + "w": 284 + }, + "full": { + "w": 851, + "h": 1200 + } + }, + "normalize": "0", + "white_magic": "0" + }, + "ingredients_fr": { + "rev": "8", + "imgid": "2", + "angle": "0", + "y2": "291.43359375", + "x1": "28.20703125", + "x2": "350.28515625", + "y1": "256.33203125", + "geometry": "966x106-84-768", + "sizes": { + "100": { + "h": 11, + "w": 100 + }, + "200": { + "w": 200, + "h": 22 + }, + "400": { + "h": 44, + "w": 400 + }, + "full": { + "h": 106, + "w": 966 + } + }, + "white_magic": "false", + "normalize": "false" + } + }, + "lc": "fr", + "last_modified_by": "beniben", + "ingredients_text": "Farine de _blé_, sucre, blanc d'_œufs_, _beurre_ 19 %, miel de châtaignier 8 %.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/ingredients_fr.8.200.jpg", + "ingredients": [ + { + "id": "farine-de-ble", + "rank": 1, + "text": "Farine de _blé_" + }, + { + "rank": 2, + "text": "sucre", + "id": "sucre" + }, + { + "id": "blanc-d-oeufs", + "rank": 3, + "text": "blanc d'_œufs_" + }, + { + "text": "_beurre_", + "rank": 4, + "id": "beurre", + "percent": "19" + }, + { + "rank": 5, + "text": "miel de châtaignier", + "id": "miel-de-chataignier", + "percent": "8" + } + ], + "created_t": 1532378899, + "allergens_from_ingredients": "blé, œufs, beurre", + "additives_old_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "last_modified_t": 1532408944, + "nutrition_data": "", + "product_name": "Langues de Chat au Miel de Châtaignier", + "ingredients_tags": [ + "fr:farine-de-ble", + "en:sugar", + "fr:blanc-d-oeuf", + "fr:beurre", + "fr:miel-de-chataignier" + ], + "nutrition_data_per_debug_tags": [], + "brands_tags": [ + "les-chataignettes", + "biscuiterie-les-chataignettes" + ], + "lang": "fr", + "additives_n": 0, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 1, + "emb_codes_tags": [], + "code": "3760045460234", + "nutrient_levels_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "_keywords": [ + "chataignier", + "chataignette", + "de", + "le", + "fabrication", + "au", + "biscuiterie", + "point", + "chat", + "vert", + "pur", + "miel", + "beurre", + "artisanale", + "langue" + ], + "entry_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "generic_name_fr": "", + "url": "https://fr-en.openfoodfacts.org/product/3760045460234/langues-de-chat-au-miel-de-chataignier-les-chataignettes", + "ingredients_text_with_allergens": "Farine de blé, sucre, blanc d'œufs, beurre 19 %, miel de châtaignier 8 %.", + "labels_prev_hierarchy": [ + "en:green-dot", + "en:pure-butter", + "fr:Fabrication artisanale" + ], + "minerals_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "categories_debug_tags": [ + "added-en-cat-tongue", + "removed-fr-langues-de-chat" + ], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "interface_version_created": "20150316.jqm2", + "generic_name": "", + "brands": "Les Châtaignettes,Biscuiterie Les Châtaignettes", + "product_name_fr": "Langues de Chat au Miel de Châtaignier", + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "interface_version_modified": "20120622", + "packaging": "sachet,plastique", + "vitamins_prev_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:langues-de-chat" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/376/004/546/0234/front_fr.4.100.jpg", + "expiration_date": "20/09/2018", + "stores": "" + }, + { + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 9 + sugars 6 + sodium 3 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 25 -- fr 25", + "pnns_groups_1": "Sugary snacks", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.100.jpg", + "id": "3410280025322", + "link_debug_tags": [], + "ingredients_text_debug_tags": [], + "informers_tags": [ + "openfoodfacts-contributors", + "teolemon", + "kiliweb", + "beniben" + ], + "nutriments": { + "saturated-fat": 12.1, + "saturated-fat_100g": 12.1, + "proteins_100g": 7, + "sugars": 29, + "salt": 0.7, + "salt_unit": "", + "energy_unit": "kcal", + "fat_serving": 5.2, + "proteins_value": "7", + "sugars_value": "29", + "proteins_unit": "", + "carbohydrates_serving": 16.8, + "sodium_serving": 0.0689, + "saturated-fat_unit": "", + "carbohydrates_100g": 67, + "carbohydrates": 67, + "fat": 20.8, + "saturated-fat_value": "12.1", + "sodium_100g": 0.275590551181102, + "fat_unit": "", + "nutrition-score-fr_100g": 25, + "proteins": 7, + "nutrition-score-uk_100g": 25, + "fat_value": "20.8", + "nutrition-score-uk": 25, + "salt_value": "0.7", + "energy_100g": 2042, + "carbohydrates_unit": "", + "sodium": 0.275590551181102, + "carbohydrates_value": "67", + "saturated-fat_serving": 3.02, + "sugars_unit": "", + "fat_100g": 20.8, + "proteins_serving": 1.75, + "energy_value": "488", + "energy_serving": 511, + "sugars_100g": 29, + "salt_serving": 0.175, + "salt_100g": 0.7, + "energy": 2042, + "sugars_serving": 7.25, + "nutrition-score-fr": 25 + }, + "editors_tags": [ + "teolemon", + "openfoodfacts-contributors", + "beniben", + "kiliweb" + ], + "photographers_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "packaging_tags": [ + "etui-carton-a-recycler", + "sachets-plastiques-a-jeter", + "carton", + "plastique" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "allergens_debug_tags": [], + "manufacturing_places_tags": [], + "nutrition_grades_tags": [ + "e" + ], + "nutrition_data_per": "100g", + "link": "", + "update_key": "20180706-categories", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_original_tags": [ + "en:e322", + "en:e503", + "en:e500", + "en:e330" + ], + "countries_hierarchy": [ + "en:france" + ], + "emb_codes_orig": "", + "_id": "3410280025322", + "max_imgid": "6", + "vitamins_tags": [], + "serving_size": "25 g", + "additives_prev_tags": [ + "en:e322", + "en:e330", + "en:e500", + "en:e503" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nucleotides_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.100.jpg", + "ingredients_n": 25, + "origins_debug_tags": [], + "additives_prev_n": 4, + "ingredients_text_debug": "Farine de _blé_, chocolat au lait 40 % (sucre, beurre de cacao, poudre de _lait_ écrémé, pâte de cacao, _lactose_, matière grasse de _lait_, cacao maigre en poudre, émulsifiant : lécithines (tournesol), arôme), sucre, matière grasse végétale (palme), sirop de glucose de blé, amidon de _blé_, poudres à lever : carbonates d'ammonium, carbonates de sodium, sel, _lactose_et protéines de _lait_, acidifiant : acide citrique.", + "amino_acids_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "high", + "fat": "high", + "sugars": "high" + }, + "last_editor": "kiliweb", + "purchase_places_tags": [ + "france" + ], + "codes_tags": [ + "code-13", + 3410280025322, + "341028002532x", + "34102800253xx", + "3410280025xxx", + "341028002xxxx", + "34102800xxxxx", + "3410280xxxxxx", + "341028xxxxxxx", + "34102xxxxxxxx", + "3410xxxxxxxxx", + "341xxxxxxxxxx", + "34xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "scans_n": 2, + "product_name_fr_debug_tags": [], + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.100.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.200.jpg", + "languages_codes": { + "fr": 5 + }, + "labels_tags": [ + "en:green-dot" + ], + "last_image_dates_tags": [ + "2017-10-24", + "2017-10", + "2017" + ], + "languages": { + "en:french": 5 + }, + "lang_debug_tags": [], + "emb_codes_20141016": "", + "image_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.400.jpg", + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé, chocolat au lait 40 % (sucre, beurre de cacao, poudre de lait écrémé, pâte de cacao, lactose, matière grasse de lait, cacao maigre en poudre, émulsifiant : lécithines (tournesol), arôme), sucre, matière grasse végétale (palme), sirop de glucose de blé, amidon de blé, poudres à lever : carbonates d'ammonium, carbonates de sodium, sel, _lactose_et protéines de lait, acidifiant : acide citrique.", + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 5, + "quality_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "generic_name_fr_debug_tags": [], + "origins_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "brands_debug_tags": [], + "sortkey": 1532374960, + "purchase_places_debug_tags": [], + "last_image_t": 1508874542, + "unique_scans_n": 2, + "rev": 25, + "correctors_tags": [ + "teolemon", + "openfoodfacts-contributors", + "beniben", + "kiliweb" + ], + "completed_t": 1508875342, + "purchase_places": "France", + "additives_tags": [ + "en:e322", + "en:e330", + "en:e500", + "en:e503" + ], + "origins": "", + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " chocolat au lait 40 % ", + "(", + "(", + null, + null, + "sucre", + ",", + null, + null, + null, + " beurre de cacao", + ",", + null, + null, + null, + " poudre de _lait_ écrémé", + ",", + null, + null, + null, + " pâte de cacao", + ",", + null, + null, + null, + " _lactose_", + ",", + null, + null, + null, + " matière grasse de _lait_", + ",", + null, + null, + null, + " cacao maigre en poudre", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " lécithines ", + "(", + "(", + null, + null, + "tournesol)", + ",", + null, + null, + null, + " arôme)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " matière grasse végétale ", + "(", + "(", + null, + null, + "palme)", + ",", + null, + null, + null, + " sirop de glucose de blé", + ",", + null, + null, + null, + " amidon de _blé_", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " carbonates d'ammonium", + ",", + null, + null, + null, + " carbonates de sodium", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " _lactose_et protéines de _lait_", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique." + ], + "ingredients": [ + { + "rank": 1, + "text": "Farine de _blé_", + "id": "farine-de-ble" + }, + { + "percent": "40", + "id": "chocolat-au-lait", + "rank": 2, + "text": "chocolat au lait" + }, + { + "id": "arome", + "text": "arôme", + "rank": 3 + }, + { + "rank": 4, + "text": "sucre", + "id": "sucre" + }, + { + "id": "matiere-grasse-vegetale", + "rank": 5, + "text": "matière grasse végétale" + }, + { + "rank": 6, + "text": "palme", + "id": "palme" + }, + { + "rank": 7, + "text": "sirop de glucose de blé", + "id": "sirop-de-glucose-de-ble" + }, + { + "rank": 8, + "text": "amidon de _blé_", + "id": "amidon-de-ble" + }, + { + "rank": 9, + "text": "poudres à lever", + "id": "poudres-a-lever" + }, + { + "id": "carbonates-d-ammonium", + "rank": 10, + "text": "carbonates d'ammonium" + }, + { + "id": "carbonates-de-sodium", + "text": "carbonates de sodium", + "rank": 11 + }, + { + "id": "sel", + "text": "sel", + "rank": 12 + }, + { + "rank": 13, + "text": "_lactose_et protéines de _lait_", + "id": "lactose-et-proteines-de-lait" + }, + { + "id": "acidifiant", + "rank": 14, + "text": "acidifiant" + }, + { + "id": "acide-citrique", + "rank": 15, + "text": "acide citrique" + }, + { + "text": "sucre", + "id": "sucre" + }, + { + "id": "beurre-de-cacao", + "text": "beurre de cacao" + }, + { + "text": "poudre de _lait_ écrémé", + "id": "poudre-de-lait-ecreme" + }, + { + "id": "pate-de-cacao", + "text": "pâte de cacao" + }, + { + "text": "_lactose_", + "id": "lactose" + }, + { + "id": "matiere-grasse-de-lait", + "text": "matière grasse de _lait_" + }, + { + "id": "cacao-maigre-en-poudre", + "text": "cacao maigre en poudre" + }, + { + "text": "émulsifiant", + "id": "emulsifiant" + }, + { + "text": "lécithines", + "id": "lecithines" + }, + { + "text": "tournesol", + "id": "tournesol" + } + ], + "created_t": 1460822624, + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e322", + "en:e503", + "en:e500", + "en:e330" + ], + "allergens_from_ingredients": "blé, lait, lactose, lait, blé, lait, _lactose", + "ingredients_from_palm_oil_n": 1, + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "nutrition_data": "on", + "last_modified_t": 1532374960, + "product_name": "Biscuit avec tablette de chocolat au lait", + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:farine-de-ble", + "fr:chocolat-au-lait", + "fr:arome", + "en:sugar", + "fr:matiere-grasse-vegetale", + "fr:palme", + "fr:sirop-de-glucose-de-ble", + "fr:amidon-de-ble", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "en:salt", + "fr:lactose-et-proteines-de-lait", + "fr:acidifiant", + "fr:acide-citrique", + "en:sugar", + "fr:beurre-de-cacao", + "fr:poudre-de-lait-ecreme", + "fr:pate-de-cacao", + "fr:lactose", + "fr:matiere-grasse-de-lait", + "fr:cacao-maigre-en-poudre", + "fr:emulsifiant", + "fr:lecithine", + "fr:tournesol" + ], + "lang": "fr", + "brands_tags": [ + "top-budget", + "filet-bleu" + ], + "unknown_ingredients_n": 0, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 4, + "emb_codes_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "code": "3410280025322", + "nutrition_grades": "e", + "_keywords": [ + "sucre", + "vert", + "bleu", + "de", + "et", + "filet", + "lait", + "chocolat", + "gateaux", + "budget", + "tablette", + "point", + "biscuit", + "au", + "snack", + "top", + "avec" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "url": "https://fr-en.openfoodfacts.org/product/3410280025322/biscuit-avec-tablette-de-chocolat-au-lait-top-budget", + "generic_name_fr": "", + "entry_dates_tags": [ + "2016-04-16", + "2016-04", + "2016" + ], + "ingredients_text_with_allergens": "Farine de blé, chocolat au lait 40 % (sucre, beurre de cacao, poudre de lait écrémé, pâte de cacao, lactose, matière grasse de lait, cacao maigre en poudre, émulsifiant : lécithines (tournesol), arôme), sucre, matière grasse végétale (palme), sirop de glucose de blé, amidon de blé, poudres à lever : carbonates d'ammonium, carbonates de sodium, sel, _lactose_et protéines de lait, acidifiant : acide citrique.", + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "complete": 1, + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "generic_name": "", + "brands": "Top Budget,Filet Bleu", + "interface_version_created": "20130323.jqm", + "product_name_fr": "Biscuit avec tablette de chocolat au lait", + "amino_acids_prev_tags": [], + "emb_codes_debug_tags": [], + "creator": "openfoodfacts-contributors", + "vitamins_prev_tags": [], + "packaging": "étui carton à recycler,sachets plastiques à jeter,carton,plastique", + "interface_version_modified": "20150316.jqm2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.100.jpg", + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "expiration_date": "20/08/2018", + "stores": "", + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [ + "en:green-dot" + ], + "stores_debug_tags": [], + "quantity_debug_tags": [], + "allergens": "Gluten,Lait", + "image_front_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.400.jpg", + "quantity": "150 g (12 biscuits)", + "nucleotides_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "countries": "France", + "ingredients_text_fr": "Farine de _blé_, chocolat au lait 40 % (sucre, beurre de cacao, poudre de _lait_ écrémé, pâte de cacao, _lactose_, matière grasse de _lait_, cacao maigre en poudre, émulsifiant : lécithines (tournesol), arôme), sucre, matière grasse végétale (palme), sirop de glucose de blé, amidon de _blé_, poudres à lever : carbonates d'ammonium, carbonates de sodium, sel, _lactose_et protéines de _lait_, acidifiant : acide citrique.", + "last_edit_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "traces_tags": [ + "en:eggs", + "en:gluten", + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "emb_codes": "", + "labels": "Point Vert", + "labels_hierarchy": [ + "en:green-dot" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "ingredients_n_tags": [ + "25", + "21-30" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.100.jpg", + "nutrition_grade_fr": "e", + "serving_quantity": 25, + "traces_from_ingredients": "", + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:milk-chocolate-biscuits" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "traces_hierarchy": [ + "en:eggs", + "en:gluten", + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "countries_tags": [ + "en:france" + ], + "stores_tags": [], + "nutrition_data_prepared": "", + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat,Biscuits au chocolat au lait", + "minerals_prev_tags": [], + "cities_tags": [], + "no_nutrition_data": "", + "traces": "Œufs,Gluten,Fruits à coque,Arachides,Soja", + "countries_debug_tags": [], + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "fr:chocolat-au-lait", + "fr:arome", + "en:sugar", + "fr:matiere-grasse-vegetale", + "fr:palme", + "fr:sirop-de-glucose-de-ble", + "fr:amidon-de-ble", + "fr:poudre-a-lever", + "fr:carbonates-d-ammonium", + "fr:carbonates-de-sodium", + "en:salt", + "fr:lactose-et-proteines-de-lait", + "fr:acidifiant", + "fr:acide-citrique", + "en:sugar", + "fr:beurre-de-cacao", + "fr:poudre-de-lait-ecreme", + "fr:pate-de-cacao", + "fr:lactose", + "fr:matiere-grasse-de-lait", + "fr:cacao-maigre-en-poudre", + "fr:emulsifiant", + "fr:lecithine", + "fr:tournesol" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.400.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "chocolat-au-lait-40", + "sucre", + "beurre-de-cacao", + "poudre-de-lait-ecreme", + "pate-de-cacao", + "lactose", + "matiere-grasse-de-lait", + "cacao-maigre-en-poudre", + "emulsifiant", + "lecithines", + "tournesol", + "arome", + "sucre", + "matiere-grasse-vegetale", + "palme", + "sirop-de-glucose-de-ble", + "amidon-de-ble", + "poudres-a-lever", + "carbonates-d-ammonium", + "carbonates-de-sodium", + "sel", + "lactose-et-proteines-de-lait", + "acidifiant", + "acide-citrique" + ], + "additives_prev_original_tags": [ + "en:e322", + "en:e503", + "en:e500", + "en:e330" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/nutrition_fr.18.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.200.jpg", + "manufacturing_places": "", + "product_quantity": 150, + "last_modified_by": "kiliweb", + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3555, + "w": 2000 + } + }, + "uploaded_t": "1460822721" + }, + "2": { + "uploaded_t": "1460822740", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "3": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3555, + "w": 2000 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1460822768" + }, + "4": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1460822811" + }, + "5": { + "uploaded_t": "1474466727", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "6": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "400": { + "h": 186, + "w": 400 + }, + "full": { + "h": 939, + "w": 2016 + } + }, + "uploaded_t": "1508874541" + }, + "nutrition": { + "imgid": "4", + "rev": "11", + "geometry": "0x0-0-0", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "200": { + "h": 113, + "w": 200 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 1125, + "w": 2000 + } + } + }, + "ingredients_fr": { + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "h": 17, + "w": 100 + }, + "200": { + "h": 35, + "w": 200 + }, + "400": { + "h": 69, + "w": 400 + }, + "full": { + "w": 1985, + "h": 343 + } + }, + "geometry": "1985x343-15-251", + "x2": "397", + "y1": "49.8125", + "x1": "3", + "y2": "117.8125", + "angle": "0", + "imgid": "6", + "rev": "23" + }, + "front": { + "normalize": "true", + "white_magic": "false", + "sizes": { + "100": { + "h": 35, + "w": 100 + }, + "200": { + "h": 70, + "w": 200 + }, + "400": { + "h": 140, + "w": 400 + }, + "full": { + "h": 1183, + "w": 3386 + } + }, + "geometry": "3386x1183-66-482", + "imgid": "1", + "rev": "9" + }, + "nutrition_fr": { + "x1": "33.75", + "x2": "325.75", + "y1": "29.3125", + "sizes": { + "100": { + "h": 45, + "w": 100 + }, + "200": { + "h": 90, + "w": 200 + }, + "400": { + "w": 400, + "h": 179 + }, + "full": { + "w": 1460, + "h": 655 + } + }, + "normalize": "false", + "white_magic": "false", + "geometry": "1460x655-168-146", + "angle": "0", + "rev": "18", + "imgid": "4", + "y2": "160.3125" + }, + "front_fr": { + "sizes": { + "100": { + "h": "35", + "w": "100" + }, + "200": { + "h": 70, + "w": 200 + }, + "400": { + "w": 400, + "h": 140 + }, + "full": { + "w": 3386, + "h": 1183 + } + }, + "white_magic": "false", + "normalize": "true", + "geometry": "3386x1183-66-482", + "rev": "9", + "imgid": "1" + } + }, + "lc": "fr", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Farine de _blé_, chocolat au lait 40 % (sucre, beurre de cacao, poudre de _lait_ écrémé, pâte de cacao, _lactose_, matière grasse de _lait_, cacao maigre en poudre, émulsifiant : lécithines (tournesol), arôme), sucre, matière grasse végétale (palme), sirop de glucose de blé, amidon de _blé_, poudres à lever : carbonates d'ammonium, carbonates de sodium, sel, _lactose_et protéines de _lait_, acidifiant : acide citrique.", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/front_fr.9.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/341/028/002/5322/ingredients_fr.23.200.jpg" + }, + { + "manufacturing_places_tags": [ + "hong-kong" + ], + "photographers_tags": [ + "kiliweb" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [ + "carton", + "boite" + ], + "allergens_debug_tags": [], + "nutrition_data_per": "serving", + "link": "", + "nutrition_grades_tags": [ + "e" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.100.jpg", + "id": "4895047045871", + "link_debug_tags": [], + "pnns_groups_1": "Sugary snacks", + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 7 + sugars 3 + sodium 0 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 19 -- fr 19", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "editors_tags": [ + "kiliweb", + "beniben", + "openfoodfacts-contributors" + ], + "informers_tags": [ + "kiliweb", + "beniben" + ], + "nutriments": { + "proteins_100g": 7.27, + "sugars": 1.5, + "saturated-fat": 1.7, + "saturated-fat_100g": 15.5, + "sugars_value": "1.5", + "salt": 0.011, + "energy_unit": "kcal", + "salt_unit": "g", + "proteins_value": "0.8", + "fat_serving": 3.4, + "proteins_unit": "g", + "sodium_serving": 0.00433070866141732, + "carbohydrates_serving": 6.1, + "fat": 3.4, + "carbohydrates": 6.1, + "carbohydrates_100g": 55.5, + "saturated-fat_unit": "g", + "fat_unit": "g", + "nutrition-score-fr_100g": 19, + "sodium_100g": 0.0394, + "saturated-fat_value": "1.7", + "sodium_value": "0.00433070866141732", + "fat_value": "3.4", + "nutrition-score-uk_100g": 19, + "proteins": 0.8, + "nutrition-score-uk": 19, + "energy_100g": 2210, + "carbohydrates_unit": "g", + "salt_value": "0.011", + "carbohydrates_value": "6.1", + "saturated-fat_serving": 1.7, + "sodium": 0.00433070866141732, + "proteins_serving": 0.8, + "sugars_unit": "g", + "fat_100g": 30.9, + "energy_value": "58", + "energy_serving": 243, + "sugars_100g": 13.6, + "salt_serving": 0.011, + "sodium_unit": "g", + "salt_100g": 0.1, + "energy": 243, + "nutrition-score-fr": 19, + "sugars_serving": 1.5 + }, + "vitamins_tags": [], + "serving_size": "Un biscuit 11 g", + "additives_prev_tags": [ + "en:e150d", + "en:e1520", + "en:e310", + "en:e330", + "en:e900a" + ], + "max_imgid": "3", + "ingredients_n": 19, + "additives_prev_n": 5, + "origins_debug_tags": [], + "ingredients_text_debug": "Farine (céréales contenant du _gluten_), sucre, _beurre_ (produit _laitier_), shortening (contient émulsifiant : ( - e1520 - , - e900a - ), antioxydant : ( - e310 - , - e330 - )), _œuf_, _lait_ en poudre, poudre de cacao en poudre au chocolat, saveur et arôme (contient émulsifiant : - e1520 - ), couleur ( - e150d - )).", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "nutrient_levels": { + "salt": "low", + "saturated-fat": "high", + "fat": "high", + "sugars": "high" + }, + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "nucleotides_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.100.jpg", + "additives_original_tags": [ + "en:e1520", + "en:e900a", + "en:e310", + "en:e330", + "en:e150d" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france", + "en:hong-kong" + ], + "_id": "4895047045871", + "languages_codes": { + "fr": 5 + }, + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.200.jpg", + "labels_tags": [], + "last_image_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "languages": { + "en:french": 5 + }, + "lang_debug_tags": [], + "purchase_places_tags": [], + "last_editor": "beniben", + "product_name_fr_debug_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.200.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.200.jpg" + } + } + }, + "manufacturing_places_debug_tags": [], + "codes_tags": [ + "code-13", + 4895047045871, + "489504704587x", + "48950470458xx", + "4895047045xxx", + "489504704xxxx", + "48950470xxxxx", + "4895047xxxxxx", + "489504xxxxxxx", + "48950xxxxxxxx", + "4895xxxxxxxxx", + "489xxxxxxxxxx", + "48xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "expiration_date_debug_tags": [], + "last_image_t": 1532372308, + "rev": 14, + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "brands_debug_tags": [], + "sortkey": 1532373659, + "purchase_places_debug_tags": [], + "origins": "", + "ingredients_debug": [ + "Farine ", + "(", + "(", + null, + null, + "céréales contenant du _gluten_)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " _beurre_ ", + "(", + "(", + null, + null, + "produit _laitier_)", + ",", + null, + null, + null, + " shortening ", + "(", + "(", + null, + null, + "contient émulsifiant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e1520", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e900a", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e310", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e330", + " - ", + " - ", + " - ", + null, + "))", + ",", + null, + null, + null, + " _œuf_", + ",", + null, + null, + null, + " _lait_ en poudre", + ",", + null, + null, + null, + " poudre de cacao en poudre au chocolat", + ",", + null, + null, + null, + " saveur et arôme ", + "(", + "(", + null, + null, + "contient émulsifiant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e1520", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " couleur ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e150d", + " - ", + " - ", + " - ", + null, + "))." + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "completed_t": 1532373629, + "purchase_places": "", + "additives_tags": [ + "en:e150d", + "en:e1520", + "en:e310", + "en:e330", + "en:e900a" + ], + "ingredients_text_fr_debug_tags": [], + "additives_old_n": 5, + "image_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.400.jpg", + "serving_size_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine (céréales contenant du gluten), sucre, beurre (produit laitier), shortening (contient émulsifiant (E1520, E900a), antioxydant (E310, E330)), œuf, lait en poudre, poudre de cacao en poudre au chocolat, saveur et arôme (contient émulsifiant E1520), couleur (E150d)).", + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "generic_name_fr_debug_tags": [], + "origins_tags": [], + "quality_tags": [ + "ingredients-unknown-score-above-0", + "ingredients-50-percent-unknown" + ], + "lang": "fr", + "brands_tags": [ + "kee-wah-bakery" + ], + "unknown_ingredients_n": 10, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "additives_n": 5, + "product_name": "Panda Cookies", + "nutrition_data_per_debug_tags": [], + "ingredients_tags": [ + "fr:farine", + "fr:cereales-contenant-du-gluten", + "en:sugar", + "fr:beurre", + "fr:produit-laitier", + "fr:shortening", + "fr:antioxydant", + "fr:oeuf", + "fr:lait-en-poudre", + "fr:poudre-de-cacao-en-poudre-au-chocolat", + "fr:saveur-et-arome", + "fr:contient-emulsifiant-e1520", + "fr:couleur", + "fr:e150d", + "fr:contient-emulsifiant", + "fr:e1520", + "fr:e900a", + "fr:e310", + "fr:e330" + ], + "nutrition_grades": "e", + "traces_debug_tags": [], + "_keywords": [ + "sucre", + "et", + "gateaux", + "bakery", + "wah", + "cookie", + "kee", + "au", + "chocolat", + "biscuit", + "panda", + "snack" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "emb_codes_tags": [], + "code": "4895047045871", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "languages_hierarchy": [ + "en:french" + ], + "allergens_from_ingredients": "gluten, beurre, laitier, œuf, lait", + "additives_old_tags": [ + "en:e1520", + "en:e900a", + "en:e310", + "en:e330", + "en:e150d" + ], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "ingredients": [ + { + "text": "Farine", + "rank": 1, + "id": "farine" + }, + { + "rank": 2, + "text": "céréales contenant du _gluten_", + "id": "cereales-contenant-du-gluten" + }, + { + "id": "sucre", + "rank": 3, + "text": "sucre" + }, + { + "id": "beurre", + "rank": 4, + "text": "_beurre_" + }, + { + "rank": 5, + "text": "produit _laitier_", + "id": "produit-laitier" + }, + { + "id": "shortening", + "rank": 6, + "text": "shortening" + }, + { + "id": "antioxydant", + "text": "antioxydant", + "rank": 7 + }, + { + "rank": 8, + "text": "_œuf_", + "id": "oeuf" + }, + { + "rank": 9, + "text": "_lait_ en poudre", + "id": "lait-en-poudre" + }, + { + "text": "poudre de cacao en poudre au chocolat", + "rank": 10, + "id": "poudre-de-cacao-en-poudre-au-chocolat" + }, + { + "id": "saveur-et-arome", + "rank": 11, + "text": "saveur et arôme" + }, + { + "id": "contient-emulsifiant-e1520", + "rank": 12, + "text": "contient émulsifiant E1520" + }, + { + "text": "couleur", + "rank": 13, + "id": "couleur" + }, + { + "text": "E150d", + "rank": 14, + "id": "e150d" + }, + { + "id": "contient-emulsifiant", + "text": "contient émulsifiant" + }, + { + "id": "e1520", + "text": "E1520" + }, + { + "text": "E900a", + "id": "e900a" + }, + { + "id": "e310", + "text": "E310" + }, + { + "id": "e330", + "text": "E330" + } + ], + "created_t": 1532372272, + "nutrition_data": "on", + "last_modified_t": 1532373659, + "vitamins_prev_tags": [], + "interface_version_modified": "20120622", + "packaging": "carton,boîte", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.100.jpg", + "nutrition_score_warning_no_fiber": 1, + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "amino_acids_prev_tags": [], + "creator": "kiliweb", + "emb_codes_debug_tags": [], + "stores": "", + "expiration_date": "20/03/2019", + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "categories_debug_tags": [], + "url": "https://fr-en.openfoodfacts.org/product/4895047045871/panda-cookies-kee-wah-bakery", + "entry_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "generic_name_fr": "", + "ingredients_text_with_allergens": "Farine (céréales contenant du gluten), sucre, beurre (produit laitier), shortening (contient émulsifiant (E1520, E900a), antioxydant (E310, E330)), œuf, lait en poudre, poudre de cacao en poudre au chocolat, saveur et arôme (contient émulsifiant E1520), couleur (E150d)).", + "labels_prev_hierarchy": [], + "generic_name": "", + "interface_version_created": "20150316.jqm2", + "brands": "Kee Wah Bakery", + "product_name_fr": "Panda Cookies", + "complete": 1, + "ingredients_from_palm_oil_tags": [], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "en:cookies", + "en:chocolate-cookies" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.100.jpg", + "nutrition_grade_fr": "e", + "ingredients_n_tags": [ + "19", + "11-20" + ], + "serving_quantity": 11, + "traces_from_ingredients": "", + "labels_debug_tags": [], + "traces_hierarchy": [ + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france", + "en:hong-kong" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "allergens": "Œufs,Gluten,Lait", + "quantity_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.400.jpg", + "nutrition_data_prepared_per_debug_tags": [], + "checkers_tags": [], + "labels_prev_tags": [], + "additives_debug_tags": [], + "stores_debug_tags": [], + "ingredients_text_fr": "Farine (céréales contenant du _gluten_), sucre, _beurre_ (produit _laitier_), shortening (contient émulsifiant (E1520, E900a), antioxydant (E310, E330)), _œuf_, _lait_ en poudre, poudre de cacao en poudre au chocolat, saveur et arôme (contient émulsifiant E1520), couleur (E150d)).", + "last_edit_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "traces_tags": [ + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "emb_codes": "", + "labels": "", + "quantity": "200 g", + "nucleotides_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "countries": "France,Hong Kong", + "last_modified_by": "beniben", + "images": { + "1": { + "uploaded_t": 1532372277, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + } + }, + "2": { + "uploaded_t": 1532372283, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 84 + }, + "400": { + "w": 338, + "h": 400 + }, + "full": { + "w": 1013, + "h": 1200 + } + } + }, + "3": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 900 + } + }, + "uploaded_t": 1532372307 + }, + "front_fr": { + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 900 + } + }, + "normalize": "0", + "white_magic": "0", + "geometry": "0x0-0-0", + "x1": null, + "y1": null, + "x2": null, + "y2": null, + "angle": null, + "rev": "4", + "imgid": "1" + }, + "ingredients_fr": { + "geometry": "971x190-24-449", + "white_magic": "false", + "normalize": "true", + "sizes": { + "100": { + "h": 20, + "w": 100 + }, + "200": { + "h": 39, + "w": 200 + }, + "400": { + "w": 400, + "h": 78 + }, + "full": { + "h": 190, + "w": 971 + } + }, + "x2": "332.26953125", + "y1": "149.984375", + "x1": "8.21484375", + "y2": "213.08203125", + "imgid": "2", + "rev": "11", + "angle": "0" + }, + "nutrition_fr": { + "geometry": "775x584-118-429", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "h": 151, + "w": 200 + }, + "400": { + "h": 301, + "w": 400 + }, + "full": { + "h": 584, + "w": 775 + } + }, + "y1": "143.3203125", + "x2": "297.66796875", + "x1": "39.53515625", + "y2": "337.96484375", + "imgid": "3", + "rev": "12", + "angle": "0" + } + }, + "lc": "fr", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_text": "Farine (céréales contenant du _gluten_), sucre, _beurre_ (produit _laitier_), shortening (contient émulsifiant (E1520, E900a), antioxydant (E310, E330)), _œuf_, _lait_ en poudre, poudre de cacao en poudre au chocolat, saveur et arôme (contient émulsifiant E1520), couleur (E150d)).", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/nutrition_fr.12.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.200.jpg", + "manufacturing_places": "Hong Kong", + "product_quantity": 200, + "debug_param_sorted_langs": [ + "fr" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.200.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/front_fr.4.200.jpg", + "cities_tags": [], + "no_nutrition_data": "", + "minerals_prev_tags": [], + "stores_tags": [], + "nutrition_data_prepared": "", + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat,Cookies,Cookies au chocolat", + "ingredients_hierarchy": [ + "fr:farine", + "fr:cereales-contenant-du-gluten", + "en:sugar", + "fr:beurre", + "fr:produit-laitier", + "fr:shortening", + "fr:antioxydant", + "fr:oeuf", + "fr:lait-en-poudre", + "fr:poudre-de-cacao-en-poudre-au-chocolat", + "fr:saveur-et-arome", + "fr:contient-emulsifiant-e1520", + "fr:couleur", + "fr:e150d", + "fr:contient-emulsifiant", + "fr:e1520", + "fr:e900a", + "fr:e310", + "fr:e330" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/489/504/704/5871/ingredients_fr.11.400.jpg", + "additives_prev_original_tags": [ + "en:e1520", + "en:e900a", + "en:e310", + "en:e330", + "en:e150d" + ], + "ingredients_ids_debug": [ + "farine", + "cereales-contenant-du-gluten", + "sucre", + "beurre", + "produit-laitier", + "shortening", + "contient-emulsifiant", + "e1520", + "e900a", + "antioxydant", + "e310", + "e330", + "oeuf", + "lait-en-poudre", + "poudre-de-cacao-en-poudre-au-chocolat", + "saveur-et-arome", + "contient-emulsifiant", + "e1520", + "couleur", + "e150d" + ], + "traces": "Fruits à coque,Arachides,Soja", + "countries_debug_tags": [] + }, + { + "additives_tags": [], + "purchase_places": "France", + "completed_t": 1532372777, + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "ingredients_debug": [ + "Farine de _froment_", + ",", + null, + null, + null, + " vin blanc du Pays ", + "(", + "(", + null, + null, + "17", + ",", + null, + null, + null, + "1 %)", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " poudre levante", + ",", + null, + null, + null, + " eau de vie." + ], + "origins": "", + "purchase_places_debug_tags": [], + "sortkey": 1532372777, + "brands_debug_tags": [], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "rev": 9, + "last_image_t": 1532371579, + "quality_tags": [ + "no-nutrition-data" + ], + "origins_tags": [], + "generic_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "ingredients_text_with_allergens_fr": "Farine de froment, vin blanc du Pays (17,1 %), huile de tournesol, sucre, sel, poudre levante, eau de vie.", + "serving_size_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.400.jpg", + "additives_old_n": 0, + "ingredients_text_fr_debug_tags": [], + "lang_debug_tags": [], + "languages": { + "en:french": 4 + }, + "last_image_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "labels_tags": [ + "en:green-dot" + ], + "allergens_tags": [ + "en:gluten" + ], + "languages_codes": { + "fr": 4 + }, + "expiration_date_debug_tags": [], + "codes_tags": [ + "code-13", + 3760007540011, + "376000754001x", + "37600075400xx", + "3760007540xxx", + "376000754xxxx", + "37600075xxxxx", + "3760007xxxxxx", + "376000xxxxxxx", + "37600xxxxxxxx", + "3760xxxxxxxxx", + "376xxxxxxxxxx", + "37xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "manufacturing_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.200.jpg" + } + } + }, + "last_editor": "beniben", + "purchase_places_tags": [ + "france" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.100.jpg", + "nucleotides_tags": [], + "allergens_hierarchy": [ + "en:gluten" + ], + "nutrient_levels": {}, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "amino_acids_tags": [], + "ingredients_text_debug": "Farine de _froment_, vin blanc du Pays (17,1 %), huile de tournesol, sucre, sel, poudre levante, eau de vie.", + "ingredients_n": 7, + "origins_debug_tags": [], + "additives_prev_n": 0, + "max_imgid": "2", + "additives_prev_tags": [], + "serving_size": "", + "vitamins_tags": [], + "_id": "3760007540011", + "emb_codes_orig": "", + "countries_hierarchy": [ + "en:france" + ], + "additives_original_tags": [], + "nutrition_grades_tags": [ + "unknown" + ], + "link": "", + "nutrition_data_per": "100g", + "allergens_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "packaging_tags": [ + "sachet", + "plastique" + ], + "photographers_tags": [ + "kiliweb" + ], + "manufacturing_places_tags": [ + "france", + "corse" + ], + "nutriments": {}, + "informers_tags": [ + "kiliweb", + "beniben" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "beniben" + ], + "pnns_groups_1": "Sugary snacks", + "misc_tags": [ + "en:nutriscore-not-computed", + "en:nutrition-not-enough-data-to-compute-nutrition-score", + "en:nutrition-no-saturated-fat" + ], + "nutrition_score_debug": "missing energy", + "link_debug_tags": [], + "id": "3760007540011", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.200.jpg", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.200.jpg", + "debug_param_sorted_langs": [ + "fr" + ], + "product_quantity": 300, + "manufacturing_places": "France,Corse", + "image_small_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.200.jpg", + "ingredients_text": "Farine de _froment_, vin blanc du Pays (17,1 %), huile de tournesol, sucre, sel, poudre levante, eau de vie.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "lc": "fr", + "images": { + "1": { + "uploaded_t": 1532371576, + "sizes": { + "100": { + "w": 74, + "h": 100 + }, + "400": { + "w": 298, + "h": 400 + }, + "full": { + "h": 1200, + "w": 893 + } + }, + "uploader": "kiliweb" + }, + "2": { + "uploaded_t": 1532371578, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 73, + "w": 100 + }, + "400": { + "h": 294, + "w": 400 + }, + "full": { + "w": 1634, + "h": 1200 + } + } + }, + "ingredients_fr": { + "white_magic": "false", + "normalize": "true", + "sizes": { + "100": { + "w": 100, + "h": 19 + }, + "200": { + "h": 37, + "w": 200 + }, + "400": { + "w": 400, + "h": 74 + }, + "full": { + "w": 1308, + "h": 243 + } + }, + "geometry": "1308x243-89-532", + "x2": "342.2265625", + "y1": "130.58203125", + "x1": "21.9296875", + "y2": "190.05078125", + "angle": "0", + "imgid": "2", + "rev": "8" + }, + "front_fr": { + "y2": null, + "imgid": "1", + "rev": "4", + "angle": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "normalize": "0", + "sizes": { + "100": { + "w": "74", + "h": "100" + }, + "200": { + "w": 149, + "h": 200 + }, + "400": { + "w": 298, + "h": 400 + }, + "full": { + "w": 893, + "h": 1200 + } + }, + "x2": null, + "y1": null, + "x1": null + } + }, + "last_modified_by": "beniben", + "countries_debug_tags": [], + "traces": "", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/ingredients_fr.8.400.jpg", + "additives_prev_original_tags": [], + "ingredients_ids_debug": [ + "farine-de-froment", + "vin-blanc-du-pays", + "17", + "1", + "huile-de-tournesol", + "sucre", + "sel", + "poudre-levante", + "eau-de-vie" + ], + "ingredients_hierarchy": [ + "fr:farine-de-froment", + "fr:vin-blanc-du-pays", + "fr:huile-de-tournesol", + "en:sugar", + "en:salt", + "fr:poudre-levante", + "fr:eau-de-vie" + ], + "nutrition_data_prepared": "", + "categories": "Biscuits secs", + "stores_tags": [], + "no_nutrition_data": "on", + "minerals_prev_tags": [], + "cities_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "labels_debug_tags": [], + "unknown_nutrients_tags": [], + "traces_from_ingredients": "", + "serving_quantity": 0, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.100.jpg", + "ingredients_n_tags": [ + "7", + "1-10" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [ + "en:green-dot" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "countries": "France", + "nutrition_data_prepared_per": "100g", + "quantity": "300 g", + "nucleotides_prev_tags": [], + "emb_codes": "", + "labels": "point vert", + "traces_tags": [], + "last_edit_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "ingredients_text_fr": "Farine de _froment_, vin blanc du Pays (17,1 %), huile de tournesol, sucre, sel, poudre levante, eau de vie.", + "stores_debug_tags": [], + "additives_debug_tags": [], + "labels_prev_tags": [ + "en:green-dot" + ], + "checkers_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.400.jpg", + "allergens": "", + "quantity_debug_tags": [], + "expiration_date": "31/01/2019", + "stores": "", + "emb_codes_debug_tags": [], + "creator": "kiliweb", + "amino_acids_prev_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:dry-biscuits" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/376/000/754/0011/front_fr.4.100.jpg", + "packaging": "sachet,plastique", + "interface_version_modified": "20120622", + "vitamins_prev_tags": [], + "ingredients_from_palm_oil_tags": [], + "complete": 1, + "product_name_fr": "Canistrelli de l'Île de Beauté au Vin Blanc du Pays", + "brands": "Sainte Restitude,Biscuiterie Sainte Restitude", + "interface_version_created": "20150316.jqm2", + "generic_name": "", + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "ingredients_text_with_allergens": "Farine de froment, vin blanc du Pays (17,1 %), huile de tournesol, sucre, sel, poudre levante, eau de vie.", + "generic_name_fr": "", + "entry_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "url": "https://fr-en.openfoodfacts.org/product/3760007540011/canistrelli-de-l-ile-de-beaute-au-vin-blanc-du-pays-sainte-restitude", + "categories_debug_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "minerals_tags": [], + "nutrient_levels_tags": [], + "code": "3760007540011", + "emb_codes_tags": [], + "_keywords": [ + "vert", + "de", + "blanc", + "sec", + "ile", + "pay", + "vin", + "restitude", + "sainte", + "du", + "point", + "biscuiterie", + "au", + "canistrelli", + "beaute", + "biscuit" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "traces_debug_tags": [], + "ingredients_tags": [ + "fr:farine-de-froment", + "fr:vin-blanc-du-pays", + "fr:huile-de-tournesol", + "en:sugar", + "en:salt", + "fr:poudre-levante", + "fr:eau-de-vie" + ], + "nutrition_data_per_debug_tags": [], + "product_name": "Canistrelli de l'Île de Beauté au Vin Blanc du Pays", + "additives_n": 0, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "unknown_ingredients_n": 2, + "brands_tags": [ + "sainte-restitude", + "biscuiterie-sainte-restitude" + ], + "lang": "fr", + "last_modified_t": 1532372777, + "nutrition_data": "", + "created_t": 1532371574, + "ingredients": [ + { + "rank": 1, + "text": "Farine de _froment_", + "id": "farine-de-froment" + }, + { + "text": "vin blanc du Pays", + "rank": 2, + "id": "vin-blanc-du-pays", + "percent": "17.1" + }, + { + "text": "huile de tournesol", + "rank": 3, + "id": "huile-de-tournesol" + }, + { + "id": "sucre", + "rank": 4, + "text": "sucre" + }, + { + "id": "sel", + "rank": 5, + "text": "sel" + }, + { + "id": "poudre-levante", + "rank": 6, + "text": "poudre levante" + }, + { + "id": "eau-de-vie", + "rank": 7, + "text": "eau de vie" + } + ], + "product_name_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "packaging_debug_tags": [], + "additives_old_tags": [], + "allergens_from_ingredients": "froment", + "languages_hierarchy": [ + "en:french" + ] + } + ], + "page_size": 20, + "count": 4377 +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-1.json b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-1.json new file mode 100644 index 0000000..19e7916 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-1.json @@ -0,0 +1,24336 @@ +{ + "count": 389, + "page_size": 20, + "page": 1, + "skip": 0, + "products": [ + { + "stores_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.200.jpg", + "stores_debug_tags": [], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [ + "huile-vegetale" + ], + "countries_hierarchy": [ + "en:france", + "en:guadeloupe" + ], + "labels_prev_hierarchy": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.200.jpg", + "generic_name": "Pizza garnie de mozzarella, d'emmental et de fromage de chèvre surgelée", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "debug_param_sorted_langs": [ + "fr" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 4 + fr-sat-fat-for-fats 8 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 3 -- fr 3", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "", + "_keywords": [ + "pierre", + "cuite", + "emmental", + "chevre", + "sur", + "frozen-pizza", + "frozen-food", + "frozen-pizzas-and-pie", + "fromage", + "surgelee", + "et", + "carrefour", + "pizzas-pies-and-quiche", + "formaggi", + "de", + "mozzarella", + "pizza", + "meal", + "three-cheese-pizza", + "garnie" + ], + "id": "3560070124817", + "rev": 33, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "emb_codes_tags": [ + "de-be-20362-ec" + ], + "ingredients_text": "Pâte 55% : Farine de blé, eau, levure, huile de colza, dextrose de maïs, sel, sucre. Garniture 45% : Purée de tomates, mozzarella 16,7%, emmental 8,9%, préparation alimentaire à base de fromage (eau, fromage, matière grasse végétale de palme, protéines de lait, amidon de pomme de terre, sel), fromage de chèvre 8,5%, huile de colza, crème fraîche, crème, eau, farine de blé, sucre, gorgonzola, amidons de pomme de terre et de blé, sel, ail, origan, romarin, thym, basilic, marjolaine, persil, sarriette, cerfeuil, livèche, poivre blanc. Pourcentages exprimés sur la garniture", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.400.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.100.jpg" + } + } + }, + "ingredients_text_fr": "Pâte 55% : Farine de blé, eau, levure, huile de colza, dextrose de maïs, sel, sucre. Garniture 45% : Purée de tomates, mozzarella 16,7%, emmental 8,9%, préparation alimentaire à base de fromage (eau, fromage, matière grasse végétale de palme, protéines de lait, amidon de pomme de terre, sel), fromage de chèvre 8,5%, huile de colza, crème fraîche, crème, eau, farine de blé, sucre, gorgonzola, amidons de pomme de terre et de blé, sel, ail, origan, romarin, thym, basilic, marjolaine, persil, sarriette, cerfeuil, livèche, poivre blanc. Pourcentages exprimés sur la garniture", + "sortkey": 1533646937, + "lang_debug_tags": [], + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_text_fr_debug_tags": [], + "countries": "en:france, en:guadeloupe", + "lc": "fr", + "product_name": "Pizza cuite sur pierre - 4 Formaggi", + "countries_debug_tags": [], + "brands": "Carrefour", + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "350 g", + "entry_dates_tags": [ + "2014-05-29", + "2014-05", + "2014" + ], + "countries_beforescanbot": "Guadeloupe", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3560070124817/pizza-cuite-sur-pierre-4-formaggi-carrefour", + "origins_debug_tags": [], + "packaging_tags": [ + "surgele", + "carton", + "plastique" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20150316.jqm2", + "purchase_places_tags": [ + "guadeloupe" + ], + "product_name_fr": "Pizza cuite sur pierre - 4 Formaggi", + "pnns_groups_1": "Composite foods", + "labels": "", + "serving_quantity": 175, + "nutrition_grades": "c", + "labels_prev_tags": [], + "codes_tags": [ + "code-13", + "3560070124817", + "356007012481x", + "35600701248xx", + "3560070124xxx", + "356007012xxxx", + "35600701xxxxx", + "3560070xxxxxx", + "356007xxxxxxx", + "35600xxxxxxxx", + "3560xxxxxxxxx", + "356xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "aristoi", + "scanbot", + "tacite", + "kiliweb", + "openfoodfacts-contributors", + "yukafix" + ], + "minerals_prev_tags": [], + "emb_codes": "DE BE 20362 EC", + "expiration_date": "01/2015", + "nutrition_grades_tags": [ + "c" + ], + "link": "", + "last_edit_dates_tags": [ + "2018-08-07", + "2018-08", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.400.jpg", + "new_additives_n": 0, + "nutrition_grade_fr": "c", + "brands_tags": [ + "carrefour" + ], + "traces_hierarchy": [ + "en:celery", + "en:peanuts" + ], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.200.jpg", + "generic_name_fr": "Pizza garnie de mozzarella, d'emmental et de fromage de chèvre surgelée", + "unknown_ingredients_n": 3, + "unique_scans_n": 37, + "unknown_nutrients_tags": [], + "countries_tags": [ + "en:france", + "en:guadeloupe" + ], + "emb_codes_debug_tags": [], + "max_imgid": "13", + "nutrition_data_per": "100g", + "emb_codes_orig": "DE BE 20362 EC", + "additives_original_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_debug_tags": [], + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:canola-oil", + "en:vegetable-oil", + "en:corn-dextrose", + "en:dextrose", + "en:salt", + "en:sugar", + "fr:garniture", + "fr:puree-de-tomate", + "fr:mozzarella", + "fr:emmental", + "fr:préparation alimentaire à base de fromage", + "fr:fromage-de-chevre", + "en:canola-oil", + "en:vegetable-oil", + "en:sour-cream", + "fr:creme", + "en:water", + "en:wheat-flour", + "en:sugar", + "fr:gorgonzola", + "fr:amidons de pomme de terre et de blé", + "en:salt", + "en:garlic", + "fr:origan", + "fr:romarin", + "en:thyme", + "fr:basilic", + "fr:marjolaine", + "fr:persil", + "fr:sarriette", + "fr:cerfeuil", + "fr:liveche", + "fr:poivre-blanc", + "fr:Pourcentages exprimés sur la garniture", + "en:water", + "fr:fromage", + "fr:matiere-grasse-vegetale-de-palme", + "en:palm-oil", + "en:vegetable-oil", + "en:milk-protein", + "en:potato-starch", + "en:starch", + "en:salt" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1533646936, + "additives_old_n": 0, + "vitamins_tags": [], + "ingredients_tags": [ + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:canola-oil", + "en:vegetable-oil", + "en:corn-dextrose", + "en:dextrose", + "en:salt", + "en:sugar", + "fr:garniture", + "fr:puree-de-tomate", + "fr:mozzarella", + "fr:emmental", + "fr:preparation-alimentaire-a-base-de-fromage", + "fr:fromage-de-chevre", + "en:canola-oil", + "en:vegetable-oil", + "en:sour-cream", + "fr:creme", + "en:water", + "en:wheat-flour", + "en:sugar", + "fr:gorgonzola", + "fr:amidons-de-pomme-de-terre-et-de-ble", + "en:salt", + "en:garlic", + "fr:origan", + "fr:romarin", + "en:thyme", + "fr:basilic", + "fr:marjolaine", + "fr:persil", + "fr:sarriette", + "fr:cerfeuil", + "fr:liveche", + "fr:poivre-blanc", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:water", + "fr:fromage", + "fr:matiere-grasse-vegetale-de-palme", + "en:palm-oil", + "en:vegetable-oil", + "en:milk-protein", + "en:potato-starch", + "en:starch", + "en:salt" + ], + "_id": "3560070124817", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ], + "serving_size": "175 g", + "interface_version_created": "20120622", + "product_quantity": 350, + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.100.jpg", + "additives_prev_original_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/nutrition_fr.9.100.jpg", + "ingredients_text_with_allergens": "Pâte 55% : Farine de blé, eau, levure, huile de colza, dextrose de maïs, sel, sucre. Garniture 45% : Purée de tomates, mozzarella 16,7%, emmental 8,9%, préparation alimentaire à base de fromage (eau, fromage, matière grasse végétale de palme, protéines de lait, amidon de pomme de terre, sel), fromage de chèvre 8,5%, huile de colza, crème fraîche, crème, eau, farine de blé, sucre, gorgonzola, amidons de pomme de terre et de blé, sel, ail, origan, romarin, thym, basilic, marjolaine, persil, sarriette, cerfeuil, livèche, poivre blanc. Pourcentages exprimés sur la garniture", + "quantity_debug_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Pâte 55% : Farine de blé, eau, levure, huile de colza, dextrose de maïs, sel, sucre. Garniture 45% : Purée de tomates, mozzarella 16,7%, emmental 8,9%, préparation alimentaire à base de fromage (eau, fromage, matière grasse végétale de palme, protéines de lait, amidon de pomme de terre, sel), fromage de chèvre 8,5%, huile de colza, crème fraîche, crème, eau, farine de blé, sucre, gorgonzola, amidons de pomme de terre et de blé, sel, ail, origan, romarin, thym, basilic, marjolaine, persil, sarriette, cerfeuil, livèche, poivre blanc. Pourcentages exprimés sur la garniture", + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.400.jpg", + "traces_debug_tags": [], + "origins": "", + "labels_hierarchy": [], + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.100.jpg", + "categories_debug_tags": [ + "added-en-cheese-pizzas" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:dextrose : 4", + "created_t": 1401325322, + "origins_tags": [], + "cities_tags": [], + "last_modified_by": null, + "ingredients_n_tags": [ + "41", + "41-50" + ], + "ingredients": [ + { + "text": "Pâte", + "rank": 1, + "percent": "55", + "id": "en:paste" + }, + { + "rank": 2, + "text": "Farine de blé", + "id": "en:wheat-flour" + }, + { + "rank": 3, + "text": "eau", + "id": "en:water" + }, + { + "rank": 4, + "text": "levure", + "id": "fr:levure" + }, + { + "rank": 5, + "text": "huile de colza", + "id": "en:canola-oil" + }, + { + "id": "en:corn-dextrose", + "text": "dextrose de maïs", + "rank": 6 + }, + { + "text": "sel", + "rank": 7, + "id": "en:salt" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 8 + }, + { + "percent": "45", + "id": "fr:garniture", + "text": "Garniture", + "rank": 9 + }, + { + "rank": 10, + "text": "Purée de tomates", + "id": "fr:puree-de-tomate" + }, + { + "id": "fr:mozzarella", + "percent": "16.7", + "rank": 11, + "text": "mozzarella" + }, + { + "rank": 12, + "text": "emmental", + "id": "fr:emmental", + "percent": "8.9" + }, + { + "id": "fr:préparation alimentaire à base de fromage", + "rank": 13, + "text": "préparation alimentaire à base de fromage" + }, + { + "percent": "8.5", + "id": "fr:fromage-de-chevre", + "rank": 14, + "text": "fromage de chèvre" + }, + { + "id": "en:canola-oil", + "rank": 15, + "text": "huile de colza" + }, + { + "text": "crème fraîche", + "rank": 16, + "id": "en:sour-cream" + }, + { + "id": "fr:creme", + "rank": 17, + "text": "crème" + }, + { + "rank": 18, + "text": "eau", + "id": "en:water" + }, + { + "id": "en:wheat-flour", + "rank": 19, + "text": "farine de blé" + }, + { + "rank": 20, + "text": "sucre", + "id": "en:sugar" + }, + { + "id": "fr:gorgonzola", + "text": "gorgonzola", + "rank": 21 + }, + { + "id": "fr:amidons de pomme de terre et de blé", + "text": "amidons de pomme de terre et de blé", + "rank": 22 + }, + { + "id": "en:salt", + "text": "sel", + "rank": 23 + }, + { + "rank": 24, + "text": "ail", + "id": "en:garlic" + }, + { + "rank": 25, + "text": "origan", + "id": "fr:origan" + }, + { + "id": "fr:romarin", + "text": "romarin", + "rank": 26 + }, + { + "id": "en:thyme", + "text": "thym", + "rank": 27 + }, + { + "text": "basilic", + "rank": 28, + "id": "fr:basilic" + }, + { + "id": "fr:marjolaine", + "text": "marjolaine", + "rank": 29 + }, + { + "id": "fr:persil", + "text": "persil", + "rank": 30 + }, + { + "text": "sarriette", + "rank": 31, + "id": "fr:sarriette" + }, + { + "id": "fr:cerfeuil", + "text": "cerfeuil", + "rank": 32 + }, + { + "id": "fr:liveche", + "rank": 33, + "text": "livèche" + }, + { + "text": "poivre blanc", + "rank": 34, + "id": "fr:poivre-blanc" + }, + { + "rank": 35, + "text": "Pourcentages exprimés sur la garniture", + "id": "fr:Pourcentages exprimés sur la garniture" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "fromage", + "id": "fr:fromage" + }, + { + "text": "matière grasse végétale de palme", + "id": "fr:matiere-grasse-vegetale-de-palme" + }, + { + "text": "protéines de lait", + "id": "en:milk-protein" + }, + { + "text": "amidon de pomme de terre", + "id": "en:potato-starch" + }, + { + "id": "en:salt", + "text": "sel" + } + ], + "emb_codes_20141016": "DE BE 20362 EG", + "no_nutrition_data": "", + "traces_tags": [ + "en:celery", + "en:peanuts" + ], + "images": { + "1": { + "uploader": "aristoi", + "uploaded_t": 1401325322, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 720, + "w": 1280 + } + } + }, + "2": { + "uploader": "aristoi", + "uploaded_t": 1401325358, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1280, + "h": 720 + } + } + }, + "3": { + "uploaded_t": 1401325363, + "uploader": "aristoi", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1280, + "h": 720 + } + } + }, + "4": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1280, + "h": 720 + } + }, + "uploaded_t": 1401325365, + "uploader": "aristoi" + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": "1489412564", + "uploader": "aurelien31" + }, + "6": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "aurelien31", + "uploaded_t": "1489412579" + }, + "7": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": "1489412594", + "uploader": "aurelien31" + }, + "8": { + "uploader": "aurelien31", + "uploaded_t": "1489412609", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "9": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "aurelien31", + "uploaded_t": "1489412628" + }, + "10": { + "uploader": "kiliweb", + "uploaded_t": "1509784060", + "sizes": { + "100": { + "w": 100, + "h": 15 + }, + "400": { + "h": 58, + "w": 400 + }, + "full": { + "h": 432, + "w": 2975 + } + } + }, + "11": { + "sizes": { + "100": { + "h": 100, + "w": 99 + }, + "400": { + "w": 395, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1186 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1522663891" + }, + "12": { + "uploaded_t": "1522663892", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 10, + "w": 100 + }, + "400": { + "w": 400, + "h": 40 + }, + "full": { + "h": 390, + "w": 3876 + } + } + }, + "13": { + "uploaded_t": 1533646935, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 22, + "w": 100 + }, + "400": { + "h": 87, + "w": 400 + }, + "full": { + "w": 4029, + "h": 877 + } + } + }, + "front_fr": { + "x1": null, + "y2": null, + "normalize": "0", + "x2": null, + "imgid": "11", + "white_magic": "0", + "geometry": "0x0-0-0", + "rev": "25", + "sizes": { + "100": { + "w": "99", + "h": "100" + }, + "200": { + "h": 200, + "w": 198 + }, + "400": { + "h": 400, + "w": 395 + }, + "full": { + "w": 1186, + "h": 1200 + } + }, + "y1": null, + "angle": null + }, + "nutrition_fr": { + "white_magic": null, + "geometry": "743x435-73-182", + "imgid": "3", + "sizes": { + "100": { + "h": 59, + "w": 100 + }, + "200": { + "h": 117, + "w": 200 + }, + "400": { + "w": 400, + "h": 234 + }, + "full": { + "h": 435, + "w": 743 + } + }, + "rev": "9", + "normalize": null + }, + "ingredients": { + "sizes": { + "100": { + "w": 100, + "h": 18 + }, + "200": { + "w": 200, + "h": 36 + }, + "400": { + "w": 400, + "h": 72 + }, + "full": { + "w": 1065, + "h": 192 + } + }, + "normalize": null, + "rev": "8", + "geometry": "1065x192-112-147", + "imgid": "2", + "white_magic": null + }, + "ingredients_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 22 + }, + "200": { + "w": 200, + "h": 44 + }, + "400": { + "h": 87, + "w": 400 + }, + "full": { + "h": 877, + "w": 4029 + } + }, + "rev": "33", + "imgid": "13", + "white_magic": "0", + "geometry": "0x0-0-0", + "x2": null, + "normalize": "0", + "y2": null, + "x1": null + }, + "front": { + "imgid": "1", + "white_magic": null, + "geometry": "659x720-374-0", + "sizes": { + "100": { + "w": 92, + "h": 100 + }, + "200": { + "h": 200, + "w": 183 + }, + "400": { + "w": 366, + "h": 400 + }, + "full": { + "w": 659, + "h": 720 + } + }, + "rev": "7", + "normalize": null + }, + "nutrition": { + "geometry": "743x435-73-182", + "white_magic": null, + "imgid": "3", + "rev": "9", + "normalize": null, + "sizes": { + "100": { + "h": 59, + "w": 100 + }, + "200": { + "h": 117, + "w": 200 + }, + "400": { + "h": 234, + "w": 400 + }, + "full": { + "h": 435, + "w": 743 + } + } + } + }, + "serving_size_debug_tags": [], + "additives_prev_tags": [], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "mozzarella, emmental, fromage, protéines de lait, fromage de chèvre, crème fraîche, crème, blé, blé", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "Surgelé,Carton,Plastique", + "informers_tags": [ + "aristoi" + ], + "ingredients_ids_debug": [ + "pate-55", + "farine-de-ble", + "eau", + "levure", + "huile-de-colza", + "dextrose-de-mais", + "sel", + "sucre", + "garniture-45", + "puree-de-tomates", + "mozzarella-16", + "7", + "emmental-8", + "9", + "preparation-alimentaire-a-base-de-fromage", + "eau", + "fromage", + "matiere-grasse-vegetale-de-palme", + "proteines-de-lait", + "amidon-de-pomme-de-terre", + "sel", + "fromage-de-chevre-8", + "5", + "huile-de-colza", + "creme-fraiche", + "creme", + "eau", + "farine-de-ble", + "sucre", + "gorgonzola", + "amidons-de-pomme-de-terre-et-de-ble", + "sel", + "ail", + "origan", + "romarin", + "thym", + "basilic", + "marjolaine", + "persil", + "sarriette", + "cerfeuil", + "liveche", + "poivre-blanc", + "pourcentages-exprimes-sur-la-garniture" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/ingredients_fr.33.200.jpg", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "last_editor": null, + "labels_debug_tags": [], + "creator": "aristoi", + "purchase_places": "Guadeloupe", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ], + "nutriments": { + "nova-group_100g": 4, + "energy": "979", + "fat_100g": 7.7, + "proteins": "13", + "proteins_value": "13", + "nova-group": 4, + "nova-group_serving": 4, + "saturated-fat_serving": 7.7, + "fiber_unit": "", + "sugars_serving": 5.95, + "nutrition-score-fr_100g": "3", + "energy_100g": "979", + "fiber_value": "2.5", + "sodium_serving": 0.758, + "fat_value": "7.7", + "saturated-fat_100g": 4.4, + "sodium_100g": 0.433070866141732, + "nutrition-score-uk_100g": "3", + "fat_unit": "", + "carbohydrates_100g": "27", + "proteins_100g": "13", + "salt_serving": 1.93, + "sugars": 3.4, + "fat": 7.7, + "energy_value": "234", + "salt": 1.1, + "proteins_unit": "", + "saturated-fat_value": "4.4", + "salt_unit": "", + "salt_100g": 1.1, + "carbohydrates": "27", + "sodium": 0.433070866141732, + "fiber_100g": 2.5, + "saturated-fat": 4.4, + "fiber": 2.5, + "sugars_100g": 3.4, + "salt_value": "1.1", + "energy_serving": "1710", + "fat_serving": 13.5, + "carbohydrates_serving": 47.2, + "carbohydrates_unit": "", + "sugars_value": "3.4", + "carbohydrates_value": "27", + "fiber_serving": 4.38, + "saturated-fat_unit": "", + "energy_unit": "kcal", + "nutrition-score-uk": "3", + "proteins_serving": 22.8, + "nutrition-score-fr": "3", + "sugars_unit": "" + }, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_prev_n": 0, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "additives_n": 0, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Pâte 55% : Farine de blé, eau, levure, huile de colza, dextrose de maïs, sel, sucre. Garniture 45% : Purée de tomates, mozzarella 16,7%, emmental 8,9%, préparation alimentaire à base de fromage (eau, fromage, matière grasse végétale de palme, protéines de lait, amidon de pomme de terre, sel), fromage de chèvre 8,5%, huile de colza, crème fraîche, crème, eau, farine de blé, sucre, gorgonzola, amidons de pomme de terre et de blé, sel, ail, origan, romarin, thym, basilic, marjolaine, persil, sarriette, cerfeuil, livèche, poivre blanc. Pourcentages exprimés sur la garniture", + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ], + "last_modified_t": 1533646937, + "manufacturing_places_tags": [], + "categories": "en:frozen-foods, en:meals, en:pizzas-pies-and-quiches, en:frozen-pizzas-and-pies, en:pizzas, en:frozen-pizzas, en:three-cheese-pizza", + "ingredients_n": 41, + "ingredients_original_tags": [ + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:canola-oil", + "en:corn-dextrose", + "en:salt", + "en:sugar", + "fr:garniture", + "fr:puree-de-tomate", + "fr:mozzarella", + "fr:emmental", + "fr:préparation alimentaire à base de fromage", + "fr:fromage-de-chevre", + "en:canola-oil", + "en:sour-cream", + "fr:creme", + "en:water", + "en:wheat-flour", + "en:sugar", + "fr:gorgonzola", + "fr:amidons de pomme de terre et de blé", + "en:salt", + "en:garlic", + "fr:origan", + "fr:romarin", + "en:thyme", + "fr:basilic", + "fr:marjolaine", + "fr:persil", + "fr:sarriette", + "fr:cerfeuil", + "fr:liveche", + "fr:poivre-blanc", + "fr:Pourcentages exprimés sur la garniture", + "en:water", + "fr:fromage", + "fr:matiere-grasse-vegetale-de-palme", + "en:milk-protein", + "en:potato-starch", + "en:salt" + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "aristoi", + "aurelien31", + "kiliweb" + ], + "image_url": "https://static.openfoodfacts.org/images/products/356/007/012/4817/front_fr.25.400.jpg", + "labels_tags": [], + "ingredients_debug": [ + "Pâte 55% ", + ":", + ":", + null, + null, + " Farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " dextrose de maïs", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sucre", + ". ", + null, + null, + null, + "Garniture 45% ", + ":", + ":", + null, + null, + " Purée de tomates", + ",", + null, + null, + null, + " mozzarella 16", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " emmental 8", + ",", + null, + null, + null, + "9%", + ",", + null, + null, + null, + " préparation alimentaire à base de fromage ", + "(", + "(", + null, + null, + "eau", + ",", + null, + null, + null, + " fromage", + ",", + null, + null, + null, + " matière grasse végétale de palme", + ",", + null, + null, + null, + " protéines de lait", + ",", + null, + null, + null, + " amidon de pomme de terre", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " fromage de chèvre 8", + ",", + null, + null, + null, + "5%", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " crème fraîche", + ",", + null, + null, + null, + " crème", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " gorgonzola", + ",", + null, + null, + null, + " amidons de pomme de terre et de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " romarin", + ",", + null, + null, + null, + " thym", + ",", + null, + null, + null, + " basilic", + ",", + null, + null, + null, + " marjolaine", + ",", + null, + null, + null, + " persil", + ",", + null, + null, + null, + " sarriette", + ",", + null, + null, + null, + " cerfeuil", + ",", + null, + null, + null, + " livèche", + ",", + null, + null, + null, + " poivre blanc", + ". ", + null, + null, + null, + "Pourcentages exprimés sur la garniture" + ], + "traces": "Céleri,Arachides", + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 1, + "product_name_debug_tags": [], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "tacite", + "scanbot", + "date-limite-app", + "aristoi", + "kiliweb", + "aurelien31", + "yukafix", + "openfoodfacts-contributors" + ], + "allergens": "", + "completed_t": 1401327266, + "last_image_dates_tags": [ + "2018-08-07", + "2018-08", + "2018" + ], + "scans_n": 41, + "code": "3560070124817", + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "editors": [ + "aristoi" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ] + }, + { + "nutrition_grades_tags": [ + "d" + ], + "last_edit_dates_tags": [ + "2018-08-07", + "2018-08", + "2018" + ], + "link": "", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "languages_codes": { + "de": 4, + "fr": 1 + }, + "generic_name_de": "", + "nutrition_grade_fr": "d", + "brands_tags": [ + "dr-oetker", + "dr-oetker", + "ristorante" + ], + "nutrition_grades": "d", + "serving_quantity": 0, + "labels_prev_tags": [], + "codes_tags": [ + "code-13", + "4001724820703", + "400172482070x", + "40017248207xx", + "4001724820xxx", + "400172482xxxx", + "40017248xxxxx", + "4001724xxxxxx", + "400172xxxxxxx", + "40017xxxxxxxx", + "4001xxxxxxxxx", + "400xxxxxxxxxx", + "40xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "twoflower", + "scanbot", + "kiliweb", + "tacite-mass-editor", + "beniben" + ], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "nutrition_score_warning_no_fiber": 1, + "allergens_hierarchy": [ + "en:milk" + ], + "nutrition_data": "on", + "additives_original_tags": [], + "additives_debug_tags": [], + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "de:Farine de BLE", + "de:ée de tomate", + "de:FROMAGE", + "de:salami piquant", + "de:antioxydant", + "de:extraits de romarin", + "de:fumée", + "de:préparation de piments doux", + "de:antioxydant", + "de:acide ascorbique", + "de:huile de colza", + "de:levure de boulangerie", + "de:eau", + "de:sel", + "de:sucre", + "de:huile d'olive vierge extra", + "de:amidon modifié", + "de:épices", + "de:jus de citron", + "de:origan", + "de:ail", + "de:arôme", + "de:MOZZARELLA", + "de:EDAM", + "de:viande de porc", + "de:lard", + "de:sel", + "de:épices", + "en:dextrose", + "de:ail en poudre", + "de:oignon en poudre", + "de:extraits d'épices", + "de:stabilisant", + "de:nitrite de sodium", + "de:piments doux", + "de:eau", + "de:vinaigre", + "de:sel", + "de:acidifiant", + "de:acide citrique" + ], + "manufacturing_places_debug_tags": [], + "last_image_t": 1501998077, + "additives_old_n": 5, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.200.jpg", + "nova_groups": 4, + "generic_name_fr": "", + "unique_scans_n": 3, + "unknown_ingredients_n": 39, + "unknown_nutrients_tags": [], + "max_imgid": "2", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france", + "en:germany" + ], + "emb_codes_orig": "", + "generic_name": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "nutrition_data_prepared_per": "100g", + "debug_param_sorted_langs": [ + "de", + "fr" + ], + "rev": 13, + "id": "4001724820703", + "nutrition_score_debug": " -- energy 3 + sat-fat 4 + fr-sat-fat-for-fats 5 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 0 - proteins 5 -- fsa 13 -- fr 13", + "_keywords": [ + "et", + "surgelee", + "salame", + "au", + "salami", + "ristorante", + "dr", + "pizza", + "tarte", + "pepperoni", + "surgele", + "piccante", + "oetker" + ], + "stores": "", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "languages_hierarchy": [ + "en:french", + "en:german" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.400.jpg", + "additives_old_tags": [ + "en:e1403", + "en:e250", + "en:e330", + "en:e300", + "en:e14xx" + ], + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-unknown-score-above-30", + "ingredients-90-percent-unknown", + "quantity-not-recognized" + ], + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "labels_prev_hierarchy": [], + "entry_dates_tags": [ + "2016-02-29", + "2016-02", + "2016" + ], + "traces_from_ingredients": "", + "countries_beforescanbot": "Deutschland", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/4001724820703/ristorante-pizza-salami-pepperoni-salame-piccante-dr-oetker", + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.100.jpg", + "interface_version_modified": "20120622", + "packaging_tags": [], + "product_name_fr": "", + "ingredients_text_de": "Farine de BLE, 28 % purée de tomate, 14% FROMAGE (MOZZARELLA, EDAM), 10 % salami piquant (viande de porc, lard, sel, épices, dextrose, ail en poudre, oignon en poudre, extraits d'épices, stabilisant (nitrite de sodium), antioxydant (extraits de romarin), fumée), 8,5 % préparation de piments doux (piments doux, eau, vinaigre, sel, acidifiant (acide citrique), antioxydant (acide ascorbique)), huile de colza, levure de boulangerie, eau, sel, sucre, huile d'olive vierge extra, amidon modifié, épices, jus de citron, origan, ail, arôme.", + "purchase_places_tags": [], + "labels": "", + "pnns_groups_1": "Composite foods", + "ingredients_text_debug_tags": [], + "ingredients_text": "Farine de BLE, 28 % purée de tomate, 14% FROMAGE (MOZZARELLA, EDAM), 10 % salami piquant (viande de porc, lard, sel, épices, dextrose, ail en poudre, oignon en poudre, extraits d'épices, stabilisant (nitrite de sodium), antioxydant (extraits de romarin), fumée), 8,5 % préparation de piments doux (piments doux, eau, vinaigre, sel, acidifiant (acide citrique), antioxydant (acide ascorbique)), huile de colza, levure de boulangerie, eau, sel, sucre, huile d'olive vierge extra, amidon modifié, épices, jus de citron, origan, ail, arôme.", + "emb_codes_tags": [], + "selected_images": { + "front": { + "small": { + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.200.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.400.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.100.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_fr.11.200.jpg", + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.200.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.400.jpg", + "fr": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_fr.11.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_fr.11.100.jpg", + "de": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.100.jpg" + } + } + }, + "sortkey": 533619681, + "lang_debug_tags": [], + "ingredients_text_fr": "", + "nutrition_data_prepared": "", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate" + }, + "lc": "de", + "product_name": "Ristorante Pizza Salami Pepperoni Salame Piccante", + "countries": "France,Allemagne", + "ingredients_text_fr_debug_tags": [], + "brands": "Dr Oetker,Dr. Oetker,Ristorante", + "checkers_tags": [], + "countries_debug_tags": [], + "generic_name_de_debug_tags": [], + "quantity": "", + "amino_acids_prev_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Farine de BLE, 28 % purée de tomate, 14% FROMAGE (MOZZARELLA, EDAM), 10 % salami piquant (viande de porc, lard, sel, épices, dextrose, ail en poudre, oignon en poudre, extraits d'épices, stabilisant : (nitrite de sodium), antioxydant : (extraits de romarin), fumée), 8,5 % préparation de piments doux (piments doux, eau, vinaigre, sel, acidifiant : (acide citrique), antioxydant : (acide ascorbique)), huile de colza, levure de boulangerie, eau, sel, sucre, huile d'olive vierge extra, amidon modifié, épices, jus de citron, origan, ail, arôme.", + "last_modified_t": 1533619681, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:pepperoni-pizzas" + ], + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Surgelés,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas au pepperoni", + "traces_from_user": "(fr)", + "ingredients_n": 40, + "ingredients_original_tags": [ + "de:Farine de BLE", + "de:ée de tomate", + "de:FROMAGE", + "de:salami piquant", + "de:antioxydant", + "de:extraits de romarin", + "de:fumée", + "de:préparation de piments doux", + "de:antioxydant", + "de:acide ascorbique", + "de:huile de colza", + "de:levure de boulangerie", + "de:eau", + "de:sel", + "de:sucre", + "de:huile d'olive vierge extra", + "de:amidon modifié", + "de:épices", + "de:jus de citron", + "de:origan", + "de:ail", + "de:arôme", + "de:MOZZARELLA", + "de:EDAM", + "de:viande de porc", + "de:lard", + "de:sel", + "de:épices", + "en:dextrose", + "de:ail en poudre", + "de:oignon en poudre", + "de:extraits d'épices", + "de:stabilisant", + "de:nitrite de sodium", + "de:piments doux", + "de:eau", + "de:vinaigre", + "de:sel", + "de:acidifiant", + "de:acide citrique" + ], + "last_editor": "beniben", + "purchase_places": "", + "creator": "date-limite-app", + "labels_debug_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutriments": { + "salt": 1.4, + "saturated-fat_value": "4.2", + "proteins_unit": "g", + "fat": "12", + "energy_value": "246", + "sodium_value": "0.551181102362205", + "sugars": 3.1, + "energy_serving": "", + "saturated-fat": 4.2, + "salt_value": "1.4", + "sugars_100g": 3.1, + "salt_100g": 1.4, + "carbohydrates": "24", + "sodium": 0.551181102362205, + "salt_unit": "g", + "carbohydrates_unit": "g", + "sugars_value": "3.1", + "carbohydrates_serving": "", + "fat_serving": "", + "proteins_serving": "", + "nutrition-score-fr": "13", + "sugars_unit": "g", + "energy_unit": "kcal", + "saturated-fat_unit": "g", + "nutrition-score-uk": "13", + "carbohydrates_value": "24", + "proteins_value": "9", + "proteins": "9", + "energy": "1029", + "fat_100g": "12", + "nova-group_100g": 4, + "nutrition-score-fr_100g": "13", + "sugars_serving": "", + "saturated-fat_serving": "", + "sodium_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "sodium_100g": 0.551181102362205, + "saturated-fat_100g": 4.2, + "sodium_serving": "", + "fat_value": "12", + "energy_100g": "1029", + "salt_serving": "", + "carbohydrates_100g": "24", + "proteins_100g": "9", + "nutrition-score-uk_100g": "13", + "fat_unit": "g" + }, + "ingredients_text_with_allergens_de": "Farine de BLE, 28 % purée de tomate, 14% FROMAGE (MOZZARELLA, EDAM), 10 % salami piquant (viande de porc, lard, sel, épices, dextrose, ail en poudre, oignon en poudre, extraits d'épices, stabilisant (nitrite de sodium), antioxydant (extraits de romarin), fumée), 8,5 % préparation de piments doux (piments doux, eau, vinaigre, sel, acidifiant (acide citrique), antioxydant (acide ascorbique)), huile de colza, levure de boulangerie, eau, sel, sucre, huile d'olive vierge extra, amidon modifié, épices, jus de citron, origan, ail, arôme.", + "product_name_de": "Ristorante Pizza Salami Pepperoni Salame Piccante", + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:pepperoni-pizzas" + ], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places_debug_tags": [], + "additives_prev_n": 0, + "additives_n": 0, + "allergens_from_user": "(fr)Lait", + "link_debug_tags": [], + "editors_tags": [ + "tacite-mass-editor", + "scanbot", + "date-limite-app", + "beniben", + "twoflower", + "openfoodfacts-contributors", + "kiliweb" + ], + "product_name_de_debug_tags": [], + "languages": { + "en:french": 1, + "en:german": 4 + }, + "allergens": "en:milk", + "last_image_dates_tags": [ + "2017-08-06", + "2017-08", + "2017" + ], + "code": "4001724820703", + "scans_n": 3, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:pepperoni-pizzas" + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.400.jpg", + "photographers_tags": [ + "date-limite-app", + "kiliweb" + ], + "labels_tags": [], + "ingredients_debug": [ + "Farine de BLE", + ",", + null, + null, + null, + " 28 % purée de tomate", + ",", + null, + null, + null, + " 14% FROMAGE ", + "(", + "(", + null, + null, + "MOZZARELLA", + ",", + null, + null, + null, + " EDAM)", + ",", + null, + null, + null, + " 10 % salami piquant ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " lard", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " ail en poudre", + ",", + null, + null, + null, + " oignon en poudre", + ",", + null, + null, + null, + " extraits d'épices", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "nitrite de sodium)", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "extraits de romarin)", + ",", + null, + null, + null, + " fumée)", + ",", + null, + null, + null, + " 8", + ",", + null, + null, + null, + "5 % préparation de piments doux ", + "(", + "(", + null, + null, + "piments doux", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " vinaigre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "acide citrique)", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "acide ascorbique))", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " levure de boulangerie", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + null, + " amidon modifié", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " jus de citron", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " arôme." + ], + "brands_debug_tags": [], + "traces": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "lang": "de", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.400.jpg", + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/front_de.4.100.jpg", + "manufacturing_places": "", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "labels_hierarchy": [], + "languages_tags": [ + "en:french", + "en:german", + "en:2", + "en:multilingual" + ], + "created_t": 1456760054, + "nova_group_debug": " -- ingredients/en:dextrose : 4", + "categories_debug_tags": [], + "vitamins_tags": [], + "_id": "4001724820703", + "ingredients_tags": [ + "de:farine-de-ble", + "de:ee-de-tomate", + "de:fromage", + "de:salami-piquant", + "de:antioxydant", + "de:extraits-de-romarin", + "de:fumee", + "de:preparation-de-piments-doux", + "de:antioxydant", + "de:acide-ascorbique", + "de:huile-de-colza", + "de:levure-de-boulangerie", + "de:eau", + "de:sel", + "de:sucre", + "de:huile-d-olive-vierge-extra", + "de:amidon-modifie", + "de:epices", + "de:jus-de-citron", + "de:origan", + "de:ail", + "de:arome", + "de:mozzarella", + "de:edam", + "de:viande-de-porc", + "de:lard", + "de:sel", + "de:epices", + "en:dextrose", + "de:ail-en-poudre", + "de:oignon-en-poudre", + "de:extraits-d-epices", + "de:stabilisant", + "de:nitrite-de-sodium", + "de:piments-doux", + "de:eau", + "de:vinaigre", + "de:sel", + "de:acidifiant", + "de:acide-citrique" + ], + "interface_version_created": "20120622", + "serving_size": "", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:pepperoni-pizzas" + ], + "additives_prev_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Farine de BLE, 28 % purée de tomate, 14% FROMAGE (MOZZARELLA, EDAM), 10 % salami piquant (viande de porc, lard, sel, épices, dextrose, ail en poudre, oignon en poudre, extraits d'épices, stabilisant (nitrite de sodium), antioxydant (extraits de romarin), fumée), 8,5 % préparation de piments doux (piments doux, eau, vinaigre, sel, acidifiant (acide citrique), antioxydant (acide ascorbique)), huile de colza, levure de boulangerie, eau, sel, sucre, huile d'olive vierge extra, amidon modifié, épices, jus de citron, origan, ail, arôme.", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "", + "nucleotides_tags": [], + "ingredients_text_de_debug_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "date-limite-app", + "twoflower", + "kiliweb", + "openfoodfacts-contributors" + ], + "packaging": "", + "ingredients_ids_debug": [ + "farine-de-ble", + "28-puree-de-tomate", + "14-fromage", + "mozzarella", + "edam", + "10-salami-piquant", + "viande-de-porc", + "lard", + "sel", + "epices", + "dextrose", + "ail-en-poudre", + "oignon-en-poudre", + "extraits-d-epices", + "stabilisant", + "nitrite-de-sodium", + "antioxydant", + "extraits-de-romarin", + "fumee", + "8", + "5-preparation-de-piments-doux", + "piments-doux", + "eau", + "vinaigre", + "sel", + "acidifiant", + "acide-citrique", + "antioxydant", + "acide-ascorbique", + "huile-de-colza", + "levure-de-boulangerie", + "eau", + "sel", + "sucre", + "huile-d-olive-vierge-extra", + "amidon-modifie", + "epices", + "jus-de-citron", + "origan", + "ail", + "arome" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/400/172/482/0703/ingredients_de.10.200.jpg", + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "last_modified_by": "beniben", + "cities_tags": [], + "origins_tags": [], + "ingredients_n_tags": [ + "40", + "31-40" + ], + "ingredients": [ + { + "id": "de:Farine de BLE", + "text": "Farine de BLE", + "rank": 1 + }, + { + "percent": "28", + "id": "de:ée de tomate", + "text": "ée de tomate", + "rank": 2 + }, + { + "rank": 3, + "text": "FROMAGE", + "id": "de:FROMAGE", + "percent": "14" + }, + { + "id": "de:salami piquant", + "percent": "10", + "rank": 4, + "text": "salami piquant" + }, + { + "text": "antioxydant", + "rank": 5, + "id": "de:antioxydant" + }, + { + "id": "de:extraits de romarin", + "text": "extraits de romarin", + "rank": 6 + }, + { + "id": "de:fumée", + "rank": 7, + "text": "fumée" + }, + { + "percent": "8.5", + "id": "de:préparation de piments doux", + "text": "préparation de piments doux", + "rank": 8 + }, + { + "id": "de:antioxydant", + "text": "antioxydant", + "rank": 9 + }, + { + "rank": 10, + "text": "acide ascorbique", + "id": "de:acide ascorbique" + }, + { + "id": "de:huile de colza", + "text": "huile de colza", + "rank": 11 + }, + { + "id": "de:levure de boulangerie", + "text": "levure de boulangerie", + "rank": 12 + }, + { + "text": "eau", + "rank": 13, + "id": "de:eau" + }, + { + "id": "de:sel", + "text": "sel", + "rank": 14 + }, + { + "rank": 15, + "text": "sucre", + "id": "de:sucre" + }, + { + "text": "huile d'olive vierge extra", + "rank": 16, + "id": "de:huile d'olive vierge extra" + }, + { + "text": "amidon modifié", + "rank": 17, + "id": "de:amidon modifié" + }, + { + "id": "de:épices", + "text": "épices", + "rank": 18 + }, + { + "text": "jus de citron", + "rank": 19, + "id": "de:jus de citron" + }, + { + "rank": 20, + "text": "origan", + "id": "de:origan" + }, + { + "text": "ail", + "rank": 21, + "id": "de:ail" + }, + { + "rank": 22, + "text": "arôme", + "id": "de:arôme" + }, + { + "id": "de:MOZZARELLA", + "text": "MOZZARELLA" + }, + { + "id": "de:EDAM", + "text": "EDAM" + }, + { + "text": "viande de porc", + "id": "de:viande de porc" + }, + { + "text": "lard", + "id": "de:lard" + }, + { + "id": "de:sel", + "text": "sel" + }, + { + "id": "de:épices", + "text": "épices" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "id": "de:ail en poudre", + "text": "ail en poudre" + }, + { + "text": "oignon en poudre", + "id": "de:oignon en poudre" + }, + { + "id": "de:extraits d'épices", + "text": "extraits d'épices" + }, + { + "text": "stabilisant", + "id": "de:stabilisant" + }, + { + "text": "nitrite de sodium", + "id": "de:nitrite de sodium" + }, + { + "text": "piments doux", + "id": "de:piments doux" + }, + { + "text": "eau", + "id": "de:eau" + }, + { + "id": "de:vinaigre", + "text": "vinaigre" + }, + { + "id": "de:sel", + "text": "sel" + }, + { + "text": "acidifiant", + "id": "de:acidifiant" + }, + { + "id": "de:acide citrique", + "text": "acide citrique" + } + ], + "emb_codes_20141016": "", + "images": { + "1": { + "uploaded_t": "1456760054", + "uploader": "date-limite-app", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1000, + "h": 1333 + } + } + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1501998075", + "sizes": { + "100": { + "h": 100, + "w": 11 + }, + "400": { + "h": 400, + "w": 46 + }, + "full": { + "h": 3736, + "w": 425 + } + } + }, + "ingredients_fr": { + "rev": "11", + "sizes": { + "100": { + "w": 11, + "h": 100 + }, + "200": { + "w": 23, + "h": 200 + }, + "400": { + "h": 400, + "w": 46 + }, + "full": { + "h": 3736, + "w": 425 + } + }, + "y1": null, + "angle": null, + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "imgid": "2", + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "front": { + "geometry": "990x1006-4-101", + "imgid": "1", + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 98 + }, + "200": { + "w": 197, + "h": 200 + }, + "400": { + "h": 400, + "w": 394 + }, + "full": { + "h": 1006, + "w": 990 + } + }, + "rev": "4", + "normalize": "false" + }, + "ingredients_de": { + "rev": "10", + "sizes": { + "100": { + "h": 100, + "w": 11 + }, + "200": { + "h": 200, + "w": 23 + }, + "400": { + "w": 46, + "h": 400 + }, + "full": { + "w": 425, + "h": 3736 + } + }, + "y1": -1, + "angle": 0, + "x1": -1, + "y2": -1, + "normalize": null, + "x2": -1, + "imgid": "2", + "white_magic": null, + "geometry": "0x0--9--9" + }, + "front_de": { + "rev": "4", + "normalize": "false", + "sizes": { + "100": { + "h": "100", + "w": "98" + }, + "200": { + "w": 197, + "h": 200 + }, + "400": { + "h": 400, + "w": 394 + }, + "full": { + "w": 990, + "h": 1006 + } + }, + "imgid": "1", + "white_magic": "false", + "geometry": "990x1006-4-101" + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "additives_prev_tags": [], + "allergens_from_ingredients": "MOZZARELLA", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_tags": [ + "en:milk" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ] + }, + { + "last_editor": null, + "purchase_places": "Royaume-Uni,Londres", + "creator": "teolemon", + "labels_debug_tags": [], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "nutrition-score-fr": "1", + "sugars_unit": "", + "proteins_serving": 18.3, + "nutrition-score-uk": "1", + "saturated-fat_unit": "", + "energy_unit": "kcal", + "fiber_serving": 4.76, + "carbohydrates_value": "24.9", + "carbohydrates_unit": "", + "sugars_value": "3.8", + "carbohydrates_serving": 59.3, + "fat_serving": 18.6, + "energy_serving": "2040", + "salt_value": "1", + "sugars_100g": 3.8, + "fiber": "2", + "saturated-fat": 1.9, + "carbohydrates": 24.9, + "sodium": 0.393700787401575, + "fiber_100g": "2", + "salt_100g": "1", + "salt_unit": "", + "saturated-fat_value": "1.9", + "proteins_unit": "", + "salt": "1", + "fat": 7.8, + "energy_value": "205", + "sugars": 3.8, + "proteins_100g": 7.7, + "salt_serving": 2.38, + "carbohydrates_100g": 24.9, + "fat_unit": "", + "nutrition-score-uk_100g": "1", + "saturated-fat_100g": 1.9, + "sodium_100g": 0.393700787401575, + "fat_value": "7.8", + "sodium_serving": 0.937, + "fiber_value": "2", + "energy_100g": "858", + "nutrition-score-fr_100g": "1", + "sugars_serving": 9.04, + "fiber_unit": "g", + "saturated-fat_serving": 4.52, + "proteins_value": "7.7", + "proteins": 7.7, + "fat_100g": 7.8, + "energy": "858" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "fr:Pizzas aux légumes" + ], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places_debug_tags": [], + "ingredients_text_debug": "", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "fr:Pizzas aux légumes" + ], + "last_modified_t": 1533451849, + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Meals,Pizzas pies and quiches,Pizzas,Pizzas aux légumes", + "ingredients_original_tags": [], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.400.jpg", + "photographers_tags": [ + "teolemon", + "kiliweb" + ], + "labels_tags": [], + "ingredients_debug": [], + "traces": "", + "brands_debug_tags": [], + "product_name_debug_tags": [], + "link_debug_tags": [], + "editors_tags": [ + "kiliweb", + "beniben", + "tacite-mass-editor", + "openfoodfacts-contributors", + "teolemon", + "bojackhorseman" + ], + "languages": { + "en:french": 4 + }, + "allergens": "", + "last_image_dates_tags": [ + "2018-08-05", + "2018-08", + "2018" + ], + "code": "00614313", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "fr:pizzas-aux-legumes" + ], + "vitamins_tags": [], + "_id": "00614313", + "ingredients_tags": [], + "product_quantity": 476, + "interface_version_created": "20120622", + "serving_size": "238 g", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "fr:pizzas-aux-legumes" + ], + "additives_prev_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.100.jpg", + "ingredients_text_with_allergens": "", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.100.jpg", + "quantity_debug_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "", + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.400.jpg", + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.100.jpg", + "labels_hierarchy": [], + "manufacturing_places": "", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1488128804, + "nova_group_debug": "no nova group when the product does not have ingredients", + "categories_debug_tags": [], + "cities_tags": [], + "last_modified_by": null, + "nova_group_tags": [ + "not-applicable" + ], + "origins_tags": [], + "ingredients": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploader": "teolemon", + "uploaded_t": "1488128804" + }, + "2": { + "uploaded_t": "1488128812", + "uploader": "teolemon", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 2000, + "w": 1125 + } + } + }, + "3": { + "uploaded_t": "1488128820", + "uploader": "teolemon", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "4": { + "sizes": { + "100": { + "w": 90, + "h": 100 + }, + "400": { + "w": 361, + "h": 400 + }, + "full": { + "w": 1083, + "h": 1200 + } + }, + "uploaded_t": 1533451846, + "uploader": "kiliweb" + }, + "front_fr": { + "imgid": "1", + "geometry": "1080x1470-41-269", + "white_magic": "false", + "x2": "224.25", + "normalize": "false", + "x1": "8.250000000000014", + "y2": "347.8125", + "angle": "90", + "y1": "53.8125", + "rev": "8", + "sizes": { + "100": { + "h": "100", + "w": "73" + }, + "200": { + "w": 147, + "h": 200 + }, + "400": { + "w": 294, + "h": 400 + }, + "full": { + "h": 1470, + "w": 1080 + } + } + }, + "nutrition_fr": { + "imgid": "2", + "geometry": "635x375-541-364", + "white_magic": "false", + "y2": "147.8125", + "x1": "108.328125", + "x2": "235.328125", + "normalize": "true", + "y1": "72.8125", + "angle": "0", + "sizes": { + "100": { + "h": 64, + "w": 100 + }, + "200": { + "w": 200, + "h": 128 + }, + "400": { + "h": 257, + "w": 400 + }, + "full": { + "h": 375, + "w": 584 + } + }, + "rev": "12" + }, + "ingredients_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "w": 90, + "h": 100 + }, + "200": { + "w": 181, + "h": 200 + }, + "400": { + "w": 361, + "h": 400 + }, + "full": { + "w": 1083, + "h": 1200 + } + }, + "rev": "16", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "4", + "x2": null, + "normalize": "0", + "y2": null, + "x1": null + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "additives_prev_tags": [], + "allergens_tags": [], + "allergens_from_ingredients": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "teolemon", + "tacite-mass-editor", + "beniben", + "bojackhorseman" + ], + "packaging": "Frais,plastique,carton", + "ingredients_ids_debug": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.200.jpg", + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nutrition_grades": "b", + "serving_quantity": 238, + "labels_prev_tags": [], + "codes_tags": [ + "code-8", + "00614313", + "0061431x", + "006143xx", + "00614xxx", + "0061xxxx", + "006xxxxx", + "00xxxxxx", + "0xxxxxxx" + ], + "correctors_tags": [ + "tacite-mass-editor", + "beniben", + "bojackhorseman", + "kiliweb", + "openfoodfacts-contributors" + ], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "nutrition_grades_tags": [ + "b" + ], + "last_edit_dates_tags": [ + "2018-08-05", + "2018-08", + "2018" + ], + "link": "", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.400.jpg", + "languages_codes": { + "fr": 4 + }, + "brands_tags": [ + "marks-spencer" + ], + "nutrition_grade_fr": "b", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.200.jpg", + "generic_name_fr": "", + "unknown_ingredients_n": 0, + "unknown_nutrients_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "4", + "countries_tags": [ + "en:france", + "en:united-kingdom" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "", + "additives_original_tags": [], + "allergens_hierarchy": [], + "additives_debug_tags": [], + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [], + "manufacturing_places_debug_tags": [], + "last_image_t": 1533451848, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "stores_tags": [ + "marks-spencer" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "countries_hierarchy": [ + "en:france", + "en:united-kingdom" + ], + "labels_prev_hierarchy": [], + "generic_name": "", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.200.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "nutrition_data_prepared_per": "100g", + "debug_param_sorted_langs": [ + "fr" + ], + "id": "00614313", + "rev": 16, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Marks & Spencer", + "_keywords": [ + "and", + "pie", + "basil", + "pizza", + "pesto", + "spencer", + "aux", + "meal", + "legume", + "chargrilled", + "mark", + "quiche", + "vegetable" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 1 + fr-sat-fat-for-fats 3 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 4 -- fsa 1 -- fr 1", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "ingredients_text": "", + "emb_codes_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/ingredients_fr.16.100.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/00614313/nutrition_fr.12.100.jpg" + } + } + }, + "sortkey": 533451849, + "lang_debug_tags": [], + "ingredients_text_fr": "", + "nutrient_levels": { + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "lc": "fr", + "product_name": "Chargrilled Vegetable & Basil Pesto Pizza", + "countries": "France,United Kingdom", + "ingredients_text_fr_debug_tags": [], + "brands": "Marks & Spencer", + "checkers_tags": [], + "countries_debug_tags": [], + "quantity": "476 g e", + "amino_acids_prev_tags": [], + "entry_dates_tags": [ + "2017-02-26", + "2017-02", + "2017" + ], + "traces_from_ingredients": "", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/00614313/chargrilled-vegetable-basil-pesto-pizza-marks-spencer", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/00614313/front_fr.8.100.jpg", + "update_key": "quoi", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "frais", + "plastique", + "carton" + ], + "purchase_places_tags": [ + "royaume-uni", + "londres" + ], + "product_name_fr": "Chargrilled Vegetable & Basil Pesto Pizza", + "labels": "", + "pnns_groups_1": "Composite foods" + }, + { + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "Crustacés,Œufs,Poisson,Mollusques,Moutarde,Fruits à coque,Graines de sésame", + "labels_tags": [ + "fr:viande-francaise", + "en:french-pork", + "en:green-dot" + ], + "ingredients_debug": [ + "Garniture ", + "(", + "(", + null, + null, + "51.4%) ", + ":", + ":", + null, + null, + " sauce tomate aromatisée ", + "(", + "(", + null, + null, + "concentré de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " amidons modifiés de maïs", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " origan)", + ",", + null, + null, + null, + " jambon cuit standard ", + "(", + "(", + null, + null, + "21.1%) ", + "(", + "(", + null, + null, + "jambon de porc ", + "(", + "(", + null, + null, + "France)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " plasma de porc", + ",", + null, + null, + null, + " stabilisants ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e450", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " arôme", + ",", + null, + null, + null, + " arôme de fumé", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " _mozzarella_ ", + "(", + "(", + null, + null, + "11.4%)", + ",", + null, + null, + null, + " _edam_ ", + "(", + "(", + null, + null, + "11.4%)", + ",", + null, + null, + null, + " champignons de Paris ", + "(", + "(", + null, + null, + "10.7%)", + ",", + null, + null, + null, + " herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre", + ". ", + null, + null, + null, + "Pâte ", + "(", + "(", + null, + null, + "48.6%) ", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " farine de _blé_ malté toasté", + ",", + null, + null, + null, + " levure chimique ", + "(", + "(", + null, + null, + "farine de _blé_", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e450i", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " 500ii)" + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.400.jpg", + "photographers_tags": [ + "nouky20" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pork-meals", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-tartes-salees-et-quiches" + ], + "code": "32503920882200", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "completed_t": 1525540400, + "allergens": "Gluten,Lait", + "last_image_dates_tags": [ + "2018-03-15", + "2018-03", + "2018" + ], + "link_debug_tags": [], + "editors_tags": [ + "nouky20", + "moon-rabbit" + ], + "languages": { + "en:french": 5 + }, + "additives_n": 6, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "additives_prev_n": 6, + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "salt_serving": 2.5, + "proteins_100g": 8.7, + "carbohydrates_100g": 30.3, + "fat_unit": "g", + "nutrition-score-uk_100g": 4, + "energy_100g": 833, + "saturated-fat_100g": 2.6, + "sodium_100g": 0.492125984251969, + "fat_value": "4", + "sodium_serving": 0.984, + "saturated-fat_serving": 5.2, + "nova-group": 4, + "nova-group_serving": 4, + "sodium_unit": "g", + "nutrition-score-fr_100g": 4, + "sugars_serving": 5.4, + "fat_100g": 4, + "energy": 833, + "nova-group_100g": 4, + "proteins_value": "8.7", + "proteins": 8.7, + "nutrition-score-uk": 4, + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "carbohydrates_value": "30.3", + "sugars_unit": "g", + "nutrition-score-fr": 4, + "proteins_serving": 17.4, + "fat_serving": 8, + "carbohydrates_unit": "g", + "sugars_value": "2.7", + "carbohydrates_serving": 60.6, + "carbohydrates": 30.3, + "sodium": 0.492125984251969, + "salt_100g": 1.25, + "salt_unit": "g", + "energy_serving": 1670, + "salt_value": "1.25", + "sugars_100g": 2.7, + "saturated-fat": 2.6, + "sodium_value": "0.49212598425196846", + "sugars": 2.7, + "saturated-fat_value": "2.6", + "proteins_unit": "g", + "salt": 1.25, + "fat": 4, + "energy_value": "199" + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "last_editor": "moon-rabbit", + "purchase_places": "", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-french-pork", + "removed-fr-porc-francais" + ], + "creator": "nouky20", + "ingredients_n": 40, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "fr:amidon-modifie-de-mais", + "en:natural-flavour", + "en:sugar", + "fr:origan", + "fr:jambon-cuit-standard", + "en:water", + "en:dextrose", + "fr:plasma-de-porc", + "en:stabiliser", + "fr:diphosphate", + "fr:e451", + "en:flavour", + "en:smoke-flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:mozzarella", + "fr:edam", + "fr:champignon-de-paris", + "fr:herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "en:canola-oil", + "fr:farine de _blé_ malté toasté", + "fr:levure-chimique", + "fr:sauce tomate aromatisée", + "en:tomato-concentrate", + "fr:jambon-de-porc", + "fr:France", + "en:wheat-flour", + "en:stabiliser", + "fr:e450i", + "en:acid", + "fr:500ii" + ], + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pork-meals", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1533301411, + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Surgelés,Plats préparés,Meat-based products,Plats à base de viande,Pizzas,Pizzas,Pizzas au fromage,Plats à base de viande porcine,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas au jambon,Pizzas jambon-fromage,Pizzas tartes salées et quiches", + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture (51.4%) : sauce tomate aromatisée (concentré de tomate, eau, amidons modifiés de maïs, arôme naturel, sucre, origan), jambon cuit standard (21.1%) (jambon de porc (France), eau, dextrose, plasma de porc, stabilisants : - e450 - , - e451 - , arôme, arôme de fumé, antioxydant : - e316 - , conservateur : - e250 - ), _mozzarella_ (11.4%), _edam_ (11.4%), champignons de Paris (10.7%), herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre. Pâte (48.6%) : farine de _blé_, eau, levure boulangère, sel, huile de colza, farine de _blé_ malté toasté, levure chimique (farine de _blé_, stabilisant : - e450i - , acidifiant : 500ii)", + "allergens_from_ingredients": "mozzarella, edam, blé, blé, blé", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e14xx", + "en:e250", + "en:e316", + "en:e450", + "en:e450i", + "en:e451" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "traces_tags": [ + "en:crustaceans", + "en:eggs", + "en:fish", + "en:molluscs", + "en:mustard", + "en:nuts", + "en:sesame-seeds" + ], + "images": { + "2": { + "uploader": "nouky20", + "uploaded_t": "1521147481", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploader": "nouky20", + "uploaded_t": "1521147484" + }, + "4": { + "uploader": "nouky20", + "uploaded_t": "1521147606", + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "400": { + "h": 188, + "w": 400 + }, + "full": { + "h": 861, + "w": 1836 + } + } + }, + "ingredients_fr": { + "y1": "0", + "angle": "0", + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "200": { + "h": 94, + "w": 200 + }, + "400": { + "w": 400, + "h": 188 + }, + "full": { + "h": 861, + "w": 1836 + } + }, + "rev": "8", + "imgid": "4", + "geometry": "0x0-0-0", + "white_magic": "false", + "y2": "0", + "x1": "0", + "normalize": "true", + "x2": "0" + }, + "front_fr": { + "rev": "7", + "sizes": { + "100": { + "w": "93", + "h": "100" + }, + "200": { + "w": 186, + "h": 200 + }, + "400": { + "h": 400, + "w": 372 + }, + "full": { + "w": 1125, + "h": 1210 + } + }, + "angle": "0", + "y1": "54.8125", + "normalize": "true", + "x2": "227.75", + "x1": "-1.25", + "y2": "296.8125", + "imgid": "2", + "white_magic": "false", + "geometry": "1144x1210--6-274" + }, + "nutrition_fr": { + "geometry": "1105x705-131-136", + "imgid": "3", + "white_magic": "false", + "x1": "26.25", + "y2": "168.3125", + "normalize": "true", + "x2": "247.25", + "y1": "27.3125", + "angle": "180", + "rev": "9", + "sizes": { + "100": { + "w": 100, + "h": 64 + }, + "200": { + "h": 128, + "w": 200 + }, + "400": { + "h": 255, + "w": 400 + }, + "full": { + "h": 705, + "w": 1105 + } + } + } + }, + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "ingredients": [ + { + "id": "fr:garniture", + "percent": "51.4", + "text": "Garniture", + "rank": 1 + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "text": "amidons modifiés de maïs", + "rank": 3, + "id": "fr:amidon-modifie-de-mais" + }, + { + "rank": 4, + "text": "arôme naturel", + "id": "en:natural-flavour" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 5 + }, + { + "rank": 6, + "text": "origan", + "id": "fr:origan" + }, + { + "id": "fr:jambon-cuit-standard", + "percent": "21.1", + "text": "jambon cuit standard", + "rank": 7 + }, + { + "text": "eau", + "rank": 8, + "id": "en:water" + }, + { + "id": "en:dextrose", + "text": "dextrose", + "rank": 9 + }, + { + "id": "fr:plasma-de-porc", + "rank": 10, + "text": "plasma de porc" + }, + { + "id": "en:stabiliser", + "text": "stabilisants", + "rank": 11 + }, + { + "rank": 12, + "text": "E450", + "id": "fr:diphosphate" + }, + { + "id": "fr:e451", + "rank": 13, + "text": "E451" + }, + { + "id": "en:flavour", + "text": "arôme", + "rank": 14 + }, + { + "id": "en:smoke-flavour", + "text": "arôme de fumé", + "rank": 15 + }, + { + "id": "en:antioxidant", + "rank": 16, + "text": "antioxydant" + }, + { + "text": "E316", + "rank": 17, + "id": "fr:e316" + }, + { + "text": "conservateur", + "rank": 18, + "id": "en:preservative" + }, + { + "rank": 19, + "text": "E250", + "id": "fr:e250" + }, + { + "percent": "11.4", + "id": "fr:mozzarella", + "rank": 20, + "text": "_mozzarella_" + }, + { + "rank": 21, + "text": "_edam_", + "id": "fr:edam", + "percent": "11.4" + }, + { + "id": "fr:champignon-de-paris", + "percent": "10.7", + "text": "champignons de Paris", + "rank": 22 + }, + { + "rank": 23, + "text": "herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre", + "id": "fr:herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre" + }, + { + "percent": "48.6", + "id": "en:paste", + "text": "Pâte", + "rank": 24 + }, + { + "text": "farine de _blé_", + "rank": 25, + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "rank": 26, + "text": "eau" + }, + { + "rank": 27, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "rank": 28, + "text": "sel", + "id": "en:salt" + }, + { + "text": "huile de colza", + "rank": 29, + "id": "en:canola-oil" + }, + { + "id": "fr:farine de _blé_ malté toasté", + "text": "farine de _blé_ malté toasté", + "rank": 30 + }, + { + "text": "levure chimique", + "rank": 31, + "id": "fr:levure-chimique" + }, + { + "text": "sauce tomate aromatisée", + "id": "fr:sauce tomate aromatisée" + }, + { + "text": "concentré de tomate", + "id": "en:tomato-concentrate" + }, + { + "text": "jambon de porc", + "id": "fr:jambon-de-porc" + }, + { + "text": "France", + "id": "fr:France" + }, + { + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e450i", + "text": "E450i" + }, + { + "id": "en:acid", + "text": "acidifiant" + }, + { + "id": "fr:500ii", + "text": "500ii" + } + ], + "cities_tags": [], + "last_modified_by": "moon-rabbit", + "origins_tags": [ + "porc-origine-france" + ], + "ingredients_n_tags": [ + "40", + "31-40" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [ + "garniture", + "51-4", + "sauce-tomate-aromatisee", + "concentre-de-tomate", + "eau", + "amidons-modifies-de-mais", + "arome-naturel", + "sucre", + "origan", + "jambon-cuit-standard", + "21-1", + "jambon-de-porc", + "france", + "eau", + "dextrose", + "plasma-de-porc", + "stabilisants", + "e450", + "e451", + "arome", + "arome-de-fume", + "antioxydant", + "e316", + "conservateur", + "e250", + "mozzarella", + "11-4", + "edam", + "11-4", + "champignons-de-paris", + "10-7", + "herbes-aromatiques-pourcentages-exprimes-sur-la-garniture-mise-en-oeuvre", + "pate", + "48-6", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel", + "huile-de-colza", + "farine-de-ble-malte-toaste", + "levure-chimique", + "farine-de-ble", + "stabilisant", + "e450i", + "acidifiant", + "500ii" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.200.jpg", + "packaging": "Boite,carton,plastique,blister,Atmosphère protectrice,Surgelé", + "informers_tags": [ + "nouky20" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture (51.4%) : sauce tomate aromatisée (concentré de tomate, eau, amidons modifiés de maïs, arôme naturel, sucre, origan), jambon cuit standard (21.1%) (jambon de porc (France), eau, dextrose, plasma de porc, stabilisants :E450, E451, arôme, arôme de fumé, antioxydant : E316, conservateur : E250), mozzarella (11.4%), edam (11.4%), champignons de Paris (10.7%), herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre. Pâte (48.6%) : farine de blé, eau, levure boulangère, sel, huile de colza, farine de blé malté toasté, levure chimique (farine de blé, stabilisant : E450i, acidifiant : 500ii)", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.100.jpg", + "additives_prev_original_tags": [ + "en:e14xx", + "en:e450", + "en:e451", + "en:e316", + "en:e250", + "en:e450i" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.100.jpg", + "ingredients_text_with_allergens": "Garniture (51.4%) : sauce tomate aromatisée (concentré de tomate, eau, amidons modifiés de maïs, arôme naturel, sucre, origan), jambon cuit standard (21.1%) (jambon de porc (France), eau, dextrose, plasma de porc, stabilisants :E450, E451, arôme, arôme de fumé, antioxydant : E316, conservateur : E250), mozzarella (11.4%), edam (11.4%), champignons de Paris (10.7%), herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre. Pâte (48.6%) : farine de blé, eau, levure boulangère, sel, huile de colza, farine de blé malté toasté, levure chimique (farine de blé, stabilisant : E450i, acidifiant : 500ii)", + "quantity_debug_tags": [], + "_id": "32503920882200", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:natural-flavour", + "en:flavour", + "en:sugar", + "fr:origan", + "fr:jambon-cuit-standard", + "en:water", + "en:dextrose", + "fr:plasma-de-porc", + "en:stabiliser", + "fr:diphosphate", + "fr:e451", + "en:flavour", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:mozzarella", + "fr:edam", + "fr:champignon-de-paris", + "fr:herbes-aromatiques-pourcentages-exprimes-sur-la-garniture-mise-en-oeuvre", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "en:canola-oil", + "en:vegetable-oil", + "fr:farine-de-ble-malte-toaste", + "fr:levure-chimique", + "fr:sauce-tomate-aromatisee", + "en:tomato-concentrate", + "fr:jambon-de-porc", + "fr:france", + "en:wheat-flour", + "en:stabiliser", + "fr:e450i", + "en:acid", + "fr:500ii" + ], + "product_quantity": 600, + "serving_size": "200 g", + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "vitamins_tags": [], + "nova_group_debug": " -- ingredients/en:starch : 3 -- additives/en:e450 : 4", + "created_t": 1521143822, + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "origins": "Porc : Origine France", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.100.jpg", + "labels_hierarchy": [ + "fr:viande-francaise", + "en:french-pork", + "en:green-dot" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.400.jpg", + "lang": "fr", + "nutrition_data_per": "100g", + "max_imgid": "4", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "", + "unknown_ingredients_n": 5, + "unknown_nutrients_tags": [], + "generic_name_fr": "", + "traces_hierarchy": [ + "en:crustaceans", + "en:eggs", + "en:fish", + "en:molluscs", + "en:mustard", + "en:nuts", + "en:sesame-seeds" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.200.jpg", + "nova_groups": 4, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1521147606, + "additives_old_n": 6, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:natural-flavour", + "en:flavour", + "en:sugar", + "fr:origan", + "fr:jambon-cuit-standard", + "en:water", + "en:dextrose", + "fr:plasma-de-porc", + "en:stabiliser", + "fr:diphosphate", + "fr:e451", + "en:flavour", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:mozzarella", + "fr:edam", + "fr:champignon-de-paris", + "fr:herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "en:canola-oil", + "en:vegetable-oil", + "fr:farine de _blé_ malté toasté", + "fr:levure-chimique", + "fr:sauce tomate aromatisée", + "en:tomato-concentrate", + "fr:jambon-de-porc", + "fr:France", + "en:wheat-flour", + "en:stabiliser", + "fr:e450i", + "en:acid", + "fr:500ii" + ], + "manufacturing_places_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e14xx", + "en:e450", + "en:e451", + "en:e316", + "en:e250", + "en:e450i" + ], + "additives_debug_tags": [], + "nutrition_score_warning_no_fiber": 1, + "expiration_date": "", + "emb_codes": "", + "minerals_prev_tags": [], + "nova_group": 4, + "codes_tags": [ + "code-14", + 32503920882200, + "3250392088220x", + "325039208822xx", + "32503920882xxx", + "3250392088xxxx", + "325039208xxxxx", + "32503920xxxxxx", + "3250392xxxxxxx", + "325039xxxxxxxx", + "32503xxxxxxxxx", + "3250xxxxxxxxxx", + "325xxxxxxxxxxx", + "32xxxxxxxxxxxx", + "3xxxxxxxxxxxxx" + ], + "correctors_tags": [ + "nouky20", + "moon-rabbit" + ], + "nutrition_grades": "c", + "serving_quantity": 200, + "labels_prev_tags": [ + "fr:viande-francaise", + "en:green-dot", + "fr:porc-francais" + ], + "brands_tags": [ + "netto" + ], + "nutrition_grade_fr": "c", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.400.jpg", + "languages_codes": { + "fr": 5 + }, + "link": "", + "last_edit_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Netto", + "quantity": "600 g", + "amino_acids_prev_tags": [], + "nutrient_levels": { + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "lc": "fr", + "product_name": "Maxi Moelleuse Royale", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "sortkey": 1533301411, + "lang_debug_tags": [], + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture (51.4%) : sauce tomate aromatisée (concentré de tomate, eau, amidons modifiés de maïs, arôme naturel, sucre, origan), jambon cuit standard (21.1%) (jambon de porc (France), eau, dextrose, plasma de porc, stabilisants :E450, E451, arôme, arôme de fumé, antioxydant : E316, conservateur : E250), _mozzarella_ (11.4%), _edam_ (11.4%), champignons de Paris (10.7%), herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre. Pâte (48.6%) : farine de _blé_, eau, levure boulangère, sel, huile de colza, farine de _blé_ malté toasté, levure chimique (farine de _blé_, stabilisant : E450i, acidifiant : 500ii)", + "ingredients_text": "Garniture (51.4%) : sauce tomate aromatisée (concentré de tomate, eau, amidons modifiés de maïs, arôme naturel, sucre, origan), jambon cuit standard (21.1%) (jambon de porc (France), eau, dextrose, plasma de porc, stabilisants :E450, E451, arôme, arôme de fumé, antioxydant : E316, conservateur : E250), _mozzarella_ (11.4%), _edam_ (11.4%), champignons de Paris (10.7%), herbes aromatiques.Pourcentages exprimés sur la garniture mise en œuvre. Pâte (48.6%) : farine de _blé_, eau, levure boulangère, sel, huile de colza, farine de _blé_ malté toasté, levure chimique (farine de _blé_, stabilisant : E450i, acidifiant : 500ii)", + "emb_codes_tags": [], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.200.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.100.jpg" + } + } + }, + "labels": "Viande Française,Point Vert,Porc Français", + "pnns_groups_1": "Composite foods", + "update_key": "nova2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.100.jpg", + "interface_version_modified": "20120622", + "packaging_tags": [ + "boite", + "carton", + "plastique", + "blister", + "atmosphere-protectrice", + "surgele" + ], + "product_name_fr": "Maxi Moelleuse Royale", + "purchase_places_tags": [], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/32503920882200/maxi-moelleuse-royale-netto", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2018-03-15", + "2018-03", + "2018" + ], + "labels_prev_hierarchy": [ + "fr:viande-francaise", + "en:green-dot", + "fr:porc-francais" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50" + ], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "netto" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/front_fr.7.200.jpg", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/ingredients_fr.8.400.jpg", + "additives_old_tags": [ + "en:e14xx", + "en:e450", + "en:e451", + "en:e316", + "en:e250", + "en:e1403" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "id": "32503920882200", + "rev": 12, + "_keywords": [ + "maxi", + "francaise", + "royale", + "base", + "pizza", + "prepare", + "vert", + "netto", + "origine", + "point", + "meat-based", + "jambon-fromage", + "surgele", + "porcine", + "fromage", + "quiche", + "surgelee", + "plat", + "jambon", + "et", + "de", + "viande", + "porc", + "product", + "france", + "francai", + "salee", + "au", + "tarte", + "moelleuse" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 10 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 0 - proteins 5 -- fsa 4 -- fr 4", + "stores": "Netto", + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/039/208/82200/nutrition_fr.9.200.jpg", + "generic_name": "", + "additives_tags": [ + "en:e14xx", + "en:e250", + "en:e316", + "en:e450", + "en:e450i", + "en:e451" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ] + }, + { + "ingredients": [], + "nova_group_tags": [ + "not-applicable" + ], + "last_modified_by": "moon-rabbit", + "cities_tags": [], + "origins_tags": [ + "france" + ], + "allergens_tags": [], + "additives_prev_tags": [], + "allergens_from_ingredients": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "images": { + "1": { + "uploaded_t": "1485639191", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 510, + "h": 680 + } + } + }, + "front_fr": { + "rev": "4", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 680, + "w": 510 + } + }, + "y1": "0", + "angle": "0", + "x1": "0", + "y2": "0", + "normalize": "false", + "x2": "0", + "white_magic": "false", + "imgid": "1", + "geometry": "0x0-0-0" + }, + "front_en": { + "y2": -1, + "x1": -1, + "x2": -1, + "normalize": null, + "geometry": "0x0--1--1", + "white_magic": null, + "imgid": "1", + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 510, + "h": 680 + } + }, + "rev": "3", + "y1": -1, + "angle": 0 + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "generic_name_en_debug_tags": [], + "informers_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "tacite" + ], + "packaging": "carton,surgelé", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [], + "_id": "3250390564843", + "ingredients_tags": [], + "serving_size": "", + "interface_version_created": "20150316.jqm2", + "product_quantity": 400, + "generic_name_en": "", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:regina-pizza" + ], + "vitamins_tags": [], + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "", + "additives_prev_original_tags": [], + "ingredients_text_with_allergens": "", + "quantity_debug_tags": [], + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.400.jpg", + "lang": "fr", + "nova_group_debug": "no nova group when the product does not have ingredients", + "languages_tags": [ + "en:english", + "en:french", + "en:2", + "en:multilingual" + ], + "created_t": 1485639191, + "categories_debug_tags": [], + "origins": "France", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.100.jpg", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [ + "fr:viande-francaise", + "en:french-pork" + ], + "labels_tags": [ + "fr:viande-francaise", + "en:french-pork" + ], + "ingredients_debug": [], + "vitamins_prev_tags": [], + "photographers_tags": [ + "openfoodfacts-contributors" + ], + "image_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.400.jpg", + "product_name_debug_tags": [], + "product_name_en": "", + "brands_debug_tags": [], + "traces": "", + "allergens": "", + "last_image_dates_tags": [ + "2017-01-28", + "2017-01", + "2017" + ], + "link_debug_tags": [], + "editors_tags": [ + "moon-rabbit", + "tacite", + "openfoodfacts-contributors", + "kiliweb" + ], + "languages": { + "en:english": 1, + "en:french": 2 + }, + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:regina-pizza" + ], + "code": "3250390564843", + "ingredients_text_with_allergens_en": "", + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutriments": { + "sugars_value": "3.4", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "nutrition-score-uk": "11", + "fiber_serving": "", + "proteins_serving": "", + "sugars_unit": "g", + "nutrition-score-fr": "11", + "sodium_value": "0.62992125984252", + "sugars": 3.4, + "salt": 1.6, + "saturated-fat_value": "3.7", + "proteins_unit": "g", + "energy_value": "197", + "salt_100g": 1.6, + "fiber_100g": "0", + "sodium": 0.62992125984252, + "salt_unit": "g", + "energy_serving": "", + "saturated-fat": 3.7, + "sugars_100g": 3.4, + "salt_value": "1.6", + "fiber": "0", + "fiber_value": "0", + "energy_100g": "824", + "saturated-fat_100g": 3.7, + "sodium_100g": 0.62992125984252, + "sodium_serving": "", + "proteins_100g": 7.9, + "salt_serving": "", + "nutrition-score-uk_100g": "11", + "energy": "824", + "proteins_value": "7.9", + "proteins": 7.9, + "saturated-fat_serving": "", + "fiber_unit": "g", + "sodium_unit": "g", + "nutrition-score-fr_100g": "11", + "sugars_serving": "" + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:regina-pizza" + ], + "last_editor": "moon-rabbit", + "purchase_places": "", + "creator": "kiliweb", + "labels_debug_tags": [ + "added-en-french-pork", + "removed-fr-porc-francais" + ], + "nutrition_data_prepared_per_debug_tags": [], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "ingredients_text_debug": "", + "ingredients_original_tags": [], + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:regina-pizza" + ], + "last_modified_t": 1533289170, + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Surgelés,Plats préparés,Pizzas,Pizzas,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas royale", + "lang_debug_tags": [], + "sortkey": 533289170, + "ingredients_text_fr": "", + "ingredients_text_en": "", + "nutrition_data_prepared": "", + "ingredients_text": "", + "emb_codes_tags": [], + "selected_images": { + "front": { + "small": { + "en": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.200.jpg", + "fr": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_fr.4.400.jpg", + "en": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.400.jpg" + }, + "thumb": { + "en": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.100.jpg", + "fr": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_fr.4.100.jpg" + } + } + }, + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Fiorini", + "quantity": "400 g", + "amino_acids_prev_tags": [], + "nutrient_levels": { + "salt": "high", + "saturated-fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "product_name": "Pizza Royale di Pierra", + "lc": "fr", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "traces_from_ingredients": "", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3250390564843/pizza-royale-di-pierra-fiorini", + "ingredients_text_en_debug_tags": [], + "entry_dates_tags": [ + "2017-01-28", + "2017-01", + "2017" + ], + "labels": "Viande Française,Porc Français", + "pnns_groups_1": "Composite foods", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "packaging_tags": [ + "carton", + "surgele" + ], + "purchase_places_tags": [], + "product_name_fr": "Pizza Royale di Pierra", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "nutrition-saturated-fat-greater-than-fat" + ], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.200.jpg", + "labels_prev_hierarchy": [ + "fr:viande-francaise", + "fr:porc-francais" + ], + "nutrition_data_prepared_per": "100g", + "generic_name": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "languages_hierarchy": [ + "en:english", + "en:french" + ], + "additives_old_tags": [], + "debug_param_sorted_langs": [ + "fr", + "en" + ], + "rev": 6, + "id": "3250390564843", + "nutrient_levels_tags": [ + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "stores": "", + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 10 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 11 -- fr 11", + "_keywords": [ + "surgelee", + "francaise", + "et", + "plat", + "di", + "viande", + "francai", + "royale", + "pizza", + "france", + "prepare", + "porc", + "surgele", + "fiorini", + "tarte", + "pierra" + ], + "generic_name_fr": "", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/039/056/4843/front_en.3.200.jpg", + "max_imgid": "1", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "emb_codes_orig": "", + "unknown_ingredients_n": 0, + "unknown_nutrients_tags": [], + "allergens_hierarchy": [], + "nutrition_data": "on", + "additives_original_tags": [], + "additives_debug_tags": [], + "last_image_t": 1485639191, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [], + "manufacturing_places_debug_tags": [], + "codes_tags": [ + "code-13", + "3250390564843", + "325039056484x", + "32503905648xx", + "3250390564xxx", + "325039056xxxx", + "32503905xxxxx", + "3250390xxxxxx", + "325039xxxxxxx", + "32503xxxxxxxx", + "3250xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "tacite", + "moon-rabbit" + ], + "serving_quantity": 0, + "nutrition_grades": "d", + "labels_prev_tags": [ + "fr:viande-francaise", + "fr:porc-francais" + ], + "expiration_date": "", + "emb_codes": "", + "minerals_prev_tags": [], + "product_name_en_debug_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "nutrition_grade_fr": "d", + "brands_tags": [ + "fiorini" + ], + "languages_codes": { + "en": 1, + "fr": 2 + } + }, + { + "unique_scans_n": 4, + "unknown_ingredients_n": 7, + "unknown_nutrients_tags": [], + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "5", + "emb_codes_orig": "", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.200.jpg", + "generic_name_fr": "Pizza Emmental, Mozarella, cheddar fondu et olives noires avec noyau", + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:puree-de-tomates-double-concentre", + "fr:puree-de-tomate", + "en:wheat-flour", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "fr:oignon-en-poudre", + "en:onions", + "en:sugar", + "fr:arôme naturel d'origan avec autres arômes naturels", + "fr:ail-en-poudre", + "fr:piment-doux", + "fr:piment", + "fr:emmental", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:olives noires entières 3.", + "fr:basilic 0.", + "fr:origan", + "fr:Pourcentages exprimés sur la garniture\nPâte cuite", + "en:wheat-flour", + "en:water", + "fr:levure", + "fr:sure", + "en:salt", + "fr:Sauce tomate cuisinée", + "en:water", + "fr:lait-pasteurise", + "en:milk", + "en:salt", + "fr:ferments-lactiques", + "fr:coagulant", + "en:acidity-regulator", + "en:citric-acid", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "fr:bêta", + "fr:carotene", + "fr:extraits-de-paprika", + "en:olive", + "en:salt", + "en:acid", + "en:lactic-acid", + "en:stabiliser", + "fr:e579" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1520450359, + "additives_old_n": 7, + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e14xx", + "en:e330", + "en:e331", + "en:e160ai", + "en:e160c", + "en:e270", + "en:e579" + ], + "additives_debug_tags": [ + "en-e160ai-added" + ], + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "30/03/2018", + "nutrition_grades": "c", + "serving_quantity": 0, + "labels_prev_tags": [ + "en:green-dot" + ], + "codes_tags": [ + "code-13", + "3564700038291", + "356470003829x", + "35647000382xx", + "3564700038xxx", + "356470003xxxx", + "35647000xxxxx", + "3564700xxxxxx", + "356470xxxxxxx", + "35647xxxxxxxx", + "3564xxxxxxxxx", + "356xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "date-limite-app", + "jog-2012", + "segundo", + "beniben", + "asmoth" + ], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.400.jpg", + "brands_tags": [ + "turini", + "marque-repere" + ], + "nutrition_grade_fr": "c", + "new_additives_n": 5, + "nutrition_grades_tags": [ + "c" + ], + "link": "", + "last_edit_dates_tags": [ + "2018-08-02", + "2018-08", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "lc": "fr", + "product_name": "Pizza 3 Fromages", + "brands": "Turini,Marque Repère", + "countries_debug_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "450 g", + "emb_codes_tags": [], + "ingredients_text": "Garniture (58,5%) : Sauce tomate cuisinée 37%* (eau, purée de tomates double concentrée, farine de _blé_, amidon modifié de maïs, oignon en poudre, sucre, arôme naturel d'origan avec autres arômes naturels, ail en poudre, piment doux), _emmental_ 24%*, _mozzarella_ 22% (_lait_ pasteurisé, sel, _ferments lactiques_, coagulant, correcteur d'acidité : acide citrique), _cheddar_ fondu 11%* (_cheddar_, eau, amidon modifié de pomme de terre ; _beurre_ ; protéines de _lait_, sel de fonte : E331 ; sel ; colorants : bêta-carotène, extraits de paprika), olives noires entières 3,7%* (olives, sel, acidifiant : acide lactique, stabilisant : E579), basilic 0,04%*, origan. \r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite (41,5%) : Farine de _blé_, eau, levure, sure, sel.", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.200.jpg" + } + } + }, + "ingredients_text_fr": "Garniture (58,5%) : Sauce tomate cuisinée 37%* (eau, purée de tomates double concentrée, farine de _blé_, amidon modifié de maïs, oignon en poudre, sucre, arôme naturel d'origan avec autres arômes naturels, ail en poudre, piment doux), _emmental_ 24%*, _mozzarella_ 22% (_lait_ pasteurisé, sel, _ferments lactiques_, coagulant, correcteur d'acidité : acide citrique), _cheddar_ fondu 11%* (_cheddar_, eau, amidon modifié de pomme de terre ; _beurre_ ; protéines de _lait_, sel de fonte : E331 ; sel ; colorants : bêta-carotène, extraits de paprika), olives noires entières 3,7%* (olives, sel, acidifiant : acide lactique, stabilisant : E579), basilic 0,04%*, origan. \r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite (41,5%) : Farine de _blé_, eau, levure, sure, sel.", + "lang_debug_tags": [], + "sortkey": 1533214852, + "packaging_tags": [ + "plastique", + "frais", + "sous-atmosphere-protectrice" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20150316.jqm2", + "product_name_fr": "Pizza 3 Fromages", + "purchase_places_tags": [ + "plerin", + "france", + "orvault" + ], + "pnns_groups_1": "Composite foods", + "labels": "Point Vert", + "entry_dates_tags": [ + "2015-11-26", + "2015-11", + "2015" + ], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3564700038291/pizza-3-fromages-turini", + "origins_debug_tags": [], + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "stores_tags": [ + "leclerc" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.200.jpg", + "stores_debug_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50" + ], + "ingredients_that_may_be_from_palm_oil_tags": [ + "e160a-beta-carotene" + ], + "countries_hierarchy": [ + "en:france" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "_keywords": [ + "avec", + "marque", + "noyau", + "cheddar", + "salee", + "olive", + "et", + "pizza", + "fondu", + "vert", + "quiche", + "aux", + "repere", + "emmental", + "plat", + "fromage", + "noire", + "mozarella", + "tarte", + "point", + "troi", + "turini", + "prepare" + ], + "stores": "leclerc", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 4 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 3 - proteins 5 -- fsa 10 -- fr 10", + "rev": 19, + "id": "3564700038291", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.400.jpg", + "additives_old_tags": [ + "en:e14xx", + "en:e330", + "en:e331", + "en:e160a", + "en:e270", + "en:e1403", + "en:e579" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.200.jpg", + "generic_name": "Pizza Emmental, Mozarella, cheddar fondu et olives noires avec noyau", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e14xx", + "en:e160a", + "en:e160ai", + "en:e160c", + "en:e270", + "en:e330", + "en:e331", + "en:e579" + ], + "nutrition_data_prepared_per": "100g", + "traces": "", + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 1, + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.400.jpg", + "photographers_tags": [ + "jog-2012", + "asmoth" + ], + "labels_tags": [ + "en:green-dot" + ], + "ingredients_debug": [ + "Garniture ", + "(", + "(", + null, + null, + "58", + ",", + null, + null, + null, + "5%) ", + ":", + ":", + null, + null, + " Sauce tomate cuisinée 37%* ", + "(", + "(", + null, + null, + "eau", + ",", + null, + null, + null, + " purée de tomates double concentrée", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " amidon modifié de maïs", + ",", + null, + null, + null, + " oignon en poudre", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " arôme naturel d'origan avec autres arômes naturels", + ",", + null, + null, + null, + " ail en poudre", + ",", + null, + null, + null, + " piment doux)", + ",", + null, + null, + null, + " _emmental_ 24%*", + ",", + null, + null, + null, + " _mozzarella_ 22% ", + "(", + "(", + null, + null, + "_lait_ pasteurisé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " _ferments lactiques_", + ",", + null, + null, + null, + " coagulant", + ",", + null, + null, + null, + " correcteur d'acidité ", + ":", + ":", + null, + null, + " acide citrique)", + ",", + null, + null, + null, + " _cheddar_ fondu 11%* ", + "(", + "(", + null, + null, + "_cheddar_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " amidon modifié de pomme de terre ", + ";", + ";", + null, + null, + " _beurre_ ", + ";", + ";", + null, + null, + " protéines de _lait_", + ",", + null, + null, + null, + " sel de fonte ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e331", + " - ", + " - ", + " - ", + null, + " ", + ";", + ";", + null, + null, + " sel ", + ";", + ";", + null, + null, + " colorants ", + ":", + ":", + null, + null, + " bêta-carotène", + ",", + null, + null, + null, + " extraits de paprika)", + ",", + null, + null, + null, + " olives noires entières 3", + ",", + null, + null, + null, + "7%* ", + "(", + "(", + null, + null, + "olives", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide lactique", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic 0", + ",", + null, + null, + null, + "04%*", + ",", + null, + null, + null, + " origan", + ". ", + null, + null, + null, + "\r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite ", + "(", + "(", + null, + null, + "41", + ",", + null, + null, + null, + "5%) ", + ":", + ":", + null, + null, + " Farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sure", + ",", + null, + null, + null, + " sel." + ], + "scans_n": 4, + "code": "3564700038291", + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "editors": [ + "date-limite-app", + "", + "segundo", + "jog-2012" + ], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "asmoth", + "segundo", + "openfoodfacts-contributors", + "date-limite-app", + "jog-2012", + "beniben" + ], + "allergens": "blé, emmental, mozzarella, lait, ferments lactiques, cheddar, cheddar, beurre, lait, blé", + "completed_t": 1520463619, + "last_image_dates_tags": [ + "2018-03-07", + "2018-03", + "2018" + ], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_prev_n": 7, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "additives_n": 7, + "last_editor": "date-limite-app", + "creator": "openfoodfacts-contributors", + "labels_debug_tags": [], + "purchase_places": "plérin,france,Orvault", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:three-cheese-pizza" + ], + "nutriments": { + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "sugars_serving": "", + "nutrition-score-fr_100g": "10", + "nova-group_100g": 4, + "fat_100g": 7.2, + "energy": "1021", + "proteins": 13.4, + "proteins_value": "13.4", + "fat_unit": "g", + "nutrition-score-uk_100g": "10", + "salt_serving": "", + "carbohydrates_100g": 29.6, + "proteins_100g": 13.4, + "energy_100g": "1021", + "fiber_value": "3", + "fat_value": "7.2", + "sodium_serving": "", + "saturated-fat_100g": 4.2, + "sodium_100g": 0.582677165354331, + "salt_unit": "g", + "sodium": 0.582677165354331, + "carbohydrates": 29.6, + "fiber_100g": "3", + "salt_100g": 1.48, + "fiber": "3", + "salt_value": "1.48", + "sugars_100g": "4", + "saturated-fat": 4.2, + "energy_serving": "", + "sugars": "4", + "sodium_value": "0.5826771653543307", + "energy_value": "1021", + "fat": 7.2, + "proteins_unit": "g", + "saturated-fat_value": "4.2", + "salt": 1.48, + "fiber_serving": "", + "carbohydrates_value": "29.6", + "nutrition-score-uk": "10", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "sugars_unit": "g", + "nutrition-score-fr": "10", + "proteins_serving": "", + "fat_serving": "", + "carbohydrates_serving": "", + "sugars_value": "4", + "carbohydrates_unit": "g" + }, + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1533214852, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas aux trois fromages", + "manufacturing_places_tags": [ + "france" + ], + "ingredients_n": 47, + "ingredients_original_tags": [ + "fr:garniture", + "fr:puree-de-tomates-double-concentre", + "en:wheat-flour", + "fr:amidon-modifie-de-mais", + "fr:oignon-en-poudre", + "en:sugar", + "fr:arôme naturel d'origan avec autres arômes naturels", + "fr:ail-en-poudre", + "fr:piment-doux", + "fr:emmental", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:olives noires entières 3.", + "fr:basilic 0.", + "fr:origan", + "fr:Pourcentages exprimés sur la garniture\nPâte cuite", + "en:wheat-flour", + "en:water", + "fr:levure", + "fr:sure", + "en:salt", + "fr:Sauce tomate cuisinée", + "en:water", + "fr:lait-pasteurise", + "en:salt", + "fr:ferments-lactiques", + "fr:coagulant", + "en:acidity-regulator", + "en:citric-acid", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "fr:e331", + "en:salt", + "en:colour", + "fr:bêta", + "fr:carotene", + "fr:extraits-de-paprika", + "en:olive", + "en:salt", + "en:acid", + "en:lactic-acid", + "en:stabiliser", + "fr:e579" + ], + "ingredients_text_debug": "Garniture (58,5%) : Sauce tomate cuisinée 37%* (eau, purée de tomates double concentrée, farine de _blé_, amidon modifié de maïs, oignon en poudre, sucre, arôme naturel d'origan avec autres arômes naturels, ail en poudre, piment doux), _emmental_ 24%*, _mozzarella_ 22% (_lait_ pasteurisé, sel, _ferments lactiques_, coagulant, correcteur d'acidité : acide citrique), _cheddar_ fondu 11%* (_cheddar_, eau, amidon modifié de pomme de terre ; _beurre_ ; protéines de _lait_, sel de fonte : - e331 - ; sel ; colorants : bêta-carotène, extraits de paprika), olives noires entières 3,7%* (olives, sel, acidifiant : acide lactique, stabilisant : - e579 - ), basilic 0,04%*, origan. \r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite (41,5%) : Farine de _blé_, eau, levure, sure, sel.", + "ingredients_from_palm_oil_n": 0, + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploaded_t": "1448722709", + "uploader": "jog-2012" + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "asmoth", + "uploaded_t": "1520450316" + }, + "3": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1520450331", + "uploader": "asmoth" + }, + "4": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploader": "asmoth", + "uploaded_t": "1520450350" + }, + "5": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1520450358", + "uploader": "asmoth" + }, + "front": { + "sizes": { + "100": { + "w": 100, + "h": 84 + }, + "200": { + "h": 168, + "w": 200 + }, + "400": { + "h": 336, + "w": 400 + }, + "full": { + "h": 1125, + "w": 1340 + } + }, + "rev": "7", + "normalize": "false", + "imgid": "1", + "white_magic": "false", + "geometry": "1340x1229-299--52" + }, + "ingredients_fr": { + "white_magic": "false", + "geometry": "1095x670-509-417", + "imgid": "4", + "normalize": "false", + "x2": "320.83331298828125", + "y2": "217.48333740234375", + "x1": "101.83331298828125", + "angle": "0", + "y1": "83.48333740234375", + "sizes": { + "100": { + "w": 100, + "h": 61 + }, + "200": { + "h": 122, + "w": 200 + }, + "400": { + "w": 400, + "h": 245 + }, + "full": { + "w": 1095, + "h": 670 + } + }, + "rev": "16" + }, + "front_fr": { + "rev": "14", + "sizes": { + "100": { + "h": "100", + "w": "99" + }, + "200": { + "h": 200, + "w": 199 + }, + "400": { + "h": 400, + "w": 397 + }, + "full": { + "h": 1355, + "w": 1345 + } + }, + "y1": "15.316650390625", + "angle": "0", + "x1": "63.83331298828125", + "y2": "286.316650390625", + "normalize": "false", + "x2": "332.83331298828125", + "white_magic": "false", + "imgid": "2", + "geometry": "1345x1355-319-76" + }, + "nutrition_fr": { + "sizes": { + "100": { + "w": 100, + "h": 85 + }, + "200": { + "h": 171, + "w": 200 + }, + "400": { + "w": 400, + "h": 342 + }, + "full": { + "h": 765, + "w": 895 + } + }, + "rev": "17", + "y1": "63.96665954589844", + "angle": "0", + "y2": "216.96665954589844", + "x1": "113.83331298828125", + "normalize": "false", + "x2": "292.83331298828125", + "imgid": "5", + "white_magic": "false", + "geometry": "895x765-569-319" + } + }, + "traces_tags": [], + "serving_size_debug_tags": [], + "additives_prev_tags": [ + "en:e14xx", + "en:e160a", + "en:e160c", + "en:e270", + "en:e330", + "en:e331", + "en:e579" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, emmental, mozzarella, lait, ferments lactiques, cheddar, cheddar, beurre, lait, blé", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "date-limite-app", + "ingredients_n_tags": [ + "47", + "41-50" + ], + "ingredients": [ + { + "percent": "58.5", + "id": "fr:garniture", + "rank": 1, + "text": "Garniture" + }, + { + "id": "fr:puree-de-tomates-double-concentre", + "rank": 2, + "text": "purée de tomates double concentrée" + }, + { + "rank": 3, + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "rank": 4, + "text": "amidon modifié de maïs", + "id": "fr:amidon-modifie-de-mais" + }, + { + "id": "fr:oignon-en-poudre", + "text": "oignon en poudre", + "rank": 5 + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 6 + }, + { + "id": "fr:arôme naturel d'origan avec autres arômes naturels", + "text": "arôme naturel d'origan avec autres arômes naturels", + "rank": 7 + }, + { + "rank": 8, + "text": "ail en poudre", + "id": "fr:ail-en-poudre" + }, + { + "id": "fr:piment-doux", + "rank": 9, + "text": "piment doux" + }, + { + "id": "fr:emmental", + "text": "_emmental_", + "rank": 10 + }, + { + "rank": 11, + "text": "_mozzarella_", + "percent": "22", + "id": "fr:mozzarella" + }, + { + "rank": 12, + "text": "_cheddar_ fondu", + "id": "fr:cheddar-fondu" + }, + { + "rank": 13, + "text": "olives noires entières 3.", + "id": "fr:olives noires entières 3." + }, + { + "id": "fr:basilic 0.", + "rank": 14, + "text": "basilic 0." + }, + { + "text": "origan", + "rank": 15, + "id": "fr:origan" + }, + { + "rank": 16, + "text": "Pourcentages exprimés sur la garniture\nPâte cuite", + "id": "fr:Pourcentages exprimés sur la garniture\nPâte cuite", + "percent": "41.5" + }, + { + "id": "en:wheat-flour", + "rank": 17, + "text": "Farine de _blé_" + }, + { + "text": "eau", + "rank": 18, + "id": "en:water" + }, + { + "text": "levure", + "rank": 19, + "id": "fr:levure" + }, + { + "rank": 20, + "text": "sure", + "id": "fr:sure" + }, + { + "rank": 21, + "text": "sel", + "id": "en:salt" + }, + { + "text": "Sauce tomate cuisinée", + "id": "fr:Sauce tomate cuisinée" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "_lait_ pasteurisé", + "id": "fr:lait-pasteurise" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "_ferments lactiques_", + "id": "fr:ferments-lactiques" + }, + { + "id": "fr:coagulant", + "text": "coagulant" + }, + { + "id": "en:acidity-regulator", + "text": "correcteur d'acidité" + }, + { + "text": "acide citrique", + "id": "en:citric-acid" + }, + { + "id": "en:cheddar", + "text": "_cheddar_" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "amidon modifié de pomme de terre", + "id": "fr:amidon-modifie-de-pomme-de-terre" + }, + { + "text": "_beurre_", + "id": "en:butter" + }, + { + "text": "protéines de _lait_", + "id": "en:milk-protein" + }, + { + "text": "sel de fonte", + "id": "fr:sel-de-fonte" + }, + { + "id": "fr:e331", + "text": "E331" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "colorants", + "id": "en:colour" + }, + { + "id": "fr:bêta", + "text": "bêta" + }, + { + "id": "fr:carotene", + "text": "carotène" + }, + { + "text": "extraits de paprika", + "id": "fr:extraits-de-paprika" + }, + { + "id": "en:olive", + "text": "olives" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:acid", + "text": "acidifiant" + }, + { + "text": "acide lactique", + "id": "en:lactic-acid" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "ingredients_ids_debug": [ + "garniture", + "58", + "5", + "sauce-tomate-cuisinee-37", + "eau", + "puree-de-tomates-double-concentree", + "farine-de-ble", + "amidon-modifie-de-mais", + "oignon-en-poudre", + "sucre", + "arome-naturel-d-origan-avec-autres-aromes-naturels", + "ail-en-poudre", + "piment-doux", + "emmental-24", + "mozzarella-22", + "lait-pasteurise", + "sel", + "ferments-lactiques", + "coagulant", + "correcteur-d-acidite", + "acide-citrique", + "cheddar-fondu-11", + "cheddar", + "eau", + "amidon-modifie-de-pomme-de-terre", + "beurre", + "proteines-de-lait", + "sel-de-fonte", + "e331", + "sel", + "colorants", + "beta-carotene", + "extraits-de-paprika", + "olives-noires-entieres-3", + "7", + "olives", + "sel", + "acidifiant", + "acide-lactique", + "stabilisant", + "e579", + "basilic-0", + "04", + "origan", + "pourcentages-exprimes-sur-la-garniture-pate-cuite", + "41", + "5", + "farine-de-ble", + "eau", + "levure", + "sure", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.200.jpg", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "openfoodfacts-contributors", + "date-limite-app", + "jog-2012", + "segundo", + "beniben", + "asmoth" + ], + "packaging": "plastique,Frais,Sous atmosphère protectrice", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/ingredients_fr.16.100.jpg", + "additives_prev_original_tags": [ + "en:e14xx", + "en:e330", + "en:e331", + "en:e160a", + "en:e160c", + "en:e270", + "en:e579" + ], + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/nutrition_fr.17.100.jpg", + "ingredients_text_with_allergens": "Garniture (58,5%) : Sauce tomate cuisinée 37%* (eau, purée de tomates double concentrée, farine de blé, amidon modifié de maïs, oignon en poudre, sucre, arôme naturel d'origan avec autres arômes naturels, ail en poudre, piment doux), emmental 24%*, mozzarella 22% (lait pasteurisé, sel, ferments lactiques, coagulant, correcteur d'acidité : acide citrique), cheddar fondu 11%* (cheddar, eau, amidon modifié de pomme de terre ; beurre ; protéines de lait, sel de fonte : E331 ; sel ; colorants : bêta-carotène, extraits de paprika), olives noires entières 3,7%* (olives, sel, acidifiant : acide lactique, stabilisant : E579), basilic 0,04%*, origan. \r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite (41,5%) : Farine de blé, eau, levure, sure, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture (58,5%) : Sauce tomate cuisinée 37%* (eau, purée de tomates double concentrée, farine de blé, amidon modifié de maïs, oignon en poudre, sucre, arôme naturel d'origan avec autres arômes naturels, ail en poudre, piment doux), emmental 24%*, mozzarella 22% (lait pasteurisé, sel, ferments lactiques, coagulant, correcteur d'acidité : acide citrique), cheddar fondu 11%* (cheddar, eau, amidon modifié de pomme de terre ; beurre ; protéines de lait, sel de fonte : E331 ; sel ; colorants : bêta-carotène, extraits de paprika), olives noires entières 3,7%* (olives, sel, acidifiant : acide lactique, stabilisant : E579), basilic 0,04%*, origan. \r\n*Pourcentages exprimés sur la garniture\r\nPâte cuite (41,5%) : Farine de blé, eau, levure, sure, sel.", + "vitamins_tags": [], + "ingredients_tags": [ + "fr:garniture", + "fr:puree-de-tomates-double-concentre", + "fr:puree-de-tomate", + "en:wheat-flour", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "fr:oignon-en-poudre", + "en:onions", + "en:sugar", + "fr:arome-naturel-d-origan-avec-autres-aromes-naturels", + "fr:ail-en-poudre", + "fr:piment-doux", + "fr:piment", + "fr:emmental", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:olives-noires-entieres-3", + "fr:basilic-0", + "fr:origan", + "fr:pourcentages-exprimes-sur-la-garniture-pate-cuite", + "en:wheat-flour", + "en:water", + "fr:levure", + "fr:sure", + "en:salt", + "fr:sauce-tomate-cuisinee", + "en:water", + "fr:lait-pasteurise", + "en:milk", + "en:salt", + "fr:ferments-lactiques", + "fr:coagulant", + "en:acidity-regulator", + "en:citric-acid", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "fr:beta", + "fr:carotene", + "fr:extraits-de-paprika", + "en:olive", + "en:salt", + "en:acid", + "en:lactic-acid", + "en:stabiliser", + "fr:e579" + ], + "_id": "3564700038291", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:three-cheese-pizza" + ], + "serving_size": "", + "interface_version_created": "20130323.jqm", + "product_quantity": 450, + "origins": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "France", + "labels_hierarchy": [ + "en:green-dot" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.100.jpg", + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- additives/en:e14xx : 4", + "created_t": 1448538302, + "languages_tags": [ + "en:french", + "en:1" + ], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/356/470/003/8291/front_fr.14.400.jpg", + "traces_debug_tags": [] + }, + { + "origins_tags": [], + "cities_tags": [ + "manosque-alpes-de-haute-provence-france" + ], + "last_modified_by": "delta74", + "ingredients_n_tags": [ + "20", + "11-20" + ], + "ingredients": [ + { + "id": "fr:garniture", + "percent": "60", + "rank": 1, + "text": "Garniture" + }, + { + "text": "purée de tomates cultivée en Provence", + "rank": 2, + "percent": "14.7", + "id": "fr:purée de tomates cultivée en Provence" + }, + { + "id": "fr:_raclette_ Label Rouge", + "percent": "11.5", + "text": "_raclette_ Label Rouge", + "rank": 3 + }, + { + "rank": 4, + "text": "_comté_ AOC", + "percent": "8.3", + "id": "fr:_comté_ AOC" + }, + { + "id": "en:water", + "rank": 5, + "text": "eau" + }, + { + "id": "en:onions", + "rank": 6, + "text": "oignons" + }, + { + "rank": 7, + "text": "huile d‘olives vierge extra", + "id": "en:extra-virgin-olive-oil", + "percent": "1.5" + }, + { + "id": "en:salt", + "rank": 8, + "text": "sel" + }, + { + "id": "fr:mélange d‘herbes de Provence et persil", + "rank": 9, + "text": "mélange d‘herbes de Provence et persil" + }, + { + "rank": 10, + "text": "ail", + "id": "en:garlic" + }, + { + "id": "en:sugar", + "rank": 11, + "text": "sucre" + }, + { + "text": "Pâte", + "rank": 12, + "percent": "40", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "text": "Farine de _blé_", + "rank": 13 + }, + { + "id": "en:water", + "text": "eau", + "rank": 14 + }, + { + "id": "en:extra-virgin-olive-oil", + "rank": 15, + "text": "huile d'olives vierge extra" + }, + { + "id": "fr:levure", + "text": "levure", + "rank": 16 + }, + { + "text": "sel", + "rank": 17, + "id": "en:salt" + }, + { + "rank": 18, + "text": "Contient", + "id": "fr:Contient" + }, + { + "id": "fr:gluten et lactose", + "rank": 19, + "text": "gluten et lactose" + }, + { + "id": "fr:_Emmental_ grand cru Label Rouge", + "percent": "21", + "text": "_Emmental_ grand cru Label Rouge" + } + ], + "no_nutrition_data": "", + "traces_tags": [ + "en:crustaceans", + "en:fish", + "en:molluscs" + ], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 80 + }, + "400": { + "w": 319, + "h": 400 + }, + "full": { + "w": 1086, + "h": 1360 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1496080545" + }, + "2": { + "uploaded_t": "1496080546", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1020 + } + } + }, + "3": { + "uploaded_t": "1496080548", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 61, + "h": 100 + }, + "400": { + "h": 400, + "w": 242 + }, + "full": { + "h": 3264, + "w": 1975 + } + } + }, + "4": { + "uploaded_t": "1502565428", + "uploader": "juldem", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + } + }, + "5": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploader": "hikitsune", + "uploaded_t": "1504953813" + }, + "6": { + "uploaded_t": "1526722461", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 70, + "h": 100 + }, + "400": { + "h": 400, + "w": 281 + }, + "full": { + "h": 1200, + "w": 844 + } + } + }, + "nutrition_fr": { + "rev": "7", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1020, + "h": 1360 + } + }, + "y1": null, + "angle": null, + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "2" + }, + "ingredients_fr": { + "rev": "29", + "sizes": { + "100": { + "h": 70, + "w": 100 + }, + "200": { + "h": 141, + "w": 200 + }, + "400": { + "h": 281, + "w": 400 + }, + "full": { + "w": 1200, + "h": 844 + } + }, + "angle": "90", + "y1": "0", + "x2": "0", + "normalize": "false", + "x1": "0", + "y2": "0", + "geometry": "0x0-0-0", + "imgid": "6", + "white_magic": "false" + }, + "front_fr": { + "rev": "15", + "sizes": { + "100": { + "w": "100", + "h": "90" + }, + "200": { + "h": 179, + "w": 200 + }, + "400": { + "w": 400, + "h": 358 + }, + "full": { + "h": 1111, + "w": 1240 + } + }, + "y1": "-0.6875", + "angle": "0", + "x1": "75", + "y2": "222.3125", + "x2": "323", + "normalize": "false", + "imgid": "4", + "white_magic": "false", + "geometry": "1240x1114-375--3" + } + }, + "serving_size_debug_tags": [], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_from_ingredients": "Emmental, raclette, comté, blé, : gluten, lactose", + "additives_prev_tags": [], + "allergens_tags": [ + "en:gluten", + "en:milk", + "fr:raclette", + "fr:raclette" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "kiliweb", + "segundo", + "hikitsune" + ], + "packaging": "Surgelé", + "ingredients_ids_debug": [ + "garniture-60", + "emmental-grand-cru-label-rouge", + "21", + "puree-de-tomates-cultivee-en-provence", + "14-7", + "raclette-label-rouge", + "11", + "5", + "comte-aoc", + "8", + "3", + "eau", + "oignons", + "huile-d-olives-vierge-extra", + "1-5", + "sel", + "melange-d-herbes-de-provence-et-persil", + "ail", + "sucre", + "pate", + "40", + "farine-de-ble", + "eau", + "huile-d-olives-vierge-extra", + "levure", + "sel", + "contient", + "gluten-et-lactose" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.200.jpg", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "vitamins_tags": [], + "ingredients_tags": [ + "fr:garniture", + "fr:puree-de-tomates-cultivee-en-provence", + "fr:raclette-label-rouge", + "fr:comte-aoc", + "en:water", + "en:onions", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:melange-d-herbes-de-provence-et-persil", + "en:garlic", + "en:sugar", + "en:paste", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "fr:contient", + "fr:gluten-et-lactose", + "fr:emmental-grand-cru-label-rouge" + ], + "_id": "3424600000791", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza" + ], + "serving_size": "", + "product_quantity": 450, + "interface_version_created": "20150316.jqm2", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.100.jpg", + "additives_prev_original_tags": [], + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.100.jpg", + "ingredients_text_with_allergens": "Garniture 60% : Emmental grand cru Label Rouge (21%), purée de tomates cultivée en Provence (14.7%), raclette Label Rouge (11,5%), comté AOC (8,3%), eau, oignons, huile d‘olives vierge extra (1.5%), sel, mélange d‘herbes de Provence et persil, ail, sucre. Pâte (40%): Farine de blé, eau, huile d'olives vierge extra, levure, sel. \r\n\r\nContient : gluten et lactose", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 60% : Emmental grand cru Label Rouge (21%), purée de tomates cultivée en Provence (14.7%), raclette Label Rouge (11,5%), comté AOC (8,3%), eau, oignons, huile d‘olives vierge extra (1.5%), sel, mélange d‘herbes de Provence et persil, ail, sucre. Pâte (40%): Farine de blé, eau, huile d'olives vierge extra, levure, sel. \r\n\r\nContient : gluten et lactose", + "lang": "fr", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.400.jpg", + "origins": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "Manosque,France", + "labels_hierarchy": [ + "en:label-rouge", + "fr:aoc" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.100.jpg", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "created_t": 1496080543, + "nova_group_debug": " -- ingredients/en:salt : 3", + "languages_tags": [ + "en:french", + "en:1" + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.400.jpg", + "photographers_tags": [ + "kiliweb", + "juldem", + "hikitsune" + ], + "labels_tags": [ + "en:label-rouge", + "fr:aoc" + ], + "ingredients_debug": [ + "Garniture 60% ", + ":", + ":", + null, + null, + " _Emmental_ grand cru Label Rouge ", + "(", + "(", + null, + null, + "21%)", + ",", + null, + null, + null, + " purée de tomates cultivée en Provence ", + "(", + "(", + null, + null, + "14.7%)", + ",", + null, + null, + null, + " _raclette_ Label Rouge ", + "(", + "(", + null, + null, + "11", + ",", + null, + null, + null, + "5%)", + ",", + null, + null, + null, + " _comté_ AOC ", + "(", + "(", + null, + null, + "8", + ",", + null, + null, + null, + "3%)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " huile d‘olives vierge extra ", + "(", + "(", + null, + null, + "1.5%)", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " mélange d‘herbes de Provence et persil", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " sucre", + ". ", + null, + null, + null, + "Pâte ", + "(", + "(", + null, + null, + "40%)", + ":", + ":", + null, + null, + " Farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile d'olives vierge extra", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sel", + ". ", + null, + null, + null, + "\r\n\r\nContient ", + ":", + ":", + null, + null, + " gluten et lactose" + ], + "brands_debug_tags": [], + "traces": "Crustacés,Poisson,Mollusques", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "xavi", + "delta74", + "kiliweb", + "lordjon", + "openfoodfacts-contributors", + "segundo", + "ventoux", + "tacite", + "hikitsune", + "juldem" + ], + "allergens": "Gluten,Lait,Raclette,Raclette", + "completed_t": 1504954225, + "last_image_dates_tags": [ + "2018-05-19", + "2018-05", + "2018" + ], + "code": "3424600000791", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "last_editor": "delta74", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "creator": "kiliweb", + "purchase_places": "", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza" + ], + "nutriments": { + "saturated-fat_value": "8.5", + "proteins_unit": "g", + "salt": 1.3, + "energy_value": "267", + "fat": 14.4, + "sodium_value": "0.511811023622047", + "sugars": "1", + "energy_serving": "", + "sugars_100g": "1", + "salt_value": "1.3", + "fiber": 1.5, + "saturated-fat": 8.5, + "carbohydrates": 19.2, + "fiber_100g": 1.5, + "sodium": 0.511811023622047, + "salt_100g": 1.3, + "salt_unit": "g", + "sugars_value": "1", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "fat_serving": "", + "nutrition-score-fr": "15", + "sugars_unit": "g", + "proteins_serving": "", + "nutrition-score-uk": "15", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "fiber_serving": "", + "carbohydrates_value": "19.2", + "proteins_value": "14.5", + "proteins": 14.5, + "fat_100g": 14.4, + "energy": "1117", + "nova-group_100g": 3, + "nutrition-score-fr_100g": "15", + "sugars_serving": "", + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group": 3, + "nova-group_serving": 3, + "sodium_unit": "g", + "sodium_100g": 0.511811023622047, + "saturated-fat_100g": 8.5, + "fat_value": "14.4", + "sodium_serving": "", + "fiber_value": "1.5", + "energy_100g": "1117", + "salt_serving": "", + "proteins_100g": 14.5, + "carbohydrates_100g": 19.2, + "fat_unit": "g", + "nutrition-score-uk_100g": "15" + }, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_prev_n": 0, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "additives_n": 0, + "ingredients_text_debug": "Garniture 60% : _Emmental_ grand cru Label Rouge (21%), purée de tomates cultivée en Provence (14.7%), _raclette_ Label Rouge (11,5%), _comté_ AOC (8,3%), eau, oignons, huile d‘olives vierge extra (1.5%), sel, mélange d‘herbes de Provence et persil, ail, sucre. Pâte (40%): Farine de _blé_, eau, huile d'olives vierge extra, levure, sel. \r\n\r\nContient : gluten et lactose", + "ingredients_from_palm_oil_n": 0, + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1532853810, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "categories": "Plats préparés,Pizzas,Pizzas,Pizzas au fromage,Pizzas aux trois fromages,Pizzas tartes salées et quiches", + "manufacturing_places_tags": [ + "manosque", + "france" + ], + "ingredients_n": 20, + "ingredients_original_tags": [ + "fr:garniture", + "fr:purée de tomates cultivée en Provence", + "fr:_raclette_ Label Rouge", + "fr:_comté_ AOC", + "en:water", + "en:onions", + "en:extra-virgin-olive-oil", + "en:salt", + "fr:mélange d‘herbes de Provence et persil", + "en:garlic", + "en:sugar", + "en:paste", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "fr:levure", + "en:salt", + "fr:Contient", + "fr:gluten et lactose", + "fr:_Emmental_ grand cru Label Rouge" + ], + "emb_codes_tags": [ + "fr-04-112-005-ec" + ], + "ingredients_text": "Garniture 60% : _Emmental_ grand cru Label Rouge (21%), purée de tomates cultivée en Provence (14.7%), _raclette_ Label Rouge (11,5%), _comté_ AOC (8,3%), eau, oignons, huile d‘olives vierge extra (1.5%), sel, mélange d‘herbes de Provence et persil, ail, sucre. Pâte (40%): Farine de _blé_, eau, huile d'olives vierge extra, levure, sel. \r\n\r\nContient : gluten et lactose", + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.100.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.100.jpg" + } + } + }, + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture 60% : _Emmental_ grand cru Label Rouge (21%), purée de tomates cultivée en Provence (14.7%), _raclette_ Label Rouge (11,5%), _comté_ AOC (8,3%), eau, oignons, huile d‘olives vierge extra (1.5%), sel, mélange d‘herbes de Provence et persil, ail, sucre. Pâte (40%): Farine de _blé_, eau, huile d'olives vierge extra, levure, sel. \r\n\r\nContient : gluten et lactose", + "sortkey": 1532853810, + "lang_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "high", + "fat": "moderate", + "sugars": "low" + }, + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "lc": "fr", + "product_name": "La Pizza des consommateurs aux 3 fromages", + "brands": "C'est qui le patron ?!,La marque du consommateur", + "countries_debug_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "450g", + "entry_dates_tags": [ + "2017-05-29", + "2017-05", + "2017" + ], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3424600000791/la-pizza-des-consommateurs-aux-3-fromages-c-est-qui-le-patron", + "origins_debug_tags": [], + "packaging_tags": [ + "surgele" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.100.jpg", + "update_key": "nova3", + "interface_version_modified": "20120622", + "product_name_fr": "La Pizza des consommateurs aux 3 fromages", + "purchase_places_tags": [], + "labels": "Label Rouge,AOC", + "pnns_groups_1": "Composite foods", + "ingredients_text_debug_tags": [], + "stores_tags": [ + "auchan" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.200.jpg", + "stores_debug_tags": [], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "labels_prev_hierarchy": [ + "en:label-rouge", + "fr:aoc" + ], + "generic_name": "pizza aux trois fromages (emmental grand cru Label Rouge, raclette Label Rouge, compté AOC) cuite au feu de bois, surgelée", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.200.jpg", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "debug_param_sorted_langs": [ + "fr" + ], + "_keywords": [ + "est", + "du", + "le", + "boi", + "quiche", + "label", + "consommateur", + "tarte", + "cru", + "grand", + "emmental", + "marque", + "raclette", + "surgelee", + "plat", + "au", + "troi", + "la", + "cuite", + "salee", + "pizza", + "et", + "aoc", + "feu", + "patron", + "rouge", + "de", + "qui", + "compte", + "fromage", + "aux", + "prepare" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Auchan", + "nutrition_score_debug": " -- energy 3 + sat-fat 8 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 15 -- fr 15", + "rev": 30, + "id": "3424600000791", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/ingredients_fr.29.400.jpg", + "additives_old_tags": [], + "traces_hierarchy": [ + "en:crustaceans", + "en:fish", + "en:molluscs" + ], + "nova_groups": 3, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/front_fr.15.200.jpg", + "generic_name_fr": "pizza aux trois fromages (emmental grand cru Label Rouge, raclette Label Rouge, compté AOC) cuite au feu de bois, surgelée", + "unknown_ingredients_n": 7, + "unknown_nutrients_tags": [], + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "6", + "emb_codes_orig": "FR 04.112.005 CE", + "allergens_hierarchy": [ + "en:gluten", + "en:milk", + "fr:Raclette", + "fr:raclette" + ], + "nutrition_data": "on", + "additives_original_tags": [], + "additives_debug_tags": [], + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:purée de tomates cultivée en Provence", + "fr:_raclette_ Label Rouge", + "fr:_comté_ AOC", + "en:water", + "en:onions", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:mélange d‘herbes de Provence et persil", + "en:garlic", + "en:sugar", + "en:paste", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "fr:Contient", + "fr:gluten et lactose", + "fr:_Emmental_ grand cru Label Rouge" + ], + "additives_old_n": 0, + "last_image_t": 1526722462, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nutrition_grades": "d", + "serving_quantity": 0, + "labels_prev_tags": [ + "en:label-rouge", + "fr:aoc" + ], + "codes_tags": [ + "code-13", + "3424600000791", + "342460000079x", + "34246000007xx", + "3424600000xxx", + "342460000xxxx", + "34246000xxxxx", + "3424600xxxxxx", + "342460xxxxxxx", + "34246xxxxxxxx", + "3424xxxxxxxxx", + "342xxxxxxxxxx", + "34xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "correctors_tags": [ + "openfoodfacts-contributors", + "segundo", + "tacite", + "xavi", + "ventoux", + "kiliweb", + "delta74" + ], + "minerals_prev_tags": [], + "emb_codes": "FR 04.112.005 EC", + "expiration_date": "", + "nutrition_grades_tags": [ + "d" + ], + "link": "", + "last_edit_dates_tags": [ + "2018-07-29", + "2018-07", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/342/460/000/0791/nutrition_fr.7.400.jpg", + "brands_tags": [ + "c-est-qui-le-patron", + "la-marque-du-consommateur" + ], + "nutrition_grade_fr": "d" + }, + { + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.400.jpg", + "brands_tags": [ + "sodebo", + "dolce" + ], + "nutrition_grade_fr": "d", + "nutrition_grades_tags": [ + "d" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "last_edit_dates_tags": [ + "2018-07-27", + "2018-07", + "2018" + ], + "link": "", + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "22 avril 2016", + "labels_prev_tags": [ + "en:nutriscore-experiment", + "en:nutriscore-experiment-grade-d", + "fr:experimentation-etiquetage-nutritionnel-2016" + ], + "nutrition_grades": "d", + "serving_quantity": 0, + "correctors_tags": [ + "segundo", + "flo57", + "tacite", + "date-limite-app", + "tacinte", + "tacite-mass-editor", + "kiliweb", + "openfoodfacts-contributors", + "sodebo" + ], + "codes_tags": [ + "code-13", + "3242272345558", + "324227234555x", + "32422723455xx", + "3242272345xxx", + "324227234xxxx", + "32422723xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "en:starch", + "fr:mozzarella", + "fr:jambon Speck", + "fr:olives-noires-avec-noyau", + "fr:roquette", + "fr:basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "en:meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "fr:conservateur E250", + "en:stabiliser", + "fr:e579" + ], + "nucleotides_prev_tags": [], + "additives_old_n": 4, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1532691197, + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e301", + "en:e250", + "en:e579" + ], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 3, + "unique_scans_n": 7, + "emb_codes_orig": "", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "11", + "nova_groups": 3, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.200.jpg", + "traces_hierarchy": [ + "en:eggs", + "en:fish" + ], + "generic_name_fr": "Pizza pâte fine garnie de mozzarella, de jambon Speck et de roquette", + "stores": "Leclerc,Casino", + "_keywords": [ + "pizza", + "nutritionnel", + "garnie", + "pate", + "pizzas-pies-and-quiche", + "meal", + "speck", + "etiquetage", + "campanella", + "fine", + "experimentation", + "2016", + "roquette", + "mozzarella", + "de", + "et", + "nutriscore-experiment-grade-d", + "dolce", + "nutriscore-experiment", + "sodebo", + "jambon" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 4 + fr-sat-fat-for-fats 8 + sugars 0 + sodium 7 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "id": "3242272345558", + "rev": 40, + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e301", + "en:e250", + "en:e1403", + "en:e579" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.400.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e301", + "en:e579" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.200.jpg", + "generic_name": "Pizza pâte fine garnie de mozzarella, de jambon Speck et de roquette", + "nutrition_data_prepared_per": "100g", + "labels_prev_hierarchy": [ + "en:nutriscore-experiment", + "en:nutriscore-experiment-grade-d", + "fr:Experimentation Etiquetage Nutritionnel 2016" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.200.jpg", + "stores_debug_tags": [], + "stores_tags": [ + "leclerc", + "casino" + ], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-not-recognized" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "france", + "paris" + ], + "product_name_fr": "Dolce Pizza - Campanella", + "packaging_tags": [ + "boite-en-carton" + ], + "interface_version_modified": "20150316.jqm2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.100.jpg", + "update_key": "key_1533677490", + "pnns_groups_1": "Composite foods", + "labels": "en:nutriscore-experiment, en:nutriscore-experiment-grade-d, fr:Experimentation Etiquetage Nutritionnel 2016", + "entry_dates_tags": [ + "2015-06-20", + "2015-06", + "2015" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272345558/dolce-pizza-campanella-sodebo", + "origins_debug_tags": [], + "traces_from_ingredients": "", + "ingredients_text_fr_debug_tags": [], + "countries": "en:france", + "product_name": "Dolce Pizza - Campanella", + "lc": "fr", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "fat": "moderate", + "saturated-fat": "moderate", + "salt": "high", + "sugars": "low" + }, + "amino_acids_prev_tags": [], + "quantity": "380 g", + "brands": "Sodebo, dolce", + "countries_debug_tags": [], + "checkers_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.400.jpg" + } + } + }, + "emb_codes_tags": [], + "ingredients_text": "Garniture 57% : sauce tomate 37% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 35%, jambon Speck 22% (viande de porc, sel, épices, plantes aromatiques, antioxydant: E301, conservateur E250), olives noires avec noyau (stabilisant : E579), roquette 0,7%, basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "ingredients_text_fr": "Garniture 57% : sauce tomate 37% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 35%, jambon Speck 22% (viande de porc, sel, épices, plantes aromatiques, antioxydant: E301, conservateur E250), olives noires avec noyau (stabilisant : E579), roquette 0,7%, basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "lang_debug_tags": [], + "sortkey": 1532691197, + "manufacturing_places_tags": [], + "categories": "en:meals, en:pizzas-pies-and-quiches, en:pizzas", + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "last_modified_t": 1532691197, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "fr:mozzarella", + "fr:jambon Speck", + "fr:olives-noires-avec-noyau", + "fr:roquette", + "fr:basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "fr:conservateur E250", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 26, + "ingredients_text_debug": "Garniture 57% : sauce tomate 37% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 35%, jambon Speck 22% (viande de porc, sel, épices, plantes aromatiques, antioxydant : - e301 - , conservateur : - e250 - ), olives noires avec noyau (stabilisant : - e579 - ), roquette 0,7%, basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "ingredients_from_palm_oil_n": 0, + "additives_prev_n": 3, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_n": 3, + "creator": "date-limite-app", + "labels_debug_tags": [ + "added-en-2016-nutrition-labelling-experiment", + "removed-fr-experimentation-etiquetage-nutritionnel-2016" + ], + "purchase_places": "France,Paris", + "last_editor": "openfoodfacts-contributors", + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "nutriments": { + "nutrition-score-fr": "11", + "sugars_unit": "", + "proteins_serving": "", + "nutrition-score-uk": "11", + "saturated-fat_unit": "", + "energy_unit": "kJ", + "fiber_serving": "", + "carbohydrates_value": "25.0", + "sugars_value": "2.1", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "fat_serving": "", + "energy_serving": "", + "salt_value": "1.8", + "fiber": "2.2", + "sugars_100g": 2.1, + "saturated-fat": 4.2, + "carbohydrates": "25.0", + "fiber_100g": 2.2, + "sodium": 0.708661417322835, + "salt_100g": 1.8, + "nutrition-score-fr_unit": "g", + "salt_unit": "", + "proteins_unit": "g", + "saturated-fat_value": "4.2", + "salt": 1.8, + "fat": 7.9, + "energy_value": "970", + "sugars": 2.1, + "nutrition-score-fr_value": "11", + "carbohydrates_100g": "25", + "salt_serving": "", + "proteins_100g": "14", + "fat_unit": "", + "nutrition-score-uk_100g": "11", + "sodium_100g": 0.708661417322835, + "saturated-fat_100g": 4.2, + "fat_value": "7.9", + "sodium_serving": "", + "fiber_value": "2.2", + "energy_100g": "970", + "nutrition-score-fr_100g": "11", + "sugars_serving": "", + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group_serving": 3, + "nova-group": 3, + "proteins_value": "14.0", + "proteins": "14.0", + "fat_100g": 7.9, + "energy": "970", + "nova-group_100g": 3 + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors": [ + "date-limite-app" + ], + "scans_n": 7, + "code": "3242272345558", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "tacite-mass-editor", + "tacinte", + "segundo", + "flo57", + "kiliweb", + "openfoodfacts-contributors", + "sodebo", + "tacite", + "date-limite-app" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-07-27", + "2018-07", + "2018" + ], + "allergens": "blé, mozzarella, blé, blé, blé", + "completed_t": 1460575359, + "brands_debug_tags": [], + "traces": "poisson, oeuf", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "photographers_tags": [ + "flo57", + "tacinte", + "kiliweb", + "sodebo", + "openfoodfacts-contributors" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.400.jpg", + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Garniture 57% ", + ":", + ":", + null, + null, + " sauce tomate 37% ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " mozzarella 35%", + ",", + null, + null, + null, + " jambon Speck 22% ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e301", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " roquette 0", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " farine de blé malté." + ], + "labels_tags": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "en:nutriscore-experiment-grade-d" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "en:nutriscore-experiment-grade-d" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.100.jpg", + "origins": "", + "categories_debug_tags": [], + "nova_group_debug": " -- ingredients/en:salt : 3", + "created_t": 1434784192, + "languages_tags": [ + "en:french", + "en:1" + ], + "lang": "fr", + "sources": [ + { + "images": [], + "id": "sodebo", + "manufacturer": 1, + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "traces", + "ingredients_text_fr" + ], + "name": "Sodebo", + "url": "https://www.sodebo.com/", + "import_t": 1530626180 + } + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/front_fr.38.400.jpg", + "traces_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/nutrition_fr.21.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 57% : sauce tomate 37% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 35%, jambon Speck 22% (viande de porc, sel, épices, plantes aromatiques, antioxydant: E301, conservateur E250), olives noires avec noyau (stabilisant : E579), roquette 0,7%, basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "additives_prev_original_tags": [ + "en:e301", + "en:e250", + "en:e579" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.100.jpg", + "ingredients_text_with_allergens_fr": "Garniture 57% : sauce tomate 37% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 35%, jambon Speck 22% (viande de porc, sel, épices, plantes aromatiques, antioxydant: E301, conservateur E250), olives noires avec noyau (stabilisant : E579), roquette 0,7%, basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte 43% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "vitamins_tags": [], + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "interface_version_created": "20130323.jqm", + "serving_size": "190 g", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "en:starch", + "fr:mozzarella", + "fr:jambon-speck", + "fr:olives-noires-avec-noyau", + "fr:roquette", + "fr:basilic-et-origan-pourcentages-exprimes-sur-la-garniture-pate", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "en:meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "fr:conservateur-e250", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272345558", + "debug_tags": [ + "43" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5558/ingredients_fr.36.200.jpg", + "ingredients_ids_debug": [ + "garniture-57", + "sauce-tomate-37", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "amidon-de-mais", + "mozzarella-35", + "jambon-speck-22", + "viande-de-porc", + "sel", + "epices", + "plantes-aromatiques", + "antioxydant", + "e301", + "conservateur", + "e250", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "roquette-0", + "7", + "basilic-et-origan-pourcentages-exprimes-sur-la-garniture-pate-43", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel", + "farine-de-ble-malte" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "date-limite-app", + "flo57", + "segundo", + "tacinte", + "sodebo" + ], + "packaging": "Boîte en carton", + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "flo57", + "uploaded_t": "1460572948" + }, + "2": { + "uploader": "flo57", + "uploaded_t": "1460574884", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 2448, + "w": 3264 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "uploader": "flo57", + "uploaded_t": "1460575188" + }, + "4": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4160, + "w": 3120 + } + }, + "uploader": "tacinte", + "uploaded_t": "1474911023" + }, + "5": { + "uploader": "tacinte", + "uploaded_t": "1474911029", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3120, + "h": 4160 + } + } + }, + "6": { + "uploader": "tacinte", + "uploaded_t": "1474911034", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3120, + "h": 4160 + } + } + }, + "7": { + "uploaded_t": "1524818487", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 86, + "w": 100 + }, + "400": { + "w": 400, + "h": 343 + }, + "full": { + "w": 1399, + "h": 1200 + } + } + }, + "8": { + "sizes": { + "100": { + "w": 100, + "h": 34 + }, + "400": { + "h": 137, + "w": 400 + }, + "full": { + "h": 1200, + "w": 3497 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1524818489" + }, + "9": { + "uploader": "kiliweb", + "uploaded_t": "1525086664", + "sizes": { + "100": { + "w": 100, + "h": 33 + }, + "400": { + "h": 131, + "w": 400 + }, + "full": { + "w": 2420, + "h": 793 + } + } + }, + "10": { + "sizes": { + "100": { + "w": 100, + "h": 98 + }, + "400": { + "w": 400, + "h": 393 + }, + "full": { + "w": 1500, + "h": 1473 + } + }, + "uploader": "sodebo", + "uploaded_t": 1530626171 + }, + "11": { + "sizes": { + "100": { + "h": 100, + "w": 43 + }, + "400": { + "h": 400, + "w": 173 + }, + "full": { + "w": 1997, + "h": 4608 + } + }, + "uploaded_t": 1532691196, + "uploader": "openfoodfacts-contributors" + }, + "front_fr": { + "angle": 0, + "y1": "-1", + "sizes": { + "100": { + "h": "98", + "w": "100" + }, + "200": { + "w": 200, + "h": 196 + }, + "400": { + "h": 393, + "w": 400 + }, + "full": { + "w": 1500, + "h": 1473 + } + }, + "rev": "38", + "geometry": "0x0--3--3", + "white_magic": null, + "imgid": "10", + "normalize": null, + "x2": "-1", + "y2": "-1", + "x1": "-1" + }, + "nutrition_fr": { + "y1": "136.8125", + "angle": "0", + "rev": "21", + "sizes": { + "100": { + "w": 100, + "h": 48 + }, + "200": { + "h": 96, + "w": 200 + }, + "400": { + "w": 400, + "h": 192 + }, + "full": { + "h": 510, + "w": 1061 + } + }, + "geometry": "1061x510-1401-1422", + "white_magic": "false", + "imgid": "6", + "x1": "134.75", + "y2": "185.8125", + "x2": "236.75", + "normalize": "true" + }, + "ingredients": { + "normalize": "false", + "rev": "8", + "sizes": { + "100": { + "w": 100, + "h": 24 + }, + "200": { + "h": 47, + "w": 200 + }, + "400": { + "w": 400, + "h": 94 + }, + "full": { + "h": 735, + "w": 3117 + } + }, + "geometry": "3117x735-81-936", + "imgid": "2", + "white_magic": "false" + }, + "front": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "rev": "4", + "normalize": null, + "geometry": "0x0--8--8", + "imgid": "1", + "white_magic": null + }, + "ingredients_fr": { + "imgid": "9", + "white_magic": "0", + "geometry": "0x0-0-0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "y1": null, + "angle": null, + "rev": "36", + "sizes": { + "100": { + "h": 33, + "w": 100 + }, + "200": { + "w": 200, + "h": 66 + }, + "400": { + "w": 400, + "h": 131 + }, + "full": { + "h": 793, + "w": 2420 + } + } + }, + "nutrition": { + "sizes": { + "100": { + "w": 100, + "h": 38 + }, + "200": { + "h": 75, + "w": 200 + }, + "400": { + "h": 150, + "w": 400 + }, + "full": { + "h": 1167, + "w": 3109 + } + }, + "normalize": "false", + "rev": "11", + "white_magic": "false", + "geometry": "3109x1167-126-683", + "imgid": "3" + } + }, + "traces_tags": [ + "en:eggs", + "en:fish" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, mozzarella", + "additives_prev_tags": [ + "en:e250", + "en:e301", + "en:e579" + ], + "ingredients_n_tags": [ + "26", + "21-30" + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": null, + "ingredients": [ + { + "id": "fr:garniture", + "percent": "57", + "text": "Garniture", + "rank": 1 + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "rank": 3, + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "text": "sel", + "rank": 4, + "id": "en:salt" + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs", + "rank": 5 + }, + { + "text": "mozzarella", + "rank": 6, + "percent": "35", + "id": "fr:mozzarella" + }, + { + "text": "jambon Speck", + "rank": 7, + "percent": "22", + "id": "fr:jambon Speck" + }, + { + "id": "fr:olives-noires-avec-noyau", + "rank": 8, + "text": "olives noires avec noyau" + }, + { + "text": "roquette", + "rank": 9, + "percent": "0.7", + "id": "fr:roquette" + }, + { + "text": "basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte", + "rank": 10, + "percent": "43", + "id": "fr:basilic et origan.Pourcentages exprimés sur la garniture\n\nPâte" + }, + { + "id": "en:wheat-flour", + "rank": 11, + "text": "farine de blé" + }, + { + "text": "eau", + "rank": 12, + "id": "en:water" + }, + { + "rank": 13, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 14 + }, + { + "text": "farine de blé malté", + "rank": 15, + "id": "fr:farine-de-ble-malte" + }, + { + "text": "sauce tomate", + "id": "fr:sauce-tomate", + "percent": "37" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "en:spice", + "text": "épices" + }, + { + "text": "plantes aromatiques", + "id": "fr:plante-aromatique" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "E301", + "id": "fr:e301" + }, + { + "text": "conservateur E250", + "id": "fr:conservateur E250" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "emb_codes_20141016": "" + }, + { + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.200.jpg", + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "lardons-cuits-fumes-28", + "poitrine-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "arome-naturel", + "lactose", + "arome-de-fumee", + "antioxydant", + "e316", + "conservateur", + "e250", + "emmental-rape-21", + "tranches-de-comte-9", + "olive-noire-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "informers_tags": [ + "date-limite-app", + "tacite-mass-editor", + "kiliweb", + "asmoth", + "syl44" + ], + "packaging": "film,plastique,frais,carton,film plastique à jeter,support carton à recycler,sous atmosphère protectrice", + "serving_size_debug_tags": [], + "images": { + "1": { + "uploaded_t": "1464978696", + "uploader": "date-limite-app", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1333, + "w": 1000 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "asmoth", + "uploaded_t": "1526583816" + }, + "3": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "asmoth", + "uploaded_t": "1526583846" + }, + "4": { + "uploaded_t": "1526583856", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "5": { + "uploader": "asmoth", + "uploaded_t": "1526583867", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "6": { + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "h": 400, + "w": 400 + }, + "full": { + "h": 1500, + "w": 1500 + } + }, + "uploaded_t": 1530626280, + "uploader": "sodebo" + }, + "ingredients_fr": { + "x1": "80.83331298828125", + "y2": "186.48333740234375", + "normalize": "true", + "x2": "323.83331298828125", + "white_magic": "false", + "geometry": "1215x450-404-482", + "imgid": "4", + "rev": "11", + "sizes": { + "100": { + "h": 37, + "w": 100 + }, + "200": { + "h": 74, + "w": 200 + }, + "400": { + "h": 148, + "w": 400 + }, + "full": { + "h": 450, + "w": 1215 + } + }, + "y1": "96.48333740234375", + "angle": "0" + }, + "front_fr": { + "angle": 0, + "y1": "-1", + "sizes": { + "100": { + "w": "100", + "h": "99" + }, + "200": { + "h": 199, + "w": 200 + }, + "400": { + "h": 397, + "w": 400 + }, + "full": { + "h": 1473, + "w": 1484 + } + }, + "rev": "16", + "imgid": "6", + "geometry": "0x0--3--3", + "white_magic": null, + "normalize": null, + "x2": "-1", + "y2": "-1", + "x1": "-1" + }, + "nutrition_fr": { + "geometry": "1195x495-389-469", + "imgid": "5", + "white_magic": "false", + "x1": "77.83331298828125", + "y2": "192.9666748046875", + "normalize": "true", + "x2": "316.83331298828125", + "y1": "93.9666748046875", + "angle": "0", + "rev": "12", + "sizes": { + "100": { + "h": 41, + "w": 100 + }, + "200": { + "w": 200, + "h": 83 + }, + "400": { + "h": 166, + "w": 400 + }, + "full": { + "w": 1195, + "h": 495 + } + } + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e579" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_from_ingredients": "blé, lactose", + "ingredients_n_tags": [ + "33", + "31-40" + ], + "last_modified_by": "tacite-mass-editor", + "cities_tags": [], + "origins_tags": [ + "union-europeenne" + ], + "emb_codes_20141016": "", + "ingredients": [ + { + "percent": "59", + "id": "fr:garniture", + "rank": 1, + "text": "Garniture" + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "text": "farine de blé", + "rank": 3, + "id": "en:wheat-flour" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 4 + }, + { + "rank": 5, + "text": "huile d’olive", + "id": "en:olive-oil" + }, + { + "rank": 6, + "text": "amidon de maïs", + "id": "en:corn-starch" + }, + { + "id": "fr:lardons-cuits-fumes", + "percent": "28", + "text": "lardons cuits fumés", + "rank": 7 + }, + { + "id": "fr:emmental-rape", + "percent": "21", + "text": "emmental râpé", + "rank": 8 + }, + { + "id": "fr:tranches de comté", + "percent": "9", + "rank": 9, + "text": "tranches de comté" + }, + { + "text": "olive noire avec noyau", + "rank": 10, + "id": "fr:olives-noires-avec-noyau" + }, + { + "id": "fr:basilic et origan", + "text": "basilic et origan", + "rank": 11 + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "text": "Pourcentages exprimés sur la garniture", + "rank": 12 + }, + { + "rank": 13, + "text": "Pâte", + "percent": "41", + "id": "en:paste" + }, + { + "text": "farine de blé", + "rank": 14, + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "rank": 15, + "text": "eau" + }, + { + "id": "fr:levure-boulangere", + "text": "levure boulangère", + "rank": 16 + }, + { + "rank": 17, + "text": "sel", + "id": "en:salt" + }, + { + "text": "sauce tomate", + "id": "fr:sauce-tomate" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "id": "fr:poitrine-de-porc", + "text": "poitrine de porc" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "id": "en:natural-flavour", + "text": "arôme naturel" + }, + { + "text": "lactose", + "id": "en:lactose" + }, + { + "text": "arôme de fumée", + "id": "en:smoke-flavour" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "E316", + "id": "fr:e316" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "text": "E250", + "id": "fr:e250" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.100.jpg", + "labels_hierarchy": [ + "en:green-dot" + ], + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "origins": "Union Européenne", + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1464978696, + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "lang": "fr", + "sources": [ + { + "name": "Sodebo", + "import_t": 1530626282, + "url": "https://www.sodebo.com/", + "images": [], + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "manufacturer": 1, + "id": "sodebo" + } + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), lardons cuits fumés 28% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), emmental râpé 21%, tranches de comté 9%, olive noire avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "additives_prev_original_tags": [ + "en:e316", + "en:e250", + "en:e579" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.100.jpg", + "ingredients_text_with_allergens_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), lardons cuits fumés 28% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), emmental râpé 21%, tranches de comté 9%, olive noire avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "vitamins_tags": [], + "serving_size": "157 g", + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "fr:pizzas-aux-lardons" + ], + "_id": "3242272507055", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:lardons-cuits-fumes", + "fr:emmental-rape", + "fr:tranches-de-comte", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:natural-flavour", + "en:flavour", + "en:lactose", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272507055", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "fr:pizzas-aux-lardons", + "fr:pizzas-tartes-salees-et-quiches" + ], + "editors_tags": [ + "syl44", + "date-limite-app", + "sodebo", + "kiliweb", + "tacite-mass-editor", + "asmoth" + ], + "languages": { + "en:french": 6 + }, + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "completed_t": 1526592924, + "allergens": "Gluten,Lait, blé, lactose, emmental, comté, blé, blé, lactose", + "brands_debug_tags": [], + "traces": "", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.400.jpg", + "photographers_tags": [ + "date-limite-app", + "asmoth", + "sodebo" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Garniture 59% ", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " lardons cuits fumés 28% ", + "(", + "(", + null, + null, + "poitrine de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arôme de fumée", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " emmental râpé 21%", + ",", + null, + null, + null, + " tranches de comté 9%", + ",", + null, + null, + null, + " olive noire avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan", + ".\n", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 41%", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "labels_tags": [ + "en:green-dot" + ], + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au fromage,Pizzas aux lardons", + "last_modified_t": 1532632105, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "fr:Pizzas aux lardons", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:lardons-cuits-fumes", + "fr:emmental-rape", + "fr:tranches de comté", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:natural-flavour", + "en:lactose", + "en:smoke-flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 33, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), lardons cuits fumés 28% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : - e316 - , conservateur : - e250 - ), emmental râpé 21%, tranches de comté 9%, olive noire avec noyau (stabilisant : - e579 - ), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "purchase_places_debug_tags": [], + "additives_prev_n": 3, + "fruits-vegetables-nuts_100g_estimate": 0, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_n": 3, + "purchase_places": "Niort,France", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "creator": "date-limite-app", + "last_editor": "tacite-mass-editor", + "nutriments": { + "energy_value": "983", + "fat": 8.8, + "saturated-fat_value": "4.5", + "proteins_unit": "g", + "salt": 1.3, + "sugars": 3.6, + "sodium_value": "0.511811023622047", + "salt_value": "1.3", + "fiber": "2.0", + "sugars_100g": 3.6, + "saturated-fat": 4.5, + "energy_serving": "", + "salt_unit": "g", + "carbohydrates": "27.0", + "sodium": 0.511811023622047, + "fiber_100g": "2", + "salt_100g": 1.3, + "carbohydrates_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "3.6", + "fat_serving": "", + "nutrition-score-fr": "9", + "sugars_unit": "g", + "proteins_serving": "", + "fiber_serving": "", + "carbohydrates_value": "27.0", + "nutrition-score-uk": "9", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "proteins": "11.0", + "proteins_value": "11.0", + "nova-group_100g": 4, + "fat_100g": 8.8, + "energy": "983", + "sugars_serving": "", + "nutrition-score-fr_100g": "9", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "fat_value": "8.8", + "sodium_serving": "", + "saturated-fat_100g": 4.5, + "sodium_100g": 0.511811023622047, + "energy_100g": "983", + "fiber_value": "2.0", + "fat_unit": "g", + "nutrition-score-uk_100g": "9", + "proteins_100g": "11", + "carbohydrates_100g": "27", + "salt_serving": "" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "fr:Pizzas aux lardons" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "purchase_places_tags": [ + "niort", + "france" + ], + "product_name_fr": "La Pizz - Lardons Emmental Comté", + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.100.jpg", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "film", + "plastique", + "frais", + "carton", + "film-plastique-a-jeter", + "support-carton-a-recycler", + "sous-atmosphere-protectrice" + ], + "pnns_groups_1": "Composite foods", + "labels": "Point Vert", + "entry_dates_tags": [ + "2016-06-03", + "2016-06", + "2016" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272507055/la-pizz-lardons-emmental-comte-sodebo", + "origins_debug_tags": [], + "traces_from_ingredients": "", + "lc": "fr", + "product_name": "La Pizz - Lardons Emmental Comté", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "quantity": "470 g", + "amino_acids_prev_tags": [], + "checkers_tags": [], + "brands": "Sodebo, la pizz", + "countries_debug_tags": [], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.400.jpg" + } + } + }, + "ingredients_text": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), lardons cuits fumés 28% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), emmental râpé 21%, tranches de comté 9%, olive noire avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "emb_codes_tags": [], + "lang_debug_tags": [], + "sortkey": 1532632105, + "ingredients_text_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), lardons cuits fumés 28% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), emmental râpé 21%, tranches de comté 9%, olive noire avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "id": "3242272507055", + "rev": 18, + "nutrition_score_debug": " -- energy 2 + sat-fat 4 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 9 -- fr 9", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "_keywords": [ + "rape", + "fine", + "salee", + "garnie", + "la", + "vert", + "pizza", + "fromage", + "aux", + "plat", + "comte", + "europeenne", + "tranche", + "fume", + "de", + "prepare", + "emmental", + "et", + "tarte", + "quiche", + "cuit", + "point", + "pizz", + "au", + "lardon", + "sodebo", + "union", + "pate" + ], + "stores": "Leclerc", + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e316", + "en:e250", + "en:e1403", + "en:e579" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/ingredients_fr.11.400.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e316", + "en:e579" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.200.jpg", + "generic_name": "Pizza pâte fine garnie de lardons cuits fumés, d'emmental râpé et de tranches de comté", + "nutrition_data_prepared_per": "100g", + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.200.jpg", + "stores_tags": [ + "leclerc" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "quantity-not-recognized" + ], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:lardons-cuits-fumes", + "fr:emmental-rape", + "fr:tranches de comté", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:natural-flavour", + "en:flavour", + "en:lactose", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1530626280, + "additives_old_n": 4, + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e316", + "en:e250", + "en:e579" + ], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 3, + "emb_codes_orig": "", + "nutrition_data_per": "100g", + "max_imgid": "6", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/front_fr.16.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [], + "generic_name_fr": "Pizza pâte fine garnie de lardons cuits fumés, d'emmental râpé et de tranches de comté", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/7055/nutrition_fr.12.400.jpg", + "languages_codes": { + "fr": 6 + }, + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "nutrition_grade_fr": "c", + "nutrition_grades_tags": [ + "c" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-07-26", + "2018-07", + "2018" + ], + "link": "", + "minerals_prev_tags": [], + "expiration_date": "21/05/2018", + "emb_codes": "", + "labels_prev_tags": [ + "en:green-dot" + ], + "serving_quantity": 0, + "nutrition_grades": "c", + "correctors_tags": [ + "kiliweb", + "asmoth", + "syl44", + "sodebo", + "tacite-mass-editor" + ], + "codes_tags": [ + "code-13", + "3242272507055", + "324227250705x", + "32422725070xx", + "3242272507xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4 + }, + { + "additives_n": 3, + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 3, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "nutriments": { + "carbohydrates_serving": "", + "sugars_value": "2.7", + "carbohydrates_unit": "g", + "fat_serving": "", + "proteins_serving": "", + "nutrition-score-fr": "11", + "sugars_unit": "g", + "carbohydrates_value": "26.0", + "fiber_serving": "", + "energy_unit": "kJ", + "saturated-fat_unit": "g", + "nutrition-score-uk": "11", + "energy_value": "971", + "fat": "9.0", + "salt": 1.5, + "saturated-fat_value": "5.5", + "proteins_unit": "g", + "sugars": 2.7, + "sodium_value": "0.590551181102362", + "saturated-fat": 5.5, + "sugars_100g": 2.7, + "salt_value": "1.5", + "fiber": 2.2, + "energy_serving": "", + "salt_unit": "g", + "salt_100g": 1.5, + "fiber_100g": 2.2, + "sodium": 0.590551181102362, + "carbohydrates": "26.0", + "sodium_serving": "", + "fat_value": "9.0", + "sodium_100g": 0.590551181102362, + "saturated-fat_100g": 5.5, + "energy_100g": "971", + "fiber_value": "2.2", + "nutrition-score-uk_100g": "11", + "fat_unit": "g", + "proteins_100g": "10", + "carbohydrates_100g": "26", + "salt_serving": "", + "proteins": "10.0", + "proteins_value": "10.0", + "nova-group_100g": 4, + "energy": "971", + "fat_100g": "9", + "sugars_serving": "", + "nutrition-score-fr_100g": "11", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "saturated-fat_serving": "", + "fiber_unit": "g" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:goat-cheese-and-bacon-pizzas" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "purchase_places": "France,Niort", + "nutrition_data_prepared_per_debug_tags": [], + "creator": "openfoodfacts-contributors", + "labels_debug_tags": [], + "last_editor": "tacite-mass-editor", + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:emmental", + "fr:fromage de chèvre affiné", + "fr:lardons-cuits-fumes", + "fr:olives-noires-avec-noyau", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:natural-flavour", + "en:lactose", + "en:smoke-flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 32, + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au fromage,Pizzas chèvre-lardons", + "manufacturing_places_tags": [], + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:goat-cheese-and-bacon-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1532632064, + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_text_debug": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), emmental 27%, fromage de chèvre affiné 16%, lardons cuits fumés 15% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : - e316 - , conservateur : - e250 - ), olives noires avec noyau (stabilisant : - e579 - ).Pourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "ingredients_from_palm_oil_n": 0, + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "brands_debug_tags": [], + "traces": "", + "ingredients_debug": [ + "Garniture 59%", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " emmental 27%", + ",", + null, + null, + null, + " fromage de chèvre affiné 16%", + ",", + null, + null, + null, + " lardons cuits fumés 15% ", + "(", + "(", + null, + null, + "poitrine de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arôme de fumée", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ").Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 41%", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "labels_tags": [ + "en:green-dot" + ], + "photographers_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "asmoth", + "sodebo" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.400.jpg", + "vitamins_prev_tags": [], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:goat-cheese-and-bacon-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "editors": [ + "date-limite-app", + "", + "teolemon", + "tacite" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272504054", + "scans_n": 7, + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "completed_t": 1527268890, + "allergens": "Gluten,Lait, blé, emmental, fromage de chèvre, lactose, lactose, blé, blé, lactose", + "editors_tags": [ + "tacite", + "teolemon", + "tacite-mass-editor", + "sodebo", + "kiliweb", + "date-limite-app", + "syl44", + "openfoodfacts-contributors", + "asmoth" + ], + "languages": { + "en:french": 6 + }, + "link_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), emmental 27%, fromage de chèvre affiné 16%, lardons cuits fumés 15% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), olives noires avec noyau (stabilisant : E579).Pourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), emmental 27%, fromage de chèvre affiné 16%, lardons cuits fumés 15% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), olives noires avec noyau (stabilisant : E579).Pourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.100.jpg", + "quantity_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.100.jpg", + "additives_prev_original_tags": [ + "en:e316", + "en:e250", + "en:e579" + ], + "serving_size": "157 g", + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:goat-cheese-and-bacon-pizzas" + ], + "_id": "3242272504054", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:emmental", + "fr:fromage-de-chevre-affine", + "fr:lardons-cuits-fumes", + "fr:olives-noires-avec-noyau", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:natural-flavour", + "en:flavour", + "en:lactose", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "vitamins_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1415014646, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.100.jpg", + "labels_hierarchy": [ + "en:green-dot" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "origins": "Union Européenne", + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "lang": "fr", + "sources": [ + { + "name": "Sodebo", + "url": "https://www.sodebo.com/", + "import_t": 1530626264, + "images": [], + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "id": "sodebo", + "manufacturer": 1 + } + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_from_ingredients": "blé, emmental, lactose", + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e579" + ], + "serving_size_debug_tags": [], + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": 1415014655, + "uploader": "openfoodfacts-contributors" + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1526048858", + "sizes": { + "100": { + "w": 36, + "h": 100 + }, + "400": { + "h": 400, + "w": 144 + }, + "full": { + "h": 1200, + "w": 431 + } + } + }, + "3": { + "uploaded_t": "1527187044", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "4": { + "uploaded_t": "1527187057", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "5": { + "uploaded_t": "1527187068", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "6": { + "uploaded_t": "1527187086", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "7": { + "uploader": "sodebo", + "uploaded_t": 1530626261, + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "w": 400, + "h": 400 + }, + "full": { + "w": 1500, + "h": 1500 + } + } + }, + "nutrition_fr": { + "rev": "20", + "sizes": { + "100": { + "w": 100, + "h": 43 + }, + "200": { + "w": 200, + "h": 86 + }, + "400": { + "h": 172, + "w": 400 + }, + "full": { + "w": 1130, + "h": 485 + } + }, + "angle": "0", + "y1": "98.96665954589844", + "x2": "320.83331298828125", + "normalize": "true", + "x1": "94.83331298828125", + "y2": "195.96665954589844", + "geometry": "1130x485-474-494", + "imgid": "6", + "white_magic": "false" + }, + "front_fr": { + "normalize": null, + "x2": "-1", + "y2": "-1", + "x1": "-1", + "imgid": "7", + "geometry": "0x0--3--3", + "white_magic": null, + "sizes": { + "100": { + "w": "100", + "h": "100" + }, + "200": { + "h": 199, + "w": 200 + }, + "400": { + "w": 400, + "h": 399 + }, + "full": { + "w": 1432, + "h": 1428 + } + }, + "rev": "24", + "angle": 0, + "y1": "-1" + }, + "front": { + "imgid": "1", + "geometry": "0x0--8--8", + "white_magic": null, + "normalize": null, + "rev": "3", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "ingredients_fr": { + "sizes": { + "100": { + "w": 100, + "h": 38 + }, + "200": { + "h": 76, + "w": 200 + }, + "400": { + "w": 400, + "h": 152 + }, + "full": { + "h": 430, + "w": 1135 + } + }, + "rev": "19", + "angle": "0", + "y1": "106.48333740234375", + "x2": "317.83331298828125", + "normalize": "true", + "y2": "192.48333740234375", + "x1": "90.83331298828125", + "imgid": "5", + "geometry": "1135x430-454-532", + "white_magic": "false" + } + }, + "no_nutrition_data": "", + "ingredients": [ + { + "percent": "59", + "id": "fr:garniture", + "text": "Garniture", + "rank": 1 + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "id": "en:wheat-flour", + "text": "farine de blé", + "rank": 3 + }, + { + "text": "sel", + "rank": 4, + "id": "en:salt" + }, + { + "id": "en:olive-oil", + "text": "huile d’olive", + "rank": 5 + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs", + "rank": 6 + }, + { + "text": "emmental", + "rank": 7, + "percent": "27", + "id": "fr:emmental" + }, + { + "percent": "16", + "id": "fr:fromage de chèvre affiné", + "rank": 8, + "text": "fromage de chèvre affiné" + }, + { + "id": "fr:lardons-cuits-fumes", + "percent": "15", + "rank": 9, + "text": "lardons cuits fumés" + }, + { + "rank": 10, + "text": "olives noires avec noyau", + "id": "fr:olives-noires-avec-noyau" + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "text": "Pourcentages exprimés sur la garniture", + "rank": 11 + }, + { + "id": "en:paste", + "percent": "41", + "rank": 12, + "text": "Pâte" + }, + { + "id": "en:wheat-flour", + "rank": 13, + "text": "farine de blé" + }, + { + "rank": 14, + "text": "eau", + "id": "en:water" + }, + { + "text": "levure boulangère", + "rank": 15, + "id": "fr:levure-boulangere" + }, + { + "rank": 16, + "text": "sel", + "id": "en:salt" + }, + { + "id": "fr:sauce-tomate", + "text": "sauce tomate" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "text": "poitrine de porc", + "id": "fr:poitrine-de-porc" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "text": "arôme naturel", + "id": "en:natural-flavour" + }, + { + "id": "en:lactose", + "text": "lactose" + }, + { + "id": "en:smoke-flavour", + "text": "arôme de fumée" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "E316", + "id": "fr:e316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "emb_codes_20141016": "", + "ingredients_n_tags": [ + "32", + "31-40" + ], + "last_modified_by": "tacite-mass-editor", + "cities_tags": [], + "origins_tags": [ + "union-europeenne" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.200.jpg", + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "emmental-27", + "fromage-de-chevre-affine-16", + "lardons-cuits-fumes-15", + "poitrine-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "arome-naturel", + "lactose", + "arome-de-fumee", + "antioxydant", + "e316", + "conservateur", + "e250", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "packaging": "Carton,Plastique,frais,Film plastique à jeter,support carton à recycler", + "informers_tags": [ + "openfoodfacts-contributors", + "date-limite-app", + "tacite", + "teolemon", + "kiliweb", + "asmoth", + "syl44" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "expiration_date": "26/05/2018", + "emb_codes": "", + "minerals_prev_tags": [], + "correctors_tags": [ + "tacite", + "teolemon", + "date-limite-app", + "kiliweb", + "openfoodfacts-contributors", + "asmoth", + "syl44", + "sodebo", + "tacite-mass-editor" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272504054", + "324227250405x", + "32422725040xx", + "3242272504xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "labels_prev_tags": [ + "en:green-dot" + ], + "nutrition_grades": "d", + "serving_quantity": 0, + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "nutrition_grade_fr": "d", + "new_additives_n": 4, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.400.jpg", + "languages_codes": { + "fr": 6 + }, + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-07-26", + "2018-07", + "2018" + ], + "link": "https://www.sodebo.com/produit/pizza-la-pizz-chevre-affine-lardons/", + "nutrition_grades_tags": [ + "d" + ], + "emb_codes_orig": "", + "max_imgid": "7", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "unknown_nutrients_tags": [], + "unique_scans_n": 7, + "unknown_ingredients_n": 2, + "generic_name_fr": "Pizza pâte fine garnie d'emmental, de fromage de chèvre affiné et de lardons cuits fumés", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [], + "last_image_t": 1530626261, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 4, + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:emmental", + "fr:fromage de chèvre affiné", + "fr:lardons-cuits-fumes", + "fr:olives-noires-avec-noyau", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:natural-flavour", + "en:flavour", + "en:lactose", + "en:smoke-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e316", + "en:e250", + "en:e579" + ], + "nutrition_data": "on", + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "quantity-not-recognized" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.200.jpg", + "stores_tags": [ + "leclerc" + ], + "additives_old_tags": [ + "en:e316", + "en:e250", + "en:e1403", + "en:e579" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.400.jpg", + "id": "3242272504054", + "rev": 26, + "stores": "Leclerc", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 5 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "_keywords": [ + "union", + "pate", + "au", + "lardon", + "sodebo", + "cuit", + "point", + "chevre-lardon", + "pizz", + "et", + "affine", + "tarte", + "quiche", + "de", + "emmental", + "prepare", + "fume", + "la", + "vert", + "pizza", + "fromage", + "plat", + "chevre", + "europeenne", + "fine", + "salee", + "garnie" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nutrition_data_prepared_per": "100g", + "additives_tags": [ + "en:e250", + "en:e316", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.200.jpg", + "generic_name": "Pizza pâte fine garnie d'emmental, de fromage de chèvre affiné et de lardons cuits fumés", + "quantity": "470 g", + "amino_acids_prev_tags": [], + "countries_debug_tags": [], + "brands": "Sodebo, la pizz", + "checkers_tags": [], + "product_name": "La Pizz - Chèvre affiné Lardons", + "lc": "fr", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "nutrient_levels": { + "saturated-fat": "high", + "fat": "moderate", + "salt": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "lang_debug_tags": [], + "sortkey": 1532632064, + "ingredients_text_fr": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), emmental 27%, fromage de chèvre affiné 16%, lardons cuits fumés 15% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), olives noires avec noyau (stabilisant : E579).Pourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.400.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/nutrition_fr.20.100.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/4054/ingredients_fr.19.100.jpg" + } + } + }, + "ingredients_text": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), emmental 27%, fromage de chèvre affiné 16%, lardons cuits fumés 15% (poitrine de porc, eau, sel, sirop de glucose, dextrose, arôme naturel, lactose, arôme de fumée, antioxydant : E316, conservateur : E250), olives noires avec noyau (stabilisant : E579).Pourcentages exprimés sur la garniture.\n\nPâte 41%: farine de blé, eau, levure boulangère, sel.", + "emb_codes_tags": [], + "pnns_groups_1": "Composite foods", + "labels": "Point Vert", + "purchase_places_tags": [ + "france", + "niort" + ], + "product_name_fr": "La Pizz - Chèvre affiné Lardons", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/4054/front_fr.24.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "carton", + "plastique", + "frais", + "film-plastique-a-jeter", + "support-carton-a-recycler" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242272504054/la-pizz-chevre-affine-lardons-sodebo", + "traces_from_ingredients": "", + "entry_dates_tags": [ + "2014-11-03", + "2014-11", + "2014" + ] + }, + { + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de glucose, plantes aromatiques, colorant : extrait de paprika, stabilisant : - e451 - , arômes naturels, antioxydant : - e316 - , conservateur : - e250 - , ferments), emmental, mozzarella, olives noires avec noyau (stabilisant : - e579 - ), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "ingredients_n": 38, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:chorizo cuit", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "en:glucose-syrup", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "en:stabiliser", + "fr:e451", + "en:natural-flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1532632062, + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au chorizo", + "manufacturing_places_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas" + ], + "nutriments": { + "energy_unit": "kJ", + "saturated-fat_unit": "g", + "nutrition-score-uk": "12", + "carbohydrates_value": "26.0", + "fiber_serving": "", + "proteins_serving": "", + "sugars_unit": "g", + "nutrition-score-fr": "12", + "fat_serving": "", + "sugars_value": "3.3", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "salt_100g": 1.4, + "carbohydrates": "26.0", + "fiber_100g": "2", + "sodium": 0.551181102362205, + "salt_unit": "g", + "energy_serving": "", + "saturated-fat": 5.6, + "salt_value": "1.4", + "sugars_100g": 3.3, + "fiber": "2.0", + "sodium_value": "0.5511811023622046", + "sugars": 3.3, + "salt": 1.4, + "saturated-fat_value": "5.6", + "proteins_unit": "g", + "energy_value": "1034", + "fat": "11.0", + "salt_serving": "", + "proteins_100g": "11", + "carbohydrates_100g": "26", + "nutrition-score-uk_100g": "12", + "fat_unit": "g", + "fiber_value": "2.0", + "energy_100g": "1034", + "saturated-fat_100g": 5.6, + "sodium_100g": 0.551181102362205, + "sodium_serving": "", + "fat_value": "11.0", + "saturated-fat_serving": "", + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "nutrition-score-fr_100g": "12", + "sugars_serving": "", + "energy": "1034", + "fat_100g": "11", + "nova-group_100g": 4, + "proteins_value": "11.0", + "proteins": "11.0" + }, + "last_editor": "tacite-mass-editor", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-nutriscore-experiment", + "added-en-2016-nutrition-labelling-experiment", + "added-en-nutriscore-experiment-grade-d", + "removed-fr-experimentation-etiquetage-nutritionnel-2016", + "removed-fr-experimentation-nutriscore", + "removed-fr-experimentation-nutriscore-d" + ], + "creator": "date-limite-app", + "purchase_places": "Rots,France,Paris,Maison-Laffitte,Orvault", + "additives_n": 5, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_prev_n": 5, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "allergens": "Gluten,Lait, blé, lactose, emmental, mozzarella, blé, blé, lactose, emmental, mozzarella", + "completed_t": 1440580567, + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "tacite-mass-editor", + "kiliweb", + "tacinte", + "sodebo", + "tacite", + "asmoth", + "segundo", + "date-limite-app", + "syl44" + ], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "scans_n": 8, + "code": "3242272503057", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors": [ + "date-limite-app", + "segundo" + ], + "labels_tags": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "en:green-dot", + "en:nutriscore-experiment-grade-d" + ], + "ingredients_debug": [ + "Garniture 59% ", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " chorizo cuit 26% ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " gras de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " piments", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " extrait de paprika", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " arômes naturels", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " emmental", + ",", + null, + null, + null, + " mozzarella", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan.Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 41% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "segundo", + "tacinte", + "asmoth", + "sodebo" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.400.jpg", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "brands_debug_tags": [], + "traces": "", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.400.jpg", + "sources": [ + { + "import_t": 1530626259, + "url": "https://www.sodebo.com/", + "name": "Sodebo", + "manufacturer": 1, + "id": "sodebo", + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "images": [] + } + ], + "lang": "fr", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "created_t": 1432385148, + "origins": "Union Européenne", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "en:green-dot", + "en:nutriscore-experiment-grade-d" + ], + "manufacturing_places": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.100.jpg", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:chorizo-cuit", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "en:meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "en:glucose-syrup", + "en:syrup", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "en:stabiliser", + "fr:e451", + "en:natural-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272503057", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas" + ], + "interface_version_created": "20130323.jqm", + "serving_size": "157 g", + "vitamins_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de glucose, plantes aromatiques, colorant : extrait de paprika, stabilisant : E451, arômes naturels, antioxydant : E316, conservateur : E250, ferments), emmental, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.100.jpg", + "additives_prev_original_tags": [ + "en:e160c", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.100.jpg", + "ingredients_text_with_allergens": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de glucose, plantes aromatiques, colorant : extrait de paprika, stabilisant : E451, arômes naturels, antioxydant : E316, conservateur : E250, ferments), emmental, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "packaging": "Film,Plastique,Carton,film plastique à jeter,support carton à recycler,frais,sous atmosphère protectrice", + "informers_tags": [ + "date-limite-app", + "segundo", + "tacinte", + "asmoth", + "syl44" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "chorizo-cuit-26", + "viande-de-porc", + "gras-de-porc", + "sel", + "piments", + "lactose", + "dextrose", + "sirop-de-glucose", + "plantes-aromatiques", + "colorant", + "extrait-de-paprika", + "stabilisant", + "e451", + "aromes-naturels", + "antioxydant", + "e316", + "conservateur", + "e250", + "ferments", + "emmental", + "mozzarella", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.200.jpg", + "emb_codes_20141016": "", + "ingredients": [ + { + "id": "fr:garniture", + "percent": "59", + "text": "Garniture", + "rank": 1 + }, + { + "rank": 2, + "text": "eau", + "id": "en:water" + }, + { + "id": "en:wheat-flour", + "rank": 3, + "text": "farine de blé" + }, + { + "rank": 4, + "text": "sel", + "id": "en:salt" + }, + { + "id": "en:olive-oil", + "rank": 5, + "text": "huile d’olive" + }, + { + "id": "en:corn-starch", + "rank": 6, + "text": "amidon de maïs" + }, + { + "id": "fr:chorizo cuit", + "percent": "26", + "text": "chorizo cuit", + "rank": 7 + }, + { + "id": "fr:emmental", + "rank": 8, + "text": "emmental" + }, + { + "id": "fr:mozzarella", + "text": "mozzarella", + "rank": 9 + }, + { + "text": "olives noires avec noyau", + "rank": 10, + "id": "fr:olives-noires-avec-noyau" + }, + { + "text": "basilic et origan.Pourcentages exprimés sur la garniture", + "rank": 11, + "id": "fr:basilic et origan.Pourcentages exprimés sur la garniture" + }, + { + "rank": 12, + "text": "Pâte", + "percent": "41", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "text": "farine de blé", + "rank": 13 + }, + { + "id": "en:water", + "text": "eau", + "rank": 14 + }, + { + "text": "levure boulangère", + "rank": 15, + "id": "fr:levure-boulangere" + }, + { + "text": "sel", + "rank": 16, + "id": "en:salt" + }, + { + "text": "sauce tomate", + "id": "fr:sauce-tomate" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "text": "gras de porc", + "id": "fr:gras-de-porc" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "piments", + "id": "fr:piment" + }, + { + "text": "lactose", + "id": "en:lactose" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "id": "fr:plante-aromatique", + "text": "plantes aromatiques" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "id": "en:paprika-extract", + "text": "extrait de paprika" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e451", + "text": "E451" + }, + { + "text": "arômes naturels", + "id": "en:natural-flavour" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "id": "fr:e316", + "text": "E316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "text": "E250", + "id": "fr:e250" + }, + { + "id": "fr:ferment", + "text": "ferments" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "origins_tags": [ + "union-europeenne" + ], + "cities_tags": [], + "last_modified_by": "tacite-mass-editor", + "ingredients_n_tags": [ + "38", + "31-40" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_from_ingredients": "blé, lactose, emmental, mozzarella", + "additives_prev_tags": [ + "en:e160c", + "en:e250", + "en:e316", + "en:e451", + "en:e579" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "images": { + "1": { + "uploaded_t": "1440512835", + "uploader": "segundo", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2666, + "w": 2000 + } + } + }, + "2": { + "uploaded_t": "1440512854", + "uploader": "segundo", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "3": { + "uploader": "tacinte", + "uploaded_t": "1474910910", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3120, + "h": 4160 + } + } + }, + "4": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 4160, + "w": 3120 + } + }, + "uploaded_t": "1474910913", + "uploader": "tacinte" + }, + "5": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4160, + "w": 3120 + } + }, + "uploaded_t": "1474910919", + "uploader": "tacinte" + }, + "6": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploader": "asmoth", + "uploaded_t": "1521482953" + }, + "7": { + "uploaded_t": "1521482978", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "8": { + "uploader": "asmoth", + "uploaded_t": "1521482986", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "9": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1521482995", + "uploader": "asmoth" + }, + "10": { + "uploader": "sodebo", + "uploaded_t": 1530626251, + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "w": 400, + "h": 400 + }, + "full": { + "h": 1500, + "w": 1500 + } + } + }, + "nutrition_fr": { + "imgid": "9", + "white_magic": "false", + "geometry": "1490x625-229-374", + "x2": "343.83331298828125", + "normalize": "true", + "y2": "199.96665954589844", + "x1": "45.83331298828125", + "angle": "0", + "y1": "74.96665954589844", + "sizes": { + "100": { + "w": 100, + "h": 42 + }, + "200": { + "h": 84, + "w": 200 + }, + "400": { + "h": 168, + "w": 400 + }, + "full": { + "w": 1490, + "h": 625 + } + }, + "rev": "30" + }, + "front_fr": { + "sizes": { + "100": { + "w": "100", + "h": "100" + }, + "200": { + "h": 200, + "w": 200 + }, + "400": { + "h": 400, + "w": 399 + }, + "full": { + "h": 1434, + "w": 1432 + } + }, + "rev": "35", + "angle": 0, + "y1": "-1", + "normalize": null, + "x2": "-1", + "y2": "-1", + "x1": "-1", + "white_magic": null, + "geometry": "0x0--3--3", + "imgid": "10" + }, + "nutrition": { + "imgid": "2", + "geometry": "765x435-381-835", + "white_magic": "false", + "rev": "7", + "normalize": "false", + "sizes": { + "100": { + "h": 57, + "w": 100 + }, + "200": { + "h": 114, + "w": 200 + }, + "400": { + "w": 400, + "h": 227 + }, + "full": { + "w": 765, + "h": 435 + } + } + }, + "ingredients_fr": { + "rev": "29", + "sizes": { + "100": { + "h": 38, + "w": 100 + }, + "200": { + "h": 76, + "w": 200 + }, + "400": { + "w": 400, + "h": 153 + }, + "full": { + "h": 550, + "w": 1440 + } + }, + "angle": "0", + "y1": "90.48333740234375", + "x2": "351.83331298828125", + "normalize": "true", + "x1": "63.83331298828125", + "y2": "200.48333740234375", + "white_magic": "false", + "imgid": "8", + "geometry": "1440x550-319-452" + }, + "front": { + "sizes": { + "100": { + "h": 99, + "w": 100 + }, + "200": { + "w": 200, + "h": 199 + }, + "400": { + "h": 397, + "w": 400 + }, + "full": { + "h": 1927, + "w": 1940 + } + }, + "rev": "5", + "normalize": "false", + "geometry": "1940x1927-408-39", + "imgid": "1", + "white_magic": "false" + }, + "ingredients": { + "sizes": { + "100": { + "w": 100, + "h": 38 + }, + "200": { + "h": 76, + "w": 200 + }, + "400": { + "w": 400, + "h": 151 + }, + "full": { + "w": 925, + "h": 350 + } + }, + "normalize": "false", + "rev": "6", + "geometry": "925x350-376-484", + "imgid": "2", + "white_magic": "false" + } + }, + "traces_tags": [], + "serving_size_debug_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-07-26", + "2018-07", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "nutrition_grade_fr": "d", + "new_additives_n": 4, + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.400.jpg", + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272503057", + "324227250305x", + "32422725030xx", + "3242272503xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "segundo", + "date-limite-app", + "tacite", + "tacinte", + "tacite-mass-editor", + "kiliweb", + "asmoth", + "syl44", + "sodebo" + ], + "serving_quantity": 0, + "nutrition_grades": "d", + "labels_prev_tags": [ + "en:green-dot", + "fr:experimentation-etiquetage-nutritionnel-2016", + "fr:experimentation-nutriscore", + "fr:experimentation-nutriscore-d" + ], + "emb_codes": "", + "expiration_date": "31/03/2018", + "minerals_prev_tags": [], + "additives_original_tags": [ + "en:e160c", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrition_data": "on", + "additives_debug_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1530626251, + "additives_old_n": 6, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:chorizo cuit", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "en:pork-meat", + "en:meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "en:glucose-syrup", + "en:syrup", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "en:stabiliser", + "fr:e451", + "en:natural-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "generic_name_fr": "Pizza pâte fine garnie de chorizo cuit", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.200.jpg", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "10", + "emb_codes_orig": "", + "unique_scans_n": 8, + "unknown_ingredients_n": 2, + "unknown_nutrients_tags": [], + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.200.jpg", + "generic_name": "Pizza pâte fine garnie de chorizo cuit", + "additives_tags": [ + "en:e160c", + "en:e250", + "en:e316", + "en:e451", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.400.jpg", + "additives_old_tags": [ + "en:e160c", + "en:e1403", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "_keywords": [ + "prepare", + "de", + "garnie", + "salee", + "fine", + "europeenne", + "plat", + "pizza", + "la", + "vert", + "2016", + "sodebo", + "experimentation", + "au", + "nutritionnel", + "pate", + "nutriscore", + "union", + "quiche", + "tarte", + "et", + "etiquetage", + "pizz", + "chorizo", + "cuit", + "point" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 12 -- fr 12", + "stores": "Cora,Casino,Leclerc", + "rev": 37, + "id": "3242272503057", + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-not-recognized" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "cora", + "casino", + "leclerc" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.200.jpg", + "stores_debug_tags": [], + "labels_prev_hierarchy": [ + "en:green-dot", + "fr:Experimentation Etiquetage Nutritionnel 2016", + "fr:Expérimentation Nutriscore", + "fr:Expérimentation Nutriscore D" + ], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3242272503057/la-pizz-chorizo-sodebo", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2015-05-23", + "2015-05", + "2015" + ], + "pnns_groups_1": "Composite foods", + "labels": "Expérimentation Nutriscore,Experimentation Etiquetage Nutritionnel 2016,Point Vert,Expérimentation Nutriscore D", + "packaging_tags": [ + "film", + "plastique", + "carton", + "film-plastique-a-jeter", + "support-carton-a-recycler", + "frais", + "sous-atmosphere-protectrice" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.100.jpg", + "interface_version_modified": "20150316.jqm2", + "update_key": "key_1533677490", + "product_name_fr": "La Pizz - Chorizo", + "purchase_places_tags": [ + "rots", + "france", + "paris", + "maison-laffitte", + "orvault" + ], + "ingredients_text_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de glucose, plantes aromatiques, colorant : extrait de paprika, stabilisant : E451, arômes naturels, antioxydant : E316, conservateur : E250, ferments), emmental, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "lang_debug_tags": [], + "sortkey": 1532632062, + "emb_codes_tags": [], + "ingredients_text": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de glucose, plantes aromatiques, colorant : extrait de paprika, stabilisant : E451, arômes naturels, antioxydant : E316, conservateur : E250, ferments), emmental, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/front_fr.35.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/nutrition_fr.30.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3057/ingredients_fr.29.100.jpg" + } + } + }, + "brands": "Sodebo, la pizz", + "countries_debug_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "470 g", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "fat": "moderate", + "saturated-fat": "high", + "salt": "moderate" + }, + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "lc": "fr", + "product_name": "La Pizz - Chorizo" + }, + { + "quality_tags": [ + "quantity-not-recognized" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "banque-alimentaire", + "cora", + "leclerc" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.200.jpg", + "stores_debug_tags": [], + "labels_prev_hierarchy": [ + "en:green-dot", + "fr:Eco-Emballages" + ], + "nutrition_data_prepared_per": "100g", + "generic_name": "Pizza pâte fine garnie de jambon cuit standard et d'emmental", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.200.jpg", + "additives_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "stores": "Banque alimentaire,Cora,Leclerc", + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 9 -- fr 9", + "_keywords": [ + "sodebo", + "pate", + "union", + "quiche", + "tarte", + "et", + "pizz", + "cuit", + "point", + "jambon-fromage", + "fraiche", + "standard", + "prepare", + "emmental", + "de", + "salee", + "eco-emballage", + "garnie", + "frai", + "fine", + "plat", + "jambon", + "europeenne", + "vert", + "la", + "pizza" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "rev": 48, + "id": "3242272500056", + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "lang_debug_tags": [], + "sortkey": 1532632058, + "emb_codes_tags": [], + "ingredients_text": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.200.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.400.jpg" + } + } + }, + "checkers_tags": [], + "brands": "Sodebo, la pizz", + "countries_debug_tags": [], + "amino_acids_prev_tags": [], + "quantity": "470 g", + "nutrient_levels": { + "salt": "high", + "fat": "moderate", + "saturated-fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "lc": "fr", + "product_name": "La Pizz - Jambon Emmental", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3242272500056/la-pizz-jambon-emmental-sodebo", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2014-07-27", + "2014-07", + "2014" + ], + "labels": "Point Vert,Eco-Emballages", + "pnns_groups_1": "Composite foods", + "packaging_tags": [ + "frais", + "film-plastique-a-jeter", + "support-carton-a-recycler", + "sous-atmosphere-protectrice" + ], + "interface_version_modified": "20150316.jqm2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.100.jpg", + "update_key": "key_1533677490", + "product_name_fr": "La Pizz - Jambon Emmental", + "purchase_places_tags": [ + "villers-bocage-80260", + "france", + "bagneux", + "niort" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272500056", + "324227250005x", + "32422725000xx", + "3242272500xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "teolemon", + "anonymousgeek", + "jacob80", + "segundo", + "date-limite-app", + "sto", + "kiliweb", + "asmoth", + "syl44", + "sodebo", + "tacite-mass-editor" + ], + "nutrition_grades": "c", + "serving_quantity": 0, + "labels_prev_tags": [ + "en:green-dot", + "fr:eco-emballages" + ], + "emb_codes": "", + "expiration_date": "15/06/2018", + "minerals_prev_tags": [], + "last_edit_dates_tags": [ + "2018-07-26", + "2018-07", + "2018" + ], + "link": "http://www.sodebo.fr/produits-frais/pizzas/pizza/pizza-jambon-emmental", + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "new_additives_n": 5, + "nutrition_grade_fr": "c", + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.400.jpg", + "generic_name_fr": "Pizza pâte fine garnie de jambon cuit standard et d'emmental", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.200.jpg", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "max_imgid": "19", + "nutrition_data_per": "100g", + "emb_codes_orig": "", + "unknown_ingredients_n": 2, + "unique_scans_n": 70, + "unknown_nutrients_tags": [], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_debug_tags": [], + "last_image_t": 1532541830, + "additives_old_n": 6, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272500056", + "categories_prev_tags": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:fresh-meals", + "en:pizzas", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-fraiches", + "fr:pizzas-jambon-emmental" + ], + "interface_version_created": "20120622", + "serving_size": "157 g", + "vitamins_tags": [], + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.100.jpg", + "additives_prev_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/nutrition_fr.41.100.jpg", + "ingredients_text_with_allergens": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "quantity_debug_tags": [], + "allergens_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.400.jpg", + "traces_debug_tags": [], + "sources": [ + { + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "manufacturer": 1, + "id": "sodebo", + "images": [], + "import_t": 1530626234, + "url": "https://www.sodebo.com/", + "name": "Sodebo" + } + ], + "lang": "fr", + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "created_t": 1406453357, + "origins": "Union Européenne", + "labels_hierarchy": [ + "en:green-dot", + "fr:Eco-Emballages" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.100.jpg", + "ingredients": [ + { + "text": "Garniture", + "rank": 1, + "percent": "59", + "id": "fr:garniture" + }, + { + "text": "eau", + "rank": 2, + "id": "en:water" + }, + { + "rank": 3, + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "text": "sel", + "rank": 4, + "id": "en:salt" + }, + { + "id": "en:olive-oil", + "text": "huile d’olive", + "rank": 5 + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs", + "rank": 6 + }, + { + "id": "fr:jambon-cuit-standard", + "percent": "29", + "rank": 7, + "text": "jambon cuit standard" + }, + { + "percent": "22", + "id": "fr:emmental", + "rank": 8, + "text": "emmental" + }, + { + "id": "fr:mozzarella", + "rank": 9, + "text": "mozzarella" + }, + { + "rank": 10, + "text": "olives noires avec noyau", + "id": "fr:olives-noires-avec-noyau" + }, + { + "text": "basilic et origan", + "rank": 11, + "id": "fr:basilic et origan" + }, + { + "text": "Pourcentages exprimés sur la garniture", + "rank": 12, + "id": "fr:Pourcentages exprimés sur la garniture" + }, + { + "rank": 13, + "text": "Pâte", + "percent": "41", + "id": "en:paste" + }, + { + "rank": 14, + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "rank": 15, + "text": "eau", + "id": "en:water" + }, + { + "rank": 16, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "id": "en:salt", + "rank": 17, + "text": "sel" + }, + { + "text": "sauce tomate", + "id": "fr:sauce-tomate" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "id": "fr:jambon-de-porc", + "text": "jambon de porc" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "en:glucose-syrup", + "text": "sirop de glucose" + }, + { + "id": "en:dextrose", + "text": "dextrose" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "text": "E451", + "id": "fr:e451" + }, + { + "id": "en:gelling-agent", + "text": "gélifiant" + }, + { + "text": "E407", + "id": "fr:e407" + }, + { + "id": "en:lactose", + "text": "lactose" + }, + { + "text": "arôme naturel", + "id": "en:natural-flavour" + }, + { + "text": "bouillon de porc", + "id": "fr:bouillon-de-porc" + }, + { + "id": "en:antioxidant", + "text": "antioxydant" + }, + { + "id": "fr:e316", + "text": "E316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "text": "ferments", + "id": "fr:ferment" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "emb_codes_20141016": "", + "origins_tags": [ + "union-europeenne" + ], + "cities_tags": [], + "last_modified_by": "tacite-mass-editor", + "ingredients_n_tags": [ + "38", + "31-40" + ], + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, lactose, emmental, mozzarella", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 299 + }, + "full": { + "h": 2592, + "w": 1936 + } + }, + "uploaded_t": 1406453358, + "uploader": "teolemon" + }, + "2": { + "uploaded_t": 1406453375, + "uploader": "teolemon", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 299 + }, + "full": { + "h": 2592, + "w": 1936 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 299, + "h": 400 + }, + "full": { + "h": 2592, + "w": 1936 + } + }, + "uploaded_t": 1406453414, + "uploader": "teolemon" + }, + "4": { + "uploader": "jacob80", + "uploaded_t": 1423584447, + "sizes": { + "100": { + "h": 99, + "w": 100 + }, + "400": { + "h": 396, + "w": 400 + }, + "full": { + "h": 1829, + "w": 1846 + } + } + }, + "5": { + "uploader": "jacob80", + "uploaded_t": 1423584468, + "sizes": { + "100": { + "h": 96, + "w": 100 + }, + "400": { + "w": 400, + "h": 383 + }, + "full": { + "w": 1766, + "h": 1690 + } + } + }, + "6": { + "sizes": { + "100": { + "h": 41, + "w": 100 + }, + "400": { + "h": 163, + "w": 400 + }, + "full": { + "w": 2242, + "h": 912 + } + }, + "uploader": "jacob80", + "uploaded_t": 1423584484 + }, + "7": { + "uploaded_t": 1423584521, + "uploader": "jacob80", + "sizes": { + "100": { + "h": 46, + "w": 100 + }, + "400": { + "h": 184, + "w": 400 + }, + "full": { + "w": 2294, + "h": 1053 + } + } + }, + "8": { + "uploaded_t": "1508235690", + "uploader": "sto", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "9": { + "uploader": "sto", + "uploaded_t": "1508235702", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "10": { + "uploader": "asmoth", + "uploaded_t": "1527612044", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "11": { + "uploader": "asmoth", + "uploaded_t": "1527612056", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "12": { + "uploaded_t": "1527612076", + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "13": { + "uploaded_t": "1527612085", + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "14": { + "uploaded_t": "1528911753", + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "15": { + "uploaded_t": "1528911772", + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "16": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1528911805", + "uploader": "asmoth" + }, + "17": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1528911816", + "uploader": "asmoth" + }, + "18": { + "uploaded_t": 1530626230, + "uploader": "sodebo", + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "w": 400, + "h": 400 + }, + "full": { + "w": 1500, + "h": 1500 + } + } + }, + "19": { + "uploaded_t": 1532541829, + "uploader": "date-limite-app", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1333, + "w": 1000 + } + } + }, + "nutrition_fr": { + "sizes": { + "100": { + "w": 100, + "h": 42 + }, + "200": { + "h": 85, + "w": 200 + }, + "400": { + "w": 400, + "h": 169 + }, + "full": { + "h": 610, + "w": 1440 + } + }, + "rev": "41", + "angle": "0", + "y1": "81.9666748046875", + "normalize": "true", + "x2": "345.83331298828125", + "y2": "203.9666748046875", + "x1": "57.83331298828125", + "white_magic": "false", + "geometry": "1440x610-289-409", + "imgid": "17" + }, + "front_fr": { + "white_magic": null, + "geometry": "0x0--3--3", + "imgid": "18", + "x1": "-1", + "y2": "-1", + "normalize": null, + "x2": "-1", + "y1": "-1", + "angle": 0, + "rev": "45", + "sizes": { + "100": { + "h": "100", + "w": "100" + }, + "200": { + "h": 200, + "w": 200 + }, + "400": { + "h": 400, + "w": 399 + }, + "full": { + "w": 1440, + "h": 1442 + } + } + }, + "nutrition": { + "geometry": "0x0--5--5", + "imgid": "7", + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 46 + }, + "200": { + "h": 92, + "w": 200 + }, + "400": { + "h": 184, + "w": 400 + }, + "full": { + "w": 2294, + "h": 1053 + } + }, + "rev": "19", + "normalize": null + }, + "front": { + "imgid": "4", + "white_magic": null, + "geometry": "0x0--4--4", + "normalize": null, + "rev": "20", + "sizes": { + "100": { + "h": 99, + "w": 100 + }, + "200": { + "w": 200, + "h": 198 + }, + "400": { + "w": 400, + "h": 396 + }, + "full": { + "h": 1829, + "w": 1846 + } + } + }, + "ingredients_fr": { + "y2": "143.01666259765625", + "x1": "111.75", + "normalize": "false", + "x2": "238.75", + "white_magic": "false", + "imgid": "8", + "geometry": "635x250-558-465", + "sizes": { + "100": { + "h": 39, + "w": 100 + }, + "200": { + "h": 79, + "w": 200 + }, + "400": { + "h": 157, + "w": 400 + }, + "full": { + "w": 635, + "h": 250 + } + }, + "rev": "28", + "y1": "93.01666259765625", + "angle": "0" + }, + "ingredients": { + "imgid": "6", + "geometry": "0x0--5--5", + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 41 + }, + "200": { + "h": 81, + "w": 200 + }, + "400": { + "w": 400, + "h": 163 + }, + "full": { + "w": 2242, + "h": 912 + } + }, + "rev": "17", + "normalize": null + } + }, + "serving_size_debug_tags": [], + "informers_tags": [ + "teolemon", + "anonymousgeek", + "jacob80", + "sto", + "asmoth", + "syl44" + ], + "packaging": "Frais,Film plastique à jeter,Support carton à recycler,Sous atmosphère protectrice", + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "jambon-cuit-standard-29", + "jambon-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "stabilisant", + "e451", + "gelifiant", + "e407", + "lactose", + "arome-naturel", + "bouillon-de-porc", + "antioxydant", + "e316", + "conservateur", + "e250", + "ferments", + "emmental-22", + "mozzarella", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/ingredients_fr.28.200.jpg", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:fresh-meals", + "en:pizzas", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas fraîches", + "fr:Pizzas jambon emmental" + ], + "nutriments": { + "sodium_100g": 0.62992125984252, + "saturated-fat_100g": 3.8, + "sodium_serving": "", + "fat_value": "6.2", + "fiber_value": "2.4", + "energy_100g": "869", + "carbohydrates_100g": "26", + "proteins_100g": "11", + "salt_serving": "", + "nutrition-score-uk_100g": "9", + "fat_unit": "g", + "proteins_value": "11.0", + "proteins": "11.0", + "energy": "869", + "fat_100g": 6.2, + "nova-group_100g": 4, + "nutrition-score-fr_100g": "9", + "sugars_serving": "", + "saturated-fat_serving": "", + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "sugars_value": "2.1", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "fat_serving": "", + "proteins_serving": "", + "sugars_unit": "g", + "nutrition-score-fr": "9", + "energy_unit": "kJ", + "saturated-fat_unit": "g", + "nutrition-score-uk": "9", + "carbohydrates_value": "26.0", + "fiber_serving": "", + "salt": 1.6, + "saturated-fat_value": "3.8", + "proteins_unit": "g", + "fat": 6.2, + "energy_value": "869", + "sodium_value": "0.6299212598425197", + "nutrition-score-fr_value": "10", + "sugars": 2.1, + "energy_serving": "", + "saturated-fat": 3.8, + "sugars_100g": 2.1, + "fiber": 2.4, + "salt_value": "1.6", + "salt_100g": 1.6, + "carbohydrates": "26.0", + "sodium": 0.62992125984252, + "fiber_100g": 2.4, + "salt_unit": "g", + "nutrition-score-fr_unit": "g" + }, + "last_editor": "tacite-mass-editor", + "labels_debug_tags": [], + "creator": "teolemon", + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "Villers Bocage 80260,France,Bagneux,Niort", + "additives_n": 5, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 5, + "purchase_places_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 59% : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : - e451 - , gélifiant : - e407 - , lactose, arôme naturel, bouillon de porc, antioxydant : - e316 - , conservateur : - e250 - , ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : - e579 - ), basilic et origan.\nPourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "ingredients_n": 38, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1532632058, + "categories_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:fresh-meals", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas fraîches", + "fr:Pizzas jambon emmental", + "fr:Pizzas tartes salées et quiches" + ], + "categories": "Frais,Plats préparés,Pizzas tartes salées et quiches,Plats préparés frais,Pizzas,Pizzas jambon-fromage,Pizzas fraîches,Pizzas jambon emmental", + "manufacturing_places_tags": [], + "labels_tags": [ + "en:green-dot", + "fr:eco-emballages" + ], + "ingredients_debug": [ + "Garniture 59% ", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " jambon cuit standard 29% ", + "(", + "(", + null, + null, + "jambon de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e407", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " bouillon de porc", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " emmental 22%", + ",", + null, + null, + null, + " mozzarella", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan", + ".\n", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 41% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "teolemon", + "jacob80", + "sto", + "asmoth", + "sodebo", + "date-limite-app" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/0056/front_fr.45.400.jpg", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces": "", + "brands_debug_tags": [], + "allergens": "Gluten,Lait, blé, lactose, emmental, mozzarella, blé, blé, lactose, mozzarella", + "completed_t": 1423585578, + "last_image_dates_tags": [ + "2018-07-25", + "2018-07", + "2018" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "sto", + "kiliweb", + "sodebo", + "tacite-mass-editor", + "teolemon", + "syl44", + "anonymousgeek", + "date-limite-app", + "asmoth", + "segundo", + "jacob80" + ], + "categories_tags": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:fresh-meals", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-fraiches", + "fr:pizzas-jambon-emmental", + "fr:pizzas-tartes-salees-et-quiches" + ], + "scans_n": 81, + "code": "3242272500056", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors": [ + "anonymousgeek", + "teolemon", + "jacob80" + ] + }, + { + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e451", + "en:e407", + "en:e316", + "en:e250" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "id": "3242273201051", + "rev": 43, + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 6 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 3 -- fr 3", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "_keywords": [ + "nutritionnel", + "pate", + "p11", + "sodebo", + "et", + "pari", + "prepare", + "cam", + "nielsen", + "champignon", + "plat", + "pizza", + "la", + "garnie", + "salee", + "union", + "nutriscore", + "experimentation", + "ovale", + "n-1", + "petit", + "cuit", + "tarte", + "quiche", + "etiquetage", + "standard", + "de", + "europeenne", + "jambon", + "hmsm", + "2016", + "format", + "fine" + ], + "stores": "Franprix,Casino,Géant Casino", + "nutrition_data_prepared_per": "100g", + "generic_name": "Pizza pâte fine garnie de jambon cuit standard et de champignons de Paris", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.200.jpg", + "additives_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "labels_prev_hierarchy": [ + "fr:Experimentation Etiquetage Nutritionnel 2016", + "fr:Expérimentation NutriScore 0", + "fr:Expérimentation Nutriscore", + "fr:La pizza petit format n°1 (Nielsen CAM P11 2016 HMSM)" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-not-recognized" + ], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "franprix", + "casino", + "geant-casino" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.200.jpg", + "labels": "Expérimentation Nutriscore,Experimentation Etiquetage Nutritionnel 2016,Expérimentation NutriScore 0,La pizza petit format n°1 (Nielsen CAM P11 2016 HMSM)", + "pnns_groups_1": "Composite foods", + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.100.jpg", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "sous-atmosphere-protectrice", + "support-carton", + "film-plastique", + "carton", + "plastique" + ], + "product_name_fr": "L'Ovale - Jambon & Champignons de Paris", + "purchase_places_tags": [ + "paris", + "maison-laffitte", + "aix-en-provence" + ], + "traces_from_ingredients": "", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242273201051/l-ovale-jambon-champignons-de-paris-sodebo", + "entry_dates_tags": [ + "2016-05-31", + "2016-05", + "2016" + ], + "countries_debug_tags": [], + "checkers_tags": [], + "brands": "Sodebo, l'ovale", + "quantity": "200 g", + "amino_acids_prev_tags": [], + "nutrient_levels": { + "fat": "moderate", + "saturated-fat": "moderate", + "salt": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "product_name": "L'Ovale - Jambon & Champignons de Paris", + "lc": "fr", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "sortkey": 1532631680, + "lang_debug_tags": [], + "ingredients_text_fr": "Garniture 58%: sauce tomate à huile d’olive (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 23% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel, bouillon de porc, antioxydant: E316, conservateur: E250, ferments), champignons de Paris 19%, emmental, basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "ingredients_text": "Garniture 58%: sauce tomate à huile d’olive (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 23% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel, bouillon de porc, antioxydant: E316, conservateur: E250, ferments), champignons de Paris 19%, emmental, basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "emb_codes_tags": [], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.100.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.400.jpg" + } + } + }, + "brands_tags": [ + "sodebo", + "l-ovale" + ], + "nutrition_grade_fr": "c", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.400.jpg", + "languages_codes": { + "fr": 6 + }, + "last_edit_dates_tags": [ + "2018-07-26", + "2018-07", + "2018" + ], + "link": "https://www.sodebo.com/fr/produits-frais/pizzas/ovale/ovale-jambon-champignons-paris", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "expiration_date": "15/10/2017", + "emb_codes": "", + "minerals_prev_tags": [], + "codes_tags": [ + "code-13", + "3242273201051", + "324227320105x", + "32422732010xx", + "3242273201xxx", + "324227320xxxx", + "32422732xxxxx", + "3242273xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "tacite", + "tacinte", + "syl44", + "aeghis", + "sodebo", + "tacite-mass-editor" + ], + "serving_quantity": 0, + "nutrition_grades": "c", + "labels_prev_tags": [ + "fr:experimentation-etiquetage-nutritionnel-2016", + "fr:experimentation-nutriscore-0", + "fr:experimentation-nutriscore", + "fr:la-pizza-petit-format-n-1-nielsen-cam-p11-2016-hmsm" + ], + "additives_old_n": 5, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1530626823, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:champignon-de-paris", + "fr:emmental", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce tomate à huile d’olive", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment" + ], + "manufacturing_places_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250" + ], + "additives_debug_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "11", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "emb_codes_orig": "", + "unique_scans_n": 7, + "unknown_ingredients_n": 2, + "unknown_nutrients_tags": [], + "generic_name_fr": "Pizza pâte fine garnie de jambon cuit standard et de champignons de Paris", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.200.jpg", + "nova_groups": 4, + "created_t": 1464719749, + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "origins": "Union Européenne", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.100.jpg", + "manufacturing_places": "", + "labels_hierarchy": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "fr:Expérimentation NutriScore 0", + "fr:La pizza petit format n°1 (Nielsen CAM P11 2016 HMSM)" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.400.jpg", + "sources": [ + { + "name": "Sodebo", + "import_t": 1530626828, + "url": "https://www.sodebo.com/", + "images": [], + "manufacturer": 1, + "id": "sodebo", + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ] + } + ], + "lang": "fr", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 58%: sauce tomate à huile d’olive (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 23% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel, bouillon de porc, antioxydant: E316, conservateur: E250, ferments), champignons de Paris 19%, emmental, basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "additives_prev_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.100.jpg", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/nutrition_fr.29.100.jpg", + "ingredients_text_with_allergens": "Garniture 58%: sauce tomate à huile d’olive (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 23% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel, bouillon de porc, antioxydant: E316, conservateur: E250, ferments), champignons de Paris 19%, emmental, basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "quantity_debug_tags": [], + "_id": "3242273201051", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:champignon-de-paris", + "fr:emmental", + "fr:basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate-a-huile-d-olive", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment" + ], + "serving_size": "200 g", + "interface_version_created": "upload_photos.pl - version 2016/05/26", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "fr:pizza-jambon-champignons" + ], + "vitamins_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [ + "garniture-58", + "sauce-tomate-a-huile-d-olive", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "jambon-cuit-standard-23", + "jambon-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "stabilisant", + "e451", + "gelifiant", + "e407", + "lactose", + "arome-naturel", + "bouillon-de-porc", + "antioxydant", + "e316", + "conservateur", + "e250", + "ferments", + "champignons-de-paris-19", + "emmental", + "basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "pate-42", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "debug_tags": [ + "43" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/ingredients_fr.26.200.jpg", + "packaging": "Sous atmosphère protectrice,Support carton,Film plastique,Carton,Plastique", + "informers_tags": [ + "scanparty-franprix-05-2016", + "teolemon", + "tacite", + "phoenix", + "tacinte", + "syl44", + "aeghis", + "sodebo" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, lactose, emmental", + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "traces_tags": [], + "images": { + "1": { + "uploader": "teolemon", + "uploaded_t": "1464713804", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 2160, + "h": 3840 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3120, + "h": 4160 + } + }, + "uploader": "tacinte", + "uploaded_t": "1474910808" + }, + "4": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3120, + "h": 4160 + } + }, + "uploader": "tacinte", + "uploaded_t": "1474910813" + }, + "6": { + "uploader": "aeghis", + "uploaded_t": "1507914483", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1500, + "h": 2000 + } + } + }, + "7": { + "sizes": { + "100": { + "w": 61, + "h": 100 + }, + "400": { + "w": 244, + "h": 400 + }, + "full": { + "w": 611, + "h": 1000 + } + }, + "uploader": "aeghis", + "uploaded_t": "1507915543" + }, + "8": { + "uploader": "aeghis", + "uploaded_t": "1507915682", + "sizes": { + "100": { + "h": 62, + "w": 100 + }, + "400": { + "h": 248, + "w": 400 + }, + "full": { + "w": 625, + "h": 387 + } + } + }, + "9": { + "sizes": { + "100": { + "w": 100, + "h": 52 + }, + "400": { + "w": 400, + "h": 209 + }, + "full": { + "h": 353, + "w": 675 + } + }, + "uploaded_t": "1507915771", + "uploader": "aeghis" + }, + "10": { + "sizes": { + "100": { + "h": 95, + "w": 100 + }, + "400": { + "w": 400, + "h": 380 + }, + "full": { + "h": 978, + "w": 1030 + } + }, + "uploader": "aeghis", + "uploaded_t": "1507916230" + }, + "11": { + "sizes": { + "100": { + "h": 100, + "w": 60 + }, + "400": { + "w": 242, + "h": 400 + }, + "full": { + "h": 1500, + "w": 907 + } + }, + "uploader": "sodebo", + "uploaded_t": 1530626823 + }, + "front_fr": { + "rev": "41", + "sizes": { + "100": { + "h": "100", + "w": "60" + }, + "200": { + "h": 200, + "w": 120 + }, + "400": { + "w": 240, + "h": 400 + }, + "full": { + "h": 1464, + "w": 880 + } + }, + "y1": "-1", + "angle": 0, + "x1": "-1", + "y2": "-1", + "x2": "-1", + "normalize": null, + "geometry": "0x0--3--3", + "imgid": "11", + "white_magic": null + }, + "ingredients_fr": { + "angle": "0", + "y1": "0", + "sizes": { + "100": { + "h": 62, + "w": 100 + }, + "200": { + "w": 200, + "h": 124 + }, + "400": { + "h": 248, + "w": 400 + }, + "full": { + "w": 625, + "h": 387 + } + }, + "rev": "26", + "white_magic": "false", + "imgid": "8", + "geometry": "0x0-0-0", + "x2": "0", + "normalize": "false", + "y2": "0", + "x1": "0" + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 52, + "w": 100 + }, + "200": { + "h": 105, + "w": 200 + }, + "400": { + "h": 209, + "w": 400 + }, + "full": { + "h": 353, + "w": 675 + } + }, + "rev": "29", + "angle": "0", + "y1": "0", + "normalize": "false", + "x2": "0", + "y2": "0", + "x1": "0", + "geometry": "0x0-0-0", + "white_magic": "false", + "imgid": "9" + } + }, + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "ingredients": [ + { + "percent": "58", + "id": "fr:garniture", + "rank": 1, + "text": "Garniture" + }, + { + "id": "en:water", + "rank": 2, + "text": "eau" + }, + { + "id": "en:wheat-flour", + "text": "farine de blé", + "rank": 3 + }, + { + "id": "en:salt", + "text": "sel", + "rank": 4 + }, + { + "id": "en:olive-oil", + "rank": 5, + "text": "huile d’olive" + }, + { + "rank": 6, + "text": "amidon de maïs", + "id": "en:corn-starch" + }, + { + "id": "fr:jambon-cuit-standard", + "percent": "23", + "rank": 7, + "text": "jambon cuit standard" + }, + { + "percent": "19", + "id": "fr:champignon-de-paris", + "text": "champignons de Paris", + "rank": 8 + }, + { + "text": "emmental", + "rank": 9, + "id": "fr:emmental" + }, + { + "text": "basilic et origan.Pourcentages exprimés sur la garniture", + "rank": 10, + "id": "fr:basilic et origan.Pourcentages exprimés sur la garniture" + }, + { + "percent": "42", + "id": "en:paste", + "rank": 11, + "text": "Pâte" + }, + { + "id": "en:wheat-flour", + "rank": 12, + "text": "farine de blé" + }, + { + "text": "eau", + "rank": 13, + "id": "en:water" + }, + { + "id": "fr:levure-boulangere", + "text": "levure boulangère", + "rank": 14 + }, + { + "text": "sel", + "rank": 15, + "id": "en:salt" + }, + { + "id": "fr:sauce tomate à huile d’olive", + "text": "sauce tomate à huile d’olive" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "text": "jambon de porc", + "id": "fr:jambon-de-porc" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "en:glucose-syrup", + "text": "sirop de glucose" + }, + { + "id": "en:dextrose", + "text": "dextrose" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "text": "E451", + "id": "fr:e451" + }, + { + "text": "gélifiant", + "id": "en:gelling-agent" + }, + { + "id": "fr:e407", + "text": "E407" + }, + { + "text": "lactose", + "id": "en:lactose" + }, + { + "text": "arôme naturel", + "id": "en:natural-flavour" + }, + { + "id": "fr:bouillon-de-porc", + "text": "bouillon de porc" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "E316", + "id": "fr:e316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "text": "E250", + "id": "fr:e250" + }, + { + "id": "fr:ferment", + "text": "ferments" + } + ], + "cities_tags": [], + "last_modified_by": "tacite-mass-editor", + "origins_tags": [ + "union-europeenne" + ], + "ingredients_n_tags": [ + "34", + "31-40" + ], + "ingredients_n": 34, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:jambon-cuit-standard", + "fr:champignon-de-paris", + "fr:emmental", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce tomate à huile d’olive", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment" + ], + "last_modified_t": 1532631680, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "fr:Pizza Jambon Champignons", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas ovales,Pizza Jambon Champignons", + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 58%: sauce tomate à huile d’olive (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cuit standard 23% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : - e451 - , gélifiant : - e407 - , lactose, arôme naturel, bouillon de porc, antioxydant : - e316 - , conservateur : - e250 - , ferments), champignons de Paris 19%, emmental, basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "additives_n": 4, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 13, + "additives_prev_n": 4, + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "fat_unit": "g", + "nutrition-score-uk_100g": "3", + "proteins_100g": 8.4, + "salt_serving": "", + "carbohydrates_100g": "29", + "energy_100g": "830", + "fiber_value": "2.5", + "fat_value": "4.9", + "sodium_serving": "", + "saturated-fat_100g": 2.2, + "sodium_100g": 0.590551181102362, + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "sugars_serving": "", + "nutrition-score-fr_100g": "3", + "nova-group_100g": 4, + "fat_100g": 4.9, + "energy": "830", + "proteins": 8.4, + "proteins_value": "8.4", + "fiber_serving": "", + "carbohydrates_value": "29.0", + "nutrition-score-uk": "3", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "sugars_unit": "g", + "nutrition-score-fr": "3", + "proteins_serving": "", + "fat_serving": "", + "carbohydrates_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "2.5", + "nutrition-score-fr_unit": "g", + "salt_unit": "g", + "fiber_100g": 2.5, + "sodium": 0.590551181102362, + "carbohydrates": "29.0", + "salt_100g": 1.5, + "sugars_100g": 2.5, + "fiber": "2.5", + "salt_value": "1.5", + "saturated-fat": 2.2, + "energy_serving": "", + "sugars": 2.5, + "nutrition-score-fr_value": "3", + "sodium_value": "0.5905511811023622", + "fat": 4.9, + "energy_value": "830", + "saturated-fat_value": "2.2", + "proteins_unit": "g", + "salt": 1.5 + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "fr:Pizza Jambon Champignons" + ], + "last_editor": "tacite-mass-editor", + "purchase_places": "Paris,Maison-Laffitte,Aix-en-Provence", + "creator": "teolemon", + "labels_debug_tags": [ + "added-en-nutriscore-experiment", + "added-en-2016-nutrition-labelling-experiment", + "removed-fr-experimentation-etiquetage-nutritionnel-2016", + "removed-fr-experimentation-nutriscore" + ], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "fr:pizza-jambon-champignons", + "fr:pizzas-tartes-salees-et-quiches" + ], + "code": "3242273201051", + "scans_n": 13, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "completed_t": 1507915783, + "allergens": "blé, lactose, emmental, blé, blé, lactose, emmental", + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "link_debug_tags": [], + "editors_tags": [ + "scanparty-franprix-05-2016", + "aeghis", + "tacite", + "teolemon", + "tacite-mass-editor", + "sodebo", + "phoenix", + "tacinte", + "syl44" + ], + "languages": { + "en:french": 6 + }, + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "", + "labels_tags": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "fr:experimentation-nutriscore-0", + "fr:la-pizza-petit-format-n-1-nielsen-cam-p11-2016-hmsm" + ], + "ingredients_debug": [ + "Garniture 58%", + ":", + ":", + null, + null, + " sauce tomate à huile d’olive ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " jambon cuit standard 23% ", + "(", + "(", + null, + null, + "jambon de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e407", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " bouillon de porc", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " champignons de Paris 19%", + ",", + null, + null, + null, + " emmental", + ",", + null, + null, + null, + " basilic et origan.Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 42% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "teolemon", + "tacinte", + "aeghis", + "sodebo" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/320/1051/front_fr.41.400.jpg" + }, + { + "created_t": 1438621816, + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- additives/en:e14xx : 4", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.100.jpg", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.400.jpg", + "traces_debug_tags": [], + "lang": "fr", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "Garniture (57%) : mozzarella, eau, thon (12,8%) (thon 10,5%, huile de tournesol, sel), purée de tomates, oignons rouges (1,8%), oignons, amidon modifié de pomme de terre, huile d'olive vierge, sel, câpres (0,2%), persil (0,1%), pulpe d'ail, extrait de thon, poudre de betterave, extrait de poivre\r\nPâte cuite (43%) : farine de blé, eau, levure boulangère, huile de tournesol, levain de seigle et de blé (soja), sel, sucre, extrait de malte d'orge", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.100.jpg", + "additives_prev_original_tags": [ + "en:e14xx" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.100.jpg", + "ingredients_text_with_allergens": "Garniture (57%) : mozzarella, eau, thon (12,8%) (thon 10,5%, huile de tournesol, sel), purée de tomates, oignons rouges (1,8%), oignons, amidon modifié de pomme de terre, huile d'olive vierge, sel, câpres (0,2%), persil (0,1%), pulpe d'ail, extrait de thon, poudre de betterave, extrait de poivre\r\nPâte cuite (43%) : farine de blé, eau, levure boulangère, huile de tournesol, levain de seigle et de blé (soja), sel, sucre, extrait de malte d'orge", + "quantity_debug_tags": [], + "_id": "7613034473172", + "ingredients_tags": [ + "fr:garniture", + "fr:mozzarella", + "en:water", + "en:tuna", + "en:fish", + "fr:puree-de-tomate", + "fr:red-onions", + "en:onions", + "en:onions", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "fr:huile-d-olive-vierge", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:capre", + "fr:persil", + "fr:pulpe-d-ail", + "fr:extrait-de-thon", + "fr:poudre-de-betterave", + "fr:extrait-de-poivre-pate-cuite", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:sunflower-oil", + "en:sunflower", + "fr:levain-de-seigle-et-de-ble", + "en:soy", + "en:salt", + "en:sugar", + "fr:extrait-de-malte-d-orge", + "en:tuna", + "en:fish", + "en:sunflower-oil", + "en:sunflower", + "en:salt" + ], + "serving_size": "113 g", + "product_quantity": 340, + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "vitamins_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [ + "garniture", + "57", + "mozzarella", + "eau", + "thon", + "12", + "8", + "thon-10", + "5", + "huile-de-tournesol", + "sel", + "puree-de-tomates", + "oignons-rouges", + "1", + "8", + "oignons", + "amidon-modifie-de-pomme-de-terre", + "huile-d-olive-vierge", + "sel", + "capres", + "0", + "2", + "persil", + "0", + "1", + "pulpe-d-ail", + "extrait-de-thon", + "poudre-de-betterave", + "extrait-de-poivre-pate-cuite", + "43", + "farine-de-ble", + "eau", + "levure-boulangere", + "huile-de-tournesol", + "levain-de-seigle-et-de-ble", + "soja", + "sel", + "sucre", + "extrait-de-malte-d-orge" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.200.jpg", + "informers_tags": [ + "segundo" + ], + "packaging": "Boîte,Carton", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "allergens_tags": [ + "en:fish", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "allergens_from_ingredients": "mozzarella, thon, thon, thon, blé, seigle, blé, soja, orge", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e14xx" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "images": { + "1": { + "uploaded_t": 1438621817, + "uploader": "segundo", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "2": { + "uploader": "segundo", + "uploaded_t": 1438621837, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "3": { + "uploaded_t": 1438621843, + "uploader": "segundo", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "4": { + "uploaded_t": "1464713804", + "uploader": "teolemon", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3840, + "w": 2160 + } + } + }, + "5": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "6": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "7": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploader": "teolemon", + "uploaded_t": "1464713804" + }, + "8": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploader": "al-hun", + "uploaded_t": "1476519929" + }, + "9": { + "sizes": { + "100": { + "h": 94, + "w": 100 + }, + "400": { + "h": 376, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1277 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1523978512" + }, + "10": { + "uploaded_t": "1523978514", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 17, + "h": 100 + }, + "400": { + "h": 400, + "w": 69 + }, + "full": { + "h": 1200, + "w": 208 + } + } + }, + "11": { + "sizes": { + "100": { + "h": 92, + "w": 100 + }, + "400": { + "h": 370, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1298 + } + }, + "uploaded_t": 1532522194, + "uploader": "kiliweb" + }, + "front_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "w": "100", + "h": "94" + }, + "200": { + "w": 200, + "h": 188 + }, + "400": { + "w": 400, + "h": 376 + }, + "full": { + "h": 1200, + "w": 1277 + } + }, + "rev": "28", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "9", + "normalize": "0", + "x2": null, + "y2": null, + "x1": null + }, + "nutrition_fr": { + "y1": null, + "angle": null, + "rev": "33", + "sizes": { + "100": { + "w": 100, + "h": 92 + }, + "200": { + "w": 200, + "h": 185 + }, + "400": { + "w": 400, + "h": 370 + }, + "full": { + "w": 1298, + "h": 1200 + } + }, + "imgid": "11", + "white_magic": "0", + "geometry": "0x0-0-0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0" + }, + "front": { + "imgid": "1", + "white_magic": "false", + "geometry": "1515x1450-219-23", + "sizes": { + "100": { + "h": 96, + "w": 100 + }, + "200": { + "h": 191, + "w": 200 + }, + "400": { + "h": 383, + "w": 400 + }, + "full": { + "h": 1450, + "w": 1515 + } + }, + "normalize": "false", + "rev": "6" + }, + "ingredients_fr": { + "normalize": "0", + "x2": null, + "x1": null, + "y2": null, + "imgid": "10", + "white_magic": "0", + "geometry": "0x0-0-0", + "rev": "30", + "sizes": { + "100": { + "h": 100, + "w": 17 + }, + "200": { + "h": 200, + "w": 35 + }, + "400": { + "h": 400, + "w": 69 + }, + "full": { + "w": 208, + "h": 1200 + } + }, + "angle": null, + "y1": null + }, + "ingredients": { + "imgid": "3", + "geometry": "2280x287-99-670", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 13 + }, + "200": { + "h": 25, + "w": 200 + }, + "400": { + "w": 400, + "h": 50 + }, + "full": { + "h": 287, + "w": 2280 + } + }, + "rev": "14", + "normalize": "false" + }, + "nutrition": { + "sizes": { + "100": { + "h": 80, + "w": 100 + }, + "200": { + "h": 159, + "w": 200 + }, + "400": { + "w": 400, + "h": 318 + }, + "full": { + "h": 1193, + "w": 1500 + } + }, + "rev": "15", + "normalize": "false", + "geometry": "1500x1193-372-952", + "imgid": "2", + "white_magic": "false" + } + }, + "traces_tags": [ + "en:crustaceans", + "en:molluscs", + "en:mustard" + ], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "emb_codes_20141016": "", + "ingredients": [ + { + "text": "Garniture", + "rank": 1, + "percent": "57", + "id": "fr:garniture" + }, + { + "id": "fr:mozzarella", + "rank": 2, + "text": "_mozzarella_" + }, + { + "id": "en:water", + "text": "eau", + "rank": 3 + }, + { + "rank": 4, + "text": "_thon_", + "id": "en:tuna", + "percent": "12.8" + }, + { + "text": "purée de tomates", + "rank": 5, + "id": "fr:puree-de-tomate" + }, + { + "rank": 6, + "text": "oignons rouges", + "id": "fr:red-onions", + "percent": "1.8" + }, + { + "id": "en:onions", + "rank": 7, + "text": "oignons" + }, + { + "id": "fr:amidon-modifie-de-pomme-de-terre", + "rank": 8, + "text": "amidon modifié de pomme de terre" + }, + { + "id": "fr:huile-d-olive-vierge", + "text": "huile d'olive vierge", + "rank": 9 + }, + { + "id": "en:salt", + "rank": 10, + "text": "sel" + }, + { + "text": "câpres", + "rank": 11, + "id": "fr:capre", + "percent": "0.2" + }, + { + "percent": "0.1", + "id": "fr:persil", + "text": "persil", + "rank": 12 + }, + { + "rank": 13, + "text": "pulpe d'ail", + "id": "fr:pulpe-d-ail" + }, + { + "id": "fr:extrait de _thon_", + "text": "extrait de _thon_", + "rank": 14 + }, + { + "id": "fr:poudre-de-betterave", + "text": "poudre de betterave", + "rank": 15 + }, + { + "id": "fr:extrait de poivre\nPâte cuite", + "percent": "43", + "text": "extrait de poivre\nPâte cuite", + "rank": 16 + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_", + "rank": 17 + }, + { + "text": "eau", + "rank": 18, + "id": "en:water" + }, + { + "rank": 19, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "rank": 20, + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "fr:levain de _seigle_ et de _blé_", + "text": "levain de _seigle_ et de _blé_", + "rank": 21 + }, + { + "text": "_soja_", + "rank": 22, + "id": "en:soy" + }, + { + "rank": 23, + "text": "sel", + "id": "en:salt" + }, + { + "text": "sucre", + "rank": 24, + "id": "en:sugar" + }, + { + "rank": 25, + "text": "extrait de malte d'_orge_", + "id": "fr:extrait-de-malte-d-orge" + }, + { + "text": "_thon_", + "percent": "10.5", + "id": "en:tuna" + }, + { + "id": "en:sunflower-oil", + "text": "huile de tournesol" + }, + { + "id": "en:salt", + "text": "sel" + } + ], + "cities_tags": [], + "last_modified_by": null, + "origins_tags": [], + "ingredients_n_tags": [ + "28", + "21-30" + ], + "ingredients_n": 28, + "ingredients_original_tags": [ + "fr:garniture", + "fr:mozzarella", + "en:water", + "en:tuna", + "fr:puree-de-tomate", + "fr:red-onions", + "en:onions", + "fr:amidon-modifie-de-pomme-de-terre", + "fr:huile-d-olive-vierge", + "en:salt", + "fr:capre", + "fr:persil", + "fr:pulpe-d-ail", + "fr:extrait de _thon_", + "fr:poudre-de-betterave", + "fr:extrait de poivre\nPâte cuite", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:sunflower-oil", + "fr:levain de _seigle_ et de _blé_", + "en:soy", + "en:salt", + "en:sugar", + "fr:extrait-de-malte-d-orge", + "en:tuna", + "en:sunflower-oil", + "en:salt" + ], + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1532522196, + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas au thon", + "ingredients_text_debug": "Garniture (57%) : _mozzarella_, eau, _thon_ (12,8%) (_thon_ 10,5%, huile de tournesol, sel), purée de tomates, oignons rouges (1,8%), oignons, amidon modifié de pomme de terre, huile d'olive vierge, sel, câpres (0,2%), persil (0,1%), pulpe d'ail, extrait de _thon_, poudre de betterave, extrait de poivre\r\nPâte cuite (43%) : farine de _blé_, eau, levure boulangère, huile de tournesol, levain de _seigle_ et de _blé_ (_soja_), sel, sucre, extrait de malte d'_orge_", + "ingredients_from_palm_oil_n": 0, + "additives_n": 1, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places_debug_tags": [], + "additives_prev_n": 1, + "fruits-vegetables-nuts_100g_estimate": 0, + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "carbohydrates_100g": "29", + "proteins_100g": "9", + "salt_serving": 1.47, + "fat_unit": "", + "nutrition-score-uk_100g": "4", + "saturated-fat_100g": 2.4, + "sodium_100g": 0.511811023622047, + "fat_value": "8.6", + "sodium_serving": 0.578, + "fiber_value": "1.5", + "energy_100g": "971", + "nutrition-score-fr_100g": "4", + "sugars_serving": 5.88, + "fiber_unit": "g", + "saturated-fat_serving": 2.71, + "nova-group_serving": 4, + "nova-group": 4, + "proteins_value": "9", + "proteins": "9", + "fat_100g": 8.6, + "energy": "971", + "nova-group_100g": 4, + "sugars_unit": "", + "nutrition-score-fr": "4", + "proteins_serving": 10.2, + "nutrition-score-uk": "4", + "energy_unit": "kcal", + "saturated-fat_unit": "", + "fiber_serving": 1.69, + "carbohydrates_value": "29", + "carbohydrates_unit": "", + "sugars_value": "5.2", + "carbohydrates_serving": 32.8, + "fat_serving": 9.72, + "energy_serving": "1100", + "salt_value": "1.3", + "sugars_100g": 5.2, + "fiber": 1.5, + "saturated-fat": 2.4, + "fiber_100g": 1.5, + "sodium": 0.511811023622047, + "carbohydrates": "29", + "salt_100g": 1.3, + "salt_unit": "", + "proteins_unit": "", + "saturated-fat_value": "2.4", + "salt": 1.3, + "fat": 8.6, + "energy_value": "232", + "sugars": 5.2 + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "last_editor": null, + "purchase_places": "", + "creator": "segundo", + "labels_debug_tags": [], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "code": "7613034473172", + "scans_n": 10, + "editors": [ + "paolo35", + "segundo" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "completed_t": 1438623347, + "allergens": "mozzarella, thon, thon, thon, blé, seigle, blé, soja, orge", + "last_image_dates_tags": [ + "2018-07-25", + "2018-07", + "2018" + ], + "link_debug_tags": [], + "editors_tags": [ + "paolo35", + "kiliweb", + "openfoodfacts-contributors", + "segundo", + "al-hun", + "teolemon" + ], + "languages": { + "en:french": 6 + }, + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces": "Crustacés,Mollusques,Moutarde", + "brands_debug_tags": [], + "labels_tags": [], + "ingredients_debug": [ + "Garniture ", + "(", + "(", + null, + null, + "57%) ", + ":", + ":", + null, + null, + " _mozzarella_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " _thon_ ", + "(", + "(", + null, + null, + "12", + ",", + null, + null, + null, + "8%) ", + "(", + "(", + null, + null, + "_thon_ 10", + ",", + null, + null, + null, + "5%", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " purée de tomates", + ",", + null, + null, + null, + " oignons rouges ", + "(", + "(", + null, + null, + "1", + ",", + null, + null, + null, + "8%)", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " amidon modifié de pomme de terre", + ",", + null, + null, + null, + " huile d'olive vierge", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " câpres ", + "(", + "(", + null, + null, + "0", + ",", + null, + null, + null, + "2%)", + ",", + null, + null, + null, + " persil ", + "(", + "(", + null, + null, + "0", + ",", + null, + null, + null, + "1%)", + ",", + null, + null, + null, + " pulpe d'ail", + ",", + null, + null, + null, + " extrait de _thon_", + ",", + null, + null, + null, + " poudre de betterave", + ",", + null, + null, + null, + " extrait de poivre\r\nPâte cuite ", + "(", + "(", + null, + null, + "43%) ", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " levain de _seigle_ et de _blé_ ", + "(", + "(", + null, + null, + "_soja_)", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " extrait de malte d'_orge_" + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.400.jpg", + "photographers_tags": [ + "segundo", + "teolemon", + "al-hun", + "kiliweb" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.400.jpg", + "additives_old_tags": [ + "en:e14xx" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "id": "7613034473172", + "rev": 33, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 3 + sugars 1 + sodium 5 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 4 -- fr 4", + "_keywords": [ + "tarte", + "quiche", + "plat", + "et", + "la", + "au", + "salee", + "prepare", + "thon", + "surgele", + "surgelee", + "provencale", + "buitoni", + "pizza" + ], + "stores": "", + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.200.jpg", + "generic_name": "Pizza au thon", + "additives_tags": [ + "en:e14xx" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "labels_prev_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.200.jpg", + "labels": "", + "pnns_groups_1": "Composite foods", + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.100.jpg", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "boite", + "carton" + ], + "purchase_places_tags": [], + "product_name_fr": "Pizza thon à la provençale", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/7613034473172/pizza-thon-a-la-provencale-buitoni", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2015-08-03", + "2015-08", + "2015" + ], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Buitoni", + "quantity": "340 g", + "amino_acids_prev_tags": [], + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "moderate", + "fat": "moderate", + "sugars": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "lc": "fr", + "product_name": "Pizza thon à la provençale", + "countries": "en:france", + "ingredients_text_fr_debug_tags": [], + "sortkey": 1532522196, + "lang_debug_tags": [], + "ingredients_text_fr": "Garniture (57%) : _mozzarella_, eau, _thon_ (12,8%) (_thon_ 10,5%, huile de tournesol, sel), purée de tomates, oignons rouges (1,8%), oignons, amidon modifié de pomme de terre, huile d'olive vierge, sel, câpres (0,2%), persil (0,1%), pulpe d'ail, extrait de _thon_, poudre de betterave, extrait de poivre\r\nPâte cuite (43%) : farine de _blé_, eau, levure boulangère, huile de tournesol, levain de _seigle_ et de _blé_ (_soja_), sel, sucre, extrait de malte d'_orge_", + "ingredients_text": "Garniture (57%) : _mozzarella_, eau, _thon_ (12,8%) (_thon_ 10,5%, huile de tournesol, sel), purée de tomates, oignons rouges (1,8%), oignons, amidon modifié de pomme de terre, huile d'olive vierge, sel, câpres (0,2%), persil (0,1%), pulpe d'ail, extrait de _thon_, poudre de betterave, extrait de poivre\r\nPâte cuite (43%) : farine de _blé_, eau, levure boulangère, huile de tournesol, levain de _seigle_ et de _blé_ (_soja_), sel, sucre, extrait de malte d'_orge_", + "emb_codes_tags": [], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/ingredients_fr.30.400.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.100.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.100.jpg" + } + } + }, + "nutrition_grade_fr": "c", + "brands_tags": [ + "buitoni" + ], + "new_additives_n": 0, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/nutrition_fr.33.400.jpg", + "languages_codes": { + "fr": 6 + }, + "link": "", + "last_edit_dates_tags": [ + "2018-07-25", + "2018-07", + "2018" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "expiration_date": "", + "emb_codes": "", + "minerals_prev_tags": [], + "nova_group": 4, + "codes_tags": [ + "code-13", + "7613034473172", + "761303447317x", + "76130344731xx", + "7613034473xxx", + "761303447xxxx", + "76130344xxxxx", + "7613034xxxxxx", + "761303xxxxxxx", + "76130xxxxxxxx", + "7613xxxxxxxxx", + "761xxxxxxxxxx", + "76xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "correctors_tags": [ + "segundo", + "paolo35", + "al-hun", + "kiliweb", + "openfoodfacts-contributors" + ], + "nutrition_grades": "c", + "serving_quantity": 113, + "labels_prev_tags": [], + "additives_old_n": 1, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1532522195, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:mozzarella", + "en:water", + "en:tuna", + "en:fish", + "fr:puree-de-tomate", + "fr:red-onions", + "en:onions", + "en:onions", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "fr:huile-d-olive-vierge", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:capre", + "fr:persil", + "fr:pulpe-d-ail", + "fr:extrait de _thon_", + "fr:poudre-de-betterave", + "fr:extrait de poivre\nPâte cuite", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:sunflower-oil", + "en:sunflower", + "fr:levain de _seigle_ et de _blé_", + "en:soy", + "en:salt", + "en:sugar", + "fr:extrait-de-malte-d-orge", + "en:tuna", + "en:fish", + "en:sunflower-oil", + "en:sunflower", + "en:salt" + ], + "manufacturing_places_debug_tags": [], + "additives_original_tags": [ + "en:e14xx" + ], + "allergens_hierarchy": [ + "en:fish", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "additives_debug_tags": [], + "max_imgid": "11", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "", + "unique_scans_n": 9, + "unknown_ingredients_n": 3, + "unknown_nutrients_tags": [], + "generic_name_fr": "Pizza au thon", + "traces_hierarchy": [ + "en:crustaceans", + "en:molluscs", + "en:mustard" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/761/303/447/3172/front_fr.28.200.jpg", + "nova_groups": 4 + }, + { + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.200.jpg", + "generic_name": "Pâte 46,9%, garnie de fromages 33,8%, de sauce tomate 19,2% et d'herbes 0,1% ; cuite, surgelée.", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e1105", + "en:e330" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.400.jpg", + "additives_old_tags": [ + "en:e330", + "en:e1105" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 6 + fr-sat-fat-for-fats 9 + sugars 1 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 12 -- fr 12", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Picard", + "_keywords": [ + "46", + "union", + "formaggi", + "fabrique", + "garnie", + "pizza", + "19", + "surgelee", + "tomate", + "en", + "et", + "point", + "picard", + "fromage", + "quatre", + "italiani", + "aux", + "herbe", + "vert", + "33", + "europeenne", + "pate", + "italie", + "cuite", + "de", + "sauce" + ], + "rev": 24, + "id": "3270160890125", + "quality_tags": [ + "quantity-contains-e" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "picard" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.200.jpg", + "stores_debug_tags": [], + "labels_prev_hierarchy": [ + "en:green-dot", + "fr:Fabriqué en Italie" + ], + "traces_from_ingredients": "", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3270160890125/4-formaggi-italiani-picard", + "entry_dates_tags": [ + "2017-05-05", + "2017-05", + "2017" + ], + "labels": "Fabriqué en Italie,point vert", + "pnns_groups_1": "Composite foods", + "ingredients_text_debug_tags": [], + "packaging_tags": [ + "surgele", + "plastique", + "carton" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.100.jpg", + "update_key": "nova3", + "interface_version_modified": "20120622", + "purchase_places_tags": [ + "france" + ], + "product_name_fr": "4 Formaggi Italiani", + "ingredients_text_fr": "Farine de _blé_ (_gluten_), pulpe de tomates 18,6 %, _mozzarella_ 12,8 % (_lait_, sel, correcteur d'acidité : acide citrique, présure microbienne, ferments lactiques), eau, _Gorgonzola_ AOP 7,7% (contient _lait_), _Asiago_ AOP 5,1% (contient _lait_), _mozzarella_ en billes 4,3 % (UE; contient _lait_), _Grana Padano_ AOP 3.8% (lait, sel, présure animale, conservateur: lysozyme d'_œuf_), huile d'olive, sel, huile d'olive vierge extra, levure, sucre, marjolaine, origan.", + "nutrition_data_prepared": "", + "lang_debug_tags": [], + "sortkey": 1532460367, + "emb_codes_tags": [ + "it-1558-l-ec" + ], + "ingredients_text": "Farine de _blé_ (_gluten_), pulpe de tomates 18,6 %, _mozzarella_ 12,8 % (_lait_, sel, correcteur d'acidité : acide citrique, présure microbienne, ferments lactiques), eau, _Gorgonzola_ AOP 7,7% (contient _lait_), _Asiago_ AOP 5,1% (contient _lait_), _mozzarella_ en billes 4,3 % (UE; contient _lait_), _Grana Padano_ AOP 3.8% (lait, sel, présure animale, conservateur: lysozyme d'_œuf_), huile d'olive, sel, huile d'olive vierge extra, levure, sucre, marjolaine, origan.", + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.400.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.200.jpg" + } + } + }, + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Picard", + "amino_acids_prev_tags": [], + "quantity": "390 g e", + "nutrient_levels": { + "fat": "moderate", + "saturated-fat": "high", + "salt": "moderate", + "sugars": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "product_name": "4 Formaggi Italiani", + "lc": "fr", + "last_edit_dates_tags": [ + "2018-07-24", + "2018-07", + "2018" + ], + "link": "https://www.picard.fr/produits/pizza-4-formaggi-italiani-italia-000000000000089012.html", + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "nutrition_grade_fr": "d", + "brands_tags": [ + "picard" + ], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.400.jpg", + "nova_group": 4, + "codes_tags": [ + "code-13", + "3270160890125", + "327016089012x", + "32701608901xx", + "3270160890xxx", + "327016089xxxx", + "32701608xxxxx", + "3270160xxxxxx", + "327016xxxxxxx", + "32701xxxxxxxx", + "3270xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "beniben" + ], + "serving_quantity": 0, + "nutrition_grades": "d", + "labels_prev_tags": [ + "en:green-dot", + "fr:fabrique-en-italie" + ], + "emb_codes": "IT 1558/L EC", + "expiration_date": "20/03/2019", + "minerals_prev_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "fr:Asiago", + "fr:Gorgonzola", + "fr:Grana Padano" + ], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e330", + "en:e1105" + ], + "additives_debug_tags": [], + "last_image_t": 1497459214, + "additives_old_n": 2, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:water", + "fr:_Gorgonzola_ AOP", + "fr:contient _lait_", + "fr:_Asiago_ AOP", + "fr:contient _lait_", + "fr:_mozzarella_ en billes", + "fr:_Grana Padano_ AOP", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:sugar", + "fr:marjolaine", + "fr:origan", + "en:milk", + "en:salt", + "en:acidity-regulator", + "en:citric-acid", + "fr:presure-microbienne", + "fr:ferments-lactiques", + "fr:UE", + "fr:contient _lait_", + "en:milk", + "en:salt", + "fr:presure-animale", + "en:preservative", + "fr:lysozyme-d-oeuf" + ], + "generic_name_fr": "Pâte 46,9%, garnie de fromages 33,8%, de sauce tomate 19,2% et d'herbes 0,1% ; cuite, surgelée.", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.200.jpg", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "max_imgid": "7", + "nutrition_data_per": "100g", + "emb_codes_orig": "IT 1558/L CE", + "unknown_ingredients_n": 8, + "unknown_nutrients_tags": [], + "allergens_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.400.jpg", + "traces_debug_tags": [], + "lang": "fr", + "categories_debug_tags": [ + "added-en-cheese-pizzas" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1493978743, + "nova_group_debug": " -- ingredients/en:preservative : 3 -- additives/en:e330 : 4", + "origins": "Union Européenne", + "labels_hierarchy": [ + "en:green-dot", + "en:made-in-italy" + ], + "manufacturing_places": "Italie", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.100.jpg", + "ingredients_tags": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:water", + "fr:gorgonzola-aop", + "fr:contient-lait", + "fr:asiago-aop", + "fr:contient-lait", + "fr:mozzarella-en-billes", + "fr:grana-padano-aop", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:sugar", + "fr:marjolaine", + "fr:origan", + "en:milk", + "en:salt", + "en:acidity-regulator", + "en:citric-acid", + "fr:presure-microbienne", + "fr:ferments-lactiques", + "fr:ue", + "fr:contient-lait", + "en:milk", + "en:salt", + "fr:presure-animale", + "en:preservative", + "fr:lysozyme-d-oeuf" + ], + "_id": "3270160890125", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "serving_size": "", + "interface_version_created": "20120622", + "product_quantity": 390, + "vitamins_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé (gluten), pulpe de tomates 18,6 %, mozzarella 12,8 % (lait, sel, correcteur d'acidité : acide citrique, présure microbienne, ferments lactiques), eau, Gorgonzola AOP 7,7% (contient lait), Asiago AOP 5,1% (contient lait), mozzarella en billes 4,3 % (UE; contient lait), Grana Padano AOP 3.8% (lait, sel, présure animale, conservateur: lysozyme d'œuf), huile d'olive, sel, huile d'olive vierge extra, levure, sucre, marjolaine, origan.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.100.jpg", + "additives_prev_original_tags": [ + "en:e330", + "en:e1105" + ], + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/nutrition_fr.23.100.jpg", + "ingredients_text_with_allergens": "Farine de blé (gluten), pulpe de tomates 18,6 %, mozzarella 12,8 % (lait, sel, correcteur d'acidité : acide citrique, présure microbienne, ferments lactiques), eau, Gorgonzola AOP 7,7% (contient lait), Asiago AOP 5,1% (contient lait), mozzarella en billes 4,3 % (UE; contient lait), Grana Padano AOP 3.8% (lait, sel, présure animale, conservateur: lysozyme d'œuf), huile d'olive, sel, huile d'olive vierge extra, levure, sucre, marjolaine, origan.", + "packaging": "surgelé,plastique,carton", + "informers_tags": [ + "teolemon", + "kiliweb", + "beniben" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "farine-de-ble", + "gluten", + "pulpe-de-tomates-18", + "6", + "mozzarella-12", + "8", + "lait", + "sel", + "correcteur-d-acidite", + "acide-citrique", + "presure-microbienne", + "ferments-lactiques", + "eau", + "gorgonzola-aop-7", + "7", + "contient-lait", + "asiago-aop-5", + "1", + "contient-lait", + "mozzarella-en-billes-4", + "3", + "ue", + "contient-lait", + "grana-padano-aop-3-8", + "lait", + "sel", + "presure-animale", + "conservateur", + "lysozyme-d-oeuf", + "huile-d-olive", + "sel", + "huile-d-olive-vierge-extra", + "levure", + "sucre", + "marjolaine", + "origan" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/ingredients_fr.19.200.jpg", + "ingredients": [ + { + "text": "Farine de _blé_", + "rank": 1, + "id": "en:wheat-flour" + }, + { + "id": "en:gluten", + "text": "_gluten_", + "rank": 2 + }, + { + "id": "fr:pulpe-de-tomate", + "percent": "18.6", + "rank": 3, + "text": "pulpe de tomates" + }, + { + "percent": "12.8", + "id": "fr:mozzarella", + "rank": 4, + "text": "_mozzarella_" + }, + { + "text": "eau", + "rank": 5, + "id": "en:water" + }, + { + "text": "_Gorgonzola_ AOP", + "rank": 6, + "percent": "7.7", + "id": "fr:_Gorgonzola_ AOP" + }, + { + "id": "fr:contient _lait_", + "rank": 7, + "text": "contient _lait_" + }, + { + "text": "_Asiago_ AOP", + "rank": 8, + "id": "fr:_Asiago_ AOP", + "percent": "5.1" + }, + { + "rank": 9, + "text": "contient _lait_", + "id": "fr:contient _lait_" + }, + { + "id": "fr:_mozzarella_ en billes", + "percent": "4.3", + "text": "_mozzarella_ en billes", + "rank": 10 + }, + { + "percent": "3.8", + "id": "fr:_Grana Padano_ AOP", + "rank": 11, + "text": "_Grana Padano_ AOP" + }, + { + "text": "huile d'olive", + "rank": 12, + "id": "en:olive-oil" + }, + { + "text": "sel", + "rank": 13, + "id": "en:salt" + }, + { + "id": "en:extra-virgin-olive-oil", + "text": "huile d'olive vierge extra", + "rank": 14 + }, + { + "rank": 15, + "text": "levure", + "id": "fr:levure" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 16 + }, + { + "id": "fr:marjolaine", + "rank": 17, + "text": "marjolaine" + }, + { + "rank": 18, + "text": "origan", + "id": "fr:origan" + }, + { + "text": "_lait_", + "id": "en:milk" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "correcteur d'acidité", + "id": "en:acidity-regulator" + }, + { + "id": "en:citric-acid", + "text": "acide citrique" + }, + { + "text": "présure microbienne", + "id": "fr:presure-microbienne" + }, + { + "text": "ferments lactiques", + "id": "fr:ferments-lactiques" + }, + { + "text": "UE", + "id": "fr:UE" + }, + { + "text": "contient _lait_", + "id": "fr:contient _lait_" + }, + { + "text": "lait", + "id": "en:milk" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "présure animale", + "id": "fr:presure-animale" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:lysozyme-d-oeuf", + "text": "lysozyme d'_œuf_" + } + ], + "origins_tags": [ + "union-europeenne" + ], + "last_modified_by": "beniben", + "cities_tags": [], + "ingredients_n_tags": [ + "31", + "31-40" + ], + "additives_prev_tags": [ + "en:e1105", + "en:e330" + ], + "allergens_from_ingredients": "blé, gluten, mozzarella, lait, Gorgonzola, lait, Asiago, lait, mozzarella, lait, Grana Padano, œuf, ferments lactiques, lait", + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "fr:asiago", + "fr:gorgonzola", + "fr:grana-padano" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 299, + "h": 400 + }, + "full": { + "h": 2592, + "w": 1936 + } + }, + "uploaded_t": "1493978743", + "uploader": "teolemon" + }, + "2": { + "uploaded_t": "1493978764", + "uploader": "teolemon", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 299, + "h": 400 + }, + "full": { + "h": 2592, + "w": 1936 + } + } + }, + "3": { + "uploaded_t": "1497458641", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 91 + }, + "400": { + "h": 400, + "w": 362 + }, + "full": { + "w": 1232, + "h": 1360 + } + } + }, + "4": { + "uploaded_t": "1497458641", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 14, + "w": 100 + }, + "400": { + "h": 56, + "w": 400 + }, + "full": { + "w": 2448, + "h": 345 + } + } + }, + "5": { + "uploader": "kiliweb", + "uploaded_t": "1497458814", + "sizes": { + "100": { + "h": 15, + "w": 100 + }, + "400": { + "h": 59, + "w": 400 + }, + "full": { + "w": 2448, + "h": 359 + } + } + }, + "6": { + "sizes": { + "100": { + "h": 14, + "w": 100 + }, + "400": { + "w": 400, + "h": 57 + }, + "full": { + "h": 346, + "w": 2448 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1497459131" + }, + "7": { + "uploader": "kiliweb", + "uploaded_t": "1497459214", + "sizes": { + "100": { + "h": 14, + "w": 100 + }, + "400": { + "h": 57, + "w": 400 + }, + "full": { + "w": 2448, + "h": 346 + } + } + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 39, + "w": 100 + }, + "200": { + "h": 78, + "w": 200 + }, + "400": { + "w": 400, + "h": 156 + }, + "full": { + "h": 275, + "w": 704 + } + }, + "rev": "23", + "y1": "186.83203125", + "angle": "0", + "y2": "229.29296875", + "x1": "35.33203125", + "x2": "143.9921875", + "normalize": "false", + "geometry": "704x275-228-1210", + "imgid": "2", + "white_magic": "false" + }, + "ingredients_fr": { + "sizes": { + "100": { + "w": 100, + "h": 14 + }, + "200": { + "w": 200, + "h": 28 + }, + "400": { + "h": 57, + "w": 400 + }, + "full": { + "w": 2448, + "h": 346 + } + }, + "rev": "19", + "angle": null, + "y1": null, + "normalize": "0", + "x2": null, + "y2": null, + "x1": null, + "geometry": "0x0-0-0", + "imgid": "7", + "white_magic": "0" + }, + "front_fr": { + "imgid": "3", + "geometry": "0x0-0-0", + "white_magic": "0", + "y2": null, + "x1": null, + "normalize": "0", + "x2": null, + "y1": null, + "angle": null, + "sizes": { + "100": { + "w": "91", + "h": "100" + }, + "200": { + "w": 181, + "h": 200 + }, + "400": { + "h": 400, + "w": 362 + }, + "full": { + "h": 1360, + "w": 1232 + } + }, + "rev": "7" + } + }, + "serving_size_debug_tags": [], + "ingredients_text_debug": "Farine de _blé_ (_gluten_), pulpe de tomates 18,6 %, _mozzarella_ 12,8 % (_lait_, sel, correcteur d'acidité : acide citrique, présure microbienne, ferments lactiques), eau, _Gorgonzola_ AOP 7,7% (contient _lait_), _Asiago_ AOP 5,1% (contient _lait_), _mozzarella_ en billes 4,3 % (UE; contient _lait_), _Grana Padano_ AOP 3.8% (lait, sel, présure animale, conservateur : lysozyme d'_œuf_), huile d'olive, sel, huile d'olive vierge extra, levure, sucre, marjolaine, origan.", + "ingredients_from_palm_oil_n": 0, + "ingredients_n": 31, + "ingredients_original_tags": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:water", + "fr:_Gorgonzola_ AOP", + "fr:contient _lait_", + "fr:_Asiago_ AOP", + "fr:contient _lait_", + "fr:_mozzarella_ en billes", + "fr:_Grana Padano_ AOP", + "en:olive-oil", + "en:salt", + "en:extra-virgin-olive-oil", + "fr:levure", + "en:sugar", + "fr:marjolaine", + "fr:origan", + "en:milk", + "en:salt", + "en:acidity-regulator", + "en:citric-acid", + "fr:presure-microbienne", + "fr:ferments-lactiques", + "fr:UE", + "fr:contient _lait_", + "en:milk", + "en:salt", + "fr:presure-animale", + "en:preservative", + "fr:lysozyme-d-oeuf" + ], + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1532460367, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "categories": "Pizzas aux quatre fromages,Pizzas surgelées", + "manufacturing_places_tags": [ + "italie" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "nutriments": { + "nutrition-score-uk_100g": "12", + "fat_unit": "g", + "salt_serving": "", + "carbohydrates_100g": "25", + "proteins_100g": "12", + "sodium_serving": "", + "fat_value": "11", + "sodium_100g": 0.437007874015748, + "saturated-fat_100g": 6.6, + "energy_100g": "1050", + "fiber_value": "2.4", + "sugars_serving": "", + "nutrition-score-fr_100g": "12", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "saturated-fat_serving": "", + "fiber_unit": "g", + "proteins": "12", + "proteins_value": "12", + "nova-group_100g": 4, + "energy": "1050", + "fat_100g": "11", + "proteins_serving": "", + "nutrition-score-fr": "12", + "sugars_unit": "g", + "carbohydrates_value": "25", + "fiber_serving": "", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "nutrition-score-uk": "12", + "carbohydrates_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "5.3", + "fat_serving": "", + "saturated-fat": 6.6, + "fiber": 2.4, + "sugars_100g": 5.3, + "salt_value": "1.11", + "energy_serving": "", + "salt_unit": "g", + "salt_100g": 1.11, + "fiber_100g": 2.4, + "carbohydrates": "25", + "sodium": 0.437007874015748, + "energy_value": "251", + "fat": "11", + "salt": 1.11, + "proteins_unit": "g", + "saturated-fat_value": "6.6", + "sugars": 5.3, + "sodium_value": "0.437007874015748" + }, + "last_editor": "beniben", + "labels_debug_tags": [ + "added-en-made-in-italy", + "removed-fr-fabrique-en-italie" + ], + "creator": "teolemon", + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "France", + "additives_n": 2, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 2, + "purchase_places_debug_tags": [], + "allergens": "", + "completed_t": 1532460367, + "last_image_dates_tags": [ + "2017-06-14", + "2017-06", + "2017" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "beniben", + "openfoodfacts-contributors", + "teolemon", + "kiliweb" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "code": "3270160890125", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "labels_tags": [ + "en:green-dot", + "en:made-in-italy" + ], + "ingredients_debug": [ + "Farine de _blé_ ", + "(", + "(", + null, + null, + "_gluten_)", + ",", + null, + null, + null, + " pulpe de tomates 18", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " _mozzarella_ 12", + ",", + null, + null, + null, + "8 % ", + "(", + "(", + null, + null, + "_lait_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " correcteur d'acidité ", + ":", + ":", + null, + null, + " acide citrique", + ",", + null, + null, + null, + " présure microbienne", + ",", + null, + null, + null, + " ferments lactiques)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " _Gorgonzola_ AOP 7", + ",", + null, + null, + null, + "7% ", + "(", + "(", + null, + null, + "contient _lait_)", + ",", + null, + null, + null, + " _Asiago_ AOP 5", + ",", + null, + null, + null, + "1% ", + "(", + "(", + null, + null, + "contient _lait_)", + ",", + null, + null, + null, + " _mozzarella_ en billes 4", + ",", + null, + null, + null, + "3 % ", + "(", + "(", + null, + null, + "UE", + ";", + ";", + null, + null, + " contient _lait_)", + ",", + null, + null, + null, + " _Grana Padano_ AOP 3.8% ", + "(", + "(", + null, + null, + "lait", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " présure animale", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " lysozyme d'_œuf_)", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " marjolaine", + ",", + null, + null, + null, + " origan." + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/327/016/089/0125/front_fr.7.400.jpg", + "photographers_tags": [ + "teolemon", + "kiliweb" + ], + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "" + }, + { + "image_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.400.jpg", + "photographers_tags": [ + "tacite" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Pâte cuite 39", + ",", + null, + null, + null, + "8% ", + "(", + "(", + null, + null, + "farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " poudre à lever ", + ":", + ":", + null, + null, + " carbonate de sodium)", + ",", + null, + null, + null, + " purée de tomate mi-réduites", + ",", + null, + null, + null, + " jambon cuit standard 12% ", + "(", + "(", + null, + null, + "jambon de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " lactate de sodium", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " protéines de sang de porc", + ",", + null, + null, + null, + " arômes naturels", + ",", + null, + null, + null, + " stabilisants ", + ":", + ":", + null, + null, + " triphosphates et diphosphates", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ascorbate de sodium", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " nitrite de sodium)", + ",", + null, + null, + null, + " champignons 12% ", + "(", + "(", + null, + null, + "champignons", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " acide ascorbique)", + ",", + null, + null, + null, + " _fromage_ fondu 8", + ",", + null, + null, + null, + "4% ", + "(", + "(", + null, + null, + "_fromage_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " _beurre_", + ",", + null, + null, + null, + " protéines de _lait_", + ",", + null, + null, + null, + " amidon transformé de maïs", + ",", + null, + null, + null, + " sels de fonte ", + ":", + ":", + null, + null, + " citrate de sodium", + ",", + null, + null, + null, + " _lactosérum_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " antiagglomérant ", + ":", + ":", + null, + null, + " cellulose)", + ",", + null, + null, + null, + " _emmental_ 3", + ",", + null, + null, + null, + "6% ", + "(", + "(", + null, + null, + "dont antiagglomérant ", + ":", + ":", + null, + null, + " cellulose en poudre)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " basilic", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + null, + " pulpe d'ail." + ], + "labels_tags": [], + "traces": "Crustacés,Poisson,Mollusques,Fruits à coque", + "ingredients_that_may_be_from_palm_oil_n": 0, + "editors_tags": [ + "date-limite-app", + "tacite", + "segundo" + ], + "languages": { + "en:french": 6 + }, + "last_image_dates_tags": [ + "2015-10-30", + "2015-10", + "2015" + ], + "completed_t": 1446210800, + "allergens": "blé, fromage, fromage, beurre, lait, lactosérum, emmental, blé", + "editors": [ + "segundo", + "tacite" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3257981358904", + "scans_n": 1, + "categories_tags": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:oval-pizzas", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-tartes-salees-et-quiches" + ], + "purchase_places": "Courrières,France", + "creator": "tacite", + "labels_debug_tags": [], + "last_editor": "date-limite-app", + "nutriments": { + "salt_unit": "g", + "sodium": 0.582677165354331, + "fiber_100g": 1.5, + "carbohydrates": "28.7", + "salt_100g": 1.48, + "sugars_100g": "2", + "fiber": "1.5", + "salt_value": "1.48", + "saturated-fat": "0.4", + "energy_serving": "1470", + "sugars": "2", + "sodium_value": "0.5826771653543307", + "fat": "4.5", + "energy_value": "819", + "saturated-fat_value": "0.4", + "proteins_unit": "g", + "salt": "1.48", + "fiber_serving": 2.7, + "carbohydrates_value": "28.7", + "nutrition-score-uk": "2", + "energy_unit": "kJ", + "saturated-fat_unit": "g", + "sugars_unit": "g", + "nutrition-score-fr": "2", + "proteins_serving": 16.2, + "fat_serving": 8.1, + "carbohydrates_serving": 51.7, + "carbohydrates_unit": "g", + "sugars_value": "2", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": 0.72, + "sugars_serving": 3.6, + "nutrition-score-fr_100g": "2", + "nova-group_100g": 4, + "fat_100g": 4.5, + "energy": "819", + "proteins": "9", + "proteins_value": "9", + "fat_unit": "g", + "nutrition-score-uk_100g": "2", + "salt_serving": 2.66, + "carbohydrates_100g": 28.7, + "proteins_100g": "9", + "energy_100g": "819", + "fiber_value": "1.5", + "fat_value": "4.5", + "sodium_serving": 1.05, + "sodium_100g": 0.582677165354331, + "saturated-fat_100g": 0.4 + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 10, + "additives_n": 11, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Pâte cuite 39,8% (farine de _blé_, eau, huile de colza, sel, levure, poudre à lever : carbonate de sodium), purée de tomate mi-réduites, jambon cuit standard 12% (jambon de porc, eau, acidifiant : lactate de sodium, dextrose, sel, protéines de sang de porc, arômes naturels, stabilisants : triphosphates et diphosphates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), champignons 12% (champignons, eau, sel, acidifiant : acide citrique, antioxydant : acide ascorbique), _fromage_ fondu 8,4% (_fromage_, eau, _beurre_, protéines de _lait_, amidon transformé de maïs, sels de fonte : citrate de sodium, _lactosérum_, sel, antiagglomérant : cellulose), _emmental_ 3,6% (dont antiagglomérant : cellulose en poudre), eau, farine de _blé_, basilic, origan, huile d'olive vierge extra, pulpe d'ail.", + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas ovales,Pizzas,Pizzas jambon-fromage", + "manufacturing_places_tags": [], + "categories_hierarchy": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:oval-pizzas", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1532343880, + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [ + "fr:pate-cuite", + "fr:puree-de-tomate-mi-reduite", + "fr:jambon-cuit-standard", + "en:mushroom", + "fr:fromage-fondu", + "fr:emmental", + "en:water", + "en:wheat-flour", + "fr:basilic", + "fr:origan", + "en:extra-virgin-olive-oil", + "fr:pulpe-d-ail", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "en:salt", + "fr:levure", + "en:raising-agent", + "fr:carbonate-de-sodium", + "fr:jambon-de-porc", + "en:water", + "en:acid", + "fr:lactate-de-sodium", + "en:dextrose", + "en:salt", + "fr:proteines-de-sang-de-porc", + "en:natural-flavour", + "en:stabiliser", + "fr:triphosphates-et-diphosphates", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "en:mushroom", + "en:water", + "en:salt", + "en:acid", + "en:citric-acid", + "en:antioxidant", + "en:ascorbic-acid", + "fr:fromage", + "en:water", + "en:butter", + "en:milk-protein", + "fr:amidon-modifie-de-mais", + "fr:sel-de-fonte", + "fr:citrate-de-sodium", + "en:whey", + "en:salt", + "en:anti-caking-agent", + "fr:cellulose", + "fr:dont antiagglomérant", + "fr:cellulose en poudre" + ], + "ingredients_n": 53, + "ingredients_n_tags": [ + "53", + "51-60" + ], + "last_modified_by": "date-limite-app", + "cities_tags": [ + "segre-maine-et-loire-france" + ], + "origins_tags": [], + "emb_codes_20141016": "EMB 49331H", + "ingredients": [ + { + "percent": "39.8", + "id": "fr:pate-cuite", + "rank": 1, + "text": "Pâte cuite" + }, + { + "text": "purée de tomate mi-réduites", + "rank": 2, + "id": "fr:puree-de-tomate-mi-reduite" + }, + { + "text": "jambon cuit standard", + "rank": 3, + "id": "fr:jambon-cuit-standard", + "percent": "12" + }, + { + "rank": 4, + "text": "champignons", + "percent": "12", + "id": "en:mushroom" + }, + { + "rank": 5, + "text": "_fromage_ fondu", + "percent": "8.4", + "id": "fr:fromage-fondu" + }, + { + "percent": "3.6", + "id": "fr:emmental", + "rank": 6, + "text": "_emmental_" + }, + { + "rank": 7, + "text": "eau", + "id": "en:water" + }, + { + "rank": 8, + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "id": "fr:basilic", + "rank": 9, + "text": "basilic" + }, + { + "id": "fr:origan", + "text": "origan", + "rank": 10 + }, + { + "text": "huile d'olive vierge extra", + "rank": 11, + "id": "en:extra-virgin-olive-oil" + }, + { + "rank": 12, + "text": "pulpe d'ail", + "id": "fr:pulpe-d-ail" + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "huile de colza", + "id": "en:canola-oil" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "fr:levure", + "text": "levure" + }, + { + "text": "poudre à lever", + "id": "en:raising-agent" + }, + { + "text": "carbonate de sodium", + "id": "fr:carbonate-de-sodium" + }, + { + "id": "fr:jambon-de-porc", + "text": "jambon de porc" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "acidifiant", + "id": "en:acid" + }, + { + "id": "fr:lactate-de-sodium", + "text": "lactate de sodium" + }, + { + "id": "en:dextrose", + "text": "dextrose" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "protéines de sang de porc", + "id": "fr:proteines-de-sang-de-porc" + }, + { + "id": "en:natural-flavour", + "text": "arômes naturels" + }, + { + "text": "stabilisants", + "id": "en:stabiliser" + }, + { + "text": "triphosphates et diphosphates", + "id": "fr:triphosphates-et-diphosphates" + }, + { + "id": "en:antioxidant", + "text": "antioxydant" + }, + { + "text": "ascorbate de sodium", + "id": "en:sodium-ascorbate" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "text": "nitrite de sodium", + "id": "fr:nitrite-de-sodium" + }, + { + "text": "champignons", + "id": "en:mushroom" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:acid", + "text": "acidifiant" + }, + { + "text": "acide citrique", + "id": "en:citric-acid" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "id": "en:ascorbic-acid", + "text": "acide ascorbique" + }, + { + "id": "fr:fromage", + "text": "_fromage_" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:butter", + "text": "_beurre_" + }, + { + "text": "protéines de _lait_", + "id": "en:milk-protein" + }, + { + "id": "fr:amidon-modifie-de-mais", + "text": "amidon transformé de maïs" + }, + { + "id": "fr:sel-de-fonte", + "text": "sels de fonte" + }, + { + "text": "citrate de sodium", + "id": "fr:citrate-de-sodium" + }, + { + "text": "_lactosérum_", + "id": "en:whey" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:anti-caking-agent", + "text": "antiagglomérant" + }, + { + "text": "cellulose", + "id": "fr:cellulose" + }, + { + "id": "fr:dont antiagglomérant", + "text": "dont antiagglomérant" + }, + { + "id": "fr:cellulose en poudre", + "text": "cellulose en poudre" + } + ], + "traces_tags": [ + "en:crustaceans", + "en:fish", + "en:molluscs", + "en:nuts" + ], + "images": { + "1": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2000, + "h": 3555 + } + }, + "uploader": "tacite", + "uploaded_t": "1446199092" + }, + "2": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3555, + "w": 2000 + } + }, + "uploader": "tacite", + "uploaded_t": "1446199100" + }, + "front": { + "normalize": "false", + "rev": "5", + "sizes": { + "100": { + "h": 100, + "w": 59 + }, + "200": { + "h": 200, + "w": 117 + }, + "400": { + "h": 400, + "w": 235 + }, + "full": { + "w": 1929, + "h": 3289 + } + }, + "white_magic": "false", + "geometry": "1929x3289-42-113", + "imgid": "2" + }, + "ingredients_fr": { + "geometry": "791x685-24-1384", + "imgid": "1", + "white_magic": "false", + "normalize": "false", + "rev": "6", + "sizes": { + "100": { + "h": 87, + "w": 100 + }, + "200": { + "h": 173, + "w": 200 + }, + "400": { + "w": 400, + "h": 346 + }, + "full": { + "h": 685, + "w": 791 + } + } + }, + "front_fr": { + "rev": "5", + "normalize": "false", + "sizes": { + "100": { + "h": "100", + "w": "59" + }, + "200": { + "w": 117, + "h": 200 + }, + "400": { + "w": 235, + "h": 400 + }, + "full": { + "h": 3289, + "w": 1929 + } + }, + "geometry": "1929x3289-42-113", + "white_magic": "false", + "imgid": "2" + }, + "ingredients": { + "geometry": "791x685-24-1384", + "white_magic": "false", + "imgid": "1", + "rev": "6", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 87 + }, + "200": { + "h": 173, + "w": 200 + }, + "400": { + "w": 400, + "h": 346 + }, + "full": { + "w": 791, + "h": 685 + } + } + }, + "nutrition": { + "normalize": "false", + "rev": "7", + "sizes": { + "100": { + "w": 100, + "h": 95 + }, + "200": { + "w": 200, + "h": 189 + }, + "400": { + "w": 400, + "h": 378 + }, + "full": { + "w": 827, + "h": 782 + } + }, + "geometry": "827x782-788-824", + "white_magic": "false", + "imgid": "1" + }, + "nutrition_fr": { + "white_magic": "false", + "geometry": "827x782-788-824", + "imgid": "1", + "normalize": "false", + "rev": "7", + "sizes": { + "100": { + "w": 100, + "h": 95 + }, + "200": { + "h": 189, + "w": 200 + }, + "400": { + "h": 378, + "w": 400 + }, + "full": { + "h": 782, + "w": 827 + } + } + } + }, + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_from_ingredients": "blé, fromage, fromage, beurre, lait, lactosérum, emmental, blé", + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "additives_prev_tags": [ + "en:e250", + "en:e300", + "en:e301", + "en:e325", + "en:e330", + "en:e331", + "en:e450", + "en:e451", + "en:e460", + "en:e500" + ], + "nucleotides_tags": [], + "packaging": "Film,Plastique,Carton", + "informers_tags": [ + "tacite", + "segundo" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.200.jpg", + "ingredients_ids_debug": [ + "pate-cuite-39", + "8", + "farine-de-ble", + "eau", + "huile-de-colza", + "sel", + "levure", + "poudre-a-lever", + "carbonate-de-sodium", + "puree-de-tomate-mi-reduites", + "jambon-cuit-standard-12", + "jambon-de-porc", + "eau", + "acidifiant", + "lactate-de-sodium", + "dextrose", + "sel", + "proteines-de-sang-de-porc", + "aromes-naturels", + "stabilisants", + "triphosphates", + "diphosphates", + "antioxydant", + "ascorbate-de-sodium", + "conservateur", + "nitrite-de-sodium", + "champignons-12", + "champignons", + "eau", + "sel", + "acidifiant", + "acide-citrique", + "antioxydant", + "acide-ascorbique", + "fromage-fondu-8", + "4", + "fromage", + "eau", + "beurre", + "proteines-de-lait", + "amidon-transforme-de-mais", + "sels-de-fonte", + "citrate-de-sodium", + "lactoserum", + "sel", + "antiagglomerant", + "cellulose", + "emmental-3", + "6", + "dont-antiagglomerant", + "cellulose-en-poudre", + "eau", + "farine-de-ble", + "basilic", + "origan", + "huile-d-olive-vierge-extra", + "pulpe-d-ail" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "vitamins_tags": [], + "product_quantity": 180, + "serving_size": "180 g", + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:oval-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "_id": "3257981358904", + "ingredients_tags": [ + "fr:pate-cuite", + "fr:puree-de-tomate-mi-reduite", + "fr:jambon-cuit-standard", + "en:mushroom", + "fr:fromage-fondu", + "fr:emmental", + "en:water", + "en:wheat-flour", + "fr:basilic", + "fr:origan", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:pulpe-d-ail", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:raising-agent", + "fr:carbonate-de-sodium", + "fr:jambon-de-porc", + "en:water", + "en:acid", + "fr:lactate-de-sodium", + "en:dextrose", + "en:salt", + "fr:proteines-de-sang-de-porc", + "en:pork-by-product", + "en:natural-flavour", + "en:flavour", + "en:stabiliser", + "fr:triphosphates-et-diphosphates", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "en:mushroom", + "en:water", + "en:salt", + "en:acid", + "en:citric-acid", + "en:antioxidant", + "en:ascorbic-acid", + "fr:fromage", + "en:water", + "en:butter", + "en:milk-protein", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "fr:sel-de-fonte", + "en:salt", + "fr:citrate-de-sodium", + "en:whey", + "en:salt", + "en:anti-caking-agent", + "fr:cellulose", + "fr:dont-antiagglomerant", + "fr:cellulose-en-poudre" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.100.jpg", + "ingredients_text_with_allergens": "Pâte cuite 39,8% (farine de blé, eau, huile de colza, sel, levure, poudre à lever : carbonate de sodium), purée de tomate mi-réduites, jambon cuit standard 12% (jambon de porc, eau, acidifiant : lactate de sodium, dextrose, sel, protéines de sang de porc, arômes naturels, stabilisants : triphosphates et diphosphates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), champignons 12% (champignons, eau, sel, acidifiant : acide citrique, antioxydant : acide ascorbique), fromage fondu 8,4% (fromage, eau, beurre, protéines de lait, amidon transformé de maïs, sels de fonte : citrate de sodium, lactosérum, sel, antiagglomérant : cellulose), emmental 3,6% (dont antiagglomérant : cellulose en poudre), eau, farine de blé, basilic, origan, huile d'olive vierge extra, pulpe d'ail.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.100.jpg", + "additives_prev_original_tags": [ + "en:e500", + "en:e325", + "en:e451", + "en:e450", + "en:e301", + "en:e250", + "en:e330", + "en:e300", + "en:e331", + "en:e460" + ], + "ingredients_text_with_allergens_fr": "Pâte cuite 39,8% (farine de blé, eau, huile de colza, sel, levure, poudre à lever : carbonate de sodium), purée de tomate mi-réduites, jambon cuit standard 12% (jambon de porc, eau, acidifiant : lactate de sodium, dextrose, sel, protéines de sang de porc, arômes naturels, stabilisants : triphosphates et diphosphates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), champignons 12% (champignons, eau, sel, acidifiant : acide citrique, antioxydant : acide ascorbique), fromage fondu 8,4% (fromage, eau, beurre, protéines de lait, amidon transformé de maïs, sels de fonte : citrate de sodium, lactosérum, sel, antiagglomérant : cellulose), emmental 3,6% (dont antiagglomérant : cellulose en poudre), eau, farine de blé, basilic, origan, huile d'olive vierge extra, pulpe d'ail.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.400.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.100.jpg", + "labels_hierarchy": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "origins": "", + "created_t": 1446199092, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:anti-caking-agent : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [ + "en:crustaceans", + "en:fish", + "en:molluscs", + "en:nuts" + ], + "generic_name_fr": "Pizza garnie de jambon cuit standard, de champignons, de fromage fondu et d'emmental", + "unknown_nutrients_tags": [], + "unique_scans_n": 1, + "unknown_ingredients_n": 2, + "emb_codes_orig": "EMB 49331H", + "nutrition_data_per": "100g", + "max_imgid": "2", + "countries_tags": [ + "en:france" + ], + "additives_debug_tags": [ + "en-e460ii-added", + "en-e500i-added" + ], + "additives_original_tags": [ + "en:e500i", + "en:e325", + "en:e451", + "en:e450", + "en:e301", + "en:e250", + "en:e330", + "en:e300", + "en:e331", + "en:e460", + "en:e460ii" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "ingredients_hierarchy": [ + "fr:pate-cuite", + "fr:puree-de-tomate-mi-reduite", + "fr:jambon-cuit-standard", + "en:mushroom", + "fr:fromage-fondu", + "fr:emmental", + "en:water", + "en:wheat-flour", + "fr:basilic", + "fr:origan", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:pulpe-d-ail", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:raising-agent", + "fr:carbonate-de-sodium", + "fr:jambon-de-porc", + "en:water", + "en:acid", + "fr:lactate-de-sodium", + "en:dextrose", + "en:salt", + "fr:proteines-de-sang-de-porc", + "en:pork-by-product", + "en:natural-flavour", + "en:flavour", + "en:stabiliser", + "fr:triphosphates-et-diphosphates", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "en:mushroom", + "en:water", + "en:salt", + "en:acid", + "en:citric-acid", + "en:antioxidant", + "en:ascorbic-acid", + "fr:fromage", + "en:water", + "en:butter", + "en:milk-protein", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "fr:sel-de-fonte", + "en:salt", + "fr:citrate-de-sodium", + "en:whey", + "en:salt", + "en:anti-caking-agent", + "fr:cellulose", + "fr:dont antiagglomérant", + "fr:cellulose en poudre" + ], + "nucleotides_prev_tags": [], + "additives_old_n": 10, + "last_image_t": 1446199101, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_tags": [], + "nutrition_grades": "b", + "serving_quantity": 180, + "correctors_tags": [ + "tacite", + "segundo" + ], + "codes_tags": [ + "code-13", + "3257981358904", + "325798135890x", + "32579813589xx", + "3257981358xxx", + "325798135xxxx", + "32579813xxxxx", + "3257981xxxxxx", + "325798xxxxxxx", + "32579xxxxxxxx", + "3257xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "minerals_prev_tags": [], + "expiration_date": "05/11/2015", + "emb_codes": "EMB 49331H", + "nutrition_grades_tags": [ + "b" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-07-23", + "2018-07", + "2018" + ], + "link": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.400.jpg", + "languages_codes": { + "fr": 6 + }, + "nutrition_grade_fr": "b", + "brands_tags": [ + "cora" + ], + "new_additives_n": 10, + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.100.jpg" + } + } + }, + "ingredients_text": "Pâte cuite 39,8% (farine de _blé_, eau, huile de colza, sel, levure, poudre à lever : carbonate de sodium), purée de tomate mi-réduites, jambon cuit standard 12% (jambon de porc, eau, acidifiant : lactate de sodium, dextrose, sel, protéines de sang de porc, arômes naturels, stabilisants : triphosphates et diphosphates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), champignons 12% (champignons, eau, sel, acidifiant : acide citrique, antioxydant : acide ascorbique), _fromage_ fondu 8,4% (_fromage_, eau, _beurre_, protéines de _lait_, amidon transformé de maïs, sels de fonte : citrate de sodium, _lactosérum_, sel, antiagglomérant : cellulose), _emmental_ 3,6% (dont antiagglomérant : cellulose en poudre), eau, farine de _blé_, basilic, origan, huile d'olive vierge extra, pulpe d'ail.", + "emb_codes_tags": [ + "emb-49331h" + ], + "sortkey": 1532343880, + "ingredients_text_fr": "Pâte cuite 39,8% (farine de _blé_, eau, huile de colza, sel, levure, poudre à lever : carbonate de sodium), purée de tomate mi-réduites, jambon cuit standard 12% (jambon de porc, eau, acidifiant : lactate de sodium, dextrose, sel, protéines de sang de porc, arômes naturels, stabilisants : triphosphates et diphosphates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), champignons 12% (champignons, eau, sel, acidifiant : acide citrique, antioxydant : acide ascorbique), _fromage_ fondu 8,4% (_fromage_, eau, _beurre_, protéines de _lait_, amidon transformé de maïs, sels de fonte : citrate de sodium, _lactosérum_, sel, antiagglomérant : cellulose), _emmental_ 3,6% (dont antiagglomérant : cellulose en poudre), eau, farine de _blé_, basilic, origan, huile d'olive vierge extra, pulpe d'ail.", + "product_name": "Jambon-fromage champignons", + "lc": "fr", + "countries": "France", + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "saturated-fat": "low", + "fat": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "quantity": "180 g", + "amino_acids_prev_tags": [], + "brands": "Cora", + "countries_debug_tags": [], + "checkers_tags": [], + "entry_dates_tags": [ + "2015-10-30", + "2015-10", + "2015" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3257981358904/jambon-fromage-champignons-cora", + "traces_from_ingredients": "", + "purchase_places_tags": [ + "courrieres", + "france" + ], + "product_name_fr": "Jambon-fromage champignons", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "film", + "plastique", + "carton" + ], + "pnns_groups_1": "Composite foods", + "labels": "", + "image_small_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/front_fr.5.200.jpg", + "stores_tags": [ + "cora" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "labels_prev_hierarchy": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e300", + "en:e301", + "en:e325", + "en:e330", + "en:e331", + "en:e450", + "en:e451", + "en:e460", + "en:e460ii", + "en:e500", + "en:e500i" + ], + "generic_name": "Pizza garnie de jambon cuit standard, de champignons, de fromage fondu et d'emmental", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/nutrition_fr.7.200.jpg", + "nutrition_data_prepared_per": "100g", + "rev": 10, + "id": "3257981358904", + "stores": "Cora", + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 2 -- fr 2", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "_keywords": [ + "garnie", + "de", + "et", + "ovale", + "jambon-fromage", + "emmental", + "champignon", + "fromage", + "standard", + "cuit", + "prepare", + "jambon", + "cora", + "fondu", + "tarte", + "salee", + "pizza", + "plat", + "quiche" + ], + "additives_old_tags": [ + "en:e500", + "en:e325", + "en:e451", + "en:e450", + "en:e301", + "en:e250", + "en:e330", + "en:e300", + "en:e331", + "en:e460" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/798/135/8904/ingredients_fr.6.400.jpg", + "languages_hierarchy": [ + "en:french" + ] + }, + { + "creator": "kiliweb", + "labels_debug_tags": [ + "added-en-made-in-italy", + "removed-fr-fabrique-en-italie" + ], + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "France,Nantes", + "last_editor": "beniben", + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "nutriments": { + "fiber_value": "2.8", + "energy_100g": "866", + "saturated-fat_100g": 2.6, + "sodium_100g": 0.366141732283465, + "fat_value": "6.6", + "sodium_serving": "", + "proteins_100g": "10", + "carbohydrates_100g": "26", + "salt_serving": "", + "fat_unit": "g", + "nutrition-score-uk_100g": "2", + "fat_100g": 6.6, + "energy": "866", + "nova-group_100g": 4, + "proteins_value": "10", + "proteins": "10", + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "nutrition-score-fr_100g": "2", + "sugars_serving": "", + "fat_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "5.3", + "carbohydrates_serving": "", + "nutrition-score-uk": "2", + "fruits-vegetables-nuts-estimate_value": "26.5", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "fiber_serving": "", + "carbohydrates_value": "26", + "fruits-vegetables-nuts-estimate_serving": 26.5, + "nutrition-score-fr": "2", + "sugars_unit": "g", + "fruits-vegetables-nuts-estimate": 26.5, + "proteins_serving": "", + "sodium_value": "0.366141732283465", + "sugars": 5.3, + "saturated-fat_value": "2.6", + "proteins_unit": "g", + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "salt": 0.93, + "fat": 6.6, + "energy_value": "207", + "fruits-vegetables-nuts-estimate_unit": "", + "sodium": 0.366141732283465, + "fiber_100g": 2.8, + "carbohydrates": "26", + "salt_100g": 0.93, + "salt_unit": "g", + "energy_serving": "", + "fruits-vegetables-nuts-estimate_100g": 26.5, + "fiber": 2.8, + "sugars_100g": 5.3, + "salt_value": "0.93", + "saturated-fat": 2.6 + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 1, + "purchase_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_n": 1, + "ingredients_text_debug": "Farine de _blé_ (_gluten_), pulpe de tomates 15,3% , _thon_ à l'huile d'olive 12 % [_thon_ albacore 11,7 % (_poissons_), huile d'olive, sel], _mozzarella_ 11,3 % (UE ; contient _lait_), eau, oignon rouge 5,5 %, demi-tomate cerise mi-séchée 3,7 %, olive dénoyautée assaisonnée* 2,5 % (olive, sel, arômes naturels, correcteur d'acidité : acide citrique), huile d'olive, huile d'olive vierge extra, sel, levure, sucre, basilic, origan.", + "ingredients_from_palm_oil_n": 0, + "manufacturing_places_tags": [ + "italie" + ], + "categories": "Pizzas surgelées,Pizzas au thon", + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "last_modified_t": 1532288420, + "ingredients_original_tags": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:_thon_ à l'huile d'olive", + "fr:mozzarella", + "en:water", + "fr:oignon-rouge", + "fr:demi-tomate cerise mi-séchée", + "fr:olive dénoyautée assaisonnée", + "en:olive-oil", + "en:extra-virgin-olive-oil", + "en:salt", + "fr:levure", + "en:sugar", + "fr:basilic", + "fr:origan", + "fr:thon-albacore", + "en:fish", + "en:olive-oil", + "en:salt", + "fr:UE", + "fr:contient _lait_", + "en:olive", + "en:salt", + "en:natural-flavour", + "en:acidity-regulator", + "en:citric-acid" + ], + "ingredients_n": 27, + "photographers_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.400.jpg", + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Farine de _blé_ ", + "(", + "(", + null, + null, + "_gluten_)", + ",", + null, + null, + null, + " pulpe de tomates 15", + ",", + null, + null, + null, + "3% ", + ",", + null, + null, + null, + " _thon_ à l'huile d'olive 12 % ", + "[", + "[", + null, + null, + "_thon_ albacore 11", + ",", + null, + null, + null, + "7 % ", + "(", + "(", + null, + null, + "_poissons_)", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " sel]", + ",", + null, + null, + null, + " _mozzarella_ 11", + ",", + null, + null, + null, + "3 % ", + "(", + "(", + null, + null, + "UE ", + ";", + ";", + null, + null, + " contient _lait_)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " oignon rouge 5", + ",", + null, + null, + null, + "5 %", + ",", + null, + null, + null, + " demi-tomate cerise mi-séchée 3", + ",", + null, + null, + null, + "7 %", + ",", + null, + null, + null, + " olive dénoyautée assaisonnée* 2", + ",", + null, + null, + null, + "5 % ", + "(", + "(", + null, + null, + "olive", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " arômes naturels", + ",", + null, + null, + null, + " correcteur d'acidité ", + ":", + ":", + null, + null, + " acide citrique)", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " basilic", + ",", + null, + null, + null, + " origan." + ], + "labels_tags": [ + "en:made-in-italy" + ], + "traces": "Soja", + "brands_debug_tags": [], + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "languages": { + "en:french": 5 + }, + "editors_tags": [ + "beniben", + "kiliweb", + "openfoodfacts-contributors" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-03-20", + "2018-03", + "2018" + ], + "allergens": "", + "completed_t": 1532288420, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3270160890279", + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "vitamins_tags": [], + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "serving_size": "", + "product_quantity": 400, + "interface_version_created": "20150316.jqm2", + "ingredients_tags": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:thon-a-l-huile-d-olive", + "fr:mozzarella", + "en:water", + "fr:oignon-rouge", + "fr:demi-tomate-cerise-mi-sechee", + "fr:olive-denoyautee-assaisonnee", + "en:olive-oil", + "en:vegetable-oil", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:sugar", + "fr:basilic", + "fr:origan", + "fr:thon-albacore", + "en:tuna", + "en:fish", + "en:fish", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:ue", + "fr:contient-lait", + "en:olive", + "en:salt", + "en:natural-flavour", + "en:flavour", + "en:acidity-regulator", + "en:citric-acid" + ], + "_id": "3270160890279", + "ingredients_text_with_allergens": "Farine de blé (gluten), pulpe de tomates 15,3% , thon à l'huile d'olive 12 % [thon albacore 11,7 % (poissons), huile d'olive, sel], mozzarella 11,3 % (UE ; contient lait), eau, oignon rouge 5,5 %, demi-tomate cerise mi-séchée 3,7 %, olive dénoyautée assaisonnée* 2,5 % (olive, sel, arômes naturels, correcteur d'acidité : acide citrique), huile d'olive, huile d'olive vierge extra, sel, levure, sucre, basilic, origan.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.100.jpg", + "quantity_debug_tags": [], + "additives_prev_original_tags": [ + "en:e330" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.100.jpg", + "ingredients_text_with_allergens_fr": "Farine de blé (gluten), pulpe de tomates 15,3% , thon à l'huile d'olive 12 % [thon albacore 11,7 % (poissons), huile d'olive, sel], mozzarella 11,3 % (UE ; contient lait), eau, oignon rouge 5,5 %, demi-tomate cerise mi-séchée 3,7 %, olive dénoyautée assaisonnée* 2,5 % (olive, sel, arômes naturels, correcteur d'acidité : acide citrique), huile d'olive, huile d'olive vierge extra, sel, levure, sucre, basilic, origan.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.400.jpg", + "allergens_debug_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "Italie", + "labels_hierarchy": [ + "en:made-in-italy" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.100.jpg", + "origins": "Union Européenne", + "categories_debug_tags": [], + "created_t": 1493550065, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:flavour : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_n_tags": [ + "27", + "21-30" + ], + "origins_tags": [ + "union-europeenne" + ], + "last_modified_by": "beniben", + "cities_tags": [], + "ingredients": [ + { + "text": "Farine de _blé_", + "rank": 1, + "id": "en:wheat-flour" + }, + { + "id": "en:gluten", + "rank": 2, + "text": "_gluten_" + }, + { + "text": "pulpe de tomates", + "rank": 3, + "id": "fr:pulpe-de-tomate", + "percent": "15.3" + }, + { + "text": "_thon_ à l'huile d'olive", + "rank": 4, + "percent": "12", + "id": "fr:_thon_ à l'huile d'olive" + }, + { + "rank": 5, + "text": "_mozzarella_", + "id": "fr:mozzarella", + "percent": "11.3" + }, + { + "id": "en:water", + "text": "eau", + "rank": 6 + }, + { + "percent": "5.5", + "id": "fr:oignon-rouge", + "rank": 7, + "text": "oignon rouge" + }, + { + "percent": "3.7", + "id": "fr:demi-tomate cerise mi-séchée", + "rank": 8, + "text": "demi-tomate cerise mi-séchée" + }, + { + "text": "olive dénoyautée assaisonnée", + "rank": 9, + "percent": "2.5", + "id": "fr:olive dénoyautée assaisonnée" + }, + { + "rank": 10, + "text": "huile d'olive", + "id": "en:olive-oil" + }, + { + "id": "en:extra-virgin-olive-oil", + "text": "huile d'olive vierge extra", + "rank": 11 + }, + { + "text": "sel", + "rank": 12, + "id": "en:salt" + }, + { + "rank": 13, + "text": "levure", + "id": "fr:levure" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 14 + }, + { + "id": "fr:basilic", + "rank": 15, + "text": "basilic" + }, + { + "id": "fr:origan", + "text": "origan", + "rank": 16 + }, + { + "text": "_thon_ albacore", + "percent": "11.7", + "id": "fr:thon-albacore" + }, + { + "text": "_poissons_", + "id": "en:fish" + }, + { + "id": "en:olive-oil", + "text": "huile d'olive" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "UE", + "id": "fr:UE" + }, + { + "id": "fr:contient _lait_", + "text": "contient _lait_" + }, + { + "id": "en:olive", + "text": "olive" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "arômes naturels", + "id": "en:natural-flavour" + }, + { + "text": "correcteur d'acidité", + "id": "en:acidity-regulator" + }, + { + "id": "en:citric-acid", + "text": "acide citrique" + } + ], + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "w": 93, + "h": 100 + }, + "400": { + "w": 371, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1260 + } + }, + "uploaded_t": "1493550067", + "uploader": "kiliweb" + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1493550068", + "sizes": { + "100": { + "h": 22, + "w": 100 + }, + "400": { + "h": 90, + "w": 400 + }, + "full": { + "w": 2870, + "h": 644 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "400": { + "h": 205, + "w": 400 + }, + "full": { + "h": 1052, + "w": 2050 + } + }, + "uploaded_t": "1516044319", + "uploader": "kiliweb" + }, + "4": { + "sizes": { + "100": { + "h": 20, + "w": 100 + }, + "400": { + "w": 400, + "h": 82 + }, + "full": { + "w": 3024, + "h": 619 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1516044323" + }, + "5": { + "sizes": { + "100": { + "w": 14, + "h": 100 + }, + "400": { + "h": 400, + "w": 56 + }, + "full": { + "h": 1200, + "w": 167 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1520191035" + }, + "6": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1521570029", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "7": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1521570051", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "nutrition_fr": { + "rev": "11", + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "200": { + "w": 200, + "h": 103 + }, + "400": { + "h": 205, + "w": 400 + }, + "full": { + "w": 2050, + "h": 1052 + } + }, + "angle": null, + "y1": null, + "normalize": "0", + "x2": null, + "x1": null, + "y2": null, + "geometry": "0x0-0-0", + "imgid": "3", + "white_magic": "0" + }, + "ingredients_fr": { + "sizes": { + "100": { + "h": 14, + "w": 100 + }, + "200": { + "w": 200, + "h": 28 + }, + "400": { + "w": 400, + "h": 56 + }, + "full": { + "w": 1200, + "h": 167 + } + }, + "rev": "19", + "angle": "90", + "y1": "0", + "normalize": "false", + "x2": "0", + "y2": "0", + "x1": "0", + "geometry": "0x0-0-0", + "white_magic": "false", + "imgid": "5" + }, + "front_fr": { + "geometry": "0x0-0-0", + "imgid": "1", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "y1": null, + "angle": null, + "rev": "4", + "sizes": { + "100": { + "h": "100", + "w": "93" + }, + "200": { + "w": 185, + "h": 200 + }, + "400": { + "w": 371, + "h": 400 + }, + "full": { + "w": 1260, + "h": 1360 + } + } + } + }, + "traces_tags": [ + "en:soybeans" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_from_ingredients": "blé, gluten, thon, thon, poissons, mozzarella, lait", + "additives_prev_tags": [ + "en:e330" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_tags": [ + "en:fish", + "en:gluten", + "en:milk" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "surgelé,carton,boîte,plastique", + "informers_tags": [ + "kiliweb", + "beniben" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.200.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "gluten", + "pulpe-de-tomates-15", + "3", + "thon-a-l-huile-d-olive-12", + "thon-albacore-11", + "7", + "poissons", + "huile-d-olive", + "sel", + "mozzarella-11", + "3", + "ue", + "contient-lait", + "eau", + "oignon-rouge-5", + "5", + "demi-tomate-cerise-mi-sechee-3", + "7", + "olive-denoyautee-assaisonnee-2", + "5", + "olive", + "sel", + "aromes-naturels", + "correcteur-d-acidite", + "acide-citrique", + "huile-d-olive", + "huile-d-olive-vierge-extra", + "sel", + "levure", + "sucre", + "basilic", + "origan" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "labels_prev_tags": [ + "fr:fabrique-en-italie" + ], + "serving_quantity": 0, + "nutrition_grades": "b", + "correctors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "beniben" + ], + "codes_tags": [ + "code-13", + "3270160890279", + "327016089027x", + "32701608902xx", + "3270160890xxx", + "327016089xxxx", + "32701608xxxxx", + "3270160xxxxxx", + "327016xxxxxxx", + "32701xxxxxxxx", + "3270xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "minerals_prev_tags": [], + "emb_codes": "IT 1558/L EC", + "expiration_date": "20/03/2019", + "nutrition_grades_tags": [ + "b" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "last_edit_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ], + "link": "https://www.picard.fr/produits/pizza-thon-tomate-olive-000000000000089027.html", + "languages_codes": { + "fr": 5 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.400.jpg", + "nutrition_grade_fr": "b", + "brands_tags": [ + "picard" + ], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.200.jpg", + "traces_hierarchy": [ + "en:soybeans" + ], + "generic_name_fr": "", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 5, + "emb_codes_orig": "IT 1558/L CE", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "max_imgid": "7", + "nutrition_data_per": "100g", + "additives_debug_tags": [], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:fish", + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e330" + ], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:gluten", + "fr:pulpe-de-tomate", + "fr:_thon_ à l'huile d'olive", + "fr:mozzarella", + "en:water", + "fr:oignon-rouge", + "fr:demi-tomate cerise mi-séchée", + "fr:olive dénoyautée assaisonnée", + "en:olive-oil", + "en:vegetable-oil", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:sugar", + "fr:basilic", + "fr:origan", + "fr:thon-albacore", + "en:tuna", + "en:fish", + "en:fish", + "en:olive-oil", + "en:vegetable-oil", + "en:salt", + "fr:UE", + "fr:contient _lait_", + "en:olive", + "en:salt", + "en:natural-flavour", + "en:flavour", + "en:acidity-regulator", + "en:citric-acid" + ], + "nucleotides_prev_tags": [], + "last_image_t": 1521570051, + "additives_old_n": 1, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.200.jpg", + "stores_debug_tags": [], + "stores_tags": [ + "picard" + ], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [ + "quantity-contains-e" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "labels_prev_hierarchy": [ + "fr:Fabriqué en Italie" + ], + "additives_tags": [ + "en:e330" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.200.jpg", + "generic_name": "", + "nutrition_data_prepared_per": "100g", + "_keywords": [ + "tomate", + "picard", + "union", + "en", + "thon", + "au", + "surgelee", + "olive", + "creative", + "pizza", + "europeenne", + "italie", + "fabrique" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Picard", + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 5 + sugars 1 + sodium 4 - fruits 26.5% 0 - fiber 2 - proteins 5 -- fsa 2 -- fr 2", + "rev": 20, + "id": "3270160890279", + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e330" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/nutrition_fr.11.200.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/089/0279/ingredients_fr.19.100.jpg" + } + } + }, + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "emb_codes_tags": [ + "it-1558-l-ec" + ], + "ingredients_text": "Farine de _blé_ (_gluten_), pulpe de tomates 15,3% , _thon_ à l'huile d'olive 12 % [_thon_ albacore 11,7 % (_poissons_), huile d'olive, sel], _mozzarella_ 11,3 % (UE ; contient _lait_), eau, oignon rouge 5,5 %, demi-tomate cerise mi-séchée 3,7 %, olive dénoyautée assaisonnée* 2,5 % (olive, sel, arômes naturels, correcteur d'acidité : acide citrique), huile d'olive, huile d'olive vierge extra, sel, levure, sucre, basilic, origan.", + "ingredients_text_fr": "Farine de _blé_ (_gluten_), pulpe de tomates 15,3% , _thon_ à l'huile d'olive 12 % [_thon_ albacore 11,7 % (_poissons_), huile d'olive, sel], _mozzarella_ 11,3 % (UE ; contient _lait_), eau, oignon rouge 5,5 %, demi-tomate cerise mi-séchée 3,7 %, olive dénoyautée assaisonnée* 2,5 % (olive, sel, arômes naturels, correcteur d'acidité : acide citrique), huile d'olive, huile d'olive vierge extra, sel, levure, sucre, basilic, origan.", + "nutrition_data_prepared": "", + "lang_debug_tags": [], + "sortkey": 1532288420, + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "product_name": "Pizza Créatives Thon tomate Olive", + "lc": "fr", + "nutrient_levels": { + "sugars": "moderate", + "fat": "moderate", + "saturated-fat": "moderate", + "salt": "moderate" + }, + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "amino_acids_prev_tags": [], + "quantity": "400 g e", + "brands": "Picard", + "countries_debug_tags": [], + "checkers_tags": [], + "entry_dates_tags": [ + "2017-04-30", + "2017-04", + "2017" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3270160890279/pizza-creatives-thon-tomate-olive-picard", + "traces_from_ingredients": "", + "product_name_fr": "Pizza Créatives Thon tomate Olive", + "purchase_places_tags": [ + "france", + "nantes" + ], + "packaging_tags": [ + "surgele", + "carton", + "boite", + "plastique" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/089/0279/front_fr.4.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "ingredients_text_debug_tags": [], + "labels": "Fabriqué en Italie", + "pnns_groups_1": "Composite foods" + }, + { + "ingredients_ids_debug": [ + "farine-de-ble", + "puree-de-tomates-29", + "6", + "mozzarella-11", + "6", + "eau", + "fromage-fondu-5", + "1", + "edam", + "gouda", + "huile-de-colza", + "sel", + "levure", + "dextrose", + "amidon-de-pomme-de-terre-et-de-ble", + "oignons", + "sucre", + "poireaux", + "plantes-aromatiques", + "champignons", + "ail", + "epices", + "basilic-0", + "01" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.200.jpg", + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "nioff", + "jacob80" + ], + "packaging": "Surgelé,Film plastique à jeter,Etui carton à recycler", + "traces_tags": [ + "en:celery" + ], + "images": { + "1": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "uploader": "nioff", + "uploaded_t": 1431606691 + }, + "2": { + "uploaded_t": 1431606712, + "uploader": "nioff", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 3264, + "h": 2448 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + }, + "uploader": "nioff", + "uploaded_t": 1431606724 + }, + "4": { + "uploader": "nioff", + "uploaded_t": 1431606740, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "nioff", + "uploaded_t": 1431606741 + }, + "6": { + "sizes": { + "100": { + "h": 65, + "w": 100 + }, + "400": { + "w": 400, + "h": 261 + }, + "full": { + "h": 791, + "w": 1210 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532247238 + }, + "nutrition_fr": { + "imgid": "6", + "geometry": "0x0-0-0", + "white_magic": "0", + "y2": null, + "x1": null, + "x2": null, + "normalize": "0", + "y1": null, + "angle": null, + "sizes": { + "100": { + "h": 65, + "w": 100 + }, + "200": { + "w": 200, + "h": 131 + }, + "400": { + "h": 261, + "w": 400 + }, + "full": { + "h": 791, + "w": 1210 + } + }, + "rev": "20" + }, + "nutrition": { + "imgid": "3", + "white_magic": "false", + "geometry": "2687x1985-328-179", + "sizes": { + "100": { + "h": 74, + "w": 100 + }, + "200": { + "h": 148, + "w": 200 + }, + "400": { + "w": 400, + "h": 295 + }, + "full": { + "h": 1985, + "w": 2687 + } + }, + "normalize": "false", + "rev": "10" + }, + "ingredients": { + "white_magic": "false", + "imgid": "2", + "geometry": "2978x775-122-390", + "rev": "9", + "normalize": "false", + "sizes": { + "100": { + "h": 26, + "w": 100 + }, + "200": { + "h": 52, + "w": 200 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "w": 2978, + "h": 775 + } + } + }, + "front_fr": { + "white_magic": "false", + "imgid": "4", + "geometry": "2296x2793-86-326", + "sizes": { + "100": { + "w": "82", + "h": "100" + }, + "200": { + "h": 200, + "w": 164 + }, + "400": { + "h": 400, + "w": 329 + }, + "full": { + "h": 2793, + "w": 2296 + } + }, + "normalize": "false", + "rev": "12" + }, + "front": { + "rev": "12", + "normalize": "false", + "sizes": { + "100": { + "h": 100, + "w": 82 + }, + "200": { + "h": 200, + "w": 164 + }, + "400": { + "w": 329, + "h": 400 + }, + "full": { + "h": 2793, + "w": 2296 + } + }, + "geometry": "2296x2793-86-326", + "imgid": "4", + "white_magic": "false" + }, + "ingredients_fr": { + "imgid": "2", + "white_magic": "false", + "geometry": "2978x775-122-390", + "sizes": { + "100": { + "h": 26, + "w": 100 + }, + "200": { + "h": 52, + "w": 200 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "w": 2978, + "h": 775 + } + }, + "rev": "9", + "normalize": "false" + } + }, + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "additives_prev_tags": [], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, mozzarella, fromage, edam, gouda, blé", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "cities_tags": [ + "saint-didier-au-mont-d-or-rhone-france" + ], + "last_modified_by": null, + "origins_tags": [], + "ingredients_n_tags": [ + "20", + "11-20" + ], + "emb_codes_20141016": "EMB 69194C", + "ingredients": [ + { + "id": "en:wheat-flour", + "text": "Farine de _blé_", + "rank": 1 + }, + { + "id": "fr:puree-de-tomate", + "percent": "29.6", + "text": "purée de tomates", + "rank": 2 + }, + { + "text": "_mozzarella_", + "rank": 3, + "id": "fr:mozzarella", + "percent": "11.6" + }, + { + "id": "en:water", + "text": "eau", + "rank": 4 + }, + { + "text": "_fromage_ fondu", + "rank": 5, + "id": "fr:fromage-fondu", + "percent": "5.1" + }, + { + "id": "en:canola-oil", + "rank": 6, + "text": "huile de colza" + }, + { + "text": "sel", + "rank": 7, + "id": "en:salt" + }, + { + "rank": 8, + "text": "levure", + "id": "fr:levure" + }, + { + "id": "en:dextrose", + "text": "dextrose", + "rank": 9 + }, + { + "id": "fr:amidon de pomme de terre et de _blé_", + "text": "amidon de pomme de terre et de _blé_", + "rank": 10 + }, + { + "id": "en:onions", + "rank": 11, + "text": "oignons" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 12 + }, + { + "rank": 13, + "text": "poireaux", + "id": "fr:poireau" + }, + { + "text": "plantes aromatiques", + "rank": 14, + "id": "fr:plante-aromatique" + }, + { + "id": "en:mushroom", + "text": "champignons", + "rank": 15 + }, + { + "rank": 16, + "text": "ail", + "id": "en:garlic" + }, + { + "text": "épices", + "rank": 17, + "id": "en:spice" + }, + { + "percent": "0.01", + "id": "fr:basilic", + "text": "basilic", + "rank": 18 + }, + { + "id": "fr:edam", + "text": "_edam_" + }, + { + "text": "_gouda_", + "id": "fr:gouda" + } + ], + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.100.jpg", + "manufacturing_places": "", + "labels_hierarchy": [ + "fr:triman", + "fr:Cuite sur pierre", + "fr:Info-Tri Point Vert" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "created_t": 1431606690, + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:dextrose : 4", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.400.jpg", + "additives_prev_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.100.jpg", + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.100.jpg", + "ingredients_text_with_allergens": "Farine de blé, purée de tomates 29,6 %, mozzarella 11,6 %, eau, fromage fondu 5,1 % (edam, gouda), huile de colza, sel, levure, dextrose, amidon de pomme de terre et de blé, oignons, sucre, poireaux, plantes aromatiques, champignons, ail, épices, basilic 0,01 %.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé, purée de tomates 29,6 %, mozzarella 11,6 %, eau, fromage fondu 5,1 % (edam, gouda), huile de colza, sel, levure, dextrose, amidon de pomme de terre et de blé, oignons, sucre, poireaux, plantes aromatiques, champignons, ail, épices, basilic 0,01 %.", + "vitamins_tags": [], + "_id": "3350033006683", + "ingredients_tags": [ + "en:wheat-flour", + "fr:puree-de-tomate", + "fr:mozzarella", + "en:water", + "fr:fromage-fondu", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:dextrose", + "fr:amidon-de-pomme-de-terre-et-de-ble", + "en:onions", + "en:sugar", + "fr:poireau", + "fr:plante-aromatique", + "en:mushroom", + "en:garlic", + "en:spice", + "fr:basilic", + "fr:edam", + "fr:gouda" + ], + "interface_version_created": "20120622", + "product_quantity": 350, + "serving_size": "175 g (Cet emballage contient 2 portions de 175 g)", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:margherita-pizza" + ], + "code": "3350033006683", + "editors": [ + "nioff" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:margherita-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "link_debug_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "jacob80", + "nioff", + "sebleouf" + ], + "languages": { + "en:french": 6 + }, + "completed_t": 1431613126, + "allergens": "blé, mozzarella, fromage, edam, gouda, blé", + "last_image_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ], + "traces": "Céleri", + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.400.jpg", + "photographers_tags": [ + "nioff", + "kiliweb" + ], + "labels_tags": [ + "fr:triman", + "fr:cuite-sur-pierre", + "fr:info-tri-point-vert" + ], + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " purée de tomates 29", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " _mozzarella_ 11", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " _fromage_ fondu 5", + ",", + null, + null, + null, + "1 % ", + "(", + "(", + null, + null, + "_edam_", + ",", + null, + null, + null, + " _gouda_)", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " amidon de pomme de terre et de _blé_", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " poireaux", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " champignons", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " basilic 0", + ",", + null, + null, + null, + "01 %." + ], + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:margherita-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1532247241, + "pnns_groups_2": "Pizza pies and quiche", + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas surgelées,Pizzas et tartes surgelées,Pizza margherita", + "manufacturing_places_tags": [], + "ingredients_n": 20, + "ingredients_original_tags": [ + "en:wheat-flour", + "fr:puree-de-tomate", + "fr:mozzarella", + "en:water", + "fr:fromage-fondu", + "en:canola-oil", + "en:salt", + "fr:levure", + "en:dextrose", + "fr:amidon de pomme de terre et de _blé_", + "en:onions", + "en:sugar", + "fr:poireau", + "fr:plante-aromatique", + "en:mushroom", + "en:garlic", + "en:spice", + "fr:basilic", + "fr:edam", + "fr:gouda" + ], + "ingredients_text_debug": "Farine de _blé_, purée de tomates 29,6 %, _mozzarella_ 11,6 %, eau, _fromage_ fondu 5,1 % (_edam_, _gouda_), huile de colza, sel, levure, dextrose, amidon de pomme de terre et de _blé_, oignons, sucre, poireaux, plantes aromatiques, champignons, ail, épices, basilic 0,01 %.", + "ingredients_from_palm_oil_n": 0, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 0, + "additives_n": 0, + "last_editor": null, + "purchase_places": "Paris,France", + "creator": "nioff", + "labels_debug_tags": [ + "added-fr-triman", + "removed-fr-tidy-man" + ], + "nutrition_data_prepared_per_debug_tags": [], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "sodium_100g": 0.393700787401575, + "saturated-fat_100g": 2.5, + "fat_value": "6", + "sodium_serving": 0.689, + "fiber_value": "2.5", + "energy_100g": "900", + "salt_serving": 1.75, + "proteins_100g": 9.1, + "carbohydrates_100g": "30", + "fat_unit": "", + "nutrition-score-uk_100g": "1", + "proteins_value": "9.1", + "proteins": 9.1, + "fat_100g": "6", + "energy": "900", + "nova-group_100g": 4, + "nutrition-score-fr_100g": "1", + "sugars_serving": 7.17, + "fiber_unit": "g", + "saturated-fat_serving": 4.38, + "nova-group_serving": 4, + "nova-group": 4, + "sugars_value": "4.1", + "carbohydrates_unit": "", + "carbohydrates_serving": 52.5, + "fat_serving": 10.5, + "sugars_unit": "", + "nutrition-score-fr": "1", + "proteins_serving": 15.9, + "nutrition-score-uk": "1", + "saturated-fat_unit": "", + "energy_unit": "kcal", + "fiber_serving": 4.38, + "carbohydrates_value": "30", + "proteins_unit": "", + "saturated-fat_value": "2.5", + "salt": "1", + "energy_value": "215", + "fat": "6", + "sugars": 4.1, + "energy_serving": "1580", + "fiber": 2.5, + "salt_value": "1", + "sugars_100g": 4.1, + "saturated-fat": 2.5, + "carbohydrates": "30", + "fiber_100g": 2.5, + "sodium": 0.393700787401575, + "salt_100g": "1", + "salt_unit": "" + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:margherita-pizza" + ], + "interface_version_modified": "20150316.jqm2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.100.jpg", + "update_key": "key_1533677490", + "packaging_tags": [ + "surgele", + "film-plastique-a-jeter", + "etui-carton-a-recycler" + ], + "product_name_fr": "Pizza cuite sur pierre Margherita (Tomate, Mozzarella)", + "purchase_places_tags": [ + "paris", + "france" + ], + "labels": "Tidy man,Cuite sur pierre,Info-Tri Point Vert", + "pnns_groups_1": "Composite foods", + "entry_dates_tags": [ + "2015-05-14", + "2015-05", + "2015" + ], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3350033006683/pizza-cuite-sur-pierre-margherita-tomate-mozzarella-monoprix-p-tit-prix", + "origins_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate" + }, + "lc": "fr", + "product_name": "Pizza cuite sur pierre Margherita (Tomate, Mozzarella)", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "checkers_tags": [], + "brands": "Monoprix P'tit Prix,Monoprix", + "countries_debug_tags": [], + "quantity": "350 g", + "amino_acids_prev_tags": [], + "ingredients_text": "Farine de _blé_, purée de tomates 29,6 %, _mozzarella_ 11,6 %, eau, _fromage_ fondu 5,1 % (_edam_, _gouda_), huile de colza, sel, levure, dextrose, amidon de pomme de terre et de _blé_, oignons, sucre, poireaux, plantes aromatiques, champignons, ail, épices, basilic 0,01 %.", + "emb_codes_tags": [ + "emb-69194c" + ], + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.200.jpg" + } + } + }, + "sortkey": 1532247241, + "lang_debug_tags": [], + "ingredients_text_fr": "Farine de _blé_, purée de tomates 29,6 %, _mozzarella_ 11,6 %, eau, _fromage_ fondu 5,1 % (_edam_, _gouda_), huile de colza, sel, levure, dextrose, amidon de pomme de terre et de _blé_, oignons, sucre, poireaux, plantes aromatiques, champignons, ail, épices, basilic 0,01 %.", + "nutrition_data_prepared": "", + "debug_param_sorted_langs": [ + "fr" + ], + "rev": 20, + "id": "3350033006683", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 6 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 1 -- fr 1", + "_keywords": [ + "salee", + "base", + "tarte", + "man", + "mozzarella", + "tidy", + "de", + "vert", + "quiche", + "pierre", + "prix", + "basilic", + "surgele", + "info-tri", + "plat", + "pizza", + "monoprix", + "garniture", + "cuite", + "prepare", + "surgelee", + "point", + "tit", + "et", + "margherita", + "tomate", + "puree", + "sur" + ], + "stores": "Monoprix", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/ingredients_fr.9.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "generic_name": "Pizza cuite sur pierre, garniture à base de purée de tomates, mozzarella et basilic, surgelée", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.200.jpg", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "labels_prev_hierarchy": [ + "fr:Cuite sur pierre", + "fr:Info-Tri Point Vert", + "fr:Tidy man" + ], + "stores_tags": [ + "monoprix" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "fr:puree-de-tomate", + "fr:mozzarella", + "en:water", + "fr:fromage-fondu", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "fr:levure", + "en:dextrose", + "fr:amidon de pomme de terre et de _blé_", + "en:onions", + "en:sugar", + "fr:poireau", + "fr:plante-aromatique", + "en:mushroom", + "en:garlic", + "en:spice", + "fr:basilic", + "fr:edam", + "fr:gouda" + ], + "manufacturing_places_debug_tags": [], + "additives_old_n": 0, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1532247238, + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [], + "additives_debug_tags": [], + "unknown_ingredients_n": 1, + "unknown_nutrients_tags": [], + "max_imgid": "6", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "emb_codes_orig": "EMB 69194C", + "traces_hierarchy": [ + "en:celery" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/front_fr.12.200.jpg", + "nova_groups": 4, + "generic_name_fr": "Pizza cuite sur pierre, garniture à base de purée de tomates, mozzarella et basilic, surgelée", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/335/003/300/6683/nutrition_fr.20.400.jpg", + "languages_codes": { + "fr": 6 + }, + "brands_tags": [ + "monoprix-p-tit-prix", + "monoprix" + ], + "nutrition_grade_fr": "b", + "new_additives_n": 0, + "nutrition_grades_tags": [ + "b" + ], + "last_edit_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ], + "link": "http://courses.monoprix.fr/RIDE/Pizza-cuite-sur-pierre-Margherita-tomate-mozzarella-surgelee-2049135", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "EMB 69194C", + "nutrition_grades": "b", + "serving_quantity": 175, + "labels_prev_tags": [ + "fr:cuite-sur-pierre", + "fr:info-tri-point-vert", + "fr:tidy-man" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3350033006683", + "335003300668x", + "33500330066xx", + "3350033006xxx", + "335003300xxxx", + "33500330xxxxx", + "3350033xxxxxx", + "335003xxxxxxx", + "33500xxxxxxxx", + "3350xxxxxxxxx", + "335xxxxxxxxxx", + "33xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "nioff", + "jacob80", + "kiliweb", + "sebleouf", + "openfoodfacts-contributors" + ] + }, + { + "labels_prev_hierarchy": [ + "en:organic", + "en:eu-organic", + "fr:ab-agriculture-biologique" + ], + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "countries_hierarchy": [ + "en:belgium", + "en:france", + "en:guadeloupe" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "id": "3560070262137", + "rev": 21, + "stores": "", + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 10 -- fr 10", + "_keywords": [ + "agriculture", + "au", + "et", + "buche", + "biologique", + "prepare", + "europeen", + "surgelee", + "fromage", + "bio", + "surgele", + "plat", + "carrefour", + "pizza", + "chevre", + "de", + "quiche", + "issue", + "ab", + "tarte", + "salee" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "generic_name": "Pizza bûche de chèvre issue de l'agriculture biologique surgelée", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.200.jpg", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "high" + }, + "lc": "fr", + "product_name": "Pizza Bûche de chèvre", + "ingredients_text_fr_debug_tags": [], + "countries": "Belgique,France,Guadeloupe", + "checkers_tags": [], + "brands": "Carrefour BIO,Carrefour", + "countries_debug_tags": [], + "quantity": "360 g", + "amino_acids_prev_tags": [], + "ingredients_text": "Pâte 53% : farine de blé*, eau, huile de tournesol*, levure boulangère, sel.\r\nGarniture 47% : purée de tomate*, bûche de chèvre* 22%, emmental râpé* 22%, huile de tournesol*, sel, ail*, oignon*, origan*, herbes de Provence*, poivre*, piment*. (Pourcentages exprimés sur la garniture).\r\n*biologique. ", + "emb_codes_tags": [ + "emb-26170c" + ], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.200.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.200.jpg" + } + } + }, + "sortkey": 1532246578, + "lang_debug_tags": [], + "ingredients_text_fr": "Pâte 53% : farine de blé*, eau, huile de tournesol*, levure boulangère, sel.\r\nGarniture 47% : purée de tomate*, bûche de chèvre* 22%, emmental râpé* 22%, huile de tournesol*, sel, ail*, oignon*, origan*, herbes de Provence*, poivre*, piment*. (Pourcentages exprimés sur la garniture).\r\n*biologique. ", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.100.jpg", + "interface_version_modified": "20150316.jqm2", + "update_key": "key_1533677490", + "packaging_tags": [ + "carton", + "surgele" + ], + "product_name_fr": "Pizza Bûche de chèvre", + "purchase_places_tags": [ + "guadeloupe" + ], + "pnns_groups_1": "Composite foods", + "labels": "Bio,Bio européen,AB Agriculture Biologique", + "entry_dates_tags": [ + "2014-04-29", + "2014-04", + "2014" + ], + "traces_from_ingredients": "", + "countries_beforescanbot": "Guadeloupe", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3560070262137/pizza-buche-de-chevre-carrefour-bio", + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "EMB 26170C", + "serving_quantity": 180, + "nutrition_grades": "c", + "labels_prev_tags": [ + "en:organic", + "en:eu-organic", + "fr:ab-agriculture-biologique" + ], + "codes_tags": [ + "code-13", + "3560070262137", + "356007026213x", + "35600702621xx", + "3560070262xxx", + "356007026xxxx", + "35600702xxxxx", + "3560070xxxxxx", + "356007xxxxxxx", + "35600xxxxxxxx", + "3560xxxxxxxxx", + "356xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "correctors_tags": [ + "aristoi", + "scanbot", + "segundo", + "kiliweb", + "openfoodfacts-contributors" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.400.jpg", + "languages_codes": { + "fr": 6 + }, + "brands_tags": [ + "carrefour-bio", + "carrefour" + ], + "new_additives_n": 0, + "nutrition_grade_fr": "c", + "nutrition_grades_tags": [ + "c" + ], + "last_edit_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ], + "link": "", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "unique_scans_n": 57, + "unknown_ingredients_n": 3, + "unknown_nutrients_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "7", + "countries_tags": [ + "en:belgium", + "en:france", + "en:guadeloupe" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "EMB 26170C", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.200.jpg", + "nova_groups": 3, + "generic_name_fr": "Pizza bûche de chèvre issue de l'agriculture biologique surgelée", + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "en:paste", + "en:wheat-flour", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "fr:levure-boulangere", + "en:salt", + "fr:garniture", + "fr:puree-de-tomate", + "fr:bûche de chèvre", + "fr:emmental-rape", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:garlic", + "en:onion", + "fr:origan", + "fr:herbe-de-provence", + "en:pepper", + "fr:piment", + "fr:Pourcentages exprimés sur la garniture", + "fr:biologique" + ], + "manufacturing_places_debug_tags": [], + "additives_old_n": 0, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1532246578, + "additives_original_tags": [], + "allergens_hierarchy": [], + "additives_debug_tags": [], + "additives_prev_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.100.jpg", + "quantity_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/nutrition_fr.21.100.jpg", + "ingredients_text_with_allergens": "Pâte 53% : farine de blé*, eau, huile de tournesol*, levure boulangère, sel.\r\nGarniture 47% : purée de tomate*, bûche de chèvre* 22%, emmental râpé* 22%, huile de tournesol*, sel, ail*, oignon*, origan*, herbes de Provence*, poivre*, piment*. (Pourcentages exprimés sur la garniture).\r\n*biologique. ", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "Pâte 53% : farine de blé*, eau, huile de tournesol*, levure boulangère, sel.\r\nGarniture 47% : purée de tomate*, bûche de chèvre* 22%, emmental râpé* 22%, huile de tournesol*, sel, ail*, oignon*, origan*, herbes de Provence*, poivre*, piment*. (Pourcentages exprimés sur la garniture).\r\n*biologique. ", + "vitamins_tags": [], + "_id": "3560070262137", + "ingredients_tags": [ + "en:paste", + "en:wheat-flour", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "fr:levure-boulangere", + "en:salt", + "fr:garniture", + "fr:puree-de-tomate", + "fr:buche-de-chevre", + "fr:emmental-rape", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:garlic", + "en:onion", + "fr:origan", + "fr:herbe-de-provence", + "en:pepper", + "fr:piment", + "fr:pourcentages-exprimes-sur-la-garniture", + "fr:biologique" + ], + "serving_size": "180 g", + "product_quantity": 360, + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:pizzas-au-fromage-de-chevre" + ], + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.100.jpg", + "labels_hierarchy": [ + "en:organic", + "en:eu-organic", + "fr:ab-agriculture-biologique" + ], + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "created_t": 1398722912, + "nova_group_debug": " -- ingredients/en:salt : 3", + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.400.jpg", + "images": { + "1": { + "uploader": "aristoi", + "uploaded_t": 1398722913, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1280, + "h": 720 + } + } + }, + "2": { + "uploaded_t": 1398722930, + "uploader": "aristoi", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 720, + "w": 1280 + } + } + }, + "3": { + "uploader": "aristoi", + "uploaded_t": 1398722938, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1280, + "h": 720 + } + } + }, + "4": { + "uploaded_t": 1398722959, + "uploader": "aristoi", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1280, + "h": 720 + } + } + }, + "5": { + "sizes": { + "100": { + "w": 100, + "h": 95 + }, + "400": { + "h": 379, + "w": 400 + }, + "full": { + "w": 1211, + "h": 1147 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532246574 + }, + "6": { + "sizes": { + "100": { + "w": 100, + "h": 15 + }, + "400": { + "h": 61, + "w": 400 + }, + "full": { + "w": 3143, + "h": 481 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532246576 + }, + "7": { + "sizes": { + "100": { + "w": 100, + "h": 70 + }, + "400": { + "w": 400, + "h": 282 + }, + "full": { + "h": 1200, + "w": 1705 + } + }, + "uploaded_t": 1532246578, + "uploader": "kiliweb" + }, + "front": { + "geometry": "711x681-284-19", + "white_magic": null, + "imgid": "1", + "sizes": { + "100": { + "h": 96, + "w": 100 + }, + "200": { + "w": 200, + "h": 192 + }, + "400": { + "h": 383, + "w": 400 + }, + "full": { + "w": 711, + "h": 681 + } + }, + "normalize": null, + "rev": "7" + }, + "ingredients_fr": { + "y1": null, + "angle": null, + "rev": "19", + "sizes": { + "100": { + "h": 15, + "w": 100 + }, + "200": { + "w": 200, + "h": 31 + }, + "400": { + "h": 61, + "w": 400 + }, + "full": { + "h": 481, + "w": 3143 + } + }, + "geometry": "0x0-0-0", + "imgid": "6", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0" + }, + "ingredients": { + "sizes": { + "100": { + "w": 100, + "h": 18 + }, + "200": { + "w": 200, + "h": 35 + }, + "400": { + "w": 400, + "h": 71 + }, + "full": { + "h": 170, + "w": 963 + } + }, + "normalize": null, + "rev": "9", + "geometry": "963x170-96-204", + "white_magic": null, + "imgid": "2" + }, + "front_fr": { + "x2": null, + "normalize": "0", + "y2": null, + "x1": null, + "white_magic": "0", + "imgid": "5", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "h": "95", + "w": "100" + }, + "200": { + "w": 200, + "h": 189 + }, + "400": { + "h": 379, + "w": 400 + }, + "full": { + "w": 1211, + "h": 1147 + } + }, + "rev": "17", + "angle": null, + "y1": null + }, + "nutrition": { + "imgid": "3", + "white_magic": null, + "geometry": "679x486-41-259", + "rev": "10", + "normalize": null, + "sizes": { + "100": { + "h": 72, + "w": 100 + }, + "200": { + "h": 143, + "w": 200 + }, + "400": { + "h": 286, + "w": 400 + }, + "full": { + "w": 679, + "h": 486 + } + } + }, + "nutrition_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "h": 70, + "w": 100 + }, + "200": { + "h": 141, + "w": 200 + }, + "400": { + "w": 400, + "h": 282 + }, + "full": { + "w": 1705, + "h": 1200 + } + }, + "rev": "21", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "7", + "x2": null, + "normalize": "0", + "y2": null, + "x1": null + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "additives_prev_tags": [], + "allergens_from_ingredients": "", + "allergens_tags": [], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "last_modified_by": null, + "cities_tags": [ + "malissard-drome-france" + ], + "origins_tags": [], + "ingredients_n_tags": [ + "20", + "11-20" + ], + "ingredients": [ + { + "id": "en:paste", + "percent": "53", + "text": "Pâte", + "rank": 1 + }, + { + "id": "en:wheat-flour", + "text": "farine de blé", + "rank": 2 + }, + { + "rank": 3, + "text": "eau", + "id": "en:water" + }, + { + "rank": 4, + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "text": "levure boulangère", + "rank": 5, + "id": "fr:levure-boulangere" + }, + { + "text": "sel", + "rank": 6, + "id": "en:salt" + }, + { + "rank": 7, + "text": "Garniture", + "id": "fr:garniture", + "percent": "47" + }, + { + "text": "purée de tomate", + "rank": 8, + "id": "fr:puree-de-tomate" + }, + { + "rank": 9, + "text": "bûche de chèvre", + "id": "fr:bûche de chèvre", + "percent": "22" + }, + { + "percent": "22", + "id": "fr:emmental-rape", + "text": "emmental râpé", + "rank": 10 + }, + { + "id": "en:sunflower-oil", + "text": "huile de tournesol", + "rank": 11 + }, + { + "id": "en:salt", + "text": "sel", + "rank": 12 + }, + { + "id": "en:garlic", + "rank": 13, + "text": "ail" + }, + { + "id": "en:onion", + "rank": 14, + "text": "oignon" + }, + { + "id": "fr:origan", + "text": "origan", + "rank": 15 + }, + { + "id": "fr:herbe-de-provence", + "text": "herbes de Provence", + "rank": 16 + }, + { + "id": "en:pepper", + "text": "poivre", + "rank": 17 + }, + { + "text": "piment", + "rank": 18, + "id": "fr:piment" + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "text": "Pourcentages exprimés sur la garniture", + "rank": 19 + }, + { + "id": "fr:biologique", + "rank": 20, + "text": "biologique" + } + ], + "emb_codes_20141016": "EMB 26170C", + "ingredients_ids_debug": [ + "pate-53", + "farine-de-ble", + "eau", + "huile-de-tournesol", + "levure-boulangere", + "sel", + "garniture-47", + "puree-de-tomate", + "buche-de-chevre-22", + "emmental-rape-22", + "huile-de-tournesol", + "sel", + "ail", + "oignon", + "origan", + "herbes-de-provence", + "poivre", + "piment", + "pourcentages-exprimes-sur-la-garniture", + "biologique" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/ingredients_fr.19.200.jpg", + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "Carton,Surgelé", + "informers_tags": [ + "aristoi" + ], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "additives_prev_n": 0, + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_n": 0, + "last_editor": null, + "purchase_places": "Guadeloupe", + "creator": "aristoi", + "labels_debug_tags": [], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "fat_serving": 19.1, + "sugars_value": "4.4", + "carbohydrates_unit": "", + "carbohydrates_serving": 46.8, + "energy_unit": "kcal", + "saturated-fat_unit": "", + "nutrition-score-uk": "10", + "carbohydrates_value": "26", + "fiber_serving": 4.68, + "proteins_serving": "18", + "sugars_unit": "", + "nutrition-score-fr": "10", + "sugars": 4.4, + "salt": 0.94, + "proteins_unit": "", + "saturated-fat_value": "5.2", + "fat": 10.6, + "energy_value": "245", + "salt_100g": 0.94, + "carbohydrates": "26", + "sodium": 0.37007874015748, + "fiber_100g": 2.6, + "salt_unit": "", + "energy_serving": "1840", + "saturated-fat": 5.2, + "fiber": 2.6, + "sugars_100g": 4.4, + "salt_value": "0.94", + "fiber_value": "2.6", + "energy_100g": "1025", + "sodium_100g": 0.37007874015748, + "saturated-fat_100g": 5.2, + "sodium_serving": 0.666, + "fat_value": "10.6", + "carbohydrates_100g": "26", + "proteins_100g": "10", + "salt_serving": 1.69, + "nutrition-score-uk_100g": "10", + "fat_unit": "", + "energy": "1025", + "fat_100g": 10.6, + "nova-group_100g": 3, + "proteins_value": "10", + "proteins": "10", + "saturated-fat_serving": 9.36, + "fiber_unit": "g", + "nova-group": 3, + "nova-group_serving": 3, + "nutrition-score-fr_100g": "10", + "sugars_serving": 7.92 + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:Pizzas au fromage de chèvre" + ], + "last_modified_t": 1532246578, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:Pizzas au fromage de chèvre", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas et tartes surgelées,Pizzas,Pizzas au fromage,Pizzas surgelées,Pizzas au fromage de chèvre", + "manufacturing_places_tags": [], + "ingredients_n": 20, + "ingredients_original_tags": [ + "en:paste", + "en:wheat-flour", + "en:water", + "en:sunflower-oil", + "fr:levure-boulangere", + "en:salt", + "fr:garniture", + "fr:puree-de-tomate", + "fr:bûche de chèvre", + "fr:emmental-rape", + "en:sunflower-oil", + "en:salt", + "en:garlic", + "en:onion", + "fr:origan", + "fr:herbe-de-provence", + "en:pepper", + "fr:piment", + "fr:Pourcentages exprimés sur la garniture", + "fr:biologique" + ], + "ingredients_text_debug": "Pâte 53% : farine de blé*, eau, huile de tournesol*, levure boulangère, sel.\r\nGarniture 47% : purée de tomate*, bûche de chèvre* 22%, emmental râpé* 22%, huile de tournesol*, sel, ail*, oignon*, origan*, herbes de Provence*, poivre*, piment*. (Pourcentages exprimés sur la garniture).\r\n*biologique. ", + "ingredients_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/356/007/026/2137/front_fr.17.400.jpg", + "photographers_tags": [ + "aristoi", + "kiliweb" + ], + "labels_tags": [ + "en:organic", + "en:eu-organic", + "fr:ab-agriculture-biologique" + ], + "ingredients_debug": [ + "Pâte 53% ", + ":", + ":", + null, + null, + " farine de blé*", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile de tournesol*", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel", + ".\r", + null, + null, + null, + "\nGarniture 47% ", + ":", + ":", + null, + null, + " purée de tomate*", + ",", + null, + null, + null, + " bûche de chèvre* 22%", + ",", + null, + null, + null, + " emmental râpé* 22%", + ",", + null, + null, + null, + " huile de tournesol*", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " ail*", + ",", + null, + null, + null, + " oignon*", + ",", + null, + null, + null, + " origan*", + ",", + null, + null, + null, + " herbes de Provence*", + ",", + null, + null, + null, + " poivre*", + ",", + null, + null, + null, + " piment*", + ". ", + null, + null, + null, + "", + "(", + "(", + null, + null, + "Pourcentages exprimés sur la garniture)", + ".\r", + null, + null, + null, + "\n*biologique", + ". ", + null, + null, + null, + " " + ], + "code": "3560070262137", + "scans_n": 65, + "editors": [ + "aristoi" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:pizzas-au-fromage-de-chevre", + "fr:pizzas-tartes-salees-et-quiches" + ], + "link_debug_tags": [], + "editors_tags": [ + "aristoi", + "segundo", + "scanbot", + "kiliweb", + "openfoodfacts-contributors" + ], + "languages": { + "en:french": 6 + }, + "completed_t": 1398804345, + "allergens": "", + "last_image_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ] + }, + { + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1532236833, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-ready-made-meals", + "en:pork-meals", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas" + ], + "manufacturing_places_tags": [ + "italie" + ], + "categories": "Surgelés,Plats préparés,Pizzas,Pizzas,Plats préparés surgelés,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas au jambon", + "ingredients_n": 26, + "ingredients_original_tags": [ + "en:wheat-flour", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:milk", + "fr:jambon cru fumé speck", + "en:water", + "fr:roquette", + "fr:tomate cerise confite", + "en:tomato-concentrate", + "en:olive-oil", + "fr:levure", + "en:salt", + "en:onion", + "en:garlic", + "fr:basilic", + "en:pepper", + "en:pork-meat", + "en:salt", + "fr:epice-et-aromate", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "fr:tomates-cerise", + "en:wheat-glucose-syrup", + "en:salt" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Farine de _blé_, pulpe de tomate 15,8 %, mozzarella (_lait_) 15,3 %, jambon cru fumé speck 14,1 % (viande de porc, sel, épices et aromates, antioxydant : ascorbate de sodium, conservateur : nitrite de sodium), eau, roquette 3,5 %, tomate cerise confite 3,5% (tomate cerise, sirop de glucose de blé, sel), concentré de tomate 1,7 %, huile d'olive 1,6 %, levure, sel, oignon, ail, basilic 0,04 %, poivre.", + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 2, + "purchase_places_debug_tags": [], + "additives_n": 2, + "last_editor": "beniben", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-made-in-italy", + "removed-fr-fabrique-en-italie" + ], + "creator": "openfoodfacts-contributors", + "purchase_places": "France", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:frozen-ready-made-meals", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas" + ], + "nutriments": { + "sugars_unit": "g", + "fruits-vegetables-nuts-estimate_serving": "20", + "nutrition-score-fr": "2", + "proteins_serving": 50.8, + "fruits-vegetables-nuts-estimate": "20", + "fiber_serving": 9.2, + "carbohydrates_value": "23", + "nutrition-score-uk": "2", + "fruits-vegetables-nuts-estimate_value": "20", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "carbohydrates_serving": "92", + "sugars_value": "2.3", + "carbohydrates_unit": "g", + "fat_serving": 29.2, + "sugars_100g": 2.3, + "fiber": 2.3, + "salt_value": "1.1", + "saturated-fat": 3.7, + "fruits-vegetables-nuts-estimate_100g": "20", + "energy_serving": "3600", + "salt_unit": "g", + "fiber_100g": 2.3, + "sodium": 0.433070866141732, + "carbohydrates": "23", + "salt_100g": 1.1, + "energy_value": "215", + "fat": 7.3, + "fruits-vegetables-nuts-estimate_unit": "", + "saturated-fat_value": "3.7", + "proteins_unit": "g", + "salt": 1.1, + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "sugars": 2.3, + "sodium_value": "0.433070866141732", + "fat_unit": "g", + "nutrition-score-uk_100g": "2", + "proteins_100g": 12.7, + "salt_serving": 4.4, + "carbohydrates_100g": "23", + "alcohol_value": "0", + "alcohol_unit": "% vol", + "fat_value": "7.3", + "sodium_serving": 1.73, + "sodium_100g": 0.433070866141732, + "saturated-fat_100g": 3.7, + "energy_100g": "900", + "fiber_value": "2.3", + "alcohol_100g": "0", + "sugars_serving": 9.2, + "alcohol": "0", + "nutrition-score-fr_100g": "2", + "nova-group": 3, + "nova-group_serving": 3, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": 14.8, + "proteins": 12.7, + "proteins_value": "12.7", + "nova-group_100g": 3, + "alcohol_serving": "0", + "fat_100g": 7.3, + "energy": "900" + }, + "scans_n": 145, + "code": "3270160717323", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors": [ + "", + "segundo", + "teolemon", + "tacite" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-ready-made-meals", + "en:pork-meals", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "tacite", + "silbon", + "yukafix", + "segundo", + "scanbot", + "kiliweb", + "openfoodfacts-contributors", + "beniben", + "teolemon" + ], + "allergens": "Gluten,Lait", + "completed_t": 1422207154, + "last_image_dates_tags": [ + "2018-05-11", + "2018-05", + "2018" + ], + "brands_debug_tags": [], + "traces": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "vitamins_prev_tags": [], + "photographers_tags": [ + "openfoodfacts-contributors", + "silbon", + "teolemon", + "kiliweb" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.400.jpg", + "labels_tags": [ + "en:green-dot", + "en:made-in-italy" + ], + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " pulpe de tomate 15", + ",", + null, + null, + null, + "8 %", + ",", + null, + null, + null, + " mozzarella ", + "(", + "(", + null, + null, + "_lait_) 15", + ",", + null, + null, + null, + "3 %", + ",", + null, + null, + null, + " jambon cru fumé speck 14", + ",", + null, + null, + null, + "1 % ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " épices et aromates", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ascorbate de sodium", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " nitrite de sodium)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " roquette 3", + ",", + null, + null, + null, + "5 %", + ",", + null, + null, + null, + " tomate cerise confite 3", + ",", + null, + null, + null, + "5% ", + "(", + "(", + null, + null, + "tomate cerise", + ",", + null, + null, + null, + " sirop de glucose de blé", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " concentré de tomate 1", + ",", + null, + null, + null, + "7 %", + ",", + null, + null, + null, + " huile d'olive 1", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " oignon", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " basilic 0", + ",", + null, + null, + null, + "04 %", + ",", + null, + null, + null, + " poivre." + ], + "origins": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "en:green-dot", + "en:made-in-italy" + ], + "manufacturing_places": "Italie", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.100.jpg", + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1405036257, + "nova_group_debug": " -- ingredients/en:salt : 3", + "lang": "fr", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.400.jpg", + "additives_prev_original_tags": [ + "en:e301", + "en:e250" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.100.jpg", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.100.jpg", + "ingredients_text_with_allergens": "Farine de blé, pulpe de tomate 15,8 %, mozzarella (lait) 15,3 %, jambon cru fumé speck 14,1 % (viande de porc, sel, épices et aromates, antioxydant: ascorbate de sodium, conservateur: nitrite de sodium), eau, roquette 3,5 %, tomate cerise confite 3,5% (tomate cerise, sirop de glucose de blé, sel), concentré de tomate 1,7 %, huile d'olive 1,6 %, levure, sel, oignon, ail, basilic 0,04 %, poivre.", + "quantity_debug_tags": [], + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé, pulpe de tomate 15,8 %, mozzarella (lait) 15,3 %, jambon cru fumé speck 14,1 % (viande de porc, sel, épices et aromates, antioxydant: ascorbate de sodium, conservateur: nitrite de sodium), eau, roquette 3,5 %, tomate cerise confite 3,5% (tomate cerise, sirop de glucose de blé, sel), concentré de tomate 1,7 %, huile d'olive 1,6 %, levure, sel, oignon, ail, basilic 0,04 %, poivre.", + "vitamins_tags": [], + "ingredients_tags": [ + "en:wheat-flour", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:milk", + "fr:jambon-cru-fume-speck", + "en:water", + "fr:roquette", + "fr:tomate-cerise-confite", + "en:tomato-concentrate", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "en:onion", + "en:garlic", + "fr:basilic", + "en:pepper", + "en:pork-meat", + "en:meat", + "en:salt", + "fr:epice-et-aromate", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "fr:tomates-cerise", + "en:wheat-glucose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:salt" + ], + "_id": "3270160717323", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:frozen-ready-made-meals", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:ham-pizzas" + ], + "serving_size": "400 g", + "product_quantity": 400, + "interface_version_created": "20120622", + "ingredients_ids_debug": [ + "farine-de-ble", + "pulpe-de-tomate-15", + "8", + "mozzarella", + "lait-15", + "3", + "jambon-cru-fume-speck-14", + "1", + "viande-de-porc", + "sel", + "epices-et-aromates", + "antioxydant", + "ascorbate-de-sodium", + "conservateur", + "nitrite-de-sodium", + "eau", + "roquette-3", + "5", + "tomate-cerise-confite-3", + "5", + "tomate-cerise", + "sirop-de-glucose-de-ble", + "sel", + "concentre-de-tomate-1", + "7", + "huile-d-olive-1", + "6", + "levure", + "sel", + "oignon", + "ail", + "basilic-0", + "04", + "poivre" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.200.jpg", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "Carton,Surgelé,Plastique", + "informers_tags": [ + "openfoodfacts-contributors", + "teolemon", + "tacite", + "silbon", + "beniben" + ], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1405036257, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2592, + "w": 1944 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2592, + "w": 1944 + } + }, + "uploaded_t": 1405036285, + "uploader": "openfoodfacts-contributors" + }, + "3": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1944, + "w": 2592 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1405036297 + }, + "4": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + }, + "uploader": "silbon", + "uploaded_t": "1454168252" + }, + "5": { + "uploaded_t": "1454168269", + "uploader": "silbon", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "6": { + "uploaded_t": "1454168279", + "uploader": "silbon", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "7": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "h": 1936, + "w": 2592 + } + }, + "uploader": "teolemon", + "uploaded_t": "1495713117" + }, + "8": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 299, + "h": 400 + }, + "full": { + "h": 2592, + "w": 1936 + } + }, + "uploader": "teolemon", + "uploaded_t": "1495713142" + }, + "9": { + "sizes": { + "100": { + "w": 97, + "h": 100 + }, + "400": { + "w": 388, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1164 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1526060837" + }, + "ingredients": { + "white_magic": "false", + "geometry": "1930x315-70-281", + "imgid": "4", + "rev": "16", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 16 + }, + "200": { + "h": 33, + "w": 200 + }, + "400": { + "w": 400, + "h": 65 + }, + "full": { + "h": 315, + "w": 1930 + } + } + }, + "front_fr": { + "sizes": { + "100": { + "h": "100", + "w": "99" + }, + "200": { + "w": 199, + "h": 200 + }, + "400": { + "w": 398, + "h": 400 + }, + "full": { + "h": 1620, + "w": 1611 + } + }, + "rev": "27", + "y1": "86.03124999999999", + "angle": "90", + "y2": "336.0234375000001", + "x1": "25.585937499999982", + "x2": "274.3945312500001", + "normalize": "false", + "white_magic": "false", + "imgid": "7", + "geometry": "1611x1620-165-557" + }, + "ingredients_fr": { + "imgid": "4", + "white_magic": "false", + "geometry": "1930x315-70-281", + "sizes": { + "100": { + "w": 100, + "h": 16 + }, + "200": { + "h": 33, + "w": 200 + }, + "400": { + "h": 65, + "w": 400 + }, + "full": { + "w": 1930, + "h": 315 + } + }, + "rev": "16", + "normalize": "false" + }, + "front": { + "imgid": "3", + "white_magic": null, + "geometry": "0x0--6--6", + "rev": "7", + "normalize": null, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1944, + "w": 2592 + } + } + }, + "nutrition_fr": { + "white_magic": "false", + "imgid": "6", + "geometry": "1880x1030-90-72", + "normalize": "false", + "rev": "17", + "sizes": { + "100": { + "h": 55, + "w": 100 + }, + "200": { + "w": 200, + "h": 110 + }, + "400": { + "h": 219, + "w": 400 + }, + "full": { + "h": 1030, + "w": 1880 + } + } + }, + "nutrition": { + "normalize": "false", + "rev": "17", + "sizes": { + "100": { + "w": 100, + "h": 55 + }, + "200": { + "h": 110, + "w": 200 + }, + "400": { + "w": 400, + "h": 219 + }, + "full": { + "w": 1880, + "h": 1030 + } + }, + "geometry": "1880x1030-90-72", + "imgid": "6", + "white_magic": "false" + } + }, + "serving_size_debug_tags": [], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_from_ingredients": "blé, lait, mozzarella", + "additives_prev_tags": [ + "en:e250", + "en:e301" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "beniben", + "ingredients_n_tags": [ + "26", + "21-30" + ], + "emb_codes_20141016": "", + "ingredients": [ + { + "id": "en:wheat-flour", + "text": "Farine de _blé_", + "rank": 1 + }, + { + "rank": 2, + "text": "pulpe de tomate", + "id": "fr:pulpe-de-tomate", + "percent": "15.8" + }, + { + "percent": "15.3", + "id": "fr:mozzarella", + "rank": 3, + "text": "mozzarella" + }, + { + "text": "_lait_", + "rank": 4, + "id": "en:milk" + }, + { + "rank": 5, + "text": "jambon cru fumé speck", + "id": "fr:jambon cru fumé speck", + "percent": "14.1" + }, + { + "id": "en:water", + "rank": 6, + "text": "eau" + }, + { + "text": "roquette", + "rank": 7, + "percent": "3.5", + "id": "fr:roquette" + }, + { + "percent": "3.5", + "id": "fr:tomate cerise confite", + "rank": 8, + "text": "tomate cerise confite" + }, + { + "text": "concentré de tomate", + "rank": 9, + "id": "en:tomato-concentrate", + "percent": "1.7" + }, + { + "id": "en:olive-oil", + "percent": "1.6", + "rank": 10, + "text": "huile d'olive" + }, + { + "text": "levure", + "rank": 11, + "id": "fr:levure" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 12 + }, + { + "id": "en:onion", + "rank": 13, + "text": "oignon" + }, + { + "id": "en:garlic", + "text": "ail", + "rank": 14 + }, + { + "id": "fr:basilic", + "percent": "0.04", + "rank": 15, + "text": "basilic" + }, + { + "text": "poivre", + "rank": 16, + "id": "en:pepper" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "épices et aromates", + "id": "fr:epice-et-aromate" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "ascorbate de sodium", + "id": "en:sodium-ascorbate" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "text": "nitrite de sodium", + "id": "fr:nitrite-de-sodium" + }, + { + "id": "fr:tomates-cerise", + "text": "tomate cerise" + }, + { + "id": "en:wheat-glucose-syrup", + "text": "sirop de glucose de blé" + }, + { + "text": "sel", + "id": "en:salt" + } + ], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.400.jpg", + "new_additives_n": 1, + "brands_tags": [ + "picard" + ], + "nutrition_grade_fr": "b", + "nutrition_grades_tags": [ + "b" + ], + "last_edit_dates_tags": [ + "2018-07-22", + "2018-07", + "2018" + ], + "link": "", + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "minerals_prev_tags": [], + "emb_codes": "IT 1558/L EC", + "expiration_date": "17/11/2018", + "serving_quantity": 400, + "nutrition_grades": "b", + "labels_prev_tags": [ + "en:green-dot", + "fr:fabrique-en-italie" + ], + "nova_group": 3, + "codes_tags": [ + "code-13", + "3270160717323", + "327016071732x", + "32701607173xx", + "3270160717xxx", + "327016071xxxx", + "32701607xxxxx", + "3270160xxxxxx", + "327016xxxxxxx", + "32701xxxxxxxx", + "3270xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "teolemon", + "tacite", + "segundo", + "silbon", + "scanbot", + "kiliweb", + "openfoodfacts-contributors", + "yukafix", + "beniben" + ], + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "fr:pulpe-de-tomate", + "fr:mozzarella", + "en:milk", + "fr:jambon cru fumé speck", + "en:water", + "fr:roquette", + "fr:tomate cerise confite", + "en:tomato-concentrate", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "en:onion", + "en:garlic", + "fr:basilic", + "en:pepper", + "en:pork-meat", + "en:meat", + "en:salt", + "fr:epice-et-aromate", + "en:antioxidant", + "en:sodium-ascorbate", + "en:preservative", + "fr:nitrite-de-sodium", + "fr:tomates-cerise", + "en:wheat-glucose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:salt" + ], + "last_image_t": 1526060838, + "additives_old_n": 2, + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e301", + "en:e250" + ], + "nutrition_data": "on", + "additives_debug_tags": [], + "unknown_ingredients_n": 2, + "unique_scans_n": 125, + "unknown_nutrients_tags": [], + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france", + "en:switzerland" + ], + "nutrition_data_per": "100g", + "max_imgid": "9", + "emb_codes_orig": "IT 1558/L EC", + "traces_hierarchy": [], + "nova_groups": 3, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.200.jpg", + "generic_name_fr": "Pizza surgelée", + "debug_param_sorted_langs": [ + "fr" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 4 - fruits 20% 0 - fiber 2 - proteins 5 -- fsa 2 -- fr 2", + "_keywords": [ + "italie", + "fabrique", + "tarte", + "speck", + "jambon", + "mozzarella", + "en", + "vert", + "roquette", + "pizza", + "surgele", + "plat", + "point", + "surgelee", + "prepare", + "au", + "et", + "picard" + ], + "stores": "Picard", + "rev": 28, + "id": "3270160717323", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.400.jpg", + "additives_old_tags": [ + "en:e301", + "en:e250" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.200.jpg", + "generic_name": "Pizza surgelée", + "additives_tags": [ + "en:e250", + "en:e301" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "labels_prev_hierarchy": [ + "en:green-dot", + "fr:Fabriqué en Italie" + ], + "stores_tags": [ + "picard" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.200.jpg", + "stores_debug_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france", + "en:switzerland" + ], + "packaging_tags": [ + "carton", + "surgele", + "plastique" + ], + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.100.jpg", + "interface_version_modified": "20120622", + "product_name_fr": "Pizza surgelée Jambon Speck Roquette Mozzarella", + "purchase_places_tags": [ + "france" + ], + "labels": "Fabriqué en Italie,Point Vert", + "pnns_groups_1": "Composite foods", + "entry_dates_tags": [ + "2014-07-11", + "2014-07", + "2014" + ], + "countries_beforescanbot": "France", + "traces_from_ingredients": "", + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3270160717323/pizza-surgelee-jambon-speck-roquette-mozzarella-picard", + "nutrient_levels": { + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "ingredients_text_fr_debug_tags": [], + "countries": "France,Suisse", + "lc": "fr", + "product_name": "Pizza surgelée Jambon Speck Roquette Mozzarella", + "brands": "Picard", + "countries_debug_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "400 g e", + "emb_codes_tags": [ + "it-1558-l-ec" + ], + "ingredients_text": "Farine de _blé_, pulpe de tomate 15,8 %, mozzarella (_lait_) 15,3 %, jambon cru fumé speck 14,1 % (viande de porc, sel, épices et aromates, antioxydant: ascorbate de sodium, conservateur: nitrite de sodium), eau, roquette 3,5 %, tomate cerise confite 3,5% (tomate cerise, sirop de glucose de blé, sel), concentré de tomate 1,7 %, huile d'olive 1,6 %, levure, sel, oignon, ail, basilic 0,04 %, poivre.", + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/ingredients_fr.16.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/nutrition_fr.17.200.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/016/071/7323/front_fr.27.100.jpg" + } + } + }, + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "ingredients_text_fr": "Farine de _blé_, pulpe de tomate 15,8 %, mozzarella (_lait_) 15,3 %, jambon cru fumé speck 14,1 % (viande de porc, sel, épices et aromates, antioxydant: ascorbate de sodium, conservateur: nitrite de sodium), eau, roquette 3,5 %, tomate cerise confite 3,5% (tomate cerise, sirop de glucose de blé, sel), concentré de tomate 1,7 %, huile d'olive 1,6 %, levure, sel, oignon, ail, basilic 0,04 %, poivre.", + "nutrition_data_prepared": "", + "sortkey": 1532236833, + "lang_debug_tags": [] + } + ] +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-2.json b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-2.json new file mode 100644 index 0000000..c2ad557 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-2.json @@ -0,0 +1,10288 @@ +{ + "page": "2", + "products": [ + { + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.200.jpg", + "nutriments": { + "salt_unit": "", + "carbohydrates_unit": "", + "fat_serving": "", + "sugars_value": "5", + "sugars": 5, + "proteins_100g": 20, + "proteins_value": "20", + "proteins_unit": "", + "sugars_100g": 5, + "energy_unit": "kcal", + "proteins": 20, + "energy_serving": "", + "saturated-fat": 3.75, + "sugars_serving": "", + "salt_100g": 25, + "fat_value": "50", + "carbohydrates_100g": 22.5, + "sugars_unit": "", + "carbohydrates": 22.5, + "carbohydrates_value": "22.5", + "fat_100g": 50, + "energy_100g": 2406, + "saturated-fat_100g": 3.75, + "saturated-fat_value": "3.75", + "fat": 50, + "energy_value": "575", + "sodium": 9.84251968503937, + "proteins_serving": "", + "salt": 25, + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fat_unit": "", + "sodium_100g": 9.84251968503937, + "salt_serving": "", + "energy": 2406, + "sodium_serving": "", + "salt_value": "25", + "carbohydrates_serving": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.400.jpg", + "quality_tags": [], + "product_name_fr": "Natural almonds", + "additives_prev_original_tags": [], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "allergens_tags": [], + "traces_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Natural almonds", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.200.jpg", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "0069467908182", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.100.jpg", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "max_imgid": "2", + "url": "https://ssl-api.openfoodfacts.org/product/0069467908182/natural-almonds", + "ingredients_text_with_allergens": null, + "last_editor": "kiliweb", + "checkers_tags": [], + "minerals_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + 69467908182, + "006946790818x", + "00694679081xx", + "0069467908xxx", + "006946790xxxx", + "00694679xxxxx", + "0069467xxxxxx", + "006946xxxxxxx", + "00694xxxxxxxx", + "0069xxxxxxxxx", + "006xxxxxxxxxx", + "00xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "_id": "0069467908182", + "_keywords": [ + "almond", + "natural" + ], + "ingredients_debug": [], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "additives_old_tags": [], + "last_modified_t": 1533394148, + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "0069467908182", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "allergens_hierarchy": [], + "ingredients": [], + "rev": 8, + "minerals_prev_tags": [], + "sortkey": 533394148, + "lang": "fr", + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nutrient_levels": {}, + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "image_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.400.jpg", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "last_image_t": 1533393766, + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "additives_original_tags": [], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393764, + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 674, + "h": 1200 + } + } + }, + "2": { + "uploaded_t": 1533393766, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 40, + "w": 100 + }, + "400": { + "w": 400, + "h": 162 + }, + "full": { + "w": 1704, + "h": 689 + } + } + }, + "ingredients_fr": { + "normalize": "0", + "rev": "7", + "angle": null, + "imgid": "2", + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 40 + }, + "200": { + "w": 200, + "h": 81 + }, + "400": { + "w": 400, + "h": 162 + }, + "full": { + "h": 689, + "w": 1704 + } + }, + "x2": null, + "y2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0" + }, + "front_fr": { + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "56", + "h": "100" + }, + "200": { + "h": 200, + "w": 112 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 1200, + "w": 674 + } + }, + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4" + } + }, + "ingredients_hierarchy": [], + "created_t": 1533393761, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/006/946/790/8182/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "last_modified_by": "kiliweb" + }, + { + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "nutrition_data_per": "100g", + "additives_original_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.100.jpg" + } + } + }, + "last_modified_by": null, + "ingredients_hierarchy": [], + "created_t": 1533394064, + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "uploaded_t": 1533394067, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 85, + "w": 100 + }, + "400": { + "h": 340, + "w": 400 + }, + "full": { + "w": 1410, + "h": 1200 + } + } + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": 1533394070, + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "h": 264, + "w": 400 + }, + "full": { + "h": 1076, + "w": 1628 + } + } + }, + "front_fr": { + "imgid": "1", + "normalize": "0", + "rev": "4", + "angle": null, + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": "85", + "w": "100" + }, + "200": { + "h": 170, + "w": 200 + }, + "400": { + "h": 340, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1410 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null + }, + "ingredients_fr": { + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": 66, + "w": 100 + }, + "200": { + "w": 200, + "h": 132 + }, + "400": { + "h": 264, + "w": 400 + }, + "full": { + "w": 1628, + "h": 1076 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "2", + "angle": null, + "rev": "7", + "normalize": "0" + } + }, + "ingredients_tags": [], + "sortkey": 533394072, + "allergens_hierarchy": [], + "ingredients": [], + "rev": 7, + "minerals_prev_tags": [], + "id": "5425006847889", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.400.jpg", + "last_image_t": 1533394070, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "minerals_tags": [], + "checkers_tags": [], + "max_imgid": "2", + "url": "https://ssl-api.openfoodfacts.org/product/5425006847889/pain-essenien-goji-chia", + "ingredients_text_with_allergens": null, + "last_editor": null, + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "5425006847889", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "additives_old_tags": [], + "last_modified_t": 1533394072, + "_keywords": [ + "chia", + "pain", + "essenien", + "goji" + ], + "_id": "5425006847889", + "ingredients_debug": [], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "5425006847889", + "542500684788x", + "54250068478xx", + "5425006847xxx", + "542500684xxxx", + "54250068xxxxx", + "5425006xxxxxx", + "542500xxxxxxx", + "54250xxxxxxxx", + "5425xxxxxxxxx", + "542xxxxxxxxxx", + "54xxxxxxxxxxx", + "5xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "allergens_tags": [], + "traces_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "additives_prev_original_tags": [], + "product_name_fr": "Pain essénien goji & chia", + "quality_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.200.jpg", + "nutriments": { + "sugars_100g": 17.6, + "energy_unit": "kcal", + "proteins": 9.9, + "proteins_unit": "", + "sugars_value": "17.6", + "sugars": 17.6, + "proteins_100g": 9.9, + "proteins_value": "9.9", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "fat_value": "2.9", + "carbohydrates_100g": 47.5, + "salt_100g": 0.022, + "energy_serving": "", + "saturated-fat": 0.45, + "sugars_serving": "", + "sodium": 0.00866141732283465, + "fat_100g": 2.9, + "energy_100g": "1000", + "saturated-fat_value": "0.45", + "fat": 2.9, + "saturated-fat_100g": 0.45, + "energy_value": "239", + "carbohydrates_value": "47.5", + "sugars_unit": "", + "carbohydrates": 47.5, + "salt_value": "0.022", + "carbohydrates_serving": "", + "salt_serving": "", + "energy": "1000", + "sodium_serving": "", + "fat_unit": "", + "sodium_100g": 0.00866141732283465, + "salt": 0.022, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.400.jpg", + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "product_name": "Pain essénien goji & chia", + "nutrient_levels_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/542/500/684/7889/ingredients_fr.7.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ] + }, + { + "ingredients_original_tags": [ + "en:Carbonated water", + "en:sugar", + "en:acid", + "en:citric-acid", + "en:flavour", + "en:preservative", + "en:e211", + "en:colour", + "en:including caffeine", + "en:ammonium ferric citrate & quinine", + "en:sunset yellow", + "en:ponceau 4r" + ], + "unknown_nutrients_tags": [], + "languages_codes": { + "fr": 1, + "en": 3 + }, + "additives_prev_n": 3, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.100.jpg", + "product_name": "Irn Bru", + "nutrient_levels_tags": [], + "ingredients_text_en": "Carbonated water, sugar, acid (citric acid), flavourings (including caffeine, ammonium ferric citrate & quinine), preservative (e211), colours (sunset yellow, ponceau 4r).", + "ingredients_from_palm_oil_tags": [], + "countries": "en:france, en:united-states", + "additives_tags": [ + "en:e124", + "en:e211", + "en:e330" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "traces_tags": [], + "allergens_tags": [], + "nutriments": { + "saturated-fat": 0, + "sugars_serving": 4.7, + "energy_serving": 84, + "salt_100g": 0, + "carbohydrates_100g": 4.8, + "fat_value": "0", + "carbohydrates_unit": "", + "fat_serving": 0, + "salt_unit": "", + "proteins_100g": 0, + "proteins_value": "0", + "sugars": 4.7, + "sugars_value": "4.7", + "proteins_unit": "", + "energy_unit": "kcal", + "proteins": 0, + "sugars_100g": 4.7, + "saturated-fat_unit": "", + "saturated-fat_serving": 0, + "salt": 0, + "proteins_serving": 0, + "fat_unit": "", + "sodium_100g": 0, + "sodium_serving": 0, + "salt_serving": 0, + "energy": 84, + "carbohydrates_serving": 4.8, + "salt_value": "0", + "carbohydrates": 4.8, + "sugars_unit": "", + "carbohydrates_value": "4.8", + "saturated-fat_100g": 0, + "saturated-fat_value": "0", + "fat": 0, + "energy_value": "20", + "fat_100g": 0, + "energy_100g": 84, + "sodium": 0 + }, + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:english", + "en:french", + "en:2", + "en:multilingual" + ], + "unknown_ingredients_n": 6, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "additives_prev_original_tags": [ + "en:e330", + "en:e211", + "en:e124" + ], + "quality_tags": [ + "ingredients-50-percent-unknown" + ], + "ingredients_text_debug": "Carbonated water, sugar, acid (citric acid), flavourings (including caffeine, ammonium ferric citrate & quinine), preservative ( - e211 - ), colours (sunset yellow, ponceau 4r).", + "complete": 0, + "languages": { + "en:french": 1, + "en:english": 3 + }, + "_keywords": [ + "bru", + "irn", + "barr" + ], + "ingredients_debug": [ + "Carbonated water", + ",", + null, + null, + null, + " sugar", + ",", + null, + null, + null, + " acid ", + "(", + "(", + null, + null, + "citric acid)", + ",", + null, + null, + null, + " flavourings ", + "(", + "(", + null, + null, + "including caffeine", + ",", + null, + null, + null, + " ammonium ferric citrate & quinine)", + ",", + null, + null, + null, + " preservative ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e211", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " colours ", + "(", + "(", + null, + null, + "sunset yellow", + ",", + null, + null, + null, + " ponceau 4r)." + ], + "_id": "50107438", + "last_modified_t": 1533394036, + "additives_old_tags": [ + "en:e330", + "en:e211", + "en:e110", + "en:e124" + ], + "additives_n": 3, + "vitamins_prev_tags": [], + "codes_tags": [ + "code-8", + 50107438, + "5010743x", + "501074xx", + "50107xxx", + "5010xxxx", + "501xxxxx", + "50xxxxxx", + "5xxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "nutrition_score_debug": "no score when the product does not have a category", + "brands": "Barr", + "ingredients_ids_debug": [ + "carbonated-water", + "sugar", + "acid", + "citric-acid", + "flavourings", + "including-caffeine", + "ammonium-ferric-citrate-quinine", + "preservative", + "e211", + "colours", + "sunset-yellow", + "ponceau-4r" + ], + "allergens": "", + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:united-states" + ], + "ingredients_text_with_allergens_fr": null, + "last_editor": "kiliweb", + "url": "https://ssl-api.openfoodfacts.org/product/50107438/irn-bru-barr", + "ingredients_text_with_allergens": "Carbonated water, sugar, acid (citric acid), flavourings (including caffeine, ammonium ferric citrate & quinine), preservative (e211), colours (sunset yellow, ponceau 4r).", + "max_imgid": "1", + "minerals_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "code": "50107438", + "last_image_dates_tags": [ + "2018-05-02", + "2018-05", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have a category", + "ingredients_text": "Carbonated water, sugar, acid (citric acid), flavourings (including caffeine, ammonium ferric citrate & quinine), preservative (e211), colours (sunset yellow, ponceau 4r).", + "sources": [ + { + "url": "https://api.nal.usda.gov/ndb/reports/?ndbno=45240332&type=f&format=json&api_key=DEMO_KEY", + "import_t": 1489143351, + "id": "usda-ndb", + "fields": [ + "product_name_en", + "brands", + "countries", + "serving_size", + "ingredients_text_en", + "nutrients.energy", + "nutrients.proteins", + "nutrients.fat", + "nutrients.carbohydrates", + "nutrients.sugars", + "nutrients.saturated-fat" + ], + "images": [] + } + ], + "update_key": "nova3", + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "additives_old_n": 4, + "lc": "en", + "interface_version_created": "import_us_ndb.pl - version 2017/03/04", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "additives_debug_tags": [], + "entry_dates_tags": [ + "2017-03-10", + "2017-03", + "2017" + ], + "last_image_t": 1525278773, + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "lang": "en", + "ingredients_n_tags": [ + "12", + "11-20" + ], + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "correctors_tags": [ + "kiliweb", + "yukafix" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france", + "en:united-states" + ], + "rev": 7, + "minerals_prev_tags": [], + "product_name_en": "Irn Bru", + "allergens_hierarchy": [], + "ingredients": [ + { + "text": "Carbonated water", + "rank": 1, + "id": "en:Carbonated water" + }, + { + "id": "en:sugar", + "text": "sugar", + "rank": 2 + }, + { + "text": "acid", + "rank": 3, + "id": "en:acid" + }, + { + "id": "en:citric-acid", + "text": "citric acid", + "rank": 4 + }, + { + "rank": 5, + "text": "flavourings", + "id": "en:flavour" + }, + { + "id": "en:preservative", + "text": "preservative", + "rank": 6 + }, + { + "id": "en:e211", + "text": "e211", + "rank": 7 + }, + { + "text": "colours", + "rank": 8, + "id": "en:colour" + }, + { + "id": "en:including caffeine", + "text": "including caffeine" + }, + { + "text": "ammonium ferric citrate & quinine", + "id": "en:ammonium ferric citrate & quinine" + }, + { + "text": "sunset yellow", + "id": "en:sunset yellow" + }, + { + "text": "ponceau 4r", + "id": "en:ponceau 4r" + } + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_tags": [ + "barr" + ], + "sortkey": 533394036, + "countries_debug_tags": [], + "serving_quantity": 100, + "nutrition_grades_tags": [ + "not-applicable" + ], + "ingredients_from_palm_oil_n": 0, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "ingredients_n": 12, + "id": "50107438", + "serving_size": "100 ml (100 ml)", + "languages_hierarchy": [ + "en:english", + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.400.jpg", + "nutrition_data_per_debug_tags": [], + "created_t": 1489143351, + "ingredients_hierarchy": [ + "en:Carbonated water", + "en:sugar", + "en:acid", + "en:citric-acid", + "en:flavour", + "en:preservative", + "en:e211", + "en:colour", + "en:including caffeine", + "en:ammonium ferric citrate & quinine", + "en:sunset yellow", + "en:ponceau 4r" + ], + "last_modified_by": "kiliweb", + "ingredients_tags": [ + "en:carbonated-water", + "en:sugar", + "en:acid", + "en:citric-acid", + "en:flavour", + "en:preservative", + "en:e211", + "en:colour", + "en:including-caffeine", + "en:ammonium-ferric-citrate-quinine", + "en:sunset-yellow", + "en:ponceau-4r" + ], + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 97 + }, + "400": { + "w": 400, + "h": 389 + }, + "full": { + "w": 1234, + "h": 1200 + } + }, + "uploaded_t": "1525278773", + "uploader": "kiliweb" + }, + "ingredients_en": { + "imgid": "1", + "angle": 0, + "rev": "4", + "normalize": null, + "y2": -1, + "x2": -1, + "sizes": { + "100": { + "h": 97, + "w": 100 + }, + "200": { + "h": 194, + "w": 200 + }, + "400": { + "w": 400, + "h": 389 + }, + "full": { + "w": 1234, + "h": 1200 + } + }, + "y1": -1, + "geometry": "0x0--3--3", + "x1": -1, + "white_magic": null + }, + "ingredients_fr": { + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 100, + "h": 97 + }, + "200": { + "h": 194, + "w": 200 + }, + "400": { + "w": 400, + "h": 389 + }, + "full": { + "h": 1200, + "w": 1234 + } + }, + "y1": null, + "imgid": "1", + "angle": null, + "rev": "5", + "normalize": "0" + } + }, + "ingredients_text_with_allergens_en": "Carbonated water, sugar, acid (citric acid), flavourings (including caffeine, ammonium ferric citrate & quinine), preservative (e211), colours (sunset yellow, ponceau 4r).", + "creator": "usda-ndb-import", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.200.jpg", + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [ + "en:e124", + "en:e211", + "en:e330" + ], + "amino_acids_tags": [], + "brands_debug_tags": [], + "selected_images": { + "ingredients": { + "display": { + "en": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.400.jpg", + "fr": "https://static.openfoodfacts.org/images/products/50107438/ingredients_fr.5.400.jpg" + }, + "thumb": { + "en": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.100.jpg", + "fr": "https://static.openfoodfacts.org/images/products/50107438/ingredients_fr.5.100.jpg" + }, + "small": { + "en": "https://static.openfoodfacts.org/images/products/50107438/ingredients_en.4.200.jpg", + "fr": "https://static.openfoodfacts.org/images/products/50107438/ingredients_fr.5.200.jpg" + } + } + }, + "informers_tags": [ + "usda-ndb-import", + "kiliweb", + "openfoodfacts-contributors" + ], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "usda-ndb-import", + "yukafix", + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_original_tags": [ + "en:e330", + "en:e211", + "en:e124" + ], + "nutrition_data_per": "100g" + }, + { + "labels": "Charte LU Harmony,Point Vert,Fabriqué en France,Blé français", + "emb_codes": "", + "ingredients_n": "18", + "id": "7622210476296", + "emb_codes_debug_tags": [], + "serving_quantity": 7.3, + "emb_codes_orig": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "sortkey": 1533394010, + "brands_tags": [ + "lu", + "mondelez" + ], + "rev": 30, + "minerals_prev_tags": [], + "completed_t": 1528548257, + "allergens_hierarchy": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "beniben" + ], + "stores_tags": [ + "auchan" + ], + "interface_version_modified": "20150316.jqm2", + "ingredients_n_tags": [ + "18", + "11-20" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.200.jpg", + "quantity": "350 g e", + "expiration_date_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.400.jpg", + "entry_dates_tags": [ + "2018-04-23", + "2018-04", + "2018" + ], + "last_image_t": 1533394009, + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "traces": "Œufs,Graines de sésame", + "informers_tags": [ + "kiliweb", + "beniben" + ], + "origins_debug_tags": [], + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.400.jpg" + } + } + }, + "brands_debug_tags": [], + "pnns_groups_1": "Sugary snacks", + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "creator": "kiliweb", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "labels_tags": [ + "en:charte-lu-harmony", + "en:green-dot", + "en:made-in-france", + "fr:ble-francais" + ], + "cities_tags": [], + "last_modified_by": null, + "nutrition_data_per_debug_tags": [], + "created_t": 1524504048, + "packaging_debug_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "additives_prev_original_tags": [ + "en:e500", + "en:e503", + "en:e322", + "en:e150b" + ], + "nutriments": { + "nova-group": "4", + "sodium_100g": 0.275590551181102, + "fat_unit": "", + "salt": 0.7, + "proteins_serving": 0.547, + "saturated-fat_serving": 0.489, + "saturated-fat_unit": "", + "salt_value": "0.7", + "carbohydrates_serving": 5.33, + "nutrition-score-fr_100g": "19", + "energy": "1895", + "salt_serving": 0.0511, + "sodium_serving": 0.0201, + "nutrition-score-uk_100g": "19", + "carbohydrates_value": "73", + "sugars_unit": "", + "nutrition-score-fr": "19", + "carbohydrates": "73", + "sodium": 0.275590551181102, + "energy_100g": "1895", + "fat_100g": "14", + "energy_value": "453", + "saturated-fat_100g": 6.7, + "fat": "14", + "saturated-fat_value": "6.7", + "energy_serving": "138", + "sugars_serving": 1.9, + "saturated-fat": 6.7, + "fat_value": "14", + "carbohydrates_100g": "73", + "salt_100g": 0.7, + "sugars_value": "26", + "sugars": "26", + "proteins_value": "7.5", + "proteins_100g": 7.5, + "salt_unit": "", + "carbohydrates_unit": "", + "fat_serving": 1.02, + "nova-group_100g": "4", + "sugars_100g": "26", + "proteins": 7.5, + "energy_unit": "kcal", + "nutrition-score-uk": "19", + "nova-group_serving": "4", + "proteins_unit": "" + }, + "purchase_places_debug_tags": [], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "no_nutrition_data": "", + "link_debug_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e150b", + "en:e322", + "en:e322i", + "en:e500", + "en:e500ii", + "en:e503", + "en:e503ii" + ], + "nutrition_grades": "e", + "labels_debug_tags": [], + "additives_prev_n": 4, + "origins_tags": [ + "france" + ], + "nutrition_data_prepared": "", + "nova_group": "4", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.400.jpg", + "pnns_groups_2": "Biscuits and cakes", + "ingredients_original_tags": [ + "en:wheat-flour", + "en:sugar", + "en:palm-oil", + "en:glucose-and-fructose-syrup", + "fr:lait-ecreme-en-poudre", + "en:whey-powder", + "en:milk", + "fr:arome-fleur-d-oranger", + "fr:fibre-de-ble", + "en:salt", + "en:raising-agent", + "en:emulsifier", + "en:soy-lecithin", + "en:flavour", + "en:colour", + "fr:e150b", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium" + ], + "origins": "France", + "additives_old_n": 5, + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "purchase_places": "France,Trignac", + "checkers_tags": [], + "minerals_tags": [], + "debug_param_sorted_langs": [ + "fr" + ], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "nutrition_data_prepared_per_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/7622210476296/the-lu", + "ingredients_text_with_allergens": "Farine de blé 67 %,sucre, huile de palme, sirop de glucose-fructose, lait écrémé en poudre, lactosérum en poudre (de lait), arôme fleur d'oranger, fibres de blé, sel, poudres à lever (carbonate acide de sodium, carbonate acide d'ammonium), émulsifiant (lécithine de soja), arômes, colorant (E150b).", + "nutrition_score_debug": " -- energy 5 + sat-fat 6 + fr-sat-fat-for-fats 7 + sugars 5 + sodium 3 - fruits 0% 0 - fiber 0 - proteins 4 -- fsa 19 -- fr 19", + "ingredients_text_with_allergens_fr": "Farine de blé 67 %,sucre, huile de palme, sirop de glucose-fructose, lait écrémé en poudre, lactosérum en poudre (de lait), arôme fleur d'oranger, fibres de blé, sel, poudres à lever (carbonate acide de sodium, carbonate acide d'ammonium), émulsifiant (lécithine de soja), arômes, colorant (E150b).", + "vitamins_prev_tags": [], + "labels_hierarchy": [ + "en:charte-lu-harmony", + "en:green-dot", + "en:made-in-france", + "fr:ble-francais" + ], + "nova_groups": "4", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits", + "serving_size": "Un biscuit 7,3 g", + "countries_debug_tags": [], + "ingredients_from_palm_oil_n": 1, + "ingredients_text_fr": "Farine de _blé_ 67 %,sucre, huile de palme, sirop de glucose-fructose, _lait_ écrémé en poudre, _lactosérum_ en poudre (de _lait_), arôme fleur d'oranger, fibres de _blé_, sel, poudres à lever (carbonate acide de sodium, carbonate acide d'ammonium), émulsifiant (lécithine de _soja_), arômes, colorant (E150b).", + "nutrition_grades_tags": [ + "e" + ], + "manufacturing_places_tags": [ + "france" + ], + "ingredients": [ + { + "rank": 1, + "text": "Farine de _blé_", + "id": "en:wheat-flour", + "percent": "67" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 2 + }, + { + "rank": 3, + "text": "huile de palme", + "id": "en:palm-oil" + }, + { + "rank": 4, + "text": "sirop de glucose-fructose", + "id": "en:glucose-and-fructose-syrup" + }, + { + "text": "_lait_ écrémé en poudre", + "rank": 5, + "id": "fr:lait-ecreme-en-poudre" + }, + { + "rank": 6, + "text": "_lactosérum_ en poudre", + "id": "en:whey-powder" + }, + { + "text": "de _lait_", + "rank": 7, + "id": "en:milk" + }, + { + "id": "fr:arome-fleur-d-oranger", + "rank": 8, + "text": "arôme fleur d'oranger" + }, + { + "text": "fibres de _blé_", + "rank": 9, + "id": "fr:fibre-de-ble" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 10 + }, + { + "id": "en:raising-agent", + "text": "poudres à lever", + "rank": 11 + }, + { + "id": "en:emulsifier", + "rank": 12, + "text": "émulsifiant" + }, + { + "rank": 13, + "text": "lécithine de _soja_", + "id": "en:soy-lecithin" + }, + { + "id": "en:flavour", + "text": "arômes", + "rank": 14 + }, + { + "id": "en:colour", + "text": "colorant", + "rank": 15 + }, + { + "id": "fr:e150b", + "text": "E150b", + "rank": 16 + }, + { + "text": "carbonate acide de sodium", + "id": "fr:carbonate-acide-de-sodium" + }, + { + "id": "fr:carbonate-acide-d-ammonium", + "text": "carbonate acide d'ammonium" + } + ], + "nutrient_levels": { + "saturated-fat": "high", + "sugars": "high", + "fat": "moderate", + "salt": "moderate" + }, + "countries_hierarchy": [ + "en:france" + ], + "vitamins_tags": [], + "lang": "fr", + "allergens_from_ingredients": "blé, lait, lactosérum, lait, blé, soja", + "nutrition_data": "on", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_hierarchy": [ + "en:charte-lu-harmony", + "en:green-dot", + "en:made-in-france", + "fr:ble-francais" + ], + "additives_debug_tags": [ + "en-e322i-added", + "en-e500ii-added", + "en-e503ii-added" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "manufacturing_places": "France", + "editors_tags": [ + "date-limite-app", + "beniben", + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_original_tags": [ + "en:e500ii", + "en:e503ii", + "en:e322i", + "en:e150b" + ], + "generic_name": "Biscuit sec - Thé", + "nutrition_data_per": "100g", + "product_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "additives_prev_tags": [ + "en:e150b", + "en:e322", + "en:e500", + "en:e503" + ], + "amino_acids_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 675, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1524504049" + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 675, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1524504052" + }, + "3": { + "uploader": "kiliweb", + "uploaded_t": "1524504268", + "sizes": { + "100": { + "h": 49, + "w": 100 + }, + "400": { + "h": 195, + "w": 400 + }, + "full": { + "h": 1001, + "w": 2050 + } + } + }, + "4": { + "uploader": "kiliweb", + "uploaded_t": "1524504269", + "sizes": { + "100": { + "w": 100, + "h": 55 + }, + "400": { + "w": 400, + "h": 222 + }, + "full": { + "w": 2165, + "h": 1200 + } + } + }, + "5": { + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "w": 400, + "h": 265 + }, + "full": { + "h": 1324, + "w": 2000 + } + }, + "uploader": "beniben", + "uploaded_t": "1528547954" + }, + "6": { + "uploaded_t": "1528547956", + "uploader": "beniben", + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "w": 400, + "h": 265 + }, + "full": { + "w": 2000, + "h": 1324 + } + } + }, + "7": { + "uploader": "beniben", + "uploaded_t": "1528547961", + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "h": 265, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1324 + } + } + }, + "8": { + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "h": 265, + "w": 400 + }, + "full": { + "h": 1324, + "w": 2000 + } + }, + "uploaded_t": "1528547969", + "uploader": "beniben" + }, + "9": { + "sizes": { + "100": { + "w": 100, + "h": 66 + }, + "400": { + "h": 265, + "w": 400 + }, + "full": { + "h": 1324, + "w": 2000 + } + }, + "uploader": "beniben", + "uploaded_t": "1528547970" + }, + "10": { + "sizes": { + "100": { + "h": 66, + "w": 100 + }, + "400": { + "w": 400, + "h": 265 + }, + "full": { + "h": 1324, + "w": 2000 + } + }, + "uploaded_t": "1528547970", + "uploader": "beniben" + }, + "11": { + "sizes": { + "100": { + "w": 100, + "h": 34 + }, + "400": { + "w": 400, + "h": 137 + }, + "full": { + "h": 1200, + "w": 3505 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533394008 + }, + "front_fr": { + "geometry": "1862x784-61-380", + "x1": "12.2421875", + "white_magic": "false", + "y2": "233.109375", + "x2": "384.765625", + "sizes": { + "100": { + "w": "100", + "h": "42" + }, + "200": { + "w": 200, + "h": 84 + }, + "400": { + "h": 168, + "w": 400 + }, + "full": { + "h": 784, + "w": 1862 + } + }, + "y1": "76.0625", + "imgid": "10", + "rev": "22", + "angle": "0", + "normalize": "false" + }, + "ingredients_fr": { + "imgid": "11", + "rev": "30", + "angle": null, + "normalize": "0", + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 100, + "h": 34 + }, + "200": { + "w": 200, + "h": 68 + }, + "400": { + "h": 137, + "w": 400 + }, + "full": { + "w": 3505, + "h": 1200 + } + }, + "y1": null + }, + "nutrition_fr": { + "x1": "55.0078125", + "white_magic": "false", + "geometry": "1294x570-275-421", + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "200": { + "h": 88, + "w": 200 + }, + "400": { + "h": 176, + "w": 400 + }, + "full": { + "h": 570, + "w": 1294 + } + }, + "y1": "84.2890625", + "y2": "198.4609375", + "x2": "313.921875", + "rev": "20", + "angle": "0", + "normalize": "false", + "imgid": "6" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.200.jpg", + "stores_debug_tags": [], + "ingredients_tags": [ + "en:wheat-flour", + "en:sugar", + "en:palm-oil", + "en:vegetable-oil", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "en:whey-powder", + "en:whey", + "en:milk", + "fr:arome-fleur-d-oranger", + "en:flavour", + "fr:fibre-de-ble", + "en:salt", + "en:raising-agent", + "en:emulsifier", + "en:soy-lecithin", + "en:flavour", + "en:colour", + "fr:e150b", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium" + ], + "link": "", + "nutrition_grade_fr": "e", + "expiration_date": "31/12/2018", + "packaging": "sachet,plastique,carton", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:sugar", + "en:palm-oil", + "en:vegetable-oil", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "en:whey-powder", + "en:whey", + "en:milk", + "fr:arome-fleur-d-oranger", + "en:flavour", + "fr:fibre-de-ble", + "en:salt", + "en:raising-agent", + "en:emulsifier", + "en:soy-lecithin", + "en:flavour", + "en:colour", + "fr:e150b", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb", + "beniben" + ], + "emb_codes_tags": [], + "product_name_fr": "Thé", + "product_quantity": 350, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.200.jpg", + "packaging_tags": [ + "sachet", + "plastique", + "carton" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.400.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "allergens_tags": [ + "en:gluten", + "en:milk", + "en:soybeans" + ], + "traces_tags": [ + "en:eggs", + "en:sesame-seeds" + ], + "purchase_places_tags": [ + "france", + "trignac" + ], + "countries": "France", + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "product_name": "Thé", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/ingredients_fr.30.100.jpg", + "categories_debug_tags": [], + "serving_size_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.200.jpg", + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "languages_codes": { + "fr": 6 + }, + "nutrition_score_warning_no_fiber": 1, + "unknown_nutrients_tags": [], + "labels_prev_tags": [ + "en:charte-lu-harmony", + "en:green-dot", + "en:made-in-france", + "fr:ble-francais" + ], + "update_key": "nova3", + "lang_debug_tags": [], + "nucleotides_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/front_fr.22.100.jpg", + "manufacturing_places_debug_tags": [], + "amino_acids_prev_tags": [], + "ingredients_text": "Farine de _blé_ 67 %,sucre, huile de palme, sirop de glucose-fructose, _lait_ écrémé en poudre, _lactosérum_ en poudre (de _lait_), arôme fleur d'oranger, fibres de _blé_, sel, poudres à lever (carbonate acide de sodium, carbonate acide d'ammonium), émulsifiant (lécithine de _soja_), arômes, colorant (E150b).", + "nova_group_debug": " -- ingredients/en:sugar : 3 -- ingredients/en:flavour : 4", + "code": "7622210476296", + "generic_name_fr": "Biscuit sec - Thé", + "last_editor": null, + "ingredients_text_fr_debug_tags": [], + "max_imgid": "11", + "brands": "LU,Mondelez", + "allergens": "blé, lait, lactosérum, lait, blé, soja, blé, lait, lactosérum, lait, blé, soja, blé, lait, lactosérum, lait, blé, soja", + "stores": "Auchan", + "ingredients_ids_debug": [ + "farine-de-ble-67", + "sucre", + "huile-de-palme", + "sirop-de-glucose-fructose", + "lait-ecreme-en-poudre", + "lactoserum-en-poudre", + "de-lait", + "arome-fleur-d-oranger", + "fibres-de-ble", + "sel", + "poudres-a-lever", + "carbonate-acide-de-sodium", + "carbonate-acide-d-ammonium", + "emulsifiant", + "lecithine-de-soja", + "aromes", + "colorant", + "e150b" + ], + "countries_tags": [ + "en:france" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/047/6296/nutrition_fr.20.100.jpg", + "traces_hierarchy": [ + "en:eggs", + "en:sesame-seeds" + ], + "additives_n": 4, + "codes_tags": [ + "code-13", + "7622210476296", + "762221047629x", + "76222104762xx", + "7622210476xxx", + "762221047xxxx", + "76222104xxxxx", + "7622210xxxxxx", + "762221xxxxxxx", + "76222xxxxxxxx", + "7622xxxxxxxxx", + "762xxxxxxxxxx", + "76xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "additives_old_tags": [ + "en:e500", + "en:e503", + "en:e1403", + "en:e322", + "en:e150b" + ], + "last_modified_t": 1533394010, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits" + ], + "quantity_debug_tags": [], + "complete": 1, + "ingredients_text_debug": "Farine de _blé_ 67 %,sucre, huile de palme, sirop de glucose-fructose, _lait_ écrémé en poudre, _lactosérum_ en poudre (de _lait_), arôme fleur d'oranger, fibres de _blé_, sel, poudres à lever : (carbonate acide de sodium, carbonate acide d'ammonium), émulsifiant : (lécithine de _soja_), arômes, colorant : ( - e150b - ).", + "_id": "7622210476296", + "_keywords": [ + "lu", + "ble", + "vert", + "charte", + "point", + "the", + "sucre", + "harmony", + "en", + "snack", + "sec", + "et", + "france", + "biscuit", + "francai", + "gateaux", + "fabrique", + "mondelez" + ], + "ingredients_debug": [ + "Farine de _blé_ 67 %", + ",", + null, + null, + null, + "sucre", + ",", + null, + null, + null, + " huile de palme", + ",", + null, + null, + null, + " sirop de glucose-fructose", + ",", + null, + null, + null, + " _lait_ écrémé en poudre", + ",", + null, + null, + null, + " _lactosérum_ en poudre ", + "(", + "(", + null, + null, + "de _lait_)", + ",", + null, + null, + null, + " arôme fleur d'oranger", + ",", + null, + null, + null, + " fibres de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " poudres à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "carbonate acide de sodium", + ",", + null, + null, + null, + " carbonate acide d'ammonium)", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "lécithine de _soja_)", + ",", + null, + null, + null, + " arômes", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "", + " - ", + " - ", + " - ", + null, + "e150b", + " - ", + " - ", + " - ", + null, + ")." + ], + "languages": { + "en:french": 6 + }, + "traces_debug_tags": [] + }, + { + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "8588005368032", + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "sortkey": 533393971, + "minerals_prev_tags": [], + "rev": 7, + "ingredients": [], + "allergens_hierarchy": [], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "last_image_t": 1533393970, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.400.jpg", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "additives_debug_tags": [], + "informers_tags": [ + "kiliweb" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "nutrition_data_per": "100g", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.100.jpg" + } + } + }, + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "amino_acids_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393967, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 301, + "h": 400 + }, + "full": { + "h": 1200, + "w": 902 + } + } + }, + "2": { + "uploaded_t": 1533393970, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 900, + "h": 1200 + } + } + }, + "ingredients_fr": { + "rev": "7", + "angle": null, + "normalize": "0", + "imgid": "2", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + }, + "y1": null, + "y2": null, + "x2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "front_fr": { + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 301 + }, + "full": { + "w": 902, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "1", + "normalize": "0", + "rev": "4", + "angle": null + } + }, + "creator": "kiliweb", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.200.jpg", + "ingredients_tags": [], + "last_modified_by": null, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "created_t": 1533393963, + "ingredients_hierarchy": [], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_fr": "Pure black sesame oil", + "quality_tags": [], + "additives_prev_original_tags": [], + "nutriments": { + "salt_100g": "0", + "fat_value": "99.9", + "carbohydrates_100g": "0", + "energy_serving": "", + "sugars_serving": "", + "saturated-fat": 15.8, + "proteins_unit": "", + "sugars_100g": "0", + "proteins": "0", + "energy_unit": "kcal", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "sugars": "0", + "sugars_value": "0", + "proteins_value": "0", + "proteins_100g": "0", + "energy": "3682", + "salt_serving": "", + "sodium_serving": "", + "salt_value": "0", + "carbohydrates_serving": "", + "proteins_serving": "", + "salt": "0", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "sodium_100g": "0", + "fat_unit": "", + "fat_100g": 99.9, + "energy_100g": "3682", + "energy_value": "880", + "fat": 99.9, + "saturated-fat_100g": 15.8, + "saturated-fat_value": "15.8", + "sodium": "0", + "sugars_unit": "", + "carbohydrates": "0", + "carbohydrates_value": "0" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.200.jpg", + "traces_from_ingredients": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_tags": [], + "allergens_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "nutrient_levels_tags": [], + "product_name": "Pure black sesame oil", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/ingredients_fr.7.100.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.200.jpg", + "languages_codes": { + "fr": 3 + }, + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/858/800/536/8032/front_fr.4.100.jpg", + "code": "8588005368032", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "checkers_tags": [], + "minerals_tags": [], + "last_editor": null, + "url": "https://ssl-api.openfoodfacts.org/product/8588005368032/pure-black-sesame-oil", + "max_imgid": "2", + "ingredients_text_with_allergens": null, + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "vitamins_prev_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "8588005368032", + "858800536803x", + "85880053680xx", + "8588005368xxx", + "858800536xxxx", + "85880053xxxxx", + "8588005xxxxxx", + "858800xxxxxxx", + "85880xxxxxxxx", + "8588xxxxxxxxx", + "858xxxxxxxxxx", + "85xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "last_modified_t": 1533393971, + "additives_old_tags": [], + "ingredients_text_debug": null, + "complete": 0, + "languages": { + "en:french": 3 + }, + "_keywords": [ + "black", + "oil", + "pure", + "sesame" + ], + "ingredients_debug": [], + "_id": "8588005368032" + }, + { + "additives_old_n": 2, + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "checkers_tags": [], + "minerals_tags": [], + "purchase_places": "", + "nutrition_data_prepared_per_debug_tags": [], + "ingredients_text_with_allergens": "lait de brebis entier pasteurisé*, cerise* 8%, sucre de canne non raffiné 7%, amidon de tapioca*, arôme naturel*, épaississant : farine de graine de caroube*, jus concentré de citron*, ferments lactiques sélectionnés (lait)\r\n*Issu de l'agriculture biologique.", + "url": "https://ssl-api.openfoodfacts.org/product/3273220540565/tendresse-cerise-brasse-de-brebis-bio-vrai", + "debug_param_sorted_langs": [ + "fr" + ], + "categories_prev_hierarchy": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:stirred-yogurts", + "en:cherry-yogurts", + "en:fruit-stirred-yogurts", + "en:sheep-s-milk-yogurts", + "en:sweetened-yogurts" + ], + "ingredients_text_with_allergens_fr": "lait de brebis entier pasteurisé*, cerise* 8%, sucre de canne non raffiné 7%, amidon de tapioca*, arôme naturel*, épaississant : farine de graine de caroube*, jus concentré de citron*, ferments lactiques sélectionnés (lait)\r\n*Issu de l'agriculture biologique.", + "nutrition_score_debug": " -- energy 1 + sat-fat 3 + fr-sat-fat-for-fats 9 + sugars 2 + sodium 0 - fruits 0% 0 - fiber 0 - proteins 2 -- fsa 4 -- fr 4", + "vitamins_prev_tags": [], + "labels_hierarchy": [ + "en:organic" + ], + "quality_tags": [], + "additives_prev_original_tags": [ + "en:e410" + ], + "packaging_debug_tags": [], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "purchase_places_debug_tags": [], + "nutriments": { + "carbohydrates_value": "11.2", + "calcium_value": "140", + "nutrition-score-uk_100g": "4", + "carbohydrates": 11.2, + "nutrition-score-fr": "4", + "sugars_unit": "", + "sodium": 0.0393700787401575, + "fat": 5.5, + "saturated-fat_value": "3.4", + "saturated-fat_100g": 3.4, + "energy_value": "113", + "energy_100g": "473", + "fat_100g": 5.5, + "fat_unit": "", + "sodium_100g": 0.0393700787401575, + "calcium_unit": "mg", + "nova-group": "4", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "salt": 0.1, + "proteins_serving": "", + "nutrition-score-fr_100g": "4", + "salt_value": "0.1", + "carbohydrates_serving": "", + "sodium_serving": "", + "calcium_serving": "", + "salt_serving": "", + "energy": "473", + "proteins_100g": 4.6, + "proteins_value": "4.6", + "sugars_value": "10.5", + "sugars": 10.5, + "carbohydrates_unit": "", + "nova-group_100g": "4", + "fat_serving": "", + "salt_unit": "", + "energy_unit": "kcal", + "proteins": 4.6, + "calcium": 0.14, + "sugars_100g": 10.5, + "proteins_unit": "", + "nova-group_serving": "4", + "nutrition-score-uk": "4", + "saturated-fat": 3.4, + "sugars_serving": "", + "energy_serving": "", + "carbohydrates_100g": 11.2, + "fat_value": "5.5", + "calcium_100g": 0.14, + "calcium_label": "Calcium", + "salt_100g": 0.1 + }, + "ingredients_text_debug_tags": [], + "categories_tags": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:stirred-yogurts", + "en:cherry-yogurts", + "en:fruit-stirred-yogurts", + "en:sheep-s-milk-yogurts", + "en:sweetened-yogurts" + ], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "link_debug_tags": [], + "pnns_groups_1_tags": [ + "milk-and-dairy-products" + ], + "nutrition_grades": "c", + "additives_tags": [ + "en:e410" + ], + "nutrition_data_prepared": "", + "nova_group": "4", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "labels_debug_tags": [], + "additives_prev_n": 1, + "origins_tags": [ + "france" + ], + "pnns_groups_2": "Milk and yogurt", + "origins": "france", + "ingredients_original_tags": [ + "fr:lait de brebis entier pasteurisé", + "en:cherry", + "en:unrefined-cane-sugar", + "en:tapioca-starch", + "en:natural-flavour", + "en:thickener", + "fr:farine-de-graine-de-caroube", + "fr:jus-concentre-de-citron", + "fr:ferments-lactiques-selectionnes", + "en:milk", + "fr:Issu de l'agriculture biologique" + ], + "informers_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "moon-rabbit", + "luciebnt" + ], + "pnns_groups_1": "Milk and dairy products", + "origins_debug_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.200.jpg" + } + } + }, + "brands_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "creator": "kiliweb", + "labels_tags": [ + "en:organic" + ], + "last_modified_by": null, + "cities_tags": [], + "created_t": 1493746066, + "nutrition_data_per_debug_tags": [], + "ingredients_n": "11", + "id": "3273220540565", + "emb_codes": "", + "labels": "Bio", + "serving_quantity": 0, + "emb_codes_debug_tags": [], + "sortkey": 533393964, + "brands_tags": [ + "vrai" + ], + "emb_codes_orig": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "allergens_hierarchy": [ + "en:milk" + ], + "minerals_prev_tags": [], + "rev": 19, + "stores_tags": [], + "correctors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "moon-rabbit", + "luciebnt" + ], + "ingredients_n_tags": [ + "11", + "11-20" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "image_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.400.jpg", + "last_image_t": 1533393962, + "entry_dates_tags": [ + "2017-05-02", + "2017-05", + "2017" + ], + "quantity": "230g (2*115g)", + "expiration_date_debug_tags": [], + "traces": "", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "nucleotides_prev_tags": [], + "update_key": "nova3", + "labels_prev_tags": [ + "en:organic" + ], + "lang_debug_tags": [], + "nova_group_debug": " -- ingredients/en:starch : 3 -- ingredients/en:flavour : 4", + "ingredients_text": "lait de brebis entier pasteurisé*, cerise* 8%, sucre de canne non raffiné 7%, amidon de tapioca*, arôme naturel*, épaississant : farine de graine de caroube*, jus concentré de citron*, ferments lactiques sélectionnés (lait)\r\n*Issu de l'agriculture biologique.", + "code": "3273220540565", + "manufacturing_places_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.100.jpg", + "amino_acids_prev_tags": [], + "generic_name_fr": "Yaourt brassé biologique au lait de brebis entier, sucré, à la cerise", + "max_imgid": "3", + "ingredients_text_fr_debug_tags": [], + "last_editor": null, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "brands": "Vrai", + "stores": "", + "allergens": "Lait, lait", + "ingredients_ids_debug": [ + "lait-de-brebis-entier-pasteurise", + "cerise-8", + "sucre-de-canne-non-raffine-7", + "amidon-de-tapioca", + "arome-naturel", + "epaississant", + "farine-de-graine-de-caroube", + "jus-concentre-de-citron", + "ferments-lactiques-selectionnes", + "lait-issu-de-l-agriculture-biologique" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "3273220540565", + "327322054056x", + "32732205405xx", + "3273220540xxx", + "327322054xxxx", + "32732205xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "additives_n": 1, + "quantity_debug_tags": [], + "additives_old_tags": [ + "en:e1403", + "en:e410" + ], + "last_modified_t": 1533393964, + "categories_prev_tags": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:stirred-yogurts", + "en:cherry-yogurts", + "en:fruit-stirred-yogurts", + "en:sheep-s-milk-yogurts", + "en:sweetened-yogurts" + ], + "ingredients_debug": [ + "lait de brebis entier pasteurisé*", + ",", + null, + null, + null, + " cerise* 8%", + ",", + null, + null, + null, + " sucre de canne non raffiné 7%", + ",", + null, + null, + null, + " amidon de tapioca*", + ",", + null, + null, + null, + " arôme naturel*", + ",", + null, + null, + null, + " épaississant ", + ":", + ":", + null, + null, + " farine de graine de caroube*", + ",", + null, + null, + null, + " jus concentré de citron*", + ",", + null, + null, + null, + " ferments lactiques sélectionnés ", + "(", + "(", + null, + null, + "lait)\r\n*Issu de l'agriculture biologique." + ], + "_keywords": [ + "produit", + "france", + "fruit", + "de", + "entier", + "bio", + "brebi", + "au", + "tendresse", + "la", + "lait", + "brasse", + "aux", + "fermente", + "sucre", + "yaourt", + "vrai", + "laitier", + "cerise", + "biologique" + ], + "_id": "3273220540565", + "traces_debug_tags": [], + "languages": { + "en:french": 4 + }, + "complete": 0, + "ingredients_text_debug": "lait de brebis entier pasteurisé*, cerise* 8%, sucre de canne non raffiné 7%, amidon de tapioca*, arôme naturel*, épaississant : farine de graine de caroube*, jus concentré de citron*, ferments lactiques sélectionnés (lait)\r\n*Issu de l'agriculture biologique.", + "emb_codes_tags": [], + "product_quantity": 230, + "product_name_fr": "Tendresse Cerise, Brassé de brebis Bio", + "photographers_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 2, + "languages_tags": [ + "en:french", + "en:1" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.200.jpg", + "packaging_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.400.jpg", + "allergens_tags": [ + "en:milk" + ], + "traces_tags": [], + "purchase_places_tags": [], + "countries": "France", + "ingredients_from_palm_oil_tags": [], + "product_name": "Tendresse Cerise, Brassé de brebis Bio", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-low-quantity" + ], + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.100.jpg", + "languages_codes": { + "fr": 4 + }, + "nutrition_score_warning_no_fiber": 1, + "pnns_groups_2_tags": [ + "milk-and-yogurt" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/0565/front_fr.19.200.jpg", + "serving_size_debug_tags": [], + "unknown_nutrients_tags": [], + "nutrition_data_per": "100g", + "additives_original_tags": [ + "en:e410" + ], + "editors_tags": [ + "luciebnt", + "moon-rabbit", + "openfoodfacts-contributors", + "kiliweb" + ], + "manufacturing_places": "", + "generic_name": "Yaourt brassé biologique au lait de brebis entier, sucré, à la cerise", + "product_name_fr_debug_tags": [], + "amino_acids_tags": [], + "categories_hierarchy": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:stirred-yogurts", + "en:cherry-yogurts", + "en:fruit-stirred-yogurts", + "en:sheep-s-milk-yogurts", + "en:sweetened-yogurts" + ], + "additives_prev_tags": [ + "en:e410" + ], + "images": { + "1": { + "uploaded_t": "1493746066", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 301, + "h": 400 + }, + "full": { + "w": 511, + "h": 680 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 21, + "w": 100 + }, + "400": { + "w": 400, + "h": 84 + }, + "full": { + "h": 492, + "w": 2353 + } + }, + "uploaded_t": "1505642476", + "uploader": "kiliweb" + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 45 + }, + "400": { + "h": 179, + "w": 400 + }, + "full": { + "w": 2050, + "h": 918 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393961 + }, + "front_fr": { + "imgid": "3", + "rev": "19", + "angle": null, + "normalize": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": "45", + "w": "100" + }, + "200": { + "h": 90, + "w": 200 + }, + "400": { + "h": 179, + "w": 400 + }, + "full": { + "w": 2050, + "h": 918 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null + } + }, + "ingredients_tags": [ + "fr:lait-de-brebis-entier-pasteurise", + "en:cherry", + "en:unrefined-cane-sugar", + "en:cane-sugar", + "en:sugar", + "en:tapioca-starch", + "en:starch", + "en:natural-flavour", + "en:flavour", + "en:thickener", + "fr:farine-de-graine-de-caroube", + "fr:jus-concentre-de-citron", + "fr:ferments-lactiques-selectionnes", + "en:milk", + "fr:issu-de-l-agriculture-biologique" + ], + "stores_debug_tags": [], + "expiration_date": "", + "nutrition_grade_fr": "c", + "link": "", + "ingredients_hierarchy": [ + "fr:lait de brebis entier pasteurisé", + "en:cherry", + "en:unrefined-cane-sugar", + "en:cane-sugar", + "en:sugar", + "en:tapioca-starch", + "en:starch", + "en:natural-flavour", + "en:flavour", + "en:thickener", + "fr:farine-de-graine-de-caroube", + "fr:jus-concentre-de-citron", + "fr:ferments-lactiques-selectionnes", + "en:milk", + "fr:Issu de l'agriculture biologique" + ], + "packaging": "", + "languages_hierarchy": [ + "en:french" + ], + "serving_size": "", + "categories": "Produits laitiers,Produits fermentés,Produits laitiers fermentés,Yaourts,Yaourts aux fruits,Yaourts brassés,Yaourts à la cerise,Yaourts brassés aux fruits,Yaourts au lait de brebis,Yaourts sucrés", + "nova_groups": "4", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "lait de brebis entier pasteurisé*, cerise* 8%, sucre de canne non raffiné 7%, amidon de tapioca*, arôme naturel*, épaississant : farine de graine de caroube*, jus concentré de citron*, ferments lactiques sélectionnés (lait)\r\n*Issu de l'agriculture biologique.", + "nutrition_grades_tags": [ + "c" + ], + "countries_debug_tags": [], + "allergens_debug_tags": [], + "manufacturing_places_tags": [], + "ingredients": [ + { + "text": "lait de brebis entier pasteurisé", + "rank": 1, + "id": "fr:lait de brebis entier pasteurisé" + }, + { + "text": "cerise", + "rank": 2, + "id": "en:cherry", + "percent": "8" + }, + { + "text": "sucre de canne non raffiné", + "rank": 3, + "id": "en:unrefined-cane-sugar", + "percent": "7" + }, + { + "id": "en:tapioca-starch", + "text": "amidon de tapioca", + "rank": 4 + }, + { + "id": "en:natural-flavour", + "rank": 5, + "text": "arôme naturel" + }, + { + "id": "en:thickener", + "text": "épaississant", + "rank": 6 + }, + { + "id": "fr:farine-de-graine-de-caroube", + "rank": 7, + "text": "farine de graine de caroube" + }, + { + "id": "fr:jus-concentre-de-citron", + "text": "jus concentré de citron", + "rank": 8 + }, + { + "text": "ferments lactiques sélectionnés", + "rank": 9, + "id": "fr:ferments-lactiques-selectionnes" + }, + { + "rank": 10, + "text": "lait", + "id": "en:milk" + }, + { + "id": "fr:Issu de l'agriculture biologique", + "text": "Issu de l'agriculture biologique", + "rank": 11 + } + ], + "nutrient_levels": { + "salt": "low", + "fat": "moderate", + "sugars": "moderate", + "saturated-fat": "moderate" + }, + "countries_hierarchy": [ + "en:france" + ], + "lang": "fr", + "allergens_from_ingredients": "lait", + "nutrition_data": "on", + "vitamins_tags": [], + "labels_prev_hierarchy": [ + "en:organic" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0 + }, + { + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "code": "0209550012468", + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "checkers_tags": [], + "minerals_tags": [], + "last_editor": null, + "url": "https://ssl-api.openfoodfacts.org/product/0209550012468/pain-au-chocolat-charentes", + "max_imgid": "3", + "ingredients_text_with_allergens": null, + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "traces_hierarchy": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.100.jpg", + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "vitamins_prev_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "0209550012468", + "020955001246x", + "02095500124xx", + "0209550012xxx", + "020955001xxxx", + "02095500xxxxx", + "0209550xxxxxx", + "020955xxxxxxx", + "02095xxxxxxxx", + "0209xxxxxxxxx", + "020xxxxxxxxxx", + "02xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "last_modified_t": 1533393888, + "additives_old_tags": [], + "ingredients_text_debug": null, + "complete": 0, + "languages": { + "en:french": 4 + }, + "ingredients_debug": [], + "_keywords": [ + "pain", + "chocolat", + "charente", + "au" + ], + "_id": "0209550012468", + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "additives_prev_original_tags": [], + "product_name_fr": "Pain au chocolat charentes", + "quality_tags": [], + "nutriments": { + "proteins_unit": "", + "proteins": 7.7, + "energy_unit": "kcal", + "sugars_100g": "13", + "carbohydrates_unit": "", + "fat_serving": "", + "salt_unit": "", + "proteins_value": "7.7", + "proteins_100g": 7.7, + "sugars": "13", + "sugars_value": "13", + "salt_100g": 0.89, + "carbohydrates_100g": "41", + "fat_value": "21", + "sugars_serving": "", + "saturated-fat": "13", + "energy_serving": "", + "energy_value": "384", + "saturated-fat_value": "13", + "saturated-fat_100g": "13", + "fat": "21", + "fat_100g": "21", + "energy_100g": "1607", + "sodium": 0.350393700787402, + "carbohydrates": "41", + "sugars_unit": "", + "carbohydrates_value": "41", + "sodium_serving": "", + "energy": "1607", + "salt_serving": "", + "carbohydrates_serving": "", + "salt_value": "0.89", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "salt": 0.89, + "proteins_serving": "", + "sodium_100g": 0.350393700787402, + "fat_unit": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.200.jpg", + "traces_from_ingredients": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_tags": [], + "allergens_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Pain au chocolat charentes", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.100.jpg", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.200.jpg", + "languages_codes": { + "fr": 4 + }, + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "informers_tags": [ + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nutrition_data_per": "100g", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.400.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.400.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.400.jpg" + } + } + }, + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "amino_acids_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393881, + "sizes": { + "100": { + "h": 26, + "w": 100 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "h": 1052, + "w": 4032 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1200, + "w": 901 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393885 + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1200, + "w": 1601 + } + }, + "uploaded_t": 1533393887, + "uploader": "kiliweb" + }, + "nutrition_fr": { + "imgid": "3", + "normalize": "0", + "rev": "10", + "angle": null, + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "h": 150, + "w": 200 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1200, + "w": 1601 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + }, + "front_fr": { + "angle": null, + "rev": "4", + "normalize": "0", + "imgid": "1", + "sizes": { + "100": { + "h": "26", + "w": "100" + }, + "200": { + "w": 200, + "h": 52 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "w": 4032, + "h": 1052 + } + }, + "y1": null, + "y2": null, + "x2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0" + }, + "ingredients_fr": { + "normalize": "0", + "rev": "7", + "angle": null, + "imgid": "2", + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 901, + "h": 1200 + } + }, + "x2": null, + "y2": null + } + }, + "creator": "kiliweb", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.200.jpg", + "ingredients_tags": [], + "last_modified_by": null, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "created_t": 1533393879, + "ingredients_hierarchy": [], + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "0209550012468", + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "sortkey": 533393888, + "rev": 10, + "minerals_prev_tags": [], + "ingredients": [], + "allergens_hierarchy": [], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/nutrition_fr.10.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "last_image_t": 1533393887, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/020/955/001/2468/front_fr.4.400.jpg", + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "additives_debug_tags": [] + }, + { + "codes_tags": [ + "code-13", + 3270190191377, + "327019019137x", + "32701901913xx", + "3270190191xxx", + "327019019xxxx", + "32701901xxxxx", + "3270190xxxxxx", + "327019xxxxxxx", + "32701xxxxxxxx", + "3270xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "additives_n": 1, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [ + "en:eggs", + "en:milk", + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.100.jpg", + "stores": "", + "allergens": "blé, blé, seigle, orge, sésame, blé", + "ingredients_ids_debug": [ + "cereales-91", + "5", + "farine-de-ble-85", + "ble-concasse-1", + "8", + "farine-de-seigle-1", + "8", + "graines-de-sarrasin-1", + "2", + "farine-d-orge-1", + "2", + "graines-de-millet-0", + "5", + "graines", + "sesame-4", + "9", + "lin-1", + "8", + "huile-vegetale-de-tournesol", + "levure", + "sucre", + "sel", + "gluten-de-ble", + "agent-de-traitement-de-la-farine", + "acide-ascorbique", + "ingredients-issus-de-l-agriculture-biologique" + ], + "brands": "Carrefour Bio,Carrefour", + "fruits-vegetables-nuts_100g_estimate": 0, + "_id": "3270190191377", + "ingredients_debug": [ + "Céréales 91", + ",", + null, + null, + null, + "5% ", + "(", + "(", + null, + null, + "farine de _blé_* 85%", + ",", + null, + null, + null, + " _blé_ concassé* 1", + ",", + null, + null, + null, + "8%", + ",", + null, + null, + null, + " farine de _seigle_* 1", + ",", + null, + null, + null, + "8%", + ",", + null, + null, + null, + " graines de sarrasin* 1", + ",", + null, + null, + null, + "2%", + ",", + null, + null, + null, + " farine d'_orge_* 1", + ",", + null, + null, + null, + "2%", + ",", + null, + null, + null, + " graines de millet* 0", + ",", + null, + null, + null, + "5%)", + ",", + null, + null, + null, + " graines ", + "(", + "(", + null, + null, + "_sésame_* 4", + ",", + null, + null, + null, + "9%", + ",", + null, + null, + null, + " lin 1", + ",", + null, + null, + null, + "8%)", + ",", + null, + null, + null, + " huile végétale de tournesol*", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sucre*", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gluten de _blé_*", + ",", + null, + null, + null, + " agent de traitement de la farine ", + ":", + ":", + null, + null, + " acide ascorbique", + ". ", + null, + null, + null, + "*Ingrédients issus de l'agriculture biologique." + ], + "_keywords": [ + "panecillo", + "plant-based-food", + "organic", + "petit", + "cereale", + "plant-based-foods-and-beverage", + "pain", + "grille", + "aux", + "cereals-and-potatoe", + "tostado", + "carrefour", + "bread", + "bio", + "toast" + ], + "traces_debug_tags": [], + "languages": { + "en:french": 5 + }, + "complete": 1, + "ingredients_text_debug": "Céréales 91,5% (farine de _blé_* 85%, _blé_ concassé* 1,8%, farine de _seigle_* 1,8%, graines de sarrasin* 1,2%, farine d'_orge_* 1,2%, graines de millet* 0,5%), graines (_sésame_* 4,9%, lin 1,8%), huile végétale de tournesol*, levure, sucre*, sel, gluten de _blé_*, agent de traitement de la farine : acide ascorbique. *Ingrédients issus de l'agriculture biologique.", + "quantity_debug_tags": [], + "additives_old_tags": [ + "en:e300" + ], + "last_modified_t": 1533393878, + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:cereals-and-potatoes", + "en:breads", + "en:toasts", + "fr:panecillos-tostados" + ], + "nova_group_debug": " -- ingredients/en:salt : 3", + "ingredients_text": "Céréales 91,5% (farine de _blé_* 85%, _blé_ concassé* 1,8%, farine de _seigle_* 1,8%, graines de sarrasin* 1,2%, farine d'_orge_* 1,2%, graines de millet* 0,5%), graines (_sésame_* 4,9%, lin 1,8%), huile végétale de tournesol*, levure, sucre*, sel, gluten de _blé_*, agent de traitement de la farine : acide ascorbique. *Ingrédients issus de l'agriculture biologique.", + "code": "3270190191377", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.100.jpg", + "manufacturing_places_debug_tags": [], + "amino_acids_prev_tags": [], + "nucleotides_prev_tags": [], + "update_key": "nova3", + "labels_prev_tags": [ + "en:organic" + ], + "lang_debug_tags": [], + "max_imgid": "20", + "ingredients_text_fr_debug_tags": [], + "last_editor": "kiliweb", + "generic_name_fr": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.100.jpg", + "categories_debug_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "product_name": "Petits pains grillés aux céréales", + "unknown_nutrients_tags": [], + "unique_scans_n": 26, + "languages_codes": { + "fr": 5 + }, + "pnns_groups_2_tags": [ + "bread" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.200.jpg", + "serving_size_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.200.jpg", + "packaging_tags": [ + "sachet", + "plastique" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.400.jpg", + "emb_codes_tags": [ + "biscotte-pasquier-brissac" + ], + "product_name_fr": "Petits pains grillés aux céréales", + "product_quantity": 225, + "photographers_tags": [ + "openfoodfacts-contributors", + "drmalabar", + "yannick94", + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 3, + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "allergens_tags": [ + "en:gluten", + "en:sesame-seeds" + ], + "traces_tags": [ + "en:eggs", + "en:milk", + "en:nuts", + "en:peanuts", + "en:soybeans" + ], + "purchase_places_tags": [], + "ingredients_tags": [ + "fr:cereale", + "fr:graines", + "fr:huile-vegetale-de-tournesol", + "en:sunflower-oil", + "en:vegetable-oil", + "en:sunflower", + "fr:levure", + "en:sugar", + "en:salt", + "fr:gluten-de-ble", + "en:flour-treatment-agent", + "en:wheat-flour", + "fr:ble-concasse", + "fr:farine-de-seigle", + "fr:graines-de-sarrasin", + "fr:farine-d-orge", + "fr:graines-de-millet", + "fr:sesame", + "fr:lin", + "en:ascorbic-acid", + "fr:ingredients-issus-de-l-agriculture-biologique" + ], + "stores_debug_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.200.jpg", + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1425074761, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "2": { + "uploaded_t": 1425074792, + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": 1425074805, + "uploader": "openfoodfacts-contributors" + }, + "4": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1425074831 + }, + "5": { + "uploaded_t": 1425074962, + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "7": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1425075049 + }, + "8": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploaded_t": "1442444750", + "uploader": "openfoodfacts-contributors" + }, + "9": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": "1438019317", + "uploader": "drmalabar" + }, + "10": { + "uploader": "drmalabar", + "uploaded_t": "1438019360", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "11": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "drmalabar", + "uploaded_t": "1438019395" + }, + "12": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "drmalabar", + "uploaded_t": "1438019428" + }, + "13": { + "uploaded_t": "1451118748", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3554, + "w": 2000 + } + } + }, + "14": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploader": "yannick94", + "uploaded_t": "1478116665" + }, + "15": { + "uploaded_t": "1491321395", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + } + }, + "16": { + "uploader": "kiliweb", + "uploaded_t": "1516722560", + "sizes": { + "100": { + "w": 69, + "h": 100 + }, + "400": { + "h": 400, + "w": 275 + }, + "full": { + "h": 1360, + "w": 935 + } + } + }, + "17": { + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "400": { + "w": 400, + "h": 190 + }, + "full": { + "h": 1074, + "w": 2264 + } + }, + "uploaded_t": "1516722563", + "uploader": "kiliweb" + }, + "18": { + "uploader": "kiliweb", + "uploaded_t": "1518639688", + "sizes": { + "100": { + "h": 100, + "w": 74 + }, + "400": { + "h": 400, + "w": 297 + }, + "full": { + "h": 1360, + "w": 1009 + } + } + }, + "19": { + "uploaded_t": 1532121085, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 44 + }, + "400": { + "h": 175, + "w": 400 + }, + "full": { + "w": 2737, + "h": 1200 + } + } + }, + "20": { + "sizes": { + "100": { + "h": 100, + "w": 98 + }, + "400": { + "w": 391, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1174 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1532121095 + }, + "front_fr": { + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": "74", + "h": "100" + }, + "200": { + "w": 148, + "h": 200 + }, + "400": { + "h": 400, + "w": 297 + }, + "full": { + "w": 1009, + "h": 1360 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "imgid": "18", + "rev": "38", + "angle": null, + "normalize": "0" + }, + "nutrition": { + "geometry": "1681x1469-201-1312", + "imgid": "11", + "rev": "16", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 87 + }, + "200": { + "w": 200, + "h": 175 + }, + "400": { + "h": 350, + "w": 400 + }, + "full": { + "w": 1681, + "h": 1469 + } + } + }, + "ingredients_fr": { + "rev": "42", + "angle": null, + "normalize": "0", + "imgid": "19", + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": 100, + "h": 44 + }, + "200": { + "w": 200, + "h": 88 + }, + "400": { + "h": 175, + "w": 400 + }, + "full": { + "h": 1200, + "w": 2737 + } + }, + "y1": null, + "y2": null, + "x2": null + }, + "front": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "white_magic": "false", + "rev": "14", + "normalize": "false", + "geometry": "0x0-0-0", + "imgid": "9" + }, + "ingredients": { + "sizes": { + "100": { + "h": 40, + "w": 100 + }, + "200": { + "h": 80, + "w": 200 + }, + "400": { + "w": 400, + "h": 160 + }, + "full": { + "h": 865, + "w": 2162 + } + }, + "normalize": "false", + "white_magic": "false", + "rev": "20", + "imgid": "12", + "geometry": "2162x865-89-1388" + }, + "nutrition_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 98 + }, + "200": { + "h": 200, + "w": 196 + }, + "400": { + "w": 391, + "h": 400 + }, + "full": { + "w": 1174, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "normalize": "0", + "angle": null, + "rev": "44", + "imgid": "20" + } + }, + "ingredients_hierarchy": [ + "fr:cereale", + "fr:graines", + "fr:huile-vegetale-de-tournesol", + "en:sunflower-oil", + "en:vegetable-oil", + "en:sunflower", + "fr:levure", + "en:sugar", + "en:salt", + "fr:gluten-de-ble", + "en:flour-treatment-agent", + "en:wheat-flour", + "fr:_blé_ concassé", + "fr:farine-de-seigle", + "fr:graines de sarrasin", + "fr:farine-d-orge", + "fr:graines-de-millet", + "fr:sesame", + "fr:lin", + "en:ascorbic-acid", + "fr:Ingrédients issus de l'agriculture biologique" + ], + "packaging": "Sachet,plastique", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.400.jpg", + "expiration_date": "", + "nutrition_grade_fr": "b", + "link": "", + "nutrition_data_per": "100g", + "editors_tags": [ + "yannick94", + "drmalabar", + "kiliweb", + "mdarweesh", + "openfoodfacts-contributors", + "segundo", + "tacite" + ], + "additives_original_tags": [ + "en:e300" + ], + "manufacturing_places": "France", + "generic_name": "", + "amino_acids_tags": [], + "emb_codes_20141016": "", + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:cereals-and-potatoes", + "en:breads", + "en:toasts", + "fr:Panecillos tostados" + ], + "additives_prev_tags": [ + "en:e300" + ], + "product_name_fr_debug_tags": [], + "lang": "fr", + "allergens_from_ingredients": "blé, blé, seigle, orge, sésame, blé, sarrasin*", + "vitamins_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": { + "fat": "moderate", + "salt": "moderate", + "saturated-fat": "low", + "sugars": "low" + }, + "additives_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "labels_prev_hierarchy": [ + "en:organic" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "editors": [ + "", + "drmalabar", + "tacite" + ], + "ingredients_text_fr": "Céréales 91,5% (farine de _blé_* 85%, _blé_ concassé* 1,8%, farine de _seigle_* 1,8%, graines de sarrasin* 1,2%, farine d'_orge_* 1,2%, graines de millet* 0,5%), graines (_sésame_* 4,9%, lin 1,8%), huile végétale de tournesol*, levure, sucre*, sel, gluten de _blé_*, agent de traitement de la farine : acide ascorbique. *Ingrédients issus de l'agriculture biologique.", + "ingredients_from_palm_oil_n": 0, + "nutrition_grades_tags": [ + "b" + ], + "countries_debug_tags": [], + "categories": "en:plant-based-foods-and-beverages, en:plant-based-foods, en:cereals-and-potatoes, en:breads, en:toasts, fr:Panecillos tostados", + "serving_size": "50 g", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nova_groups": 3, + "manufacturing_places_tags": [ + "france" + ], + "ingredients": [ + { + "text": "Céréales", + "rank": 1, + "id": "fr:cereale", + "percent": "91.5" + }, + { + "id": "fr:graines", + "text": "graines", + "rank": 2 + }, + { + "text": "huile végétale de tournesol", + "rank": 3, + "id": "fr:huile-vegetale-de-tournesol" + }, + { + "text": "levure", + "rank": 4, + "id": "fr:levure" + }, + { + "id": "en:sugar", + "rank": 5, + "text": "sucre" + }, + { + "text": "sel", + "rank": 6, + "id": "en:salt" + }, + { + "rank": 7, + "text": "gluten de _blé_", + "id": "fr:gluten-de-ble" + }, + { + "id": "en:flour-treatment-agent", + "rank": 8, + "text": "agent de traitement de la farine" + }, + { + "percent": "85", + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "text": "_blé_ concassé", + "id": "fr:_blé_ concassé", + "percent": "1.8" + }, + { + "percent": "1.8", + "text": "farine de _seigle_", + "id": "fr:farine-de-seigle" + }, + { + "text": "graines de sarrasin", + "id": "fr:graines de sarrasin", + "percent": "1.2" + }, + { + "percent": "1.2", + "text": "farine d'_orge_", + "id": "fr:farine-d-orge" + }, + { + "percent": "0.5", + "text": "graines de millet", + "id": "fr:graines-de-millet" + }, + { + "text": "_sésame_", + "id": "fr:sesame", + "percent": "4.9" + }, + { + "text": "lin", + "id": "fr:lin", + "percent": "1.8" + }, + { + "id": "en:ascorbic-acid", + "text": "acide ascorbique" + }, + { + "id": "fr:Ingrédients issus de l'agriculture biologique", + "text": "Ingrédients issus de l'agriculture biologique" + } + ], + "scans_n": 27, + "vitamins_prev_tags": [], + "ingredients_text_with_allergens_fr": "Céréales 91,5% (farine de blé* 85%, blé concassé* 1,8%, farine de seigle* 1,8%, graines de sarrasin* 1,2%, farine d'orge* 1,2%, graines de millet* 0,5%), graines (sésame* 4,9%, lin 1,8%), huile végétale de tournesol*, levure, sucre*, sel, gluten de blé*, agent de traitement de la farine : acide ascorbique. *Ingrédients issus de l'agriculture biologique.", + "nutrition_score_debug": " -- energy 5 + sat-fat 0 + fr-sat-fat-for-fats 1 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa 0 -- fr 0", + "labels_hierarchy": [ + "en:organic" + ], + "last_image_dates_tags": [ + "2018-07-20", + "2018-07", + "2018" + ], + "additives_old_n": 1, + "nucleotides_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3270190191377/petits-pains-grilles-aux-cereales-carrefour-bio", + "ingredients_text_with_allergens": "Céréales 91,5% (farine de blé* 85%, blé concassé* 1,8%, farine de seigle* 1,8%, graines de sarrasin* 1,2%, farine d'orge* 1,2%, graines de millet* 0,5%), graines (sésame* 4,9%, lin 1,8%), huile végétale de tournesol*, levure, sucre*, sel, gluten de blé*, agent de traitement de la farine : acide ascorbique. *Ingrédients issus de l'agriculture biologique.", + "debug_param_sorted_langs": [ + "fr" + ], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:cereals-and-potatoes", + "en:breads", + "en:toasts", + "fr:Panecillos tostados" + ], + "checkers_tags": [], + "minerals_tags": [], + "purchase_places": "", + "nova_group": 3, + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_prev_n": 1, + "origins_tags": [], + "labels_debug_tags": [], + "origins": "", + "ingredients_original_tags": [ + "fr:cereale", + "fr:graines", + "fr:huile-vegetale-de-tournesol", + "fr:levure", + "en:sugar", + "en:salt", + "fr:gluten-de-ble", + "en:flour-treatment-agent", + "en:wheat-flour", + "fr:_blé_ concassé", + "fr:farine-de-seigle", + "fr:graines de sarrasin", + "fr:farine-d-orge", + "fr:graines-de-millet", + "fr:sesame", + "fr:lin", + "en:ascorbic-acid", + "fr:Ingrédients issus de l'agriculture biologique" + ], + "pnns_groups_2": "Bread", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.400.jpg", + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "purchase_places_debug_tags": [], + "nutriments": { + "nutrition-score-fr_100g": 0, + "carbohydrates_serving": 34.5, + "salt_value": "1.2", + "sodium_serving": 0.236, + "salt_serving": 0.6, + "energy": 1690, + "fat_unit": "", + "sodium_100g": 0.47244094488189, + "nova-group": 3, + "saturated-fat_unit": "", + "saturated-fat_serving": 0.5, + "proteins_serving": 6, + "salt": 1.2, + "sodium": 0.47244094488189, + "saturated-fat_value": "1", + "fat": 7.8, + "saturated-fat_100g": 1, + "fiber_value": "6", + "energy_value": "404", + "fat_100g": 7.8, + "energy_100g": 1690, + "carbohydrates_value": "69", + "nutrition-score-uk_100g": 0, + "carbohydrates": 69, + "nutrition-score-fr": 0, + "sugars_unit": "", + "fiber_serving": 3, + "carbohydrates_100g": 69, + "fat_value": "7.8", + "salt_100g": 1.2, + "saturated-fat": 1, + "sugars_serving": 2.1, + "energy_serving": 845, + "energy_unit": "kcal", + "fiber": 6, + "proteins": 12, + "sugars_100g": 4.2, + "fiber_unit": "", + "proteins_unit": "", + "nova-group_serving": 3, + "nutrition-score-uk": 0, + "proteins_100g": 12, + "proteins_value": "12", + "sugars": 4.2, + "sugars_value": "4.2", + "carbohydrates_unit": "", + "nova-group_100g": 3, + "fat_serving": 3.9, + "salt_unit": "", + "fiber_100g": 6 + }, + "quality_tags": [], + "additives_prev_original_tags": [ + "en:e300" + ], + "packaging_debug_tags": [], + "no_nutrition_data": "", + "pnns_groups_1_tags": [ + "cereals-and-potatoes" + ], + "link_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e300" + ], + "nutrition_grades": "b", + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:cereals-and-potatoes", + "en:breads", + "en:toasts", + "fr:panecillos-tostados" + ], + "labels_tags": [ + "en:organic" + ], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "creator": "openfoodfacts-contributors", + "created_t": 1425074760, + "nutrition_data_per_debug_tags": [], + "last_modified_by": "kiliweb", + "cities_tags": [], + "pnns_groups_1": "Cereals and potatoes", + "origins_debug_tags": [], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/ingredients_fr.42.400.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.200.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.100.jpg" + } + } + }, + "brands_debug_tags": [], + "informers_tags": [ + "openfoodfacts-contributors", + "tacite", + "segundo", + "mdarweesh" + ], + "generic_name_fr_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "ingredients_that_may_be_from_palm_oil_tags": [ + "huile-vegetale" + ], + "ingredients_n_tags": [ + "18", + "11-20" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/nutrition_fr.44.200.jpg", + "interface_version_modified": "20150316.jqm2", + "stores_tags": [], + "correctors_tags": [ + "tacite", + "segundo", + "mdarweesh", + "kiliweb", + "openfoodfacts-contributors" + ], + "traces": "Eggs,Milk,Nuts,Peanuts,Soybeans", + "interface_version_created": "20120622", + "lc": "fr", + "image_url": "https://static.openfoodfacts.org/images/products/327/019/019/1377/front_fr.38.400.jpg", + "last_image_t": 1532121095, + "entry_dates_tags": [ + "2015-02-27", + "2015-02", + "2015", + "open-food-hunt-2015" + ], + "quantity": "225 g", + "expiration_date_debug_tags": [], + "serving_quantity": 50, + "emb_codes_debug_tags": [], + "id": "3270190191377", + "ingredients_n": 18, + "emb_codes": "BISCOTTE PASQUIER BRISSAC", + "labels": "en:organic", + "allergens_hierarchy": [ + "en:gluten", + "en:sesame-seeds" + ], + "minerals_prev_tags": [], + "rev": 46, + "completed_t": 1451121953, + "sortkey": 1533393878, + "brands_tags": [ + "carrefour-bio", + "carrefour" + ], + "emb_codes_orig": "BISCOTTE PASQUIER BRISSAC", + "ingredients_that_may_be_from_palm_oil_n": 1 + }, + { + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "8410152020207", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "ingredients": [], + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "rev": 7, + "sortkey": 533393859, + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "nutrient_levels": {}, + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "countries_hierarchy": [ + "en:france" + ], + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "last_image_t": 1533393856, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.400.jpg", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.200.jpg", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393853, + "sizes": { + "100": { + "h": 100, + "w": 50 + }, + "400": { + "w": 198, + "h": 400 + }, + "full": { + "h": 1200, + "w": 595 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 33 + }, + "400": { + "h": 400, + "w": 131 + }, + "full": { + "w": 392, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393856 + }, + "ingredients_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "w": 33, + "h": 100 + }, + "200": { + "w": 65, + "h": 200 + }, + "400": { + "h": 400, + "w": 131 + }, + "full": { + "h": 1200, + "w": 392 + } + }, + "x2": null, + "y2": null, + "normalize": "0", + "rev": "7", + "angle": null, + "imgid": "2" + }, + "front_fr": { + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "50", + "h": "100" + }, + "200": { + "h": 200, + "w": 99 + }, + "400": { + "h": 400, + "w": 198 + }, + "full": { + "h": 1200, + "w": 595 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4" + } + }, + "creator": "kiliweb", + "created_t": 1533393853, + "ingredients_hierarchy": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "last_modified_by": null, + "traces_from_ingredients": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "nutriments": { + "salt_100g": 0.08, + "carbohydrates_100g": "48", + "fat_value": "33", + "saturated-fat": "20", + "sugars_serving": "", + "energy_serving": "", + "proteins_unit": "", + "energy_unit": "kcal", + "proteins": 5.8, + "sugars_100g": "45", + "carbohydrates_unit": "", + "fat_serving": "", + "salt_unit": "", + "proteins_100g": 5.8, + "proteins_value": "5.8", + "sugars_value": "45", + "sugars": "45", + "sodium_serving": "", + "salt_serving": "", + "energy": "2213", + "carbohydrates_serving": "", + "salt_value": "0.08", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "salt": 0.08, + "proteins_serving": "", + "fat_unit": "", + "sodium_100g": 0.031496062992126, + "saturated-fat_100g": "20", + "saturated-fat_value": "20", + "fat": "33", + "energy_value": "529", + "energy_100g": "2213", + "fat_100g": "33", + "sodium": 0.031496062992126, + "carbohydrates": "48", + "sugars_unit": "", + "carbohydrates_value": "48" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.200.jpg", + "product_name_fr": "Chocolate artesano de valencia", + "additives_prev_original_tags": [], + "quality_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "traces_tags": [], + "allergens_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.100.jpg", + "product_name": "Chocolate artesano de valencia", + "nutrient_levels_tags": [], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.200.jpg", + "code": "8410152020207", + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/841/015/202/0207/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/8410152020207/chocolate-artesano-de-valencia", + "ingredients_text_with_allergens": null, + "max_imgid": "2", + "last_editor": null, + "checkers_tags": [], + "minerals_tags": [], + "codes_tags": [ + "code-13", + "8410152020207", + "841015202020x", + "84101520202xx", + "8410152020xxx", + "841015202xxxx", + "84101520xxxxx", + "8410152xxxxxx", + "841015xxxxxxx", + "84101xxxxxxxx", + "8410xxxxxxxxx", + "841xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "languages": { + "en:french": 3 + }, + "_id": "8410152020207", + "ingredients_debug": [], + "_keywords": [ + "de", + "artesano", + "chocolate", + "valencia" + ], + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533393859, + "additives_old_tags": [] + }, + { + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "languages_codes": { + "fr": 2 + }, + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "product_name": "Naturgreen Agave Syrup", + "nutrient_levels_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "allergens_tags": [], + "traces_tags": [], + "nutriments": {}, + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_fr": "Naturgreen Agave Syrup", + "additives_prev_original_tags": [], + "quality_tags": [], + "complete": 0, + "ingredients_text_debug": null, + "_keywords": [ + "naturgreen", + "syrup", + "agave" + ], + "_id": "8436542190633", + "ingredients_debug": [], + "languages": { + "en:french": 2 + }, + "additives_old_tags": [], + "last_modified_t": 1533393842, + "vitamins_prev_tags": [], + "codes_tags": [ + "code-13", + "8436542190633", + "843654219063x", + "84365421906xx", + "8436542190xxx", + "843654219xxxx", + "84365421xxxxx", + "8436542xxxxxx", + "843654xxxxxxx", + "84365xxxxxxxx", + "8436xxxxxxxxx", + "843xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "last_editor": null, + "url": "https://ssl-api.openfoodfacts.org/product/8436542190633/naturgreen-agave-syrup", + "max_imgid": "1", + "ingredients_text_with_allergens": null, + "minerals_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "code": "8436542190633", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "additives_debug_tags": [], + "last_image_t": 1533393841, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "minerals_prev_tags": [], + "rev": 4, + "ingredients": [], + "allergens_hierarchy": [], + "sortkey": 533393842, + "countries_debug_tags": [], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "8436542190633", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "ingredients_hierarchy": [], + "created_t": 1533393837, + "last_modified_by": null, + "ingredients_tags": [], + "creator": "kiliweb", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393840, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 901, + "h": 1200 + } + } + }, + "ingredients_fr": { + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 901 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "1", + "rev": "4", + "angle": null, + "normalize": "0" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.200.jpg", + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "amino_acids_tags": [], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/843/654/219/0633/ingredients_fr.4.100.jpg" + } + } + }, + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "informers_tags": [ + "kiliweb" + ], + "nutrition_data_per": "100g" + }, + { + "ingredients_original_tags": [], + "origins": "", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.400.jpg", + "pnns_groups_2": "Milk and yogurt", + "origins_tags": [], + "labels_debug_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared": "", + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "additives_tags": [], + "nutrition_grades": "c", + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "link_debug_tags": [], + "pnns_groups_1_tags": [ + "milk-and-dairy-products" + ], + "categories_tags": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:blueberry-yogurts", + "en:goat-milk-yogurts" + ], + "nutriments": { + "fat_100g": 4, + "energy_100g": 402, + "fat": 4, + "saturated-fat_100g": 2.8, + "saturated-fat_value": "2.8", + "energy_value": "96", + "sodium": 0.031496062992126, + "nutrition-score-fr": 3, + "sugars_unit": "", + "carbohydrates": 11, + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "carbohydrates_value": "11", + "nutrition-score-uk_100g": 3, + "salt_serving": "", + "energy": 402, + "sodium_serving": "", + "salt_value": "0.08", + "carbohydrates_serving": "", + "nutrition-score-fr_100g": 3, + "salt": 0.08, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fruits-vegetables-nuts-estimate": 8, + "fat_unit": "", + "sodium_100g": 0.031496062992126, + "fruits-vegetables-nuts-estimate_value": "8", + "nutrition-score-uk": 3, + "proteins_unit": "", + "fruits-vegetables-nuts-estimate_serving": 8, + "sugars_100g": 10.3, + "energy_unit": "kcal", + "proteins": 3.8, + "salt_unit": "", + "fruits-vegetables-nuts-estimate_100g": 8, + "fat_serving": "", + "carbohydrates_unit": "", + "sugars_value": "10.3", + "sugars": 10.3, + "proteins_100g": 3.8, + "proteins_value": "3.8", + "salt_100g": 0.08, + "fruits-vegetables-nuts-estimate_unit": "", + "fat_value": "4", + "carbohydrates_100g": 11, + "energy_serving": "", + "saturated-fat": 2.8, + "sugars_serving": "" + }, + "purchase_places_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "quality_tags": [], + "additives_prev_original_tags": [], + "labels_hierarchy": [], + "vitamins_prev_tags": [], + "nutrition_score_debug": " -- energy 1 + sat-fat 2 + fr-sat-fat-for-fats 10 + sugars 2 + sodium 0 - fruits 8% 0 - fiber 0 - proteins 2 -- fsa 3 -- fr 3", + "ingredients_text_with_allergens_fr": "", + "categories_prev_hierarchy": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:blueberry-yogurts", + "en:goat-milk-yogurts" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "ingredients_text_with_allergens": "", + "url": "https://ssl-api.openfoodfacts.org/product/3273220541272/tendresse-myrtille-brasse-de-chevre-bio-vrai", + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "", + "minerals_tags": [], + "checkers_tags": [], + "last_image_dates_tags": [ + "2018-04-19", + "2018-04", + "2018" + ], + "nucleotides_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "traces": "", + "expiration_date_debug_tags": [], + "quantity": "230 g", + "entry_dates_tags": [ + "2018-04-19", + "2018-04", + "2018" + ], + "last_image_t": 1524128146, + "image_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.400.jpg", + "interface_version_modified": "20150316.jqm2", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "moon-rabbit", + "kiliweb" + ], + "stores_tags": [], + "rev": 11, + "minerals_prev_tags": [], + "allergens_hierarchy": [], + "emb_codes_orig": "", + "brands_tags": [ + "vrai" + ], + "sortkey": 533393754, + "emb_codes_debug_tags": [], + "serving_quantity": 0, + "emb_codes": "", + "labels": "", + "id": "3273220541272", + "nutrition_data_per_debug_tags": [], + "created_t": 1524128143, + "cities_tags": [], + "last_modified_by": "kiliweb", + "labels_tags": [], + "creator": "kiliweb", + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "brands_debug_tags": [], + "origins_debug_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.200.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.400.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.200.jpg" + } + } + }, + "pnns_groups_1": "Milk and dairy products", + "informers_tags": [ + "kiliweb", + "moon-rabbit" + ], + "unknown_nutrients_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "milk-and-yogurt" + ], + "serving_size_debug_tags": [], + "nutrition_score_warning_no_fiber": 1, + "languages_codes": { + "fr": 4 + }, + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.100.jpg", + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.100.jpg", + "product_name": "Tendresse Myrtille, Brassé de chèvre Bio", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-low-quantity" + ], + "ingredients_from_palm_oil_tags": [], + "countries": "France", + "purchase_places_tags": [], + "traces_tags": [], + "allergens_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.400.jpg", + "packaging_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.200.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_quantity": 230, + "product_name_fr": "Tendresse Myrtille, Brassé de chèvre Bio", + "emb_codes_tags": [], + "ingredients_text_debug": "", + "complete": 0, + "languages": { + "en:french": 4 + }, + "traces_debug_tags": [], + "ingredients_debug": [], + "_id": "3273220541272", + "_keywords": [ + "chevre", + "bio", + "au", + "de", + "brasse", + "myrtille", + "vrai", + "yaourt", + "lait", + "la", + "tendresse" + ], + "categories_prev_tags": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:blueberry-yogurts", + "en:goat-milk-yogurts" + ], + "last_modified_t": 1533393754, + "additives_old_tags": [], + "quantity_debug_tags": [], + "codes_tags": [ + "code-13", + 3273220541272, + "327322054127x", + "32732205412xx", + "3273220541xxx", + "327322054xxxx", + "32732205xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "ingredients_ids_debug": [], + "stores": "", + "brands": "Vrai", + "allergens": "", + "traces_hierarchy": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/nutrition_fr.9.100.jpg", + "countries_tags": [ + "en:france" + ], + "ingredients_text_fr_debug_tags": [], + "last_editor": "kiliweb", + "max_imgid": "2", + "generic_name_fr": "", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "manufacturing_places_debug_tags": [], + "code": "3273220541272", + "ingredients_text": "", + "nova_group_debug": "no nova group when the product does not have ingredients", + "lang_debug_tags": [], + "labels_prev_tags": [], + "update_key": "nova3", + "nucleotides_prev_tags": [], + "additives_debug_tags": [], + "labels_prev_hierarchy": [], + "vitamins_tags": [], + "nutrition_data": "on", + "lang": "fr", + "allergens_from_ingredients": "", + "nutrient_levels": { + "saturated-fat": "moderate", + "sugars": "moderate", + "fat": "moderate", + "salt": "low" + }, + "countries_hierarchy": [ + "en:france" + ], + "ingredients": [], + "manufacturing_places_tags": [], + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "ingredients_text_fr": "", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "serving_size": "", + "categories": "Yaourts au lait de chèvre,Yaourts à la myrtille", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "packaging": "", + "ingredients_hierarchy": [], + "link": "", + "nutrition_grade_fr": "c", + "expiration_date": "", + "stores_debug_tags": [], + "ingredients_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1524128144", + "sizes": { + "100": { + "h": 53, + "w": 100 + }, + "400": { + "h": 212, + "w": 400 + }, + "full": { + "w": 2050, + "h": 1087 + } + } + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1524128146", + "sizes": { + "100": { + "h": 100, + "w": 36 + }, + "400": { + "h": 400, + "w": 142 + }, + "full": { + "h": 1200, + "w": 427 + } + } + }, + "front_fr": { + "normalize": "0", + "angle": null, + "rev": "4", + "imgid": "1", + "y1": null, + "sizes": { + "100": { + "h": "53", + "w": "100" + }, + "200": { + "h": 106, + "w": 200 + }, + "400": { + "h": 212, + "w": 400 + }, + "full": { + "w": 2050, + "h": 1087 + } + }, + "x2": null, + "y2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "ingredients_fr": { + "geometry": "1043x136-82-30", + "white_magic": "false", + "x1": "27.399993896484375", + "x2": "375.2499694824219", + "y2": "55.21986389160156", + "y1": "10.219863891601562", + "sizes": { + "100": { + "w": 100, + "h": 13 + }, + "200": { + "h": 26, + "w": 200 + }, + "400": { + "w": 400, + "h": 52 + }, + "full": { + "w": 1043, + "h": 136 + } + }, + "imgid": "2", + "normalize": "false", + "rev": "8", + "angle": "90" + }, + "nutrition_fr": { + "imgid": "2", + "rev": "9", + "angle": "90", + "normalize": "false", + "y2": "130.19000244140625", + "x2": "370.969970703125", + "sizes": { + "100": { + "w": 100, + "h": 15 + }, + "200": { + "h": 30, + "w": 200 + }, + "400": { + "w": 400, + "h": 60 + }, + "full": { + "h": 150, + "w": 1002 + } + }, + "y1": "80.19000244140625", + "geometry": "1002x150-110-241", + "x1": "36.680023193359375", + "white_magic": "false" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/054/1272/ingredients_fr.8.200.jpg", + "additives_prev_tags": [], + "categories_hierarchy": [ + "en:dairies", + "en:fermented-foods", + "en:fermented-milk-products", + "en:yogurts", + "en:fruit-yogurts", + "en:blueberry-yogurts", + "en:goat-milk-yogurts" + ], + "amino_acids_tags": [], + "product_name_fr_debug_tags": [], + "generic_name": "", + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "moon-rabbit" + ], + "manufacturing_places": "", + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "nutrition_data_per": "100g" + }, + { + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "update_key": "nova3", + "last_image_dates_tags": [ + "2018-04-24", + "2018-04", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "3123349013719", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.100.jpg", + "checkers_tags": [], + "minerals_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3123349013719/pur-jus", + "ingredients_text_with_allergens": null, + "max_imgid": "2", + "last_editor": "kiliweb", + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "allergens": "", + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + 3123349013719, + "312334901371x", + "31233490137xx", + "3123349013xxx", + "312334901xxxx", + "31233490xxxxx", + "3123349xxxxxx", + "312334xxxxxxx", + "31233xxxxxxxx", + "3123xxxxxxxxx", + "312xxxxxxxxxx", + "31xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "additives_old_tags": [], + "last_modified_t": 1533393742, + "_id": "3123349013719", + "_keywords": [ + "ju", + "pur" + ], + "ingredients_debug": [], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "product_name_fr": "Pur jus", + "additives_prev_original_tags": [], + "quality_tags": [], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.400.jpg", + "nutriments": { + "energy_serving": "", + "saturated-fat": 0, + "sugars_serving": "", + "salt_100g": 0, + "fat_value": "0", + "carbohydrates_100g": 9.4, + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "sugars": 8.7, + "sugars_value": "8.7", + "proteins_100g": 0.7, + "proteins_value": "0.7", + "proteins_unit": "", + "sugars_100g": 8.7, + "energy_unit": "kcal", + "proteins": 0.7, + "salt": 0, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fat_unit": "", + "sodium_100g": 0, + "salt_serving": "", + "energy": 184, + "sodium_serving": "", + "salt_value": "0", + "carbohydrates_serving": "", + "sugars_unit": "", + "carbohydrates": 9.4, + "carbohydrates_value": "9.4", + "fat_100g": 0, + "energy_100g": 184, + "saturated-fat_100g": 0, + "saturated-fat_value": "0", + "fat": 0, + "energy_value": "44", + "sodium": 0 + }, + "allergens_tags": [], + "traces_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "nutrient_levels_tags": [], + "product_name": "Pur jus", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "nutrition_data_per": "100g", + "additives_original_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.100.jpg" + } + } + }, + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 900 + } + }, + "uploaded_t": "1524588390", + "uploader": "kiliweb" + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1524588393", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + } + }, + "ingredients_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 900, + "h": 1200 + } + }, + "y1": null, + "imgid": "2", + "rev": "7", + "angle": null, + "normalize": "0" + }, + "front_fr": { + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + } + }, + "ingredients_tags": [], + "last_modified_by": "kiliweb", + "ingredients_hierarchy": [], + "created_t": 1524588387, + "nutrition_data_per_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "id": "3123349013719", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "sortkey": 533393742, + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 10, + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "image_url": "https://static.openfoodfacts.org/images/products/312/334/901/3719/front_fr.4.400.jpg", + "entry_dates_tags": [ + "2018-04-24", + "2018-04", + "2018" + ], + "last_image_t": 1524588393, + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2" + }, + { + "checkers_tags": [], + "minerals_tags": [], + "max_imgid": "2", + "url": "https://ssl-api.openfoodfacts.org/product/5010102003439/tango-orange", + "ingredients_text_with_allergens": null, + "last_editor": null, + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "code": "5010102003439", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.100.jpg", + "additives_old_tags": [], + "last_modified_t": 1533393710, + "_id": "5010102003439", + "ingredients_debug": [], + "_keywords": [ + "tango", + "orange" + ], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "codes_tags": [ + "code-13", + "5010102003439", + "501010200343x", + "50101020034xx", + "5010102003xxx", + "501010200xxxx", + "50101020xxxxx", + "5010102xxxxxx", + "501010xxxxxxx", + "50101xxxxxxxx", + "5010xxxxxxxxx", + "501xxxxxxxxxx", + "50xxxxxxxxxxx", + "5xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "allergens_tags": [], + "traces_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "additives_prev_original_tags": [], + "product_name_fr": "Tango Orange", + "quality_tags": [], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.400.jpg", + "nutriments": { + "carbohydrates_value": "4.3", + "sugars_unit": "", + "carbohydrates": 4.3, + "sodium": 0.0236220472440945, + "energy_100g": "264", + "fat_100g": "0", + "energy_value": "63", + "saturated-fat_100g": "0", + "saturated-fat_value": "0", + "fat": "0", + "sodium_100g": 0.0236220472440945, + "fat_unit": "", + "proteins_serving": "", + "salt": 0.06, + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "salt_value": "0.06", + "carbohydrates_serving": "", + "energy": "264", + "salt_serving": "", + "sodium_serving": "", + "sugars": 4.3, + "sugars_value": "4.3", + "proteins_value": "0", + "proteins_100g": "0", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "sugars_100g": 4.3, + "proteins": "0", + "energy_unit": "kcal", + "proteins_unit": "", + "energy_serving": "", + "sugars_serving": "", + "saturated-fat": "0", + "fat_value": "0", + "carbohydrates_100g": 4.3, + "salt_100g": 0.06 + }, + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "product_name": "Tango Orange", + "nutrient_levels_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "nutrition_data_per": "100g", + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_original_tags": [], + "informers_tags": [ + "kiliweb" + ], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.400.jpg" + } + } + }, + "last_modified_by": null, + "ingredients_hierarchy": [], + "created_t": 1533393704, + "nutrition_data_per_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "uploaded_t": 1533393707, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 63, + "h": 100 + }, + "400": { + "h": 400, + "w": 252 + }, + "full": { + "h": 1200, + "w": 756 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 30, + "w": 100 + }, + "400": { + "h": 119, + "w": 400 + }, + "full": { + "w": 3028, + "h": 901 + } + }, + "uploaded_t": 1533393709, + "uploader": "kiliweb" + }, + "ingredients_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": 100, + "h": 30 + }, + "200": { + "h": 60, + "w": 200 + }, + "400": { + "w": 400, + "h": 119 + }, + "full": { + "h": 901, + "w": 3028 + } + }, + "y1": null, + "y2": null, + "x2": null, + "rev": "7", + "angle": null, + "normalize": "0", + "imgid": "2" + }, + "front_fr": { + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "63", + "h": "100" + }, + "200": { + "h": 200, + "w": 126 + }, + "400": { + "w": 252, + "h": 400 + }, + "full": { + "w": 756, + "h": 1200 + } + }, + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4" + } + }, + "ingredients_tags": [], + "sortkey": 533393710, + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 7, + "id": "5010102003439", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/501/010/200/3439/front_fr.4.400.jpg", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "last_image_t": 1533393709, + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2" + }, + { + "image_front_small_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.200.jpg", + "nutriments": { + "salt_serving": "", + "energy": 42, + "sodium_serving": "", + "salt_value": "0", + "carbohydrates_serving": "", + "salt": 0, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fat_unit": "", + "sodium_100g": 0, + "energy_100g": 42, + "fat_100g": 0, + "saturated-fat_value": "0", + "saturated-fat_100g": 0, + "fat": 0, + "energy_value": "10", + "sodium": 0, + "sugars_unit": "", + "carbohydrates": 10, + "carbohydrates_value": "10", + "salt_100g": 0, + "fat_value": "0", + "carbohydrates_100g": 10, + "energy_serving": "", + "saturated-fat": 0, + "sugars_serving": "", + "proteins_unit": "", + "sugars_100g": 7.8, + "energy_unit": "kcal", + "proteins": 0, + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "sugars_value": "7.8", + "sugars": 7.8, + "proteins_100g": 0, + "proteins_value": "0" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.400.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "quality_tags": [], + "product_name_fr": "Ogeu Limonade", + "additives_prev_original_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "allergens_tags": [], + "traces_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Ogeu Limonade", + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.200.jpg", + "languages_codes": { + "fr": 3 + }, + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "last_image_dates_tags": [ + "2018-05-04", + "2018-05", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "3119070059027", + "update_key": "nova3", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "last_editor": "kiliweb", + "url": "https://ssl-api.openfoodfacts.org/product/3119070059027/ogeu-limonade", + "max_imgid": "2", + "ingredients_text_with_allergens": null, + "checkers_tags": [], + "minerals_tags": [], + "vitamins_prev_tags": [], + "codes_tags": [ + "code-13", + 3119070059027, + "311907005902x", + "31190700590xx", + "3119070059xxx", + "311907005xxxx", + "31190700xxxxx", + "3119070xxxxxx", + "311907xxxxxxx", + "31190xxxxxxxx", + "3119xxxxxxxxx", + "311xxxxxxxxxx", + "31xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "ingredients_ids_debug": [], + "allergens": "", + "nutrition_score_debug": "no score when the product does not have a category", + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "complete": 0, + "ingredients_text_debug": null, + "ingredients_debug": [], + "_keywords": [ + "ogeu", + "limonade" + ], + "_id": "3119070059027", + "languages": { + "en:french": 3 + }, + "additives_old_tags": [], + "last_modified_t": 1533393686, + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "3119070059027", + "rev": 8, + "minerals_prev_tags": [], + "ingredients": [], + "allergens_hierarchy": [], + "sortkey": 533393686, + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "additives_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.400.jpg", + "entry_dates_tags": [ + "2018-05-04", + "2018-05", + "2018" + ], + "last_image_t": 1525423503, + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.200.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/311/907/005/9027/front_fr.4.400.jpg" + } + } + }, + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "nutrition_data_per": "100g", + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "amino_acids_tags": [], + "ingredients_tags": [], + "creator": "kiliweb", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1525423495", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1200, + "w": 901 + } + } + }, + "2": { + "uploaded_t": "1525423502", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1600 + } + } + }, + "ingredients_fr": { + "imgid": "2", + "normalize": "0", + "angle": null, + "rev": "7", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1200, + "w": 1600 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + }, + "front_fr": { + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0", + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1200, + "w": 901 + } + }, + "y1": null, + "y2": null, + "x2": null, + "rev": "4", + "angle": null, + "normalize": "0", + "imgid": "1" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.200.jpg", + "nutrition_data_per_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/311/907/005/9027/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "ingredients_hierarchy": [], + "created_t": 1525423493, + "last_modified_by": "kiliweb" + }, + { + "image_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.400.jpg", + "last_image_t": 1533393404, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "additives_debug_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "sortkey": 533393586, + "minerals_prev_tags": [], + "rev": 8, + "ingredients": [], + "allergens_hierarchy": [], + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "8410577023135", + "countries_debug_tags": [], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "last_modified_by": "kiliweb", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "ingredients_hierarchy": [], + "created_t": 1533393399, + "creator": "kiliweb", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 68 + }, + "400": { + "w": 271, + "h": 400 + }, + "full": { + "h": 1200, + "w": 814 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393401 + }, + "2": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1600, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393403 + }, + "ingredients_fr": { + "imgid": "2", + "normalize": "0", + "angle": null, + "rev": "7", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "h": 150, + "w": 200 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 1600, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null + }, + "front_fr": { + "angle": null, + "rev": "4", + "normalize": "0", + "imgid": "1", + "sizes": { + "100": { + "w": "68", + "h": "100" + }, + "200": { + "w": 136, + "h": 200 + }, + "400": { + "h": 400, + "w": 271 + }, + "full": { + "w": 814, + "h": 1200 + } + }, + "y1": null, + "y2": null, + "x2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.200.jpg", + "ingredients_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "amino_acids_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "nutrition_data_per": "100g", + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.100.jpg" + } + } + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.200.jpg", + "languages_codes": { + "fr": 3 + }, + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "product_name": "Gaseosa", + "nutrient_levels_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/ingredients_fr.7.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "allergens_tags": [], + "traces_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_fr": "Gaseosa", + "quality_tags": [], + "additives_prev_original_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.200.jpg", + "nutriments": { + "proteins_unit": "", + "sugars_100g": 0, + "proteins": 0, + "energy_unit": "kcal", + "salt_unit": "", + "carbohydrates_unit": "", + "fat_serving": "", + "sugars_value": "0", + "sugars": 0, + "proteins_value": "0", + "proteins_100g": 0, + "salt_100g": 0, + "fat_value": "0", + "carbohydrates_100g": 0, + "energy_serving": "", + "sugars_serving": "", + "saturated-fat": 0, + "fat_100g": 0, + "energy_100g": 4, + "energy_value": "1", + "fat": 0, + "saturated-fat_100g": 0, + "saturated-fat_value": "0", + "sodium": 0, + "sugars_unit": "", + "carbohydrates": 0, + "carbohydrates_value": "0", + "energy": 4, + "salt_serving": "", + "sodium_serving": "", + "carbohydrates_serving": "", + "salt_value": "0", + "salt": 0, + "proteins_serving": "", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "sodium_100g": 0, + "fat_unit": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.400.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "additives_old_tags": [], + "last_modified_t": 1533393586, + "complete": 0, + "ingredients_text_debug": null, + "_id": "8410577023135", + "ingredients_debug": [], + "_keywords": [ + "gaseosa" + ], + "languages": { + "en:french": 3 + }, + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "vitamins_prev_tags": [], + "codes_tags": [ + "code-13", + 8410577023135, + "841057702313x", + "84105770231xx", + "8410577023xxx", + "841057702xxxx", + "84105770xxxxx", + "8410577xxxxxx", + "841057xxxxxxx", + "84105xxxxxxxx", + "8410xxxxxxxxx", + "841xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "minerals_tags": [], + "checkers_tags": [], + "last_editor": "kiliweb", + "url": "https://ssl-api.openfoodfacts.org/product/8410577023135/gaseosa", + "ingredients_text_with_allergens": null, + "max_imgid": "2", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/841/057/702/3135/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "code": "8410577023135" + }, + { + "additives_debug_tags": [ + "en-e322i-added", + "en-e500ii-added", + "en-e501ii-added", + "en-e503ii-added" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "labels_prev_hierarchy": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "editors": [ + "", + "nat", + "mathias" + ], + "lang": "fr", + "allergens_from_ingredients": "blé, blé, soja", + "nutrition_data": "on", + "vitamins_tags": [], + "countries_hierarchy": [ + "en:denmark", + "en:france", + "en:switzerland" + ], + "nutrient_levels": { + "saturated-fat": "high", + "sugars": "high", + "fat": "high", + "salt": "moderate" + }, + "ingredients": [ + { + "rank": 1, + "text": "Sucre", + "id": "en:sugar" + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_", + "rank": 2 + }, + { + "id": "en:vegetable-oil", + "rank": 3, + "text": "huiles végétales" + }, + { + "percent": "3.6", + "id": "fr:cacao-maigre-en-poudre", + "rank": 4, + "text": "cacao maigre en poudre" + }, + { + "id": "fr:amidon-de-ble", + "rank": 5, + "text": "amidon de _blé_" + }, + { + "text": "sirop de glucose-fructose", + "rank": 6, + "id": "en:glucose-and-fructose-syrup" + }, + { + "id": "en:raising-agent", + "text": "poudre à lever", + "rank": 7 + }, + { + "text": "sel", + "rank": 8, + "id": "en:salt" + }, + { + "id": "en:emulsifier", + "rank": 9, + "text": "émulsifiants" + }, + { + "id": "en:vanilla-flavour", + "rank": 10, + "text": "arôme vanille" + }, + { + "text": "palme", + "id": "en:palm" + }, + { + "text": "palmiste", + "id": "fr:palmiste" + }, + { + "text": "carbonate acide de potassium", + "id": "fr:carbonate-acide-de-potassium" + }, + { + "id": "fr:carbonate-acide-d-ammonium", + "text": "carbonate acide d'ammonium" + }, + { + "text": "carbonate acide de sodium", + "id": "fr:carbonate-acide-de-sodium" + }, + { + "id": "en:soy-lecithin", + "text": "lécithine de _soja_" + }, + { + "text": "lécithine de tournesol", + "id": "en:sunflower-lecithin" + } + ], + "manufacturing_places_tags": [], + "ingredients_from_palm_oil_n": 1, + "ingredients_text_fr": "Sucre, farine de _blé_, huiles végétales (palme, palmiste), cacao maigre en poudre 3,6 %, amidon de _blé_, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "nutrition_grades_tags": [ + "e" + ], + "countries_debug_tags": [], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Biscuits au chocolat", + "serving_size": "14 g", + "nova_groups": "4", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_text_with_allergens_de": "", + "ingredients_hierarchy": [ + "en:sugar", + "en:wheat-flour", + "en:vegetable-oil", + "fr:cacao-maigre-en-poudre", + "fr:amidon-de-ble", + "en:starch", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:raising-agent", + "en:salt", + "en:emulsifier", + "en:vanilla-flavour", + "en:flavour", + "en:palm", + "en:palm-oil", + "en:vegetable-oil", + "fr:palmiste", + "fr:carbonate-acide-de-potassium", + "fr:carbonate-acide-d-ammonium", + "fr:carbonate-acide-de-sodium", + "en:soy-lecithin", + "en:sunflower-lecithin", + "en:sunflower" + ], + "packaging": "sachet,plastique", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.400.jpg", + "languages_hierarchy": [ + "en:french", + "en:german" + ], + "expiration_date": "20/02/2018", + "nutrition_grade_fr": "e", + "link": "", + "ingredients_tags": [ + "en:sugar", + "en:wheat-flour", + "en:vegetable-oil", + "fr:cacao-maigre-en-poudre", + "fr:amidon-de-ble", + "en:starch", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:raising-agent", + "en:salt", + "en:emulsifier", + "en:vanilla-flavour", + "en:flavour", + "en:palm", + "en:palm-oil", + "en:vegetable-oil", + "fr:palmiste", + "fr:carbonate-acide-de-potassium", + "fr:carbonate-acide-d-ammonium", + "fr:carbonate-acide-de-sodium", + "en:soy-lecithin", + "en:sunflower-lecithin", + "en:sunflower" + ], + "stores_debug_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.200.jpg", + "images": { + "1": { + "uploaded_t": 1425073796, + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + } + }, + "2": { + "uploader": "nat", + "uploaded_t": 1425074893, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1467481053" + }, + "4": { + "uploaded_t": "1467481117", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1467481154" + }, + "6": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + }, + "uploaded_t": "1481816770", + "uploader": "openfoodfacts-contributors" + }, + "7": { + "uploaded_t": 1486496584, + "uploader": "openfood-ch-import", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1000, + "h": 563 + } + } + }, + "8": { + "uploaded_t": 1486496584, + "uploader": "openfood-ch-import", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 563, + "h": 1000 + } + } + }, + "9": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486496585, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 563, + "w": 1000 + } + } + }, + "10": { + "sizes": { + "100": { + "w": 100, + "h": 27 + }, + "400": { + "h": 107, + "w": 400 + }, + "full": { + "h": 547, + "w": 2050 + } + }, + "uploaded_t": "1518973462", + "uploader": "kiliweb" + }, + "11": { + "sizes": { + "100": { + "h": 100, + "w": 31 + }, + "400": { + "h": 400, + "w": 123 + }, + "full": { + "h": 2763, + "w": 847 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1518973464" + }, + "12": { + "uploaded_t": "1523377193", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 27, + "h": 100 + }, + "400": { + "h": 400, + "w": 106 + }, + "full": { + "h": 1200, + "w": 319 + } + } + }, + "13": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1333, + "w": 1000 + } + }, + "uploader": "date-limite-app", + "uploaded_t": 1533393575 + }, + "front": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "200": { + "w": 200, + "h": 113 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "white_magic": null, + "rev": "3", + "normalize": null, + "geometry": "0x0--5--5", + "imgid": "1" + }, + "nutrition_fr": { + "y1": "47.43333435058594", + "sizes": { + "100": { + "w": 100, + "h": 40 + }, + "200": { + "h": 79, + "w": 200 + }, + "400": { + "h": 159, + "w": 400 + }, + "full": { + "h": 785, + "w": 1980 + } + }, + "x2": "397", + "y2": "204.43333435058594", + "white_magic": "false", + "x1": "1", + "geometry": "1980x785-5-237", + "normalize": "false", + "angle": "0", + "rev": "16", + "imgid": "2" + }, + "ingredients_de": { + "geometry": "1955x250-17-537", + "white_magic": "false", + "x1": "3.5", + "y2": "157.433349609375", + "x2": "394.5", + "sizes": { + "100": { + "h": 13, + "w": 100 + }, + "200": { + "h": 26, + "w": 200 + }, + "400": { + "h": 51, + "w": 400 + }, + "full": { + "w": 1955, + "h": 250 + } + }, + "y1": "107.433349609375", + "imgid": "1", + "rev": "18", + "angle": "0", + "normalize": "false" + }, + "front_fr": { + "y2": "108.62109374999997", + "x2": "389.5585937499999", + "sizes": { + "100": { + "w": "100", + "h": "25" + }, + "200": { + "w": 200, + "h": 50 + }, + "400": { + "h": 100, + "w": 400 + }, + "full": { + "h": 288, + "w": 1153 + } + }, + "y1": "10.445312499999998", + "geometry": "1153x295-15-31", + "white_magic": "false", + "x1": "5.011718749999999", + "imgid": "12", + "rev": "32", + "angle": "270", + "normalize": "false" + }, + "ingredients_fr": { + "imgid": "11", + "rev": "25", + "angle": "270", + "normalize": "false", + "geometry": "2710x650-53-196", + "white_magic": "false", + "x1": "7.749969482421875", + "y2": "122.90185546875", + "x2": "400", + "sizes": { + "100": { + "h": 24, + "w": 100 + }, + "200": { + "h": 48, + "w": 200 + }, + "400": { + "w": 400, + "h": 96 + }, + "full": { + "h": 650, + "w": 2710 + } + }, + "y1": "28.46875" + } + }, + "amino_acids_tags": [], + "emb_codes_20141016": "", + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits" + ], + "additives_prev_tags": [ + "en:e322", + "en:e500", + "en:e501", + "en:e503" + ], + "product_name_fr_debug_tags": [], + "nutrition_data_per": "100g", + "additives_original_tags": [ + "en:e501ii", + "en:e503ii", + "en:e500ii", + "en:e322i" + ], + "manufacturing_places": "", + "editors_tags": [ + "kiliweb", + "nat", + "yukafix", + "anticultist", + "date-limite-app", + "beniben", + "openfood-ch-import", + "mathias", + "openfoodfacts-contributors" + ], + "generic_name": "", + "unknown_nutrients_tags": [], + "unique_scans_n": 7, + "languages_codes": { + "fr": 5, + "de": 1 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.200.jpg", + "serving_size_debug_tags": [], + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "ingredients_text_de": "", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.100.jpg", + "categories_debug_tags": [], + "product_name": "Double Oreo", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "countries": "en:france, en:denmark, en:switzerland", + "allergens_tags": [ + "en:gluten", + "en:soybeans" + ], + "purchase_places_tags": [ + "frace" + ], + "traces_tags": [ + "en:milk" + ], + "languages_tags": [ + "en:french", + "en:german", + "en:2", + "en:multilingual" + ], + "packaging_tags": [ + "sachet", + "plastique" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.400.jpg", + "emb_codes_tags": [], + "product_name_fr": "Double Oreo", + "product_quantity": 157, + "photographers_tags": [ + "openfoodfacts-contributors", + "nat", + "openfood-ch-import", + "kiliweb", + "date-limite-app" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "ingredients_debug": [ + "Sucre", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " huiles végétales ", + "(", + "(", + null, + null, + "palme", + ",", + null, + null, + null, + " palmiste)", + ",", + null, + null, + null, + " cacao maigre en poudre 3", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " amidon de _blé_", + ",", + null, + null, + null, + " sirop de glucose-fructose", + ",", + null, + null, + null, + " poudre à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "carbonate acide de potassium", + ",", + null, + null, + null, + " carbonate acide d'ammonium", + ",", + null, + null, + null, + " carbonate acide de sodium)", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " émulsifiants ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "lécithine de _soja_", + ",", + null, + null, + null, + " lécithine de tournesol)", + ",", + null, + null, + null, + " arôme vanille." + ], + "_keywords": [ + "biscuit", + "mondelez", + "gateaux", + "au", + "chocolat", + "sucre", + "oreo", + "snack", + "et", + "double" + ], + "_id": "7622210137258", + "traces_debug_tags": [], + "languages": { + "en:german": 1, + "en:french": 5 + }, + "complete": 1, + "ingredients_text_debug": "Sucre, farine de _blé_, huiles végétales (palme, palmiste), cacao maigre en poudre 3,6 %, amidon de _blé_, sirop de glucose-fructose, poudre à lever : (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants : (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "quantity_debug_tags": [], + "additives_old_tags": [ + "en:e501", + "en:e503", + "en:e500", + "en:e322" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits" + ], + "last_modified_t": 1533393576, + "codes_tags": [ + "code-13", + "7622210137258", + "762221013725x", + "76222101372xx", + "7622210137xxx", + "762221013xxxx", + "76222101xxxxx", + "7622210xxxxxx", + "762221xxxxxxx", + "76222xxxxxxxx", + "7622xxxxxxxxx", + "762xxxxxxxxxx", + "76xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "additives_n": 4, + "countries_tags": [ + "en:denmark", + "en:france", + "en:switzerland" + ], + "traces_hierarchy": [ + "en:milk" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.100.jpg", + "allergens": "blé, blé, soja", + "brands": "Oreo,Mondelez", + "ingredients_ids_debug": [ + "sucre", + "farine-de-ble", + "huiles-vegetales", + "palme", + "palmiste", + "cacao-maigre-en-poudre-3", + "6", + "amidon-de-ble", + "sirop-de-glucose-fructose", + "poudre-a-lever", + "carbonate-acide-de-potassium", + "carbonate-acide-d-ammonium", + "carbonate-acide-de-sodium", + "sel", + "emulsifiants", + "lecithine-de-soja", + "lecithine-de-tournesol", + "arome-vanille" + ], + "stores": "Irma.dk", + "fruits-vegetables-nuts_100g_estimate": 0, + "max_imgid": 13, + "last_editor": "date-limite-app", + "ingredients_text_fr_debug_tags": [], + "generic_name_fr": "", + "ingredients_text": "Sucre, farine de _blé_, huiles végétales (palme, palmiste), cacao maigre en poudre 3,6 %, amidon de _blé_, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:flavour : 4", + "code": "7622210137258", + "manufacturing_places_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_prev_tags": [], + "labels_prev_tags": [], + "update_key": "nova3", + "lang_debug_tags": [], + "traces": "Lait", + "lc": "fr", + "interface_version_created": "20120622", + "image_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.400.jpg", + "entry_dates_tags": [ + "2015-02-27", + "2015-02", + "2015", + "open-food-hunt-2015" + ], + "last_image_t": 1533393576, + "quantity": "157 g e", + "expiration_date_debug_tags": [], + "ingredients_n_tags": [ + "17", + "11-20" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.200.jpg", + "interface_version_modified": "20150316.jqm2", + "ingredients_text_de_debug_tags": [], + "product_name_de": "", + "stores_tags": [ + "irma-dk" + ], + "correctors_tags": [ + "mathias", + "kiliweb", + "openfood-ch-import", + "anticultist", + "openfoodfacts-contributors", + "beniben", + "yukafix" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:soybeans" + ], + "rev": 38, + "minerals_prev_tags": [], + "completed_t": 1519581125, + "sortkey": 1533393576, + "brands_tags": [ + "oreo", + "mondelez" + ], + "emb_codes_orig": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "serving_quantity": 14, + "emb_codes_debug_tags": [], + "id": "7622210137258", + "ingredients_n": "17", + "labels": "", + "emb_codes": "", + "created_t": 1425073795, + "nutrition_data_per_debug_tags": [], + "last_modified_by": "date-limite-app", + "cities_tags": [], + "labels_tags": [], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "creator": "openfoodfacts-contributors", + "generic_name_fr_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "generic_name_de_debug_tags": [], + "pnns_groups_1": "Sugary snacks", + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/front_fr.32.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.400.jpg", + "de": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_de.18.400.jpg" + }, + "small": { + "de": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_de.18.200.jpg", + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_fr.25.100.jpg", + "de": "https://static.openfoodfacts.org/images/products/762/221/013/7258/ingredients_de.18.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.400.jpg" + } + } + }, + "origins_debug_tags": [], + "brands_debug_tags": [], + "informers_tags": [ + "openfoodfacts-contributors", + "mathias", + "kiliweb", + "openfood-ch-import", + "anticultist", + "beniben" + ], + "ingredients_original_tags": [ + "en:sugar", + "en:wheat-flour", + "en:vegetable-oil", + "fr:cacao-maigre-en-poudre", + "fr:amidon-de-ble", + "en:glucose-and-fructose-syrup", + "en:raising-agent", + "en:salt", + "en:emulsifier", + "en:vanilla-flavour", + "en:palm", + "fr:palmiste", + "fr:carbonate-acide-de-potassium", + "fr:carbonate-acide-d-ammonium", + "fr:carbonate-acide-de-sodium", + "en:soy-lecithin", + "en:sunflower-lecithin" + ], + "origins": "", + "pnns_groups_2": "Biscuits and cakes", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/762/221/013/7258/nutrition_fr.16.400.jpg", + "nutrition_data_prepared": "", + "nova_group": "4", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "labels_debug_tags": [], + "origins_tags": [], + "additives_prev_n": 4, + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "link_debug_tags": [], + "nutrition_grades": "e", + "additives_tags": [ + "en:e322", + "en:e322i", + "en:e500", + "en:e500ii", + "en:e501", + "en:e501ii", + "en:e503", + "en:e503ii" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "generic_name_de": "", + "ingredients_text_debug_tags": [], + "purchase_places_debug_tags": [], + "nutriments": { + "cocoa_label": "Cacao (minimum)", + "salt_100g": 0.6, + "fat_value": "22", + "carbohydrates_100g": "68", + "fiber_serving": 0.336, + "energy_serving": "289", + "saturated-fat": 7.2, + "sugars_serving": 6.02, + "cocoa_100g": 3.6, + "nova-group_serving": "4", + "nutrition-score-uk": "22", + "proteins_unit": "", + "cocoa": 3.6, + "sugars_100g": "43", + "fiber_unit": "g", + "fiber": 2.4, + "energy_unit": "kcal", + "proteins": 4.2, + "salt_unit": "", + "fiber_100g": 2.4, + "fat_serving": 3.08, + "nova-group_100g": "4", + "carbohydrates_unit": "", + "sugars": "43", + "sugars_value": "43", + "proteins_100g": 4.2, + "proteins_value": "4.2", + "salt_serving": 0.084, + "energy": "2067", + "sodium_serving": 0.0331, + "cocoa_value": "3.6", + "salt_value": "0.6", + "carbohydrates_serving": 9.52, + "nutrition-score-fr_100g": "22", + "salt": 0.6, + "proteins_serving": 0.588, + "saturated-fat_unit": "", + "saturated-fat_serving": 1.01, + "nova-group": "4", + "fat_unit": "", + "sodium_100g": 0.236220472440945, + "fat_100g": "22", + "energy_100g": "2067", + "fiber_value": "2.4", + "fat": "22", + "saturated-fat_value": "7.2", + "saturated-fat_100g": 7.2, + "energy_value": "494", + "cocoa_unit": "g", + "sodium": 0.236220472440945, + "sugars_unit": "", + "nutrition-score-fr": "22", + "carbohydrates": "68", + "cocoa_serving": 3.6, + "carbohydrates_value": "68", + "nutrition-score-uk_100g": "22" + }, + "product_name_de_debug_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "additives_prev_original_tags": [ + "en:e501", + "en:e503", + "en:e500", + "en:e322" + ], + "packaging_debug_tags": [], + "labels_hierarchy": [], + "scans_n": 10, + "vitamins_prev_tags": [], + "ingredients_text_with_allergens_fr": "Sucre, farine de blé, huiles végétales (palme, palmiste), cacao maigre en poudre 3,6 %, amidon de blé, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de soja, lécithine de tournesol), arôme vanille.", + "nutrition_score_debug": " -- energy 6 + sat-fat 7 + fr-sat-fat-for-fats 4 + sugars 9 + sodium 2 - fruits 0% 0 - fiber 2 - proteins 2 -- fsa 22 -- fr 22", + "nutrition_data_prepared_per_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/7622210137258/double-oreo", + "ingredients_text_with_allergens": "Sucre, farine de blé, huiles végétales (palme, palmiste), cacao maigre en poudre 3,6 %, amidon de blé, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de soja, lécithine de tournesol), arôme vanille.", + "debug_param_sorted_langs": [ + "fr", + "de" + ], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits" + ], + "minerals_tags": [], + "checkers_tags": [], + "purchase_places": "Frace", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "additives_old_n": 4, + "nucleotides_tags": [], + "sources": [ + { + "url": "https://www.openfood.ch/en/products/3546", + "import_t": 1486496585, + "id": "openfood-ch", + "images": [ + "7", + "8", + "9" + ], + "fields": [ + "countries", + "serving_size", + "nutrients.fat", + "nutrients.carbohydrates" + ] + } + ] + }, + { + "codes_tags": [ + "code-13", + "0065651000229", + "006565100022x", + "00656510002xx", + "0065651000xxx", + "006565100xxxx", + "00656510xxxxx", + "0065651xxxxxx", + "006565xxxxxxx", + "00656xxxxxxxx", + "0065xxxxxxxxx", + "006xxxxxxxxxx", + "00xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "_id": "0065651000229", + "ingredients_debug": [], + "_keywords": [ + "naturegg" + ], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "additives_old_tags": [], + "last_modified_t": 1533393542, + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "0065651000229", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.100.jpg", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/0065651000229/naturegg", + "ingredients_text_with_allergens": null, + "max_imgid": "2", + "last_editor": null, + "checkers_tags": [], + "minerals_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Naturegg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.200.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.400.jpg", + "nutriments": { + "sugars_100g": "0", + "energy_unit": "kcal", + "proteins": "6", + "proteins_unit": "", + "sugars": "0", + "sugars_value": "0", + "proteins_100g": "6", + "proteins_value": "6", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "fat_value": "5", + "carbohydrates_100g": "1", + "salt_100g": 0.65, + "energy_serving": "", + "saturated-fat": 1.5, + "sugars_serving": "", + "sodium": 0.255905511811024, + "fat_100g": "5", + "energy_100g": "293", + "fat": "5", + "saturated-fat_100g": 1.5, + "saturated-fat_value": "1.5", + "energy_value": "70", + "carbohydrates_value": "1", + "sugars_unit": "", + "carbohydrates": "1", + "carbohydrates_serving": "", + "salt_value": "0.65", + "salt_serving": "", + "energy": "293", + "sodium_serving": "", + "fat_unit": "", + "sodium_100g": 0.255905511811024, + "proteins_serving": "", + "salt": 0.65, + "saturated-fat_unit": "", + "saturated-fat_serving": "" + }, + "additives_prev_original_tags": [], + "product_name_fr": "Naturegg", + "quality_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "allergens_tags": [], + "traces_tags": [], + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": 1533393538, + "sizes": { + "100": { + "w": 100, + "h": 36 + }, + "400": { + "w": 400, + "h": 142 + }, + "full": { + "w": 2050, + "h": 730 + } + } + }, + "2": { + "uploaded_t": 1533393541, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "400": { + "h": 206, + "w": 400 + }, + "full": { + "h": 1068, + "w": 2076 + } + } + }, + "ingredients_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 51 + }, + "200": { + "h": 103, + "w": 200 + }, + "400": { + "w": 400, + "h": 206 + }, + "full": { + "w": 2076, + "h": 1068 + } + }, + "x2": null, + "y2": null, + "normalize": "0", + "rev": "7", + "angle": null, + "imgid": "2" + }, + "front_fr": { + "imgid": "1", + "rev": "4", + "angle": null, + "normalize": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": "100", + "h": "36" + }, + "200": { + "w": 200, + "h": 71 + }, + "400": { + "w": 400, + "h": 142 + }, + "full": { + "h": 730, + "w": 2050 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + } + }, + "ingredients_hierarchy": [], + "created_t": 1533393537, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "last_modified_by": null, + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/ingredients_fr.7.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "informers_tags": [ + "kiliweb" + ], + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "image_url": "https://static.openfoodfacts.org/images/products/006/565/100/0229/front_fr.4.400.jpg", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "last_image_t": 1533393541, + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "id": "0065651000229", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 7, + "sortkey": 533393542 + }, + { + "last_modified_by": null, + "created_t": 1533393530, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.200.jpg", + "images": { + "1": { + "uploaded_t": 1533393532, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 47, + "w": 100 + }, + "400": { + "w": 400, + "h": 189 + }, + "full": { + "h": 968, + "w": 2050 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 16 + }, + "400": { + "w": 65, + "h": 400 + }, + "full": { + "h": 1200, + "w": 196 + } + }, + "uploaded_t": 1533393534, + "uploader": "kiliweb" + }, + "front_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "100", + "h": "47" + }, + "200": { + "h": 94, + "w": 200 + }, + "400": { + "w": 400, + "h": 189 + }, + "full": { + "w": 2050, + "h": 968 + } + }, + "imgid": "1", + "normalize": "0", + "rev": "4", + "angle": null + }, + "ingredients_fr": { + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": 16, + "h": 100 + }, + "200": { + "w": 33, + "h": 200 + }, + "400": { + "h": 400, + "w": 65 + }, + "full": { + "h": 1200, + "w": 196 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "2", + "normalize": "0", + "rev": "7", + "angle": null + } + }, + "creator": "kiliweb", + "ingredients_tags": [], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.100.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.200.jpg" + } + } + }, + "last_image_t": 1533393534, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.400.jpg", + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "sortkey": 533393535, + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 7, + "id": "2689134015289", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "last_modified_t": 1533393535, + "additives_old_tags": [], + "languages": { + "en:french": 3 + }, + "_id": "2689134015289", + "ingredients_debug": [], + "_keywords": [ + "morbier" + ], + "ingredients_text_debug": null, + "complete": 0, + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "codes_tags": [ + "code-13", + "2689134015289", + "268913401528x", + "26891340152xx", + "2689134015xxx", + "268913401xxxx", + "26891340xxxxx", + "2689134xxxxxx", + "268913xxxxxxx", + "26891xxxxxxxx", + "2689xxxxxxxxx", + "268xxxxxxxxxx", + "26xxxxxxxxxxx", + "2xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "checkers_tags": [], + "minerals_tags": [], + "ingredients_text_with_allergens": null, + "url": "https://ssl-api.openfoodfacts.org/product/2689134015289/morbier", + "max_imgid": "2", + "last_editor": null, + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "code": "2689134015289", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "product_name": "Morbier", + "nutrient_levels_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/ingredients_fr.7.100.jpg", + "traces_tags": [], + "allergens_tags": [], + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "quality_tags": [], + "additives_prev_original_tags": [], + "product_name_fr": "Morbier", + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "nutriments": { + "sugars_value": "0", + "sugars": "0", + "proteins_100g": "24", + "proteins_value": "24", + "salt_unit": "", + "carbohydrates_unit": "", + "fat_serving": "", + "sugars_100g": "0", + "energy_unit": "kcal", + "proteins": "24", + "proteins_unit": "", + "energy_serving": "", + "saturated-fat": "21", + "sugars_serving": "", + "fat_value": "32", + "carbohydrates_100g": "0", + "salt_100g": "1", + "carbohydrates_value": "0", + "sugars_unit": "", + "carbohydrates": "0", + "sodium": 0.393700787401575, + "fat_100g": "32", + "energy_100g": "1611", + "saturated-fat_100g": "21", + "saturated-fat_value": "21", + "fat": "32", + "energy_value": "385", + "fat_unit": "", + "sodium_100g": 0.393700787401575, + "proteins_serving": "", + "salt": "1", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "salt_value": "1", + "carbohydrates_serving": "", + "salt_serving": "", + "energy": "1611", + "sodium_serving": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/268/913/401/5289/front_fr.4.200.jpg" + }, + { + "cities_tags": [], + "last_modified_by": "date-limite-app", + "nutrition_data_per_debug_tags": [], + "created_t": 1491502869, + "creator": "kiliweb", + "labels_tags": [], + "generic_name_fr_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "informers_tags": [ + "kiliweb", + "beniben", + "date-limite-app" + ], + "brands_debug_tags": [], + "origins_debug_tags": [], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.400.jpg" + } + } + }, + "pnns_groups_1": "Sugary snacks", + "expiration_date_debug_tags": [], + "quantity": "170 g", + "last_image_t": 1533393505, + "entry_dates_tags": [ + "2017-04-06", + "2017-04", + "2017" + ], + "image_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.400.jpg", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "traces": "", + "correctors_tags": [ + "beniben", + "kiliweb", + "openfoodfacts-contributors", + "date-limite-app" + ], + "stores_tags": [], + "interface_version_modified": "20150316.jqm2", + "ingredients_that_may_be_from_palm_oil_tags": [], + "emb_codes_orig": "", + "brands_tags": [ + "hershey-s", + "reese-s" + ], + "sortkey": 533393505, + "minerals_prev_tags": [], + "rev": 9, + "allergens_hierarchy": [], + "labels": "", + "emb_codes": "", + "id": "0034000441082", + "emb_codes_debug_tags": [], + "serving_quantity": 0, + "labels_hierarchy": [], + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 5 + sugars 10 + sodium 3 - fruits 0% 0 - fiber 0 - proteins 5 -- fsa 29 -- fr 29", + "ingredients_text_with_allergens_fr": "", + "vitamins_prev_tags": [], + "purchase_places": "", + "minerals_tags": [], + "checkers_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:confectioneries", + "en:chocolate-candies", + "en:bonbons" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "url": "https://ssl-api.openfoodfacts.org/product/0034000441082/hersheys-reeses-peanut-butter-cups-4-pack-hershey-s", + "ingredients_text_with_allergens": "", + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "pnns_groups_2": "Sweets", + "ingredients_original_tags": [], + "origins": "", + "labels_debug_tags": [], + "origins_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:confectioneries", + "en:chocolate-candies", + "en:bonbons" + ], + "nutrition_grades": "e", + "additives_tags": [], + "no_nutrition_data": "", + "link_debug_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "packaging_debug_tags": [], + "additives_prev_original_tags": [], + "quality_tags": [], + "nutriments": { + "proteins_unit": "", + "nutrition-score-uk": "29", + "proteins": 10.9, + "energy_unit": "kcal", + "fiber": "0", + "fiber_unit": "g", + "sugars_100g": 50.9, + "carbohydrates_unit": "", + "fat_serving": "", + "fiber_100g": "0", + "salt_unit": "", + "proteins_value": "10.9", + "proteins_100g": 10.9, + "sugars": 50.9, + "sugars_value": "50.9", + "salt_100g": 0.9, + "carbohydrates_100g": 52.6, + "fiber_serving": "", + "fat_value": "29.9", + "sugars_serving": "", + "saturated-fat": 11.1, + "energy_serving": "", + "energy_value": "538", + "saturated-fat_100g": 11.1, + "fat": 29.9, + "fiber_value": "0", + "saturated-fat_value": "11.1", + "fat_100g": 29.9, + "energy_100g": "2251", + "sodium": 0.354330708661417, + "carbohydrates": 52.6, + "nutrition-score-fr": "29", + "sugars_unit": "", + "nutrition-score-uk_100g": "29", + "carbohydrates_value": "52.6", + "sodium_serving": "", + "energy": "2251", + "salt_serving": "", + "nutrition-score-fr_100g": "29", + "carbohydrates_serving": "", + "salt_value": "0.9", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "proteins_serving": "", + "salt": 0.9, + "sodium_100g": 0.354330708661417, + "fat_unit": "" + }, + "purchase_places_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "nutrition_grade_fr": "e", + "link": "", + "expiration_date": "", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.400.jpg", + "packaging": "", + "ingredients_hierarchy": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 1599, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1523461804" + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1000, + "h": 1333 + } + }, + "uploader": "date-limite-app", + "uploaded_t": 1533393504 + }, + "front_fr": { + "white_magic": null, + "x1": -1, + "geometry": "0x0--3--3", + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1000, + "h": 1333 + } + }, + "y1": -1, + "y2": -1, + "x2": -1, + "angle": 0, + "rev": "9", + "normalize": null, + "imgid": 2 + }, + "ingredients_fr": { + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1599, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "angle": null, + "rev": "6", + "imgid": "1" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.200.jpg", + "stores_debug_tags": [], + "ingredients_tags": [], + "product_name_fr_debug_tags": [], + "additives_prev_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:confectioneries", + "en:chocolate-candies", + "en:bonbons" + ], + "amino_acids_tags": [], + "generic_name": "", + "nova_group_tags": [ + "not-applicable" + ], + "manufacturing_places": "", + "additives_original_tags": [], + "editors_tags": [ + "kiliweb", + "date-limite-app", + "beniben", + "openfoodfacts-contributors" + ], + "nutrition_data_per": "100g", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_hierarchy": [], + "additives_debug_tags": [], + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "nutrient_levels": { + "fat": "high", + "salt": "moderate", + "saturated-fat": "high", + "sugars": "high" + }, + "vitamins_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "manufacturing_places_tags": [], + "ingredients": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "categories": "Bonbons de chocolat", + "serving_size": "", + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "e" + ], + "ingredients_text_fr": "", + "last_modified_t": 1533393505, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:confectioneries", + "en:chocolate-candies", + "en:bonbons" + ], + "additives_old_tags": [], + "quantity_debug_tags": [], + "ingredients_text_debug": "", + "complete": 0, + "languages": { + "en:french": 3 + }, + "traces_debug_tags": [], + "_keywords": [ + "cup", + "hershey", + "bonbon", + "pack", + "butter", + "reese", + "de", + "peanut", + "chocolat" + ], + "ingredients_debug": [], + "_id": "0034000441082", + "fruits-vegetables-nuts_100g_estimate": 0, + "allergens": "", + "stores": "", + "ingredients_ids_debug": [], + "brands": "Hershey's,Reese's", + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:germany" + ], + "codes_tags": [ + "code-13", + "0034000441082", + "003400044108x", + "00340004410xx", + "0034000441xxx", + "003400044xxxx", + "00340004xxxxx", + "0034000xxxxxx", + "003400xxxxxxx", + "00340xxxxxxxx", + "0034xxxxxxxxx", + "003xxxxxxxxxx", + "00xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "generic_name_fr": "", + "ingredients_text_fr_debug_tags": [], + "last_editor": "date-limite-app", + "max_imgid": "2", + "lang_debug_tags": [], + "labels_prev_tags": [], + "update_key": "nova3", + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.100.jpg", + "amino_acids_prev_tags": [], + "code": "0034000441082", + "ingredients_text": "", + "nova_group_debug": "no nova group when the product does not have ingredients", + "image_small_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.200.jpg", + "serving_size_debug_tags": [], + "pnns_groups_2_tags": [ + "sweets" + ], + "languages_codes": { + "fr": 3 + }, + "unknown_nutrients_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "product_name": "Hersheys Reeses Peanut Butter Cups 4 Pack", + "categories_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/ingredients_fr.6.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.100.jpg", + "purchase_places_tags": [], + "traces_tags": [], + "allergens_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france, en:de", + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb", + "date-limite-app" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_fr": "Hersheys Reeses Peanut Butter Cups 4 Pack", + "product_quantity": 170, + "emb_codes_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/003/400/044/1082/front_fr.9.200.jpg", + "packaging_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ] + }, + { + "created_t": 1533393464, + "ingredients_hierarchy": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "last_modified_by": null, + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.200.jpg", + "images": { + "1": { + "uploaded_t": 1533393465, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 61 + }, + "400": { + "w": 244, + "h": 400 + }, + "full": { + "w": 731, + "h": 1200 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 44 + }, + "400": { + "h": 176, + "w": 400 + }, + "full": { + "w": 2338, + "h": 1031 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393468 + }, + "front_fr": { + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": "61", + "h": "100" + }, + "200": { + "w": 122, + "h": 200 + }, + "400": { + "h": 400, + "w": 244 + }, + "full": { + "h": 1200, + "w": 731 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "imgid": "1", + "rev": "4", + "angle": null, + "normalize": "0" + }, + "ingredients_fr": { + "y1": null, + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "200": { + "w": 200, + "h": 88 + }, + "400": { + "h": 176, + "w": 400 + }, + "full": { + "w": 2338, + "h": 1031 + } + }, + "x2": null, + "y2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "angle": null, + "rev": "7", + "imgid": "2" + } + }, + "creator": "kiliweb", + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "last_image_t": 1533393470, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.400.jpg", + "allergens_from_ingredients": "", + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 7, + "sortkey": 533393471, + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "id": "3449610223503", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "languages": { + "en:french": 3 + }, + "ingredients_debug": [], + "_id": "3449610223503", + "_keywords": [ + "flan", + "poudre" + ], + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533393471, + "additives_old_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "3449610223503", + "344961022350x", + "34496102235xx", + "3449610223xxx", + "344961022xxxx", + "34496102xxxxx", + "3449610xxxxxx", + "344961xxxxxxx", + "34496xxxxxxxx", + "3449xxxxxxxxx", + "344xxxxxxxxxx", + "34xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "max_imgid": "2", + "url": "https://ssl-api.openfoodfacts.org/product/3449610223503/poudre-a-flan", + "ingredients_text_with_allergens": null, + "last_editor": null, + "minerals_tags": [], + "checkers_tags": [], + "code": "3449610223503", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.200.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.100.jpg", + "product_name": "Poudre à flan", + "nutrient_levels_tags": [], + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "traces_tags": [], + "allergens_tags": [], + "traces_from_ingredients": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.400.jpg", + "nutriments": {}, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/344/961/022/3503/front_fr.4.200.jpg", + "product_name_fr": "Poudre à flan", + "quality_tags": [], + "additives_prev_original_tags": [], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ] + } + ], + "count": 351808, + "page_size": 20, + "skip": 20 +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-3.json b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-3.json new file mode 100644 index 0000000..8aa76f1 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-3.json @@ -0,0 +1,9323 @@ +{ + "skip": 40, + "count": 351808, + "page_size": 20, + "page": "3", + "products": [ + { + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Godiveaux", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.200.jpg", + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_from_ingredients": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.400.jpg", + "nutriments": {}, + "product_name_fr": "Godiveaux", + "additives_prev_original_tags": [], + "quality_tags": [], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "allergens_tags": [], + "traces_tags": [], + "codes_tags": [ + "code-13", + 200380045985, + "020038004598x", + "02003800459xx", + "0200380045xxx", + "020038004xxxx", + "02003800xxxxx", + "0200380xxxxxx", + "020038xxxxxxx", + "02003xxxxxxxx", + "0200xxxxxxxxx", + "020xxxxxxxxxx", + "02xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "_id": "0200380045985", + "_keywords": [ + "godiveaux" + ], + "ingredients_debug": [], + "languages": { + "en:french": 3 + }, + "complete": 0, + "ingredients_text_debug": null, + "additives_old_tags": [], + "last_modified_t": 1533393445, + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "0200380045985", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.100.jpg", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/0200380045985/godiveaux", + "max_imgid": "2", + "ingredients_text_with_allergens": null, + "last_editor": "kiliweb", + "checkers_tags": [], + "minerals_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "image_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.400.jpg", + "last_image_t": 1533392400, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "0200380045985", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "ingredients": [], + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "rev": 8, + "sortkey": 533393445, + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "uploaded_t": 1533392398, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 74, + "h": 100 + }, + "400": { + "w": 296, + "h": 400 + }, + "full": { + "h": 1200, + "w": 887 + } + } + }, + "2": { + "uploaded_t": 1533392400, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 82 + }, + "400": { + "h": 400, + "w": 329 + }, + "full": { + "w": 986, + "h": 1200 + } + } + }, + "front_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": "100", + "w": "74" + }, + "200": { + "w": 148, + "h": 200 + }, + "400": { + "w": 296, + "h": 400 + }, + "full": { + "w": 887, + "h": 1200 + } + }, + "y1": null, + "imgid": "1", + "rev": "4", + "angle": null, + "normalize": "0" + }, + "ingredients_fr": { + "imgid": "2", + "normalize": "0", + "angle": null, + "rev": "7", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": 82, + "h": 100 + }, + "200": { + "w": 164, + "h": 200 + }, + "400": { + "w": 329, + "h": 400 + }, + "full": { + "w": 986, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + } + }, + "ingredients_hierarchy": [], + "created_t": 1533392395, + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "last_modified_by": "kiliweb", + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/ingredients_fr.7.400.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/020/038/004/5985/front_fr.4.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "informers_tags": [ + "kiliweb" + ], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g" + }, + { + "ingredients_ids_debug": [ + "jambon-de", + "origine", + "sel", + "turels-oignon", + "carotte", + "poireau", + "poilte", + "thym-laurier", + "conservateurs", + "ascorbate-de-sodium", + "niti-de-sndium-conditionne-sous-atmosphece" + ], + "allergens": "", + "brands": "Netto", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.100.jpg", + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "additives_n": 1, + "codes_tags": [ + "code-13", + 3250391655212, + "325039165521x", + "32503916552xx", + "3250391655xxx", + "325039165xxxx", + "32503916xxxxx", + "3250391xxxxxx", + "325039xxxxxxx", + "32503xxxxxxxx", + "3250xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "categories_prev_tags": [], + "last_modified_t": 1533393437, + "additives_old_tags": [ + "en:e301" + ], + "ingredients_text_debug": "Jambon de (origine : sel. ?turels oignon. carotte, poireau, poilTe, thym laurier), conservateurs : ascorbate de sodium. niti& de sndium Conditionné sous atmosphèce", + "complete": 0, + "languages": { + "en:french": 5 + }, + "_keywords": [ + "au", + "torchon", + "netto", + "jambon", + "superieur" + ], + "ingredients_debug": [ + "Jambon de ", + "(", + "(", + null, + null, + "origine ", + ":", + ":", + null, + null, + " sel", + ". ", + null, + null, + null, + "?turels oignon", + ". ", + null, + null, + null, + "carotte", + ",", + null, + null, + null, + " poireau", + ",", + null, + null, + null, + " poilTe", + ",", + null, + null, + null, + " thym laurier)", + ",", + null, + null, + null, + " conservateurs ", + ":", + ":", + null, + null, + " ascorbate de sodium", + ". ", + null, + null, + null, + "niti& de sndium Conditionné sous atmosphèce" + ], + "_id": "3250391655212", + "update_key": "nova3", + "labels_prev_tags": [], + "nucleotides_prev_tags": [], + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.100.jpg", + "code": "3250391655212", + "ingredients_text": "Jambon de (origine : sel. ?turels oignon. carotte, poireau, poilTe, thym laurier), conservateurs : ascorbate de sodium. niti& de sndium Conditionné sous atmosphèce", + "nova_group_debug": "no nova group when the product does not have a category", + "last_editor": "kiliweb", + "max_imgid": "4", + "product_name": "Jambon supérieur au torchon", + "nutrient_levels_tags": [], + "categories_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.100.jpg", + "pnns_groups_2_tags": [ + "unknown" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.200.jpg", + "languages_codes": { + "fr": 5 + }, + "unknown_nutrients_tags": [], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 5, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "product_name_fr": "Jambon supérieur au torchon", + "image_front_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.200.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_tags": [], + "allergens_tags": [], + "countries": "France", + "ingredients_from_palm_oil_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 90, + "w": 100 + }, + "400": { + "w": 400, + "h": 358 + }, + "full": { + "h": 1360, + "w": 1518 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1516559387" + }, + "2": { + "sizes": { + "100": { + "h": 43, + "w": 100 + }, + "400": { + "w": 400, + "h": 172 + }, + "full": { + "h": 884, + "w": 2050 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1516559390" + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 32 + }, + "400": { + "h": 130, + "w": 400 + }, + "full": { + "w": 3418, + "h": 1107 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1516559393" + }, + "4": { + "sizes": { + "100": { + "h": 69, + "w": 100 + }, + "400": { + "w": 400, + "h": 278 + }, + "full": { + "w": 1729, + "h": 1200 + } + }, + "uploaded_t": 1532970215, + "uploader": "kiliweb" + }, + "ingredients_fr": { + "imgid": "4", + "rev": "15", + "angle": null, + "normalize": "0", + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 100, + "h": 69 + }, + "200": { + "h": 139, + "w": 200 + }, + "400": { + "w": 400, + "h": 278 + }, + "full": { + "h": 1200, + "w": 1729 + } + }, + "y1": null + }, + "front_fr": { + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": "100", + "h": "90" + }, + "200": { + "w": 200, + "h": 179 + }, + "400": { + "h": 358, + "w": 400 + }, + "full": { + "w": 1518, + "h": 1360 + } + }, + "y1": null, + "imgid": "1", + "rev": "6", + "angle": null, + "normalize": "0" + }, + "nutrition_fr": { + "imgid": "2", + "normalize": "0", + "angle": null, + "rev": "9", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": 100, + "h": 43 + }, + "200": { + "w": 200, + "h": 86 + }, + "400": { + "w": 400, + "h": 172 + }, + "full": { + "h": 884, + "w": 2050 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.200.jpg", + "ingredients_tags": [ + "fr:jambon", + "en:preservative", + "fr:origine", + "en:salt", + "fr:turels-oignon", + "en:carot", + "fr:poireau", + "fr:poilte", + "fr:thym-laurier", + "en:sodium-ascorbate", + "fr:niti-de-sndium-conditionne-sous-atmosphece" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "ingredients_hierarchy": [ + "fr:jambon", + "en:preservative", + "fr:origine", + "en:salt", + "fr:?turels oignon", + "en:carot", + "fr:poireau", + "fr:poilTe", + "fr:thym laurier", + "en:sodium-ascorbate", + "fr:niti& de sndium Conditionné sous atmosphèce" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_original_tags": [ + "en:e301" + ], + "nova_group_tags": [ + "not-applicable" + ], + "nutrition_data_per": "100g", + "additives_prev_tags": [ + "en:e301" + ], + "categories_hierarchy": [], + "amino_acids_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "vitamins_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "labels_prev_hierarchy": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "additives_debug_tags": [], + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "categories": "", + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "ingredients_text_fr": "Jambon de (origine : sel. ?turels oignon. carotte, poireau, poilTe, thym laurier), conservateurs : ascorbate de sodium. niti& de sndium Conditionné sous atmosphèce", + "ingredients_from_palm_oil_n": 0, + "ingredients": [ + { + "id": "fr:jambon", + "text": "Jambon de", + "rank": 1 + }, + { + "text": "conservateurs", + "rank": 2, + "id": "en:preservative" + }, + { + "text": "origine", + "id": "fr:origine" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "fr:?turels oignon", + "text": "?turels oignon" + }, + { + "text": "carotte", + "id": "en:carot" + }, + { + "text": "poireau", + "id": "fr:poireau" + }, + { + "text": "poilTe", + "id": "fr:poilTe" + }, + { + "id": "fr:thym laurier", + "text": "thym laurier" + }, + { + "id": "en:sodium-ascorbate", + "text": "ascorbate de sodium" + }, + { + "id": "fr:niti& de sndium Conditionné sous atmosphèce", + "text": "niti& de sndium Conditionné sous atmosphèce" + } + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_text_with_allergens_fr": "Jambon de (origine : sel. ?turels oignon. carotte, poireau, poilTe, thym laurier), conservateurs : ascorbate de sodium. niti& de sndium Conditionné sous atmosphèce", + "vitamins_prev_tags": [], + "labels_hierarchy": [], + "nucleotides_tags": [], + "additives_old_n": 1, + "last_image_dates_tags": [ + "2018-07-30", + "2018-07", + "2018" + ], + "checkers_tags": [], + "minerals_tags": [], + "categories_prev_hierarchy": [], + "url": "https://ssl-api.openfoodfacts.org/product/3250391655212/jambon-superieur-au-torchon-netto", + "ingredients_text_with_allergens": "Jambon de (origine : sel. ?turels oignon. carotte, poireau, poilTe, thym laurier), conservateurs : ascorbate de sodium. niti& de sndium Conditionné sous atmosphèce", + "additives_prev_n": 1, + "labels_debug_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.400.jpg", + "pnns_groups_2": "unknown", + "ingredients_original_tags": [ + "fr:jambon", + "en:preservative", + "fr:origine", + "en:salt", + "fr:?turels oignon", + "en:carot", + "fr:poireau", + "fr:poilTe", + "fr:thym laurier", + "en:sodium-ascorbate", + "fr:niti& de sndium Conditionné sous atmosphèce" + ], + "additives_prev_original_tags": [ + "en:e301" + ], + "quality_tags": [ + "ingredients-fr-unexpected-chars-question-mark" + ], + "ingredients_text_debug_tags": [], + "nutriments": { + "sugars_serving": "", + "saturated-fat": 1.1, + "energy_serving": "", + "carbohydrates_100g": 0.7, + "fat_value": "2.6", + "salt_100g": 2, + "proteins_value": "21.5", + "proteins_100g": 21.5, + "sugars_value": "0.7", + "sugars": 0.7, + "fat_serving": "", + "carbohydrates_unit": "", + "salt_unit": "", + "proteins": 21.5, + "energy_unit": "kcal", + "sugars_100g": 0.7, + "proteins_unit": "", + "sodium_100g": 0.78740157480315, + "fat_unit": "", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "salt": 2, + "proteins_serving": "", + "carbohydrates_serving": "", + "salt_value": "2", + "sodium_serving": "", + "energy": 473, + "salt_serving": "", + "carbohydrates_value": "0.7", + "carbohydrates": 0.7, + "sugars_unit": "", + "sodium": 0.78740157480315, + "energy_value": "113", + "saturated-fat_100g": 1.1, + "fat": 2.6, + "saturated-fat_value": "1.1", + "fat_100g": 2.6, + "energy_100g": 473 + }, + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "categories_tags": [], + "additives_tags": [ + "en:e301" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "pnns_groups_1_tags": [ + "unknown" + ], + "creator": "kiliweb", + "labels_tags": [], + "last_modified_by": "kiliweb", + "nutrition_data_per_debug_tags": [], + "created_t": 1516559384, + "informers_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "brands_debug_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/ingredients_fr.15.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.100.jpg" + } + } + }, + "pnns_groups_1": "unknown", + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "interface_version_modified": "20150316.jqm2", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/nutrition_fr.9.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "ingredients_n_tags": [ + "11", + "11-20" + ], + "entry_dates_tags": [ + "2018-01-21", + "2018-01", + "2018" + ], + "last_image_t": 1532970216, + "image_url": "https://static.openfoodfacts.org/images/products/325/039/165/5212/front_fr.6.400.jpg", + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "labels": "", + "ingredients_n": 11, + "id": "3250391655212", + "serving_quantity": 0, + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_tags": [ + "netto" + ], + "sortkey": 533393437, + "minerals_prev_tags": [], + "rev": 16, + "allergens_hierarchy": [] + }, + { + "labels_hierarchy": [ + "en:low-or-no-sugar", + "de:ohne-zuckerzusatz" + ], + "ingredients_text_with_allergens_fr": "Jus de raisin (Origine Languedoc : minimum 50%)", + "nutrition_score_debug": " -- in beverages category - a_points_fr_beverage: 9 (energy) + 0 (sat_fat) + 10 (sugars) + 0 (sodium) = 19 - -- energy 0 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 3 + sodium 0 - fruits 100% 5 - fiber 0 - proteins 0 -- fsa -2 -- fr 9", + "scans_n": 4, + "vitamins_prev_tags": [], + "minerals_tags": [], + "checkers_tags": [], + "purchase_places": "France", + "ingredients_text_with_allergens": "Jus de raisin (Origine Languedoc : minimum 50%)", + "url": "https://ssl-api.openfoodfacts.org/product/3502110005069/pure-premium-origine-france-raisins-du-languedoc-tropicana", + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:beverages", + "en:plant-based-beverages", + "en:fruit-based-beverages", + "en:juices-and-nectars", + "en:fruit-juices-and-nectars", + "en:fruit-juices", + "en:grape-juices", + "en:squeezed-juices" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nucleotides_tags": [], + "additives_old_n": 0, + "last_image_dates_tags": [ + "2018-06-10", + "2018-06", + "2018" + ], + "pnns_groups_2": "Fruit juices", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.400.jpg", + "origins": "Languedoc,France", + "ingredients_original_tags": [ + "en:grape-juice", + "fr:Origine Languedoc", + "fr:minimum" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nova_group": 1, + "labels_debug_tags": [ + "added-de-ohne-zuckerzusatz", + "removed-en-no-added-sugar" + ], + "origins_tags": [ + "languedoc", + "france" + ], + "additives_prev_n": 0, + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:beverages", + "en:plant-based-beverages", + "en:fruit-based-beverages", + "en:juices-and-nectars", + "en:fruit-juices-and-nectars", + "en:fruit-juices", + "en:grape-juices", + "en:squeezed-juices", + "en:non-alcoholic-beverages" + ], + "additives_tags": [], + "nutrition_grades": "d", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "pnns_groups_1_tags": [ + "beverages" + ], + "no_nutrition_data": "", + "quality_tags": [ + "ingredients-unknown-score-above-0", + "ingredients-60-percent-unknown" + ], + "additives_prev_original_tags": [], + "packaging_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "nutriments": { + "sodium_100g": 0, + "fat_unit": "", + "nova-group": 1, + "saturated-fat_serving": 0, + "saturated-fat_unit": "", + "salt": 0, + "proteins_serving": 0.3, + "nutrition-score-fr_100g": 9, + "carbohydrates_serving": 30.4, + "salt_value": "0", + "sodium_serving": 0, + "energy": 264, + "salt_serving": 0, + "nutrition-score-uk_100g": -2, + "carbohydrates_value": "15.2", + "carbohydrates": 15.2, + "sugars_unit": "", + "nutrition-score-fr": 9, + "sodium": 0, + "energy_value": "63", + "saturated-fat_100g": 0, + "fat": 0, + "saturated-fat_value": "0", + "fiber_value": "0.4", + "fat_100g": 0, + "energy_100g": 264, + "sugars_serving": 30.4, + "saturated-fat": 0, + "energy_serving": 528, + "carbohydrates_100g": 15.2, + "fiber_serving": 0.8, + "fat_value": "0", + "salt_100g": 0, + "proteins_value": "0.15", + "proteins_100g": 0.15, + "sugars": 15.2, + "sugars_value": "15.2", + "fat_serving": 0, + "nova-group_100g": 1, + "carbohydrates_unit": "", + "fiber_100g": 0.4, + "salt_unit": "", + "proteins": 0.15, + "energy_unit": "kcal", + "fiber": 0.4, + "sugars_100g": 15.2, + "fiber_unit": "g", + "proteins_unit": "", + "nutrition-score-uk": -2, + "nova-group_serving": 1 + }, + "last_modified_by": "kiliweb", + "cities_tags": [], + "created_t": 1460803628, + "nutrition_score_warning_fruits_vegetables_nuts_from_category_value": 100, + "nutrition_data_per_debug_tags": [], + "nova_groups_tags": [ + "en:1-unprocessed-or-minimally-processed-foods" + ], + "creator": "openfoodfacts-contributors", + "labels_tags": [ + "en:low-or-no-sugar", + "de:ohne-zuckerzusatz" + ], + "nutrition_data_prepared_per": "100g", + "informers_tags": [ + "openfoodfacts-contributors", + "segundo", + "tacite" + ], + "pnns_groups_1": "Beverages", + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.100.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.100.jpg" + } + } + }, + "entry_dates_tags": [ + "2016-04-16", + "2016-04", + "2016" + ], + "last_image_t": 1528613294, + "image_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.400.jpg", + "quantity": "1 L", + "traces": "", + "interface_version_created": "20120622", + "nutrition_score_warning_fruits_vegetables_nuts_from_category": "en:fruit-juices", + "lc": "fr", + "stores_tags": [ + "cora" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "segundo", + "tacite", + "date-limite-app", + "kiliweb" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.200.jpg", + "ingredients_n_tags": [ + "3", + "1-10" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "brands_tags": [ + "tropicana" + ], + "sortkey": 1533393374, + "ingredients_that_may_be_from_palm_oil_n": 0, + "emb_codes_orig": "", + "allergens_hierarchy": [], + "debug_tags": [ + "43" + ], + "completed_t": 1460838502, + "rev": 26, + "minerals_prev_tags": [], + "id": "3502110005069", + "ingredients_n": 3, + "emb_codes": "", + "labels": "Peu ou pas de sucre,Sans sucre ajouté", + "serving_quantity": 200, + "last_modified_t": 1533393374, + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:beverages", + "en:plant-based-beverages", + "en:fruit-based-beverages", + "en:juices-and-nectars", + "en:fruit-juices-and-nectars", + "en:fruit-juices", + "en:grape-juices", + "en:squeezed-juices" + ], + "additives_old_tags": [], + "languages": { + "en:french": 6 + }, + "ingredients_debug": [ + "Jus de raisin ", + "(", + "(", + null, + null, + "Origine Languedoc ", + ":", + ":", + null, + null, + " minimum 50%)" + ], + "_keywords": [ + "base", + "fruit", + "vegetaux", + "france", + "pure", + "ou", + "languedoc", + "de", + "raisin", + "ju", + "pa", + "boisson", + "et", + "du", + "ajoute", + "origine", + "100", + "aux", + "peu", + "nectar", + "sucre", + "premium", + "san", + "pur", + "tropicana" + ], + "_id": "3502110005069", + "ingredients_text_debug": "Jus de raisin (Origine Languedoc : minimum 50%)", + "complete": 1, + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/nutrition_fr.10.100.jpg", + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "fruits-vegetables-nuts_100g_estimate": 100, + "allergens": "", + "stores": "Cora", + "ingredients_ids_debug": [ + "jus-de-raisin", + "origine-languedoc", + "minimum-50" + ], + "brands": "Tropicana", + "codes_tags": [ + "code-13", + 3502110005069, + "350211000506x", + "35021100050xx", + "3502110005xxx", + "350211000xxxx", + "35021100xxxxx", + "3502110xxxxxx", + "350211xxxxxxx", + "35021xxxxxxxx", + "3502xxxxxxxxx", + "350xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "additives_n": 0, + "generic_name_fr": "", + "max_imgid": "4", + "last_editor": "kiliweb", + "nucleotides_prev_tags": [], + "lang_debug_tags": [], + "update_key": "nova3", + "labels_prev_tags": [ + "en:low-or-no-sugar", + "en:no-added-sugar" + ], + "code": "3502110005069", + "ingredients_text": "Jus de raisin (Origine Languedoc : minimum 50%)", + "nova_group_debug": "", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.100.jpg", + "languages_codes": { + "fr": 6 + }, + "pnns_groups_2_tags": [ + "fruit-juices" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.200.jpg", + "unique_scans_n": 4, + "unknown_nutrients_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-low-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "product_name": "Pure Premium Origine France Raisins du Languedoc", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.100.jpg", + "categories_debug_tags": [], + "purchase_places_tags": [ + "france" + ], + "traces_tags": [], + "allergens_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "product_name_fr": "Pure Premium Origine France Raisins du Languedoc", + "product_quantity": 1000, + "emb_codes_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 2, + "photographers_tags": [ + "openfoodfacts-contributors", + "tacite", + "kiliweb" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.400.jpg", + "packaging_tags": [ + "bouteille", + "plastique", + "bouteille" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/front_fr.16.200.jpg", + "expiration_date": "", + "link": "", + "nutrition_grade_fr": "d", + "ingredients_hierarchy": [ + "en:grape-juice", + "fr:Origine Languedoc", + "fr:minimum" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "packaging": "Bouteille,Plastique,bouteille", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/350/211/000/5069/ingredients_fr.25.200.jpg", + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1460803628", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 30 + }, + "400": { + "w": 118, + "h": 400 + }, + "full": { + "h": 1280, + "w": 379 + } + }, + "uploader": "tacite", + "uploaded_t": "1463240773" + }, + "3": { + "uploader": "tacite", + "uploaded_t": "1463240773", + "sizes": { + "100": { + "w": 39, + "h": 100 + }, + "400": { + "h": 400, + "w": 158 + }, + "full": { + "w": 504, + "h": 1280 + } + } + }, + "4": { + "uploaded_t": "1528613294", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 18, + "h": 100 + }, + "400": { + "w": 72, + "h": 400 + }, + "full": { + "w": 211, + "h": 1174 + } + } + }, + "front_fr": { + "imgid": "2", + "geometry": "0x0-0-0", + "normalize": "false", + "white_magic": "false", + "rev": "16", + "sizes": { + "100": { + "h": "100", + "w": "30" + }, + "200": { + "h": 200, + "w": 59 + }, + "400": { + "w": 118, + "h": 400 + }, + "full": { + "w": 379, + "h": 1280 + } + } + }, + "front": { + "rev": "7", + "white_magic": null, + "normalize": null, + "geometry": "0x0--8--8", + "imgid": "1", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "front_fr_fr": { + "sizes": { + "100": { + "h": 100, + "w": 30 + }, + "200": { + "w": 59, + "h": 200 + }, + "400": { + "w": 118, + "h": 400 + }, + "full": { + "h": 1280, + "w": 379 + } + }, + "white_magic": null, + "rev": "14", + "normalize": null, + "geometry": "0x0--3--3", + "imgid": "2" + }, + "nutrition": { + "sizes": { + "100": { + "w": 86, + "h": 100 + }, + "200": { + "h": 200, + "w": 172 + }, + "400": { + "h": 400, + "w": 345 + }, + "full": { + "w": 816, + "h": 947 + } + }, + "imgid": "1", + "geometry": "816x947-1148-357", + "normalize": "false", + "rev": "10", + "white_magic": "false" + }, + "ingredients": { + "sizes": { + "100": { + "h": 31, + "w": 100 + }, + "200": { + "w": 200, + "h": 62 + }, + "400": { + "h": 124, + "w": 400 + }, + "full": { + "h": 278, + "w": 897 + } + }, + "normalize": "false", + "rev": "11", + "white_magic": "false", + "imgid": "1", + "geometry": "897x278-1140-193" + }, + "ingredients_fr": { + "imgid": "4", + "rev": "25", + "angle": null, + "normalize": "0", + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 18, + "h": 100 + }, + "200": { + "w": 36, + "h": 200 + }, + "400": { + "h": 400, + "w": 72 + }, + "full": { + "h": 1174, + "w": 211 + } + }, + "y1": null + }, + "nutrition_fr": { + "geometry": "816x947-1148-357", + "imgid": "1", + "rev": "10", + "white_magic": "false", + "normalize": "false", + "sizes": { + "100": { + "h": 100, + "w": 86 + }, + "200": { + "w": 172, + "h": 200 + }, + "400": { + "h": 400, + "w": 345 + }, + "full": { + "w": 816, + "h": 947 + } + } + } + }, + "ingredients_tags": [ + "en:grape-juice", + "fr:origine-languedoc", + "fr:minimum" + ], + "amino_acids_tags": [], + "additives_prev_tags": [], + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:beverages", + "en:plant-based-beverages", + "en:fruit-based-beverages", + "en:juices-and-nectars", + "en:fruit-juices-and-nectars", + "en:fruit-juices", + "en:grape-juices", + "en:squeezed-juices" + ], + "emb_codes_20141016": "", + "nutrition_data_per": "100g", + "generic_name": "", + "additives_original_tags": [], + "editors_tags": [ + "segundo", + "tacite", + "openfoodfacts-contributors", + "kiliweb", + "date-limite-app" + ], + "manufacturing_places": "France,Belgique", + "labels_prev_hierarchy": [ + "en:low-or-no-sugar", + "en:no-added-sugar" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "additives_debug_tags": [], + "nutrient_levels": { + "sugars": "high", + "saturated-fat": "low", + "salt": "low", + "fat": "low" + }, + "countries_hierarchy": [ + "en:france" + ], + "lang": "fr", + "allergens_from_ingredients": "", + "vitamins_tags": [], + "manufacturing_places_tags": [ + "france", + "belgique" + ], + "ingredients": [ + { + "text": "Jus de raisin", + "rank": 1, + "id": "en:grape-juice" + }, + { + "id": "fr:Origine Languedoc", + "text": "Origine Languedoc" + }, + { + "percent": "50", + "text": "minimum", + "id": "fr:minimum" + } + ], + "categories": "Boissons,Boissons à base de végétaux,Boissons aux fruits,Jus et nectars,Jus et nectars de fruits,Jus de fruits,Jus de raisin,Jus de fruits 100% pur jus", + "serving_size": "200 ml", + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts-from-category", + "en:nutrition-fruits-vegetables-nuts-from-category-en-fruit-juices", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "nova_groups": 1, + "nutrition_grades_tags": [ + "d" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "Jus de raisin (Origine Languedoc : minimum 50%)", + "countries_debug_tags": [] + }, + { + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "categories": "", + "countries_debug_tags": [], + "ingredients_text_fr": "Edelbitter-SchokoIade Kakao: 85% mindestens Zutaten: Kakaomasse, fettarmes Kakaopulver, Kakaobutter, Rohrohrzucker, Vanille. Kann Haselnüsse und andere Schalenfrüchte, Milch, Soja enthalten.", + "ingredients_from_palm_oil_n": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "ingredients": [ + { + "text": "Edelbitter-SchokoIade Kakao", + "rank": 1, + "id": "fr:Edelbitter-SchokoIade Kakao" + }, + { + "id": "fr:fettarmes Kakaopulver", + "text": "fettarmes Kakaopulver", + "rank": 2 + }, + { + "id": "fr:Kakaobutter", + "text": "Kakaobutter", + "rank": 3 + }, + { + "text": "Rohrohrzucker", + "rank": 4, + "id": "fr:Rohrohrzucker" + }, + { + "text": "Vanille", + "rank": 5, + "id": "en:vanilla" + }, + { + "id": "fr:Kann Haselnüsse und andere Schalenfrüchte", + "text": "Kann Haselnüsse und andere Schalenfrüchte", + "rank": 6 + }, + { + "id": "fr:Milch", + "rank": 7, + "text": "Milch" + }, + { + "id": "fr:Soja enthalten", + "text": "Soja enthalten", + "rank": 8 + }, + { + "id": "fr:mindestens Zutaten", + "text": "mindestens Zutaten", + "percent": "85" + }, + { + "text": "Kakaomasse", + "id": "fr:Kakaomasse" + } + ], + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "nutrient_levels": {}, + "vitamins_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "labels_prev_hierarchy": [], + "additives_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "date-limite-app" + ], + "nutrition_data_per": "100g", + "categories_hierarchy": [], + "additives_prev_tags": [], + "amino_acids_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 20, + "w": 100 + }, + "400": { + "w": 400, + "h": 79 + }, + "full": { + "w": 3024, + "h": 598 + } + }, + "uploaded_t": "1516711828", + "uploader": "kiliweb" + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1333, + "w": 1000 + } + }, + "uploader": "date-limite-app", + "uploaded_t": 1533393362 + }, + "ingredients_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 100, + "h": 20 + }, + "200": { + "w": 200, + "h": 40 + }, + "400": { + "w": 400, + "h": 79 + }, + "full": { + "h": 598, + "w": 3024 + } + }, + "y1": null, + "imgid": "1", + "rev": "4", + "angle": null, + "normalize": "0" + }, + "front_fr": { + "geometry": "0x0--3--3", + "white_magic": null, + "x1": -1, + "x2": -1, + "y2": -1, + "y1": -1, + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1333, + "w": 1000 + } + }, + "imgid": 2, + "normalize": null, + "angle": 0, + "rev": "7" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.200.jpg", + "ingredients_tags": [ + "fr:edelbitter-schokoiade-kakao", + "fr:fettarmes-kakaopulver", + "fr:kakaobutter", + "fr:rohrohrzucker", + "en:vanilla", + "fr:kann-haselnusse-und-andere-schalenfruchte", + "fr:milch", + "fr:soja-enthalten", + "fr:mindestens-zutaten", + "fr:kakaomasse" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.400.jpg", + "ingredients_hierarchy": [ + "fr:Edelbitter-SchokoIade Kakao", + "fr:fettarmes Kakaopulver", + "fr:Kakaobutter", + "fr:Rohrohrzucker", + "en:vanilla", + "fr:Kann Haselnüsse und andere Schalenfrüchte", + "fr:Milch", + "fr:Soja enthalten", + "fr:mindestens Zutaten", + "fr:Kakaomasse" + ], + "unknown_ingredients_n": 9, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb", + "date-limite-app" + ], + "product_quantity": 100, + "product_name_fr": "Lindt Excellence 85% Probierpreis -23%", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.400.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "allergens_tags": [], + "traces_tags": [], + "countries": "France, en:de", + "ingredients_from_palm_oil_tags": [], + "nutrient_levels_tags": [], + "product_name": "Lindt Excellence 85% Probierpreis -23%", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.100.jpg", + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.100.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.200.jpg", + "pnns_groups_2_tags": [ + "unknown" + ], + "languages_codes": { + "fr": 4 + }, + "unknown_nutrients_tags": [], + "labels_prev_tags": [], + "update_key": "20180706-categories", + "nucleotides_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.100.jpg", + "amino_acids_prev_tags": [], + "nova_group_debug": "no nova group when the product does not have a category", + "ingredients_text": "Edelbitter-SchokoIade Kakao: 85% mindestens Zutaten: Kakaomasse, fettarmes Kakaopulver, Kakaobutter, Rohrohrzucker, Vanille. Kann Haselnüsse und andere Schalenfrüchte, Milch, Soja enthalten.", + "code": "3046920028509", + "last_editor": "date-limite-app", + "max_imgid": "2", + "brands": "Lindt", + "allergens": "", + "ingredients_ids_debug": [ + "edelbitter-schokoiade-kakao", + "85-mindestens-zutaten", + "kakaomasse", + "fettarmes-kakaopulver", + "kakaobutter", + "rohrohrzucker", + "vanille", + "kann-haselnusse-und-andere-schalenfruchte", + "milch", + "soja-enthalten" + ], + "countries_tags": [ + "en:france", + "en:germany" + ], + "traces_hierarchy": [], + "additives_n": 0, + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "3046920028509", + "304692002850x", + "30469200285xx", + "3046920028xxx", + "304692002xxxx", + "30469200xxxxx", + "3046920xxxxxx", + "304692xxxxxxx", + "30469xxxxxxxx", + "3046xxxxxxxxx", + "304xxxxxxxxxx", + "30xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "additives_old_tags": [], + "last_modified_t": 1533393363, + "categories_prev_tags": [], + "quantity_debug_tags": [], + "complete": 0, + "ingredients_text_debug": "Edelbitter-SchokoIade Kakao: 85% mindestens Zutaten: Kakaomasse, fettarmes Kakaopulver, Kakaobutter, Rohrohrzucker, Vanille. Kann Haselnüsse und andere Schalenfrüchte, Milch, Soja enthalten.", + "ingredients_debug": [ + "Edelbitter-SchokoIade Kakao", + ":", + ":", + null, + null, + " 85% mindestens Zutaten", + ":", + ":", + null, + null, + " Kakaomasse", + ",", + null, + null, + null, + " fettarmes Kakaopulver", + ",", + null, + null, + null, + " Kakaobutter", + ",", + null, + null, + null, + " Rohrohrzucker", + ",", + null, + null, + null, + " Vanille", + ". ", + null, + null, + null, + "Kann Haselnüsse und andere Schalenfrüchte", + ",", + null, + null, + null, + " Milch", + ",", + null, + null, + null, + " Soja enthalten." + ], + "_keywords": [ + "lindt", + "probierprei", + "85", + "23", + "excellence" + ], + "_id": "3046920028509", + "languages": { + "en:french": 4 + }, + "labels": "", + "ingredients_n": "10", + "id": "3046920028509", + "serving_quantity": 0, + "ingredients_that_may_be_from_palm_oil_n": 0, + "sortkey": 533393363, + "brands_tags": [ + "lindt" + ], + "rev": 7, + "minerals_prev_tags": [], + "allergens_hierarchy": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "date-limite-app" + ], + "interface_version_modified": "20150316.jqm2", + "ingredients_that_may_be_from_palm_oil_tags": [], + "ingredients_n_tags": [ + "10", + "1-10" + ], + "quantity": "100 g", + "image_url": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.400.jpg", + "entry_dates_tags": [ + "2018-01-23", + "2018-01", + "2018" + ], + "last_image_t": 1533393363, + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "informers_tags": [ + "kiliweb", + "date-limite-app" + ], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/ingredients_fr.4.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/304/692/002/8509/front_fr.7.400.jpg" + } + } + }, + "brands_debug_tags": [], + "pnns_groups_1": "unknown", + "nutrition_data_prepared_per": "100g", + "creator": "kiliweb", + "labels_tags": [], + "last_modified_by": "date-limite-app", + "nutrition_data_per_debug_tags": [], + "created_t": 1516711826, + "additives_prev_original_tags": [], + "quality_tags": [ + "ingredients-unknown-score-above-5", + "ingredients-90-percent-unknown" + ], + "ingredients_text_debug_tags": [], + "nutriments": { + "salt_serving": "", + "energy": "2335", + "sodium_serving": "", + "carbohydrates_serving": "", + "salt_value": "0.07", + "salt": 0.07, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fat_unit": "", + "sodium_100g": 0.0275590551181102, + "energy_100g": "2335", + "fat_100g": "46", + "saturated-fat_value": "29", + "saturated-fat_100g": "29", + "fat": "46", + "energy_value": "558", + "sodium": 0.0275590551181102, + "sugars_unit": "", + "carbohydrates": "19", + "carbohydrates_value": "19", + "salt_100g": 0.07, + "fat_value": "46", + "carbohydrates_100g": "19", + "energy_serving": "", + "saturated-fat": "29", + "sugars_serving": "", + "proteins_unit": "", + "sugars_100g": "12", + "energy_unit": "kcal", + "proteins": "11", + "salt_unit": "", + "carbohydrates_unit": "", + "fat_serving": "", + "sugars_value": "12", + "sugars": "12", + "proteins_100g": "11", + "proteins_value": "11" + }, + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "categories_tags": [], + "pnns_groups_1_tags": [ + "unknown" + ], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "labels_debug_tags": [], + "additives_prev_n": 0, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "pnns_groups_2": "unknown", + "ingredients_original_tags": [ + "fr:Edelbitter-SchokoIade Kakao", + "fr:fettarmes Kakaopulver", + "fr:Kakaobutter", + "fr:Rohrohrzucker", + "en:vanilla", + "fr:Kann Haselnüsse und andere Schalenfrüchte", + "fr:Milch", + "fr:Soja enthalten", + "fr:mindestens Zutaten", + "fr:Kakaomasse" + ], + "additives_old_n": 0, + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "checkers_tags": [], + "minerals_tags": [], + "categories_prev_hierarchy": [], + "ingredients_text_with_allergens": "Edelbitter-SchokoIade Kakao: 85% mindestens Zutaten: Kakaomasse, fettarmes Kakaopulver, Kakaobutter, Rohrohrzucker, Vanille. Kann Haselnüsse und andere Schalenfrüchte, Milch, Soja enthalten.", + "url": "https://ssl-api.openfoodfacts.org/product/3046920028509/lindt-excellence-85-probierpreis-23", + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_text_with_allergens_fr": "Edelbitter-SchokoIade Kakao: 85% mindestens Zutaten: Kakaomasse, fettarmes Kakaopulver, Kakaobutter, Rohrohrzucker, Vanille. Kann Haselnüsse und andere Schalenfrüchte, Milch, Soja enthalten.", + "vitamins_prev_tags": [], + "labels_hierarchy": [] + }, + { + "rev": 1, + "minerals_prev_tags": [], + "allergens_hierarchy": [], + "ingredients": [], + "sortkey": 533393271, + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "ingredients_text_with_allergens_de": null, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "4316268518345", + "interface_version_created": "20150316.jqm2", + "lc": "de", + "additives_debug_tags": [], + "quantity": "400 g", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "lang": "de", + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "correctors_tags": [], + "product_name_de": "Tomaten geschält", + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "amino_acids_tags": [], + "informers_tags": [ + "date-limite-app" + ], + "editors_tags": [ + "date-limite-app" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "nutrition_data_per": "100g", + "languages_hierarchy": [ + "en:german" + ], + "packaging": "Dose/Dosen", + "created_t": 1533393270, + "ingredients_hierarchy": [], + "last_modified_by": "date-limite-app", + "ingredients_tags": [], + "creator": "date-limite-app", + "ingredients_from_palm_oil_tags": [], + "countries": "en:FR, en:de", + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "no_nutrition_data": "", + "traces_tags": [], + "allergens_tags": [], + "product_name_de_debug_tags": [], + "nutriments": {}, + "packaging_tags": [ + "dose-dosen" + ], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:german", + "en:1" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [], + "packaging_debug_tags": [], + "additives_prev_original_tags": [], + "product_quantity": 400, + "quality_tags": [], + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "languages_codes": { + "de": 1 + }, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "nutrient_levels_tags": [], + "product_name": "Tomaten geschält", + "last_editor": "date-limite-app", + "url": "https://ssl-api.openfoodfacts.org/product/4316268518345/tomaten-geschalt", + "ingredients_text_with_allergens": null, + "checkers_tags": [], + "minerals_tags": [], + "amino_acids_prev_tags": [], + "code": "4316268518345", + "nova_group_debug": "no nova group when the product does not have ingredients", + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "ingredients_text_debug": null, + "complete": 0, + "languages": { + "en:german": 1 + }, + "ingredients_debug": [], + "_id": "4316268518345", + "_keywords": [ + "tomaten", + "geschalt" + ], + "last_modified_t": 1533393271, + "additives_old_tags": [], + "quantity_debug_tags": [], + "vitamins_prev_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-uploaded", + "codes_tags": [ + "code-13", + 4316268518345, + "431626851834x", + "43162685183xx", + "4316268518xxx", + "431626851xxxx", + "43162685xxxxx", + "4316268xxxxxx", + "431626xxxxxxx", + "43162xxxxxxxx", + "4316xxxxxxxxx", + "431xxxxxxxxxx", + "43xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:germany" + ] + }, + { + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 3, + "sortkey": 533393208, + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "4017100145063", + "ingredients_text_with_allergens_de": null, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "additives_debug_tags": [], + "lc": "de", + "interface_version_created": "20150316.jqm2", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "last_image_t": 1533393208, + "image_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.400.jpg", + "quantity": "100 g", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "de", + "allergens_from_ingredients": "", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "product_name_de": "Leibniz Zoo Safari Schokolade", + "nutrient_levels": {}, + "correctors_tags": [], + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "selected_images": { + "front": { + "display": { + "de": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.400.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.100.jpg" + }, + "small": { + "de": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.200.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "date-limite-app" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "date-limite-app" + ], + "created_t": 1533393199, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:german" + ], + "last_modified_by": "date-limite-app", + "ingredients_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1000, + "h": 1333 + } + }, + "uploaded_t": 1533393207, + "uploader": "date-limite-app" + }, + "front_de": { + "imgid": 1, + "angle": 0, + "rev": "3", + "normalize": null, + "geometry": "0x0--3--3", + "x1": -1, + "white_magic": null, + "y2": -1, + "x2": -1, + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1333, + "w": 1000 + } + }, + "y1": -1 + } + }, + "creator": "date-limite-app", + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "countries": "en:FR, en:de", + "ingredients_from_palm_oil_tags": [], + "traces_tags": [], + "allergens_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:german", + "en:1" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.400.jpg", + "product_name_de_debug_tags": [], + "nutriments": {}, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.200.jpg", + "product_quantity": 100, + "additives_prev_original_tags": [], + "quality_tags": [], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "date-limite-app" + ], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "de": 2 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.200.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.100.jpg", + "nutrient_levels_tags": [], + "product_name": "Leibniz Zoo Safari Schokolade", + "max_imgid": "1", + "url": "https://ssl-api.openfoodfacts.org/product/4017100145063/leibniz-zoo-safari-schokolade", + "ingredients_text_with_allergens": null, + "last_editor": "date-limite-app", + "checkers_tags": [], + "minerals_tags": [], + "code": "4017100145063", + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/014/5063/front_de.3.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "languages": { + "en:german": 2 + }, + "_id": "4017100145063", + "_keywords": [ + "schokolade", + "safari", + "zoo", + "leibniz" + ], + "ingredients_debug": [], + "ingredients_text_debug": null, + "complete": 0, + "quantity_debug_tags": [], + "last_modified_t": 1533393208, + "additives_old_tags": [], + "codes_tags": [ + "code-13", + "4017100145063", + "401710014506x", + "40171001450xx", + "4017100145xxx", + "401710014xxxx", + "40171001xxxxx", + "4017100xxxxxx", + "401710xxxxxxx", + "40171xxxxxxxx", + "4017xxxxxxxxx", + "401xxxxxxxxxx", + "40xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:germany" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [] + }, + { + "additives_prev_original_tags": [], + "product_quantity": 215, + "quality_tags": [], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "date-limite-app" + ], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:german", + "en:1" + ], + "product_name_de_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.400.jpg", + "nutriments": {}, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.200.jpg", + "traces_tags": [], + "allergens_tags": [], + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "countries": "en:FR, en:de", + "ingredients_from_palm_oil_tags": [], + "nutrient_levels_tags": [], + "product_name": "Kinder Bueno", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.100.jpg", + "languages_codes": { + "de": 2 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "code": "8000500273449", + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.100.jpg", + "amino_acids_prev_tags": [], + "minerals_tags": [], + "checkers_tags": [], + "ingredients_text_with_allergens": null, + "url": "https://ssl-api.openfoodfacts.org/product/8000500273449/kinder-bueno", + "max_imgid": "1", + "last_editor": "date-limite-app", + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:germany" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "codes_tags": [ + "code-13", + "8000500273449", + "800050027344x", + "80005002734xx", + "8000500273xxx", + "800050027xxxx", + "80005002xxxxx", + "8000500xxxxxx", + "800050xxxxxxx", + "80005xxxxxxxx", + "8000xxxxxxxxx", + "800xxxxxxxxxx", + "80xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "quantity_debug_tags": [], + "last_modified_t": 1533393129, + "additives_old_tags": [], + "languages": { + "en:german": 2 + }, + "_keywords": [ + "bueno", + "kinder" + ], + "ingredients_debug": [], + "_id": "8000500273449", + "ingredients_text_debug": null, + "complete": 0, + "id": "8000500273449", + "ingredients_text_with_allergens_de": null, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "sortkey": 533393129, + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 3, + "product_name_de": "Kinder Bueno", + "correctors_tags": [], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france", + "en:germany" + ], + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "de", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "last_image_t": 1533393129, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.400.jpg", + "quantity": "215 g", + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "de", + "nutrition_data_per": "100g", + "informers_tags": [ + "date-limite-app" + ], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "date-limite-app" + ], + "additives_original_tags": [], + "selected_images": { + "front": { + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.100.jpg" + }, + "small": { + "de": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.200.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/800/050/027/3449/front_de.3.400.jpg" + } + } + }, + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "images": { + "1": { + "uploaded_t": 1533393129, + "uploader": "date-limite-app", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1000, + "h": 1333 + } + } + }, + "front_de": { + "y1": -1, + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1000, + "h": 1333 + } + }, + "x2": -1, + "y2": -1, + "white_magic": null, + "x1": -1, + "geometry": "0x0--3--3", + "normalize": null, + "rev": "3", + "angle": 0, + "imgid": 1 + } + }, + "creator": "date-limite-app", + "ingredients_tags": [], + "last_modified_by": "date-limite-app", + "created_t": 1533393125, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:german" + ] + }, + { + "code": "0059749917667", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.100.jpg", + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/0059749917667/olive-oil", + "ingredients_text_with_allergens": null, + "max_imgid": "2", + "last_editor": null, + "minerals_tags": [], + "checkers_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "0059749917667", + "005974991766x", + "00597499176xx", + "0059749917xxx", + "005974991xxxx", + "00597499xxxxx", + "0059749xxxxxx", + "005974xxxxxxx", + "00597xxxxxxxx", + "0059xxxxxxxxx", + "005xxxxxxxxxx", + "00xxxxxxxxxxx", + "0xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "languages": { + "en:french": 3 + }, + "ingredients_debug": [], + "_keywords": [ + "oil", + "olive" + ], + "_id": "0059749917667", + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533393090, + "additives_old_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "nutriments": { + "salt_value": "0", + "carbohydrates_serving": "", + "energy": "335", + "salt_serving": "", + "sodium_serving": "", + "sodium_100g": "0", + "fat_unit": "", + "salt": "0", + "proteins_serving": "", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "sodium": "0", + "fat_100g": "9", + "energy_100g": "335", + "energy_value": "80", + "fat": "9", + "saturated-fat_100g": 1.5, + "saturated-fat_value": "1.5", + "carbohydrates_value": "0", + "sugars_unit": "", + "carbohydrates": "0", + "fat_value": "9", + "carbohydrates_100g": "0", + "salt_100g": "0", + "energy_serving": "", + "sugars_serving": "", + "saturated-fat": 1.5, + "sugars_100g": "0", + "proteins": "0", + "energy_unit": "kcal", + "proteins_unit": "", + "sugars": "0", + "sugars_value": "0", + "proteins_value": "0", + "proteins_100g": "0", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.200.jpg", + "additives_prev_original_tags": [], + "quality_tags": [], + "product_name_fr": "Olive oil", + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "traces_tags": [], + "allergens_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.100.jpg", + "product_name": "Olive oil", + "nutrient_levels_tags": [], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.200.jpg", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.200.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "additives_original_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "nova_group_tags": [ + "not-applicable" + ], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.200.jpg", + "images": { + "1": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 1200, + "w": 674 + } + }, + "uploaded_t": 1533393087, + "uploader": "kiliweb" + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": 1533393089, + "sizes": { + "100": { + "h": 100, + "w": 55 + }, + "400": { + "w": 219, + "h": 400 + }, + "full": { + "h": 1200, + "w": 656 + } + } + }, + "front_fr": { + "normalize": "0", + "angle": null, + "rev": "4", + "imgid": "1", + "y1": null, + "sizes": { + "100": { + "w": "56", + "h": "100" + }, + "200": { + "w": 112, + "h": 200 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 674, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "ingredients_fr": { + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 55 + }, + "200": { + "w": 109, + "h": 200 + }, + "400": { + "w": 219, + "h": 400 + }, + "full": { + "w": 656, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "angle": null, + "rev": "7", + "imgid": "2" + } + }, + "creator": "kiliweb", + "created_t": 1533393085, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "last_modified_by": null, + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "0059749917667", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "ingredients": [], + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "rev": 7, + "sortkey": 533393090, + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "last_image_t": 1533393089, + "image_url": "https://static.openfoodfacts.org/images/products/005/974/991/7667/front_fr.4.400.jpg" + }, + { + "countries_tags": [ + "en:france" + ], + "ingredients_text_with_allergens_fr": null, + "traces_hierarchy": [], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "4014400922608", + "401440092260x", + "40144009226xx", + "4014400922xxx", + "401440092xxxx", + "40144009xxxxx", + "4014400xxxxxx", + "401440xxxxxxx", + "40144xxxxxxxx", + "4014xxxxxxxxx", + "401xxxxxxxxxx", + "40xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "additives_old_tags": [], + "last_modified_t": 1533393049, + "_id": "4014400922608", + "_keywords": [ + "lachgummi", + "nimm2", + "heroe" + ], + "ingredients_debug": [], + "languages": { + "en:french": 2 + }, + "complete": 0, + "ingredients_text_debug": null, + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "4014400922608", + "amino_acids_prev_tags": [], + "minerals_tags": [], + "checkers_tags": [], + "ingredients_text_with_allergens": null, + "url": "https://ssl-api.openfoodfacts.org/product/4014400922608/nimm2-lachgummi-heroes", + "max_imgid": "1", + "last_editor": null, + "product_name": "Nimm2 Lachgummi Heroes", + "nutrient_levels_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.100.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "languages_codes": { + "fr": 2 + }, + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "quality_tags": [], + "product_name_fr": "Nimm2 Lachgummi Heroes", + "additives_prev_original_tags": [], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "nutriments": { + "carbohydrates_serving": "", + "salt_value": "0.09", + "salt_serving": "", + "energy": "1389", + "sodium_serving": "", + "fat_unit": "", + "sodium_100g": 0.0354330708661417, + "salt": 0.09, + "proteins_serving": "", + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "sodium": 0.0354330708661417, + "fat_100g": 0.1, + "energy_100g": "1389", + "fat": 0.1, + "saturated-fat_value": "0.1", + "saturated-fat_100g": 0.1, + "energy_value": "332", + "carbohydrates_value": "76", + "sugars_unit": "", + "carbohydrates": "76", + "fat_value": "0.1", + "carbohydrates_100g": "76", + "salt_100g": 0.09, + "energy_serving": "", + "saturated-fat": 0.1, + "sugars_serving": "", + "sugars_100g": 55.8, + "energy_unit": "kcal", + "proteins": "1", + "proteins_unit": "", + "sugars_value": "55.8", + "sugars": 55.8, + "proteins_100g": "1", + "proteins_value": "1", + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "" + }, + "allergens_tags": [], + "traces_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.200.jpg", + "creator": "kiliweb", + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1600, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533393047 + }, + "ingredients_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1200, + "w": 1600 + } + }, + "x2": null, + "y2": null, + "normalize": "0", + "angle": null, + "rev": "4", + "imgid": "1" + } + }, + "ingredients_tags": [], + "last_modified_by": null, + "ingredients_hierarchy": [], + "created_t": 1533393024, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.400.jpg", + "nutrition_data_per_debug_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per": "100g", + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_original_tags": [], + "informers_tags": [ + "kiliweb" + ], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/401/440/092/2608/ingredients_fr.4.200.jpg" + } + } + }, + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "countries_hierarchy": [ + "en:france" + ], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "last_image_t": 1533393047, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "additives_debug_tags": [], + "lc": "fr", + "interface_version_created": "20150316.jqm2", + "id": "4014400922608", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "sortkey": 533393049, + "allergens_hierarchy": [], + "ingredients": [], + "rev": 4, + "minerals_prev_tags": [] + }, + { + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "traces": "Œufs,Fruits à coque", + "expiration_date_debug_tags": [], + "quantity": "300 g", + "last_image_t": 1533392859, + "entry_dates_tags": [ + "2018-04-21", + "2018-04", + "2018" + ], + "product_name_lc": "", + "image_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.400.jpg", + "interface_version_modified": "20120622", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.200.jpg", + "ingredients_n_tags": [ + "47", + "41-50" + ], + "ingredients_that_may_be_from_palm_oil_tags": [ + "e471-mono-et-diglycerides-d-acides-gras-alimentaires" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "drunkenbison" + ], + "stores_tags": [ + "auchan" + ], + "completed_t": 1533393002, + "minerals_prev_tags": [], + "rev": 15, + "allergens_hierarchy": [ + "en:milk" + ], + "ingredients_that_may_be_from_palm_oil_n": 1, + "emb_codes_orig": "ES 28.00001/V CE", + "brands_tags": [ + "auchan" + ], + "sortkey": 1533393002, + "emb_codes_debug_tags": [], + "serving_quantity": 50, + "labels": "Point Vert", + "emb_codes": "ES 28.00001/V EC", + "ingredients_n": 47, + "id": "3596710432066", + "nutrition_data_per_debug_tags": [], + "created_t": 1524325636, + "cities_tags": [], + "last_modified_by": "drunkenbison", + "labels_tags": [ + "en:green-dot" + ], + "creator": "kiliweb", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "brands_debug_tags": [], + "origins_debug_tags": [], + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.400.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.200.jpg" + } + } + }, + "pnns_groups_1": "Milk and dairy products", + "informers_tags": [ + "kiliweb", + "drunkenbison" + ], + "origins": "", + "ingredients_original_tags": [ + "fr:Crème glacée yaourt", + "fr:lait-ecreme-reconstitue", + "en:water", + "fr:yaourt liquide sucré", + "en:sugar", + "en:butter", + "fr:contient lait", + "en:lactose", + "fr:contient lait", + "en:milk-protein", + "en:glucose-syrup", + "en:emulsifier", + "fr:mono", + "fr:diglycerides-d-acide-gras", + "en:stabiliser", + "fr:gomme-guar", + "fr:alginate-de-sodium", + "en:acid", + "en:lactic-acid", + "fr:arôme naturel Sorbet à la fraise", + "en:water", + "fr:puree-de-fraise", + "en:sugar", + "en:dextrose", + "en:acid", + "en:citric-acid", + "fr:stabilisant farine de graines de caroube", + "en:colour", + "fr:purée de framboise à base de concentré", + "en:glucose-and-fructose-syrup", + "en:dextrose", + "en:sugar", + "en:corn-starch", + "fr:jus-concentre-de-sureau", + "en:thickener", + "en:pectin", + "en:xanthan-gum", + "en:acid", + "en:citric-acid", + "en:natural-flavour", + "fr:lait-entier", + "en:sugar", + "fr:lait-ecreme-en-poudre", + "fr:ferments-lactiques", + "fr:anthocyanes arôme naturel", + "fr:Sauce à la framboise", + "en:water" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.400.jpg", + "pnns_groups_2": "Ice cream", + "additives_prev_n": 9, + "labels_debug_tags": [], + "origins_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared": "", + "nova_group": 4, + "product_name_lc_debug_tags": [], + "nutrition_grades": "c", + "additives_tags": [ + "en:e163", + "en:e270", + "en:e330", + "en:e401", + "en:e410", + "en:e412", + "en:e415", + "en:e440", + "en:e471" + ], + "link_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "no_nutrition_data": "", + "pnns_groups_1_tags": [ + "milk-and-dairy-products" + ], + "categories_tags": [ + "en:desserts", + "en:frozen-foods", + "en:frozen-desserts", + "en:ice-creams-and-sorbets", + "en:ice-creams", + "en:ice-cream-tubs", + "fr:glaces-au-yaourt" + ], + "generic_name_lc": "", + "nutriments": { + "saturated-fat_100g": 2, + "saturated-fat_value": "2", + "fat": 3.1, + "energy_value": "130", + "energy_100g": 544, + "fat_100g": 3.1, + "sodium": 0.0354330708661417, + "carbohydrates": 24.1, + "nutrition-score-fr": 6, + "sugars_unit": "g", + "carbohydrates_value": "24.1", + "nutrition-score-uk_100g": 6, + "sodium_serving": 0.0177, + "salt_serving": 0.045, + "energy": 544, + "sodium_value": "0.035433070866141725", + "nutrition-score-fr_100g": 6, + "salt_value": "0.09", + "carbohydrates_serving": 12.1, + "sodium_unit": "g", + "saturated-fat_unit": "g", + "saturated-fat_serving": 1, + "proteins_serving": 0.6, + "salt": 0.09, + "fat_unit": "g", + "sodium_100g": 0.0354330708661417, + "nova-group": 4, + "proteins_unit": "g", + "nova-group_serving": 4, + "nutrition-score-uk": 6, + "energy_unit": "kcal", + "proteins": 1.2, + "sugars_100g": 22.5, + "carbohydrates_unit": "g", + "fat_serving": 1.55, + "nova-group_100g": 4, + "salt_unit": "g", + "proteins_100g": 1.2, + "proteins_value": "1.2", + "sugars": 22.5, + "sugars_value": "22.5", + "salt_100g": 0.09, + "carbohydrates_100g": 24.1, + "fat_value": "3.1", + "saturated-fat": 2, + "sugars_serving": 11.2, + "energy_serving": 272 + }, + "purchase_places_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "quality_tags": [], + "additives_prev_original_tags": [ + "en:e471", + "en:e412", + "en:e401", + "en:e270", + "en:e330", + "en:e410", + "en:e163", + "en:e440", + "en:e415" + ], + "ingredients_text_with_allergens_lc": "", + "generic_name_lc_debug_tags": [], + "labels_hierarchy": [ + "en:green-dot" + ], + "vitamins_prev_tags": [], + "nutrition_score_debug": " -- energy 1 + sat-fat 1 + fr-sat-fat-for-fats 10 + sugars 4 + sodium 0 - fruits 0% 0 - fiber 0 - proteins 0 -- fsa 6 -- fr 6", + "ingredients_text_lc": "", + "ingredients_text_with_allergens_fr": "Crème glacée yaourt 42.5% : lait écrémé reconstitué, eau, yaourt liquide sucré 8,5% (lait entier, sucre, lait écrémé en poudre, ferments lactiques), sucre, beurre (contient lait), lactose (contient lait) et protéines de lait, sirop de glucose, émulsifiant: mono- et diglycérides d'acides gras; stabilisants : gomme guar, alginate de sodium ; acidifiant: acide lactique, arôme naturel Sorbet à la fraise 42,5% : eau, purée de fraise 10,6%, sucre, dextrose, acidifiant: acide citrique, stabilisant farine de graines de caroube, colorant: anthocyanes arôme naturel. Sauce à la framboise 15% : eau, purée de framboise à base de concentré 3%, sirop de glucose-fructose, dextrose, sucre, amidon de maïs, jus concentré de sureau ; épaississants: pectines, gomme xanthane; acidifiant: acide citrique, arôme naturel.", + "categories_prev_hierarchy": [ + "en:desserts", + "en:frozen-foods", + "en:frozen-desserts", + "en:ice-creams-and-sorbets", + "en:ice-creams", + "en:ice-cream-tubs", + "fr:glaces-au-yaourt" + ], + "debug_param_sorted_langs": [ + "fr", + "lc" + ], + "ingredients_text_with_allergens": "Crème glacée yaourt 42.5% : lait écrémé reconstitué, eau, yaourt liquide sucré 8,5% (lait entier, sucre, lait écrémé en poudre, ferments lactiques), sucre, beurre (contient lait), lactose (contient lait) et protéines de lait, sirop de glucose, émulsifiant: mono- et diglycérides d'acides gras; stabilisants : gomme guar, alginate de sodium ; acidifiant: acide lactique, arôme naturel Sorbet à la fraise 42,5% : eau, purée de fraise 10,6%, sucre, dextrose, acidifiant: acide citrique, stabilisant farine de graines de caroube, colorant: anthocyanes arôme naturel. Sauce à la framboise 15% : eau, purée de framboise à base de concentré 3%, sirop de glucose-fructose, dextrose, sucre, amidon de maïs, jus concentré de sureau ; épaississants: pectines, gomme xanthane; acidifiant: acide citrique, arôme naturel.", + "url": "https://ssl-api.openfoodfacts.org/product/3596710432066/glace-yaourt-sorbet-fraise-et-son-coeur-fondant-a-la-framboise-auchan", + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "France", + "minerals_tags": [], + "checkers_tags": [], + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nucleotides_tags": [], + "additives_old_n": 10, + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "additives_debug_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "vitamins_tags": [], + "nutrition_data": "on", + "allergens_from_ingredients": "lait entier, ferments lactiques, beurre, lait, lactose, lait, protéines de lait", + "lang": "fr", + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": { + "sugars": "high", + "saturated-fat": "moderate", + "salt": "low", + "fat": "moderate" + }, + "ingredients": [ + { + "text": "Crème glacée yaourt", + "rank": 1, + "id": "fr:Crème glacée yaourt", + "percent": "42.5" + }, + { + "text": "lait écrémé reconstitué", + "rank": 2, + "id": "fr:lait-ecreme-reconstitue" + }, + { + "id": "en:water", + "text": "eau", + "rank": 3 + }, + { + "percent": "8.5", + "id": "fr:yaourt liquide sucré", + "rank": 4, + "text": "yaourt liquide sucré" + }, + { + "text": "sucre", + "rank": 5, + "id": "en:sugar" + }, + { + "rank": 6, + "text": "beurre", + "id": "en:butter" + }, + { + "id": "fr:contient lait", + "text": "contient lait", + "rank": 7 + }, + { + "text": "lactose", + "rank": 8, + "id": "en:lactose" + }, + { + "id": "fr:contient lait", + "rank": 9, + "text": "contient lait" + }, + { + "rank": 10, + "text": "et protéines de lait", + "id": "en:milk-protein" + }, + { + "text": "sirop de glucose", + "rank": 11, + "id": "en:glucose-syrup" + }, + { + "id": "en:emulsifier", + "rank": 12, + "text": "émulsifiant" + }, + { + "rank": 13, + "text": "mono", + "id": "fr:mono" + }, + { + "id": "fr:diglycerides-d-acide-gras", + "rank": 14, + "text": "et diglycérides d'acides gras" + }, + { + "text": "stabilisants", + "rank": 15, + "id": "en:stabiliser" + }, + { + "id": "fr:gomme-guar", + "text": "gomme guar", + "rank": 16 + }, + { + "id": "fr:alginate-de-sodium", + "text": "alginate de sodium", + "rank": 17 + }, + { + "text": "acidifiant", + "rank": 18, + "id": "en:acid" + }, + { + "text": "acide lactique", + "rank": 19, + "id": "en:lactic-acid" + }, + { + "percent": "42.5", + "text": "arôme naturel Sorbet à la fraise", + "rank": 20, + "id": "fr:arôme naturel Sorbet à la fraise" + }, + { + "id": "en:water", + "text": "eau", + "rank": 21 + }, + { + "percent": "10.6", + "id": "fr:puree-de-fraise", + "text": "purée de fraise", + "rank": 22 + }, + { + "rank": 23, + "text": "sucre", + "id": "en:sugar" + }, + { + "id": "en:dextrose", + "text": "dextrose", + "rank": 24 + }, + { + "rank": 25, + "text": "acidifiant", + "id": "en:acid" + }, + { + "rank": 26, + "text": "acide citrique", + "id": "en:citric-acid" + }, + { + "id": "fr:stabilisant farine de graines de caroube", + "text": "stabilisant farine de graines de caroube", + "rank": 27 + }, + { + "id": "en:colour", + "text": "colorant", + "rank": 28 + }, + { + "text": "purée de framboise à base de concentré", + "rank": 29, + "id": "fr:purée de framboise à base de concentré", + "percent": "3" + }, + { + "id": "en:glucose-and-fructose-syrup", + "text": "sirop de glucose-fructose", + "rank": 30 + }, + { + "text": "dextrose", + "rank": 31, + "id": "en:dextrose" + }, + { + "text": "sucre", + "rank": 32, + "id": "en:sugar" + }, + { + "text": "amidon de maïs", + "rank": 33, + "id": "en:corn-starch" + }, + { + "id": "fr:jus-concentre-de-sureau", + "text": "jus concentré de sureau", + "rank": 34 + }, + { + "rank": 35, + "text": "épaississants", + "id": "en:thickener" + }, + { + "text": "pectines", + "rank": 36, + "id": "en:pectin" + }, + { + "id": "en:xanthan-gum", + "rank": 37, + "text": "gomme xanthane" + }, + { + "text": "acidifiant", + "rank": 38, + "id": "en:acid" + }, + { + "id": "en:citric-acid", + "rank": 39, + "text": "acide citrique" + }, + { + "id": "en:natural-flavour", + "text": "arôme naturel", + "rank": 40 + }, + { + "id": "fr:lait-entier", + "text": "lait entier" + }, + { + "id": "en:sugar", + "text": "sucre" + }, + { + "id": "fr:lait-ecreme-en-poudre", + "text": "lait écrémé en poudre" + }, + { + "text": "ferments lactiques", + "id": "fr:ferments-lactiques" + }, + { + "id": "fr:anthocyanes arôme naturel", + "text": "anthocyanes arôme naturel" + }, + { + "percent": "15", + "text": "Sauce à la framboise", + "id": "fr:Sauce à la framboise" + }, + { + "id": "en:water", + "text": "eau" + } + ], + "manufacturing_places_tags": [ + "espagne" + ], + "allergens_debug_tags": [], + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "Crème glacée yaourt 42.5% : lait écrémé reconstitué, eau, yaourt liquide sucré 8,5% (lait entier, sucre, lait écrémé en poudre, ferments lactiques), sucre, beurre (contient lait), lactose (contient lait) et protéines de lait, sirop de glucose, émulsifiant: mono- et diglycérides d'acides gras; stabilisants : gomme guar, alginate de sodium ; acidifiant: acide lactique, arôme naturel Sorbet à la fraise 42,5% : eau, purée de fraise 10,6%, sucre, dextrose, acidifiant: acide citrique, stabilisant farine de graines de caroube, colorant: anthocyanes arôme naturel. Sauce à la framboise 15% : eau, purée de framboise à base de concentré 3%, sirop de glucose-fructose, dextrose, sucre, amidon de maïs, jus concentré de sureau ; épaississants: pectines, gomme xanthane; acidifiant: acide citrique, arôme naturel.", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nova_groups": 4, + "serving_size": "1 bâtonnet 50 g", + "categories": "Glaces au yaourt", + "languages_hierarchy": [ + "en:french", + "lc" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.400.jpg", + "packaging": "Carton,Plastique,Surgelé", + "ingredients_hierarchy": [ + "fr:Crème glacée yaourt", + "fr:lait-ecreme-reconstitue", + "en:milk", + "en:water", + "fr:yaourt liquide sucré", + "en:sugar", + "en:butter", + "fr:contient lait", + "en:lactose", + "fr:contient lait", + "en:milk-protein", + "en:glucose-syrup", + "en:syrup", + "en:emulsifier", + "fr:mono", + "fr:diglycerides-d-acide-gras", + "en:stabiliser", + "fr:gomme-guar", + "fr:alginate-de-sodium", + "en:acid", + "en:lactic-acid", + "fr:arôme naturel Sorbet à la fraise", + "en:water", + "fr:puree-de-fraise", + "en:sugar", + "en:dextrose", + "en:acid", + "en:citric-acid", + "fr:stabilisant farine de graines de caroube", + "en:colour", + "fr:purée de framboise à base de concentré", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:sugar", + "en:corn-starch", + "en:starch", + "fr:jus-concentre-de-sureau", + "en:thickener", + "en:pectin", + "en:xanthan-gum", + "en:acid", + "en:citric-acid", + "en:natural-flavour", + "en:flavour", + "fr:lait-entier", + "en:milk", + "en:sugar", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "fr:ferments-lactiques", + "fr:anthocyanes arôme naturel", + "fr:Sauce à la framboise", + "en:water" + ], + "link": "", + "nutrition_grade_fr": "c", + "expiration_date": "", + "stores_debug_tags": [], + "ingredients_tags": [ + "fr:creme-glacee-yaourt", + "fr:lait-ecreme-reconstitue", + "en:milk", + "en:water", + "fr:yaourt-liquide-sucre", + "en:sugar", + "en:butter", + "fr:contient-lait", + "en:lactose", + "fr:contient-lait", + "en:milk-protein", + "en:glucose-syrup", + "en:syrup", + "en:emulsifier", + "fr:mono", + "fr:diglycerides-d-acide-gras", + "en:stabiliser", + "fr:gomme-guar", + "fr:alginate-de-sodium", + "en:acid", + "en:lactic-acid", + "fr:arome-naturel-sorbet-a-la-fraise", + "en:water", + "fr:puree-de-fraise", + "en:sugar", + "en:dextrose", + "en:acid", + "en:citric-acid", + "fr:stabilisant-farine-de-graines-de-caroube", + "en:colour", + "fr:puree-de-framboise-a-base-de-concentre", + "en:glucose-and-fructose-syrup", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:sugar", + "en:corn-starch", + "en:starch", + "fr:jus-concentre-de-sureau", + "en:thickener", + "en:pectin", + "en:xanthan-gum", + "en:acid", + "en:citric-acid", + "en:natural-flavour", + "en:flavour", + "fr:lait-entier", + "en:milk", + "en:sugar", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "fr:ferments-lactiques", + "fr:anthocyanes-arome-naturel", + "fr:sauce-a-la-framboise", + "en:water" + ], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1524325638", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 901, + "h": 1200 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 84 + }, + "400": { + "w": 336, + "h": 400 + }, + "full": { + "w": 1009, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1524325640" + }, + "6": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2000, + "w": 1500 + } + }, + "uploaded_t": 1533392662, + "uploader": "drunkenbison" + }, + "7": { + "uploader": "drunkenbison", + "uploaded_t": 1533392859, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1500, + "h": 2000 + } + } + }, + "ingredients_fr": { + "imgid": "7", + "rev": "14", + "angle": "0", + "normalize": "false", + "y2": "255.48333740234375", + "x2": "259.16668701171875", + "sizes": { + "100": { + "h": 97, + "w": 100 + }, + "200": { + "h": 193, + "w": 200 + }, + "400": { + "h": 387, + "w": 400 + }, + "full": { + "h": 740, + "w": 765 + } + }, + "y1": "107.48333740234375", + "geometry": "765x740-530-537", + "x1": "106.16668701171875", + "white_magic": "false" + }, + "ingredients_new_lc": { + "imgid": "4", + "normalize": null, + "angle": 0, + "rev": "10", + "geometry": "0x0--5--5", + "x1": "-1", + "white_magic": null, + "x2": "-1", + "y2": "-1", + "y1": "-1", + "sizes": { + "100": { + "w": 100, + "h": 86 + }, + "200": { + "w": 200, + "h": 173 + }, + "400": { + "h": 346, + "w": 400 + }, + "full": { + "w": 1500, + "h": 1296 + } + } + }, + "nutrition_fr": { + "imgid": "6", + "rev": "12", + "angle": "0", + "normalize": "false", + "geometry": "675x410-465-659", + "white_magic": "false", + "x1": "93.16668701171875", + "y2": "213.96665954589844", + "x2": "228.16668701171875", + "sizes": { + "100": { + "h": 61, + "w": 100 + }, + "200": { + "w": 200, + "h": 121 + }, + "400": { + "h": 243, + "w": 400 + }, + "full": { + "h": 410, + "w": 675 + } + }, + "y1": "131.96665954589844" + }, + "front_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 901, + "h": 1200 + } + }, + "imgid": "1", + "normalize": "0", + "rev": "4", + "angle": null + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.200.jpg", + "additives_prev_tags": [ + "en:e163", + "en:e270", + "en:e330", + "en:e401", + "en:e410", + "en:e412", + "en:e415", + "en:e440", + "en:e471" + ], + "ingredients_text_lc_debug_tags": [], + "categories_hierarchy": [ + "en:desserts", + "en:frozen-foods", + "en:frozen-desserts", + "en:ice-creams-and-sorbets", + "en:ice-creams", + "en:ice-cream-tubs", + "fr:glaces-au-yaourt" + ], + "amino_acids_tags": [], + "product_name_fr_debug_tags": [], + "generic_name": "Crème glacée yaourt, sauce à la framboise et enrobage sorbet à la fraise", + "additives_original_tags": [ + "en:e471", + "en:e412", + "en:e401", + "en:e270", + "en:e330", + "en:e410", + "en:e163", + "en:e440", + "en:e415" + ], + "editors_tags": [ + "kiliweb", + "drunkenbison", + "openfoodfacts-contributors" + ], + "manufacturing_places": "Espagne", + "nova_group_tags": [ + "not-applicable" + ], + "nutrition_data_per": "100g", + "unknown_nutrients_tags": [], + "serving_size_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "ice-cream" + ], + "languages_codes": { + "fr": 6, + "lc": 1 + }, + "nutrition_score_warning_no_fiber": 1, + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/ingredients_fr.14.100.jpg", + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.100.jpg", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "product_name": "Glace Yaourt sorbet fraise et son coeur fondant à la framboise", + "ingredients_from_palm_oil_tags": [], + "countries": "France", + "purchase_places_tags": [ + "france" + ], + "traces_tags": [ + "en:eggs", + "en:nuts" + ], + "allergens_tags": [ + "en:milk" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.200.jpg", + "packaging_tags": [ + "carton", + "plastique", + "surgele" + ], + "languages_tags": [ + "en:french", + "lc", + "en:2", + "en:multilingual" + ], + "unknown_ingredients_n": 10, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb", + "drunkenbison" + ], + "emb_codes_tags": [ + "es-28-00001-v-ec" + ], + "product_name_fr": "Glace Yaourt sorbet fraise et son coeur fondant à la framboise", + "product_quantity": 300, + "ingredients_text_debug": "Crème glacée yaourt 42.5% : lait écrémé reconstitué, eau, yaourt liquide sucré 8,5% (lait entier, sucre, lait écrémé en poudre, ferments lactiques), sucre, beurre (contient lait), lactose (contient lait) et protéines de lait, sirop de glucose, émulsifiant : mono- et diglycérides d'acides gras; stabilisants : gomme guar, alginate de sodium ; acidifiant : acide lactique, arôme naturel Sorbet à la fraise 42,5% : eau, purée de fraise 10,6%, sucre, dextrose, acidifiant : acide citrique, stabilisant : farine de graines de caroube, colorant : anthocyanes arôme naturel. Sauce à la framboise 15% : eau, purée de framboise à base de concentré 3%, sirop de glucose-fructose, dextrose, sucre, amidon de maïs, jus concentré de sureau ; épaississants : pectines, gomme xanthane; acidifiant : acide citrique, arôme naturel.", + "complete": 1, + "languages": { + "lc": 1, + "en:french": 6 + }, + "traces_debug_tags": [], + "_keywords": [ + "point", + "framboise", + "son", + "fraise", + "fondant", + "yaourt", + "vert", + "auchan", + "sorbet", + "creme", + "coeur", + "au", + "la", + "glace", + "sauce", + "glacee", + "et", + "enrobage" + ], + "ingredients_debug": [ + "Crème glacée yaourt 42.5% ", + ":", + ":", + null, + null, + " lait écrémé reconstitué", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " yaourt liquide sucré 8", + ",", + null, + null, + null, + "5% ", + "(", + "(", + null, + null, + "lait entier", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " lait écrémé en poudre", + ",", + null, + null, + null, + " ferments lactiques)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " beurre ", + "(", + "(", + null, + null, + "contient lait)", + ",", + null, + null, + null, + " lactose ", + "(", + "(", + null, + null, + "contient lait) et protéines de lait", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " mono- et diglycérides d'acides gras", + ";", + ";", + null, + null, + " stabilisants ", + ":", + ":", + null, + null, + " gomme guar", + ",", + null, + null, + null, + " alginate de sodium ", + ";", + ";", + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide lactique", + ",", + null, + null, + null, + " arôme naturel Sorbet à la fraise 42", + ",", + null, + null, + null, + "5% ", + ":", + ":", + null, + null, + " eau", + ",", + null, + null, + null, + " purée de fraise 10", + ",", + null, + null, + null, + "6%", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " farine de graines de caroube", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " anthocyanes arôme naturel", + ". ", + null, + null, + null, + "Sauce à la framboise 15% ", + ":", + ":", + null, + null, + " eau", + ",", + null, + null, + null, + " purée de framboise à base de concentré 3%", + ",", + null, + null, + null, + " sirop de glucose-fructose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " amidon de maïs", + ",", + null, + null, + null, + " jus concentré de sureau ", + ";", + ";", + null, + null, + " épaississants ", + ":", + ":", + null, + null, + " pectines", + ",", + null, + null, + null, + " gomme xanthane", + ";", + ";", + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique", + ",", + null, + null, + null, + " arôme naturel." + ], + "_id": "3596710432066", + "categories_prev_tags": [ + "en:desserts", + "en:frozen-foods", + "en:frozen-desserts", + "en:ice-creams-and-sorbets", + "en:ice-creams", + "en:ice-cream-tubs", + "fr:glaces-au-yaourt" + ], + "last_modified_t": 1533393002, + "additives_old_tags": [ + "en:e1403", + "en:e471", + "en:e412", + "en:e401", + "en:e270", + "en:e330", + "en:e410", + "en:e163", + "en:e440", + "en:e415" + ], + "quantity_debug_tags": [], + "additives_n": 9, + "codes_tags": [ + "code-13", + 3596710432066, + "359671043206x", + "35967104320xx", + "3596710432xxx", + "359671043xxxx", + "35967104xxxxx", + "3596710xxxxxx", + "359671xxxxxxx", + "35967xxxxxxxx", + "3596xxxxxxxxx", + "359xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "stores": "Auchan", + "ingredients_ids_debug": [ + "creme-glacee-yaourt-42-5", + "lait-ecreme-reconstitue", + "eau", + "yaourt-liquide-sucre-8", + "5", + "lait-entier", + "sucre", + "lait-ecreme-en-poudre", + "ferments-lactiques", + "sucre", + "beurre", + "contient-lait", + "lactose", + "contient-lait-et-proteines-de-lait", + "sirop-de-glucose", + "emulsifiant", + "mono-et-diglycerides-d-acides-gras", + "stabilisants", + "gomme-guar", + "alginate-de-sodium", + "acidifiant", + "acide-lactique", + "arome-naturel-sorbet-a-la-fraise-42", + "5", + "eau", + "puree-de-fraise-10", + "6", + "sucre", + "dextrose", + "acidifiant", + "acide-citrique", + "stabilisant", + "farine-de-graines-de-caroube", + "colorant", + "anthocyanes-arome-naturel", + "sauce-a-la-framboise-15", + "eau", + "puree-de-framboise-a-base-de-concentre-3", + "sirop-de-glucose-fructose", + "dextrose", + "sucre", + "amidon-de-mais", + "jus-concentre-de-sureau", + "epaississants", + "pectines", + "gomme-xanthane", + "acidifiant", + "acide-citrique", + "arome-naturel" + ], + "brands": "Auchan", + "allergens": "Lait", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/nutrition_fr.12.100.jpg", + "traces_hierarchy": [ + "en:eggs", + "en:nuts" + ], + "countries_tags": [ + "en:france" + ], + "ingredients_text_fr_debug_tags": [], + "last_editor": "drunkenbison", + "max_imgid": "7", + "generic_name_fr": "Crème glacée yaourt, sauce à la framboise et enrobage sorbet à la fraise", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/043/2066/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "manufacturing_places_debug_tags": [], + "code": "3596710432066", + "ingredients_text": "Crème glacée yaourt 42.5% : lait écrémé reconstitué, eau, yaourt liquide sucré 8,5% (lait entier, sucre, lait écrémé en poudre, ferments lactiques), sucre, beurre (contient lait), lactose (contient lait) et protéines de lait, sirop de glucose, émulsifiant: mono- et diglycérides d'acides gras; stabilisants : gomme guar, alginate de sodium ; acidifiant: acide lactique, arôme naturel Sorbet à la fraise 42,5% : eau, purée de fraise 10,6%, sucre, dextrose, acidifiant: acide citrique, stabilisant farine de graines de caroube, colorant: anthocyanes arôme naturel. Sauce à la framboise 15% : eau, purée de framboise à base de concentré 3%, sirop de glucose-fructose, dextrose, sucre, amidon de maïs, jus concentré de sureau ; épaississants: pectines, gomme xanthane; acidifiant: acide citrique, arôme naturel.", + "nova_group_debug": " -- ingredients/en:starch : 3 -- ingredients/en:lactose : 4", + "lang_debug_tags": [], + "labels_prev_tags": [ + "en:green-dot" + ], + "update_key": "nova3", + "nucleotides_prev_tags": [] + }, + { + "labels_prev_tags": [ + "en:sustainable-farming", + "en:utz-certified", + "en:green-dot", + "fr:cacao-certifie-utz" + ], + "update_key": "nova3", + "lang_debug_tags": [], + "nucleotides_prev_tags": [], + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.100.jpg", + "manufacturing_places_debug_tags": [], + "nova_group_debug": " -- ingredients/en:butter : 3 -- ingredients/en:anti-caking-agent : 4", + "ingredients_text": "_Weizenmehl_, Zucker, Kakaobutter, Palmöl, _Vollmilchpulver_, Glukosesirup, fettarmes Kakaopulver (2,2%), _Butterreinfett_, Salz, Backtriebmittel: Natriumcarbonate, Diphosphate; _Magermilchpulver_, Emulgator: Lecithine (_Soja_); Aromen (_Milch_), Stärke (_Weizen_), Säuerungsmittel: Citronensäure; _Hühnervolleipulver_.", + "code": "4017100225611", + "generic_name_fr": "", + "ingredients_text_fr_debug_tags": [], + "last_editor": "date-limite-app", + "max_imgid": "5", + "brands": "Leibnitz,Bahlsen", + "ingredients_ids_debug": [ + "weizenmehl", + "zucker", + "kakaobutter", + "palmol", + "vollmilchpulver", + "glukosesirup", + "fettarmes-kakaopulver", + "2", + "2", + "butterreinfett", + "salz", + "backtriebmittel", + "natriumcarbonate", + "diphosphate", + "magermilchpulver", + "emulgator", + "lecithine", + "soja", + "aromen", + "milch", + "starke", + "weizen", + "sauerungsmittel", + "citronensaure", + "huhnervolleipulver" + ], + "allergens": "Weizenmehl, Vollmilchpulver, Butterreinfett, Magermilchpulver, Soja, Milch, Weizen, Hühnervolleipulver", + "stores": "REWE", + "generic_name_en": "Cocoa Biscuit with white chocolate (35%)", + "countries_tags": [ + "en:france", + "de:allemagne" + ], + "traces_hierarchy": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.100.jpg", + "additives_n": 3, + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + 4017100225611, + "401710022561x", + "40171002256xx", + "4017100225xxx", + "401710022xxxx", + "40171002xxxxx", + "4017100xxxxxx", + "401710xxxxxxx", + "40171xxxxxxxx", + "4017xxxxxxxxx", + "401xxxxxxxxxx", + "40xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "additives_old_tags": [ + "en:e450", + "en:e322" + ], + "last_modified_t": 1533392992, + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "de:biscuits-et-gateaux", + "de:snacks-sucres" + ], + "quantity_debug_tags": [], + "complete": 1, + "ingredients_text_debug": "_Weizenmehl_, Zucker, Kakaobutter, Palmöl, _Vollmilchpulver_, Glukosesirup, fettarmes Kakaopulver (2,2%), _Butterreinfett_, Salz, Backtriebmittel: Natriumcarbonate, Diphosphate; _Magermilchpulver_, Emulgator: Lecithine (_Soja_); Aromen (_Milch_), Stärke (_Weizen_), Säuerungsmittel: Citronensäure; _Hühnervolleipulver_.", + "generic_name_it_debug_tags": [], + "ingredients_debug": [ + "_Weizenmehl_", + ",", + null, + null, + null, + " Zucker", + ",", + null, + null, + null, + " Kakaobutter", + ",", + null, + null, + null, + " Palmöl", + ",", + null, + null, + null, + " _Vollmilchpulver_", + ",", + null, + null, + null, + " Glukosesirup", + ",", + null, + null, + null, + " fettarmes Kakaopulver ", + "(", + "(", + null, + null, + "2", + ",", + null, + null, + null, + "2%)", + ",", + null, + null, + null, + " _Butterreinfett_", + ",", + null, + null, + null, + " Salz", + ",", + null, + null, + null, + " Backtriebmittel", + ":", + ":", + null, + null, + " Natriumcarbonate", + ",", + null, + null, + null, + " Diphosphate", + ";", + ";", + null, + null, + " _Magermilchpulver_", + ",", + null, + null, + null, + " Emulgator", + ":", + ":", + null, + null, + " Lecithine ", + "(", + "(", + null, + null, + "_Soja_)", + ";", + ";", + null, + null, + " Aromen ", + "(", + "(", + null, + null, + "_Milch_)", + ",", + null, + null, + null, + " Stärke ", + "(", + "(", + null, + null, + "_Weizen_)", + ",", + null, + null, + null, + " Säuerungsmittel", + ":", + ":", + null, + null, + " Citronensäure", + ";", + ";", + null, + null, + " _Hühnervolleipulver_." + ], + "_id": "4017100225611", + "_keywords": [ + "weisser", + "biscuit", + "white", + "cacao", + "gateaux", + "leibnitz", + "snack", + "certified", + "schokolade", + "et", + "kakaokek", + "point", + "35", + "bahlsen", + "certifie", + "durable", + "sucre", + "agriculture", + "mini", + "utz", + "mit", + "black", + "vert" + ], + "languages": { + "en:german": 6, + "en:italian": 3, + "en:english": 3 + }, + "traces_debug_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb", + "anticultist" + ], + "unknown_ingredients_n": 12, + "product_name_fr": "", + "emb_codes_tags": [], + "product_quantity": 125, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.200.jpg", + "packaging_tags": [ + "kunststoff" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.400.jpg", + "languages_tags": [ + "en:english", + "en:italian", + "en:german", + "en:3", + "en:multilingual" + ], + "allergens_tags": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "traces_tags": [], + "purchase_places_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "France,Allemagne", + "product_name": "Minis Black'n White", + "nutrient_levels_tags": [ + "en:fat-in-high-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.100.jpg", + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.100.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.200.jpg", + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "ingredients_text_de": "_Weizenmehl_, Zucker, Kakaobutter, Palmöl, _Vollmilchpulver_, Glukosesirup, fettarmes Kakaopulver (2,2%), _Butterreinfett_, Salz, Backtriebmittel: Natriumcarbonate, Diphosphate; _Magermilchpulver_, Emulgator: Lecithine (_Soja_); Aromen (_Milch_), Stärke (_Weizen_), Säuerungsmittel: Citronensäure; _Hühnervolleipulver_.", + "serving_size_debug_tags": [], + "nutrition_score_warning_no_fiber": 1, + "languages_codes": { + "de": 6, + "it": 3, + "en": 3 + }, + "unknown_nutrients_tags": [], + "editors_tags": [ + "anticultist", + "tacite", + "openfoodfacts-contributors", + "kiliweb", + "date-limite-app" + ], + "manufacturing_places": "Deutschland", + "additives_original_tags": [ + "en:e450", + "en:e322", + "en:e330" + ], + "generic_name": "Kakaokeks mit weißer SChokolade (35%)", + "nutrition_data_per": "100g", + "product_name_fr_debug_tags": [], + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "de:Biscuits et gâteaux", + "de:Snacks sucrés" + ], + "additives_prev_tags": [ + "en:e322", + "en:e330", + "en:e450" + ], + "amino_acids_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1515877136", + "sizes": { + "100": { + "w": 60, + "h": 100 + }, + "400": { + "w": 242, + "h": 400 + }, + "full": { + "h": 1360, + "w": 822 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 92, + "h": 100 + }, + "400": { + "h": 400, + "w": 370 + }, + "full": { + "w": 2938, + "h": 3180 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1515877139" + }, + "3": { + "uploaded_t": "1525528821", + "uploader": "anticultist", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 226, + "w": 400 + }, + "full": { + "h": 3376, + "w": 5984 + } + } + }, + "4": { + "uploader": "anticultist", + "uploaded_t": "1525528884", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 226 + }, + "full": { + "w": 5984, + "h": 3376 + } + } + }, + "5": { + "uploaded_t": "1525528938", + "uploader": "anticultist", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 226 + }, + "full": { + "w": 5984, + "h": 3376 + } + } + }, + "nutrition_de": { + "sizes": { + "100": { + "h": 92, + "w": 100 + }, + "200": { + "w": 200, + "h": 185 + }, + "400": { + "w": 400, + "h": 369 + }, + "full": { + "w": 2853, + "h": 2632 + } + }, + "y1": "149.93333435058594", + "y2": "325.93333435058594", + "x2": "195.5", + "white_magic": "false", + "x1": "4.500000000000014", + "geometry": "2853x2632-67-2243", + "angle": "90", + "rev": "14", + "normalize": "false", + "imgid": "4" + }, + "front_de": { + "rev": "12", + "angle": "270", + "normalize": "false", + "imgid": "3", + "white_magic": "false", + "x1": "14.500000000000014", + "geometry": "2838x4369-216-478", + "sizes": { + "100": { + "h": "100", + "w": "65" + }, + "200": { + "h": 200, + "w": 130 + }, + "400": { + "h": 400, + "w": 260 + }, + "full": { + "h": 4369, + "w": 2838 + } + }, + "y1": "32", + "y2": "324", + "x2": "204.5" + }, + "ingredients_it": { + "x2": "188.5", + "y2": "223.933349609375", + "y1": "78.933349609375", + "sizes": { + "100": { + "w": 65, + "h": 100 + }, + "200": { + "w": 130, + "h": 200 + }, + "400": { + "h": 400, + "w": 260 + }, + "full": { + "h": 2166, + "w": 1406 + } + }, + "geometry": "1406x2166-1413-1179", + "white_magic": "false", + "x1": "94.5", + "imgid": "5", + "normalize": "false", + "rev": "20", + "angle": "180" + }, + "ingredients_en": { + "imgid": "5", + "rev": "17", + "angle": "180", + "normalize": "false", + "geometry": "2154x1136-2969-1253", + "white_magic": "false", + "x1": "198.5", + "y2": "159.933349609375", + "x2": "342.5", + "sizes": { + "100": { + "w": 100, + "h": 53 + }, + "200": { + "h": 105, + "w": 200 + }, + "400": { + "h": 211, + "w": 400 + }, + "full": { + "h": 1136, + "w": 2154 + } + }, + "y1": "83.933349609375" + }, + "ingredients_de": { + "normalize": "false", + "angle": "180", + "rev": "13", + "imgid": "5", + "x1": "198.5", + "white_magic": "false", + "geometry": "2139x1254-2969-171", + "y1": "11.45001220703125", + "sizes": { + "100": { + "h": 59, + "w": 100 + }, + "200": { + "w": 200, + "h": 117 + }, + "400": { + "h": 235, + "w": 400 + }, + "full": { + "w": 2139, + "h": 1254 + } + }, + "x2": "341.5", + "y2": "95.45001220703125" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.200.jpg", + "stores_debug_tags": [], + "ingredients_tags": [ + "en:wheat-flour", + "en:sugar", + "en:cocoa-butter", + "en:cocoa", + "de:palmol", + "en:whole-milk-powder", + "en:milk-powder", + "en:milk", + "de:glukosesirup", + "de:fettarmes-kakaopulver", + "en:melted-butter", + "en:butter", + "en:salt", + "en:anti-caking-agent", + "de:natriumcarbonate", + "de:diphosphate", + "en:pasteurized-skim-milk", + "en:milk-powder", + "de:emulgator", + "de:starke", + "de:weizen", + "en:acid", + "de:lecithine", + "de:soja", + "en:flavour", + "en:milk", + "de:citronensaure", + "de:huhnervolleipulver" + ], + "link": "", + "nutrition_grade_fr": "e", + "expiration_date": "01.01.19", + "packaging": "Kunststoff", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.400.jpg", + "languages_hierarchy": [ + "en:english", + "en:italian", + "en:german" + ], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:sugar", + "en:cocoa-butter", + "en:cocoa", + "de:Palmöl", + "en:whole-milk-powder", + "en:milk-powder", + "en:milk", + "de:Glukosesirup", + "de:fettarmes Kakaopulver", + "en:melted-butter", + "en:butter", + "en:salt", + "en:anti-caking-agent", + "de:Natriumcarbonate", + "de:Diphosphate", + "en:pasteurized-skim-milk", + "en:milk-powder", + "de:Emulgator", + "de:Stärke", + "de:_Weizen_", + "en:acid", + "de:Lecithine", + "de:_Soja_", + "en:flavour", + "en:milk", + "de:Citronensäure", + "de:_Hühnervolleipulver_" + ], + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nova_groups": 4, + "ingredients_text_with_allergens_de": "Weizenmehl, Zucker, Kakaobutter, Palmöl, Vollmilchpulver, Glukosesirup, fettarmes Kakaopulver (2,2%), Butterreinfett, Salz, Backtriebmittel: Natriumcarbonate, Diphosphate; Magermilchpulver, Emulgator: Lecithine (Soja); Aromen (Milch), Stärke (Weizen), Säuerungsmittel: Citronensäure; Hühnervolleipulver.", + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits", + "serving_size": "", + "countries_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "", + "nutrition_grades_tags": [ + "e" + ], + "ingredients_text_with_allergens_it": "Farina di frumento, zucchero, burro di cacao, olio di palma, latte intero in polvere, sciroppo di glucosio, cacao magro in polvere (2,2%), burro anidro, sale, agenti lievitanti: carbonati di sodio, difosfati; latte scremato in polvere, emulsionante: lecitine di soia; aromi (contiene latte), amido di frumento, acidificante: acido citrico; uovo intero in polvere.", + "product_name_it": "", + "ingredients": [ + { + "text": "_Weizenmehl_", + "rank": 1, + "id": "en:wheat-flour" + }, + { + "id": "en:sugar", + "rank": 2, + "text": "Zucker" + }, + { + "text": "Kakaobutter", + "rank": 3, + "id": "en:cocoa-butter" + }, + { + "rank": 4, + "text": "Palmöl", + "id": "de:Palmöl" + }, + { + "text": "_Vollmilchpulver_", + "rank": 5, + "id": "en:whole-milk-powder" + }, + { + "id": "de:Glukosesirup", + "text": "Glukosesirup", + "rank": 6 + }, + { + "rank": 7, + "text": "fettarmes Kakaopulver", + "id": "de:fettarmes Kakaopulver", + "percent": "2.2" + }, + { + "rank": 8, + "text": "_Butterreinfett_", + "id": "en:melted-butter" + }, + { + "text": "Salz", + "rank": 9, + "id": "en:salt" + }, + { + "rank": 10, + "text": "Backtriebmittel", + "id": "en:anti-caking-agent" + }, + { + "id": "de:Natriumcarbonate", + "text": "Natriumcarbonate", + "rank": 11 + }, + { + "id": "de:Diphosphate", + "rank": 12, + "text": "Diphosphate" + }, + { + "rank": 13, + "text": "_Magermilchpulver_", + "id": "en:pasteurized-skim-milk" + }, + { + "id": "de:Emulgator", + "text": "Emulgator", + "rank": 14 + }, + { + "id": "de:Stärke", + "rank": 15, + "text": "Stärke" + }, + { + "text": "_Weizen_", + "rank": 16, + "id": "de:_Weizen_" + }, + { + "text": "Säuerungsmittel", + "rank": 17, + "id": "en:acid" + }, + { + "id": "de:Lecithine", + "text": "Lecithine" + }, + { + "text": "_Soja_", + "id": "de:_Soja_" + }, + { + "text": "Aromen", + "id": "en:flavour" + }, + { + "id": "en:milk", + "text": "_Milch_" + }, + { + "text": "Citronensäure", + "id": "de:Citronensäure" + }, + { + "id": "de:_Hühnervolleipulver_", + "text": "_Hühnervolleipulver_" + } + ], + "manufacturing_places_tags": [ + "deutschland" + ], + "countries_hierarchy": [ + "en:france", + "de:Allemagne" + ], + "generic_name_en_debug_tags": [], + "nutrient_levels": { + "sugars": "high", + "saturated-fat": "high", + "salt": "moderate", + "fat": "high" + }, + "product_name_en_debug_tags": [], + "vitamins_tags": [], + "lang": "de", + "allergens_from_ingredients": "Weizenmehl, Vollmilchpulver, Butterreinfett, Magermilchpulver, Soja, Milch, Weizen, Hühnervolleipulver", + "nutrition_data": "on", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_hierarchy": [ + "en:sustainable-farming", + "en:utz-certified", + "en:green-dot", + "fr:Cacao certifié UTZ" + ], + "additives_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "ingredients_text_it": "Farina di _frumento_, zucchero, burro di cacao, olio di palma, _latte_ intero in polvere, sciroppo di glucosio, cacao magro in polvere (2,2%), _burro_ anidro, sale, agenti lievitanti: carbonati di sodio, difosfati; _latte_ scremato in polvere, emulsionante: lecitine di _soia_; aromi (contiene _latte_), amido di _frumento_, acidificante: acido citrico; _uovo_ intero in polvere.", + "additives_old_n": 2, + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-05-05", + "2018-05", + "2018" + ], + "purchase_places": "", + "minerals_tags": [], + "checkers_tags": [], + "debug_param_sorted_langs": [ + "de", + "en", + "it" + ], + "product_name_it_debug_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "de:Biscuits et gâteaux", + "de:Snacks sucrés" + ], + "nutrition_data_prepared_per_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/4017100225611/minis-black-n-white-leibnitz", + "ingredients_text_with_allergens": "Weizenmehl, Zucker, Kakaobutter, Palmöl, Vollmilchpulver, Glukosesirup, fettarmes Kakaopulver (2,2%), Butterreinfett, Salz, Backtriebmittel: Natriumcarbonate, Diphosphate; Magermilchpulver, Emulgator: Lecithine (Soja); Aromen (Milch), Stärke (Weizen), Säuerungsmittel: Citronensäure; Hühnervolleipulver.", + "nutrition_score_debug": " -- energy 6 + sat-fat 10 + fr-sat-fat-for-fats 8 + sugars 7 + sodium 2 - fruits 0% 0 - fiber 0 - proteins 3 -- fsa 25 -- fr 25", + "vitamins_prev_tags": [], + "labels_hierarchy": [ + "en:sustainable-farming", + "en:utz-certified", + "en:green-dot", + "en:utz-certified-cacao" + ], + "packaging_debug_tags": [], + "ingredients_text_it_debug_tags": [], + "additives_prev_original_tags": [ + "en:e450", + "en:e322", + "en:e330" + ], + "quality_tags": [ + "ingredients-unknown-score-above-0", + "ingredients-50-percent-unknown", + "ingredients-de-4-consonants" + ], + "generic_name_de": "Kakaokeks mit weißer SChokolade (35%)", + "nutriments": { + "energy_serving": "", + "saturated-fat": "13", + "sugars_serving": "", + "salt_100g": 0.5, + "fat_value": "24", + "carbohydrates_100g": 67, + "salt_unit": "g", + "fat_serving": "", + "carbohydrates_unit": "g", + "nova-group_100g": 4, + "sugars_value": "36", + "sugars": "36", + "proteins_100g": 5.7, + "proteins_value": "5.7", + "nova-group_serving": 4, + "nutrition-score-uk": 25, + "proteins_unit": "g", + "sugars_100g": 36, + "energy_unit": "kcal", + "proteins": 5.7, + "proteins_serving": "", + "salt": 0.5, + "saturated-fat_unit": "g", + "saturated-fat_serving": "", + "nova-group": 4, + "fat_unit": "g", + "sodium_100g": 0.196850393700787, + "salt_serving": "", + "energy": "2305", + "sodium_serving": "", + "salt_value": "0.5", + "carbohydrates_serving": "", + "sodium_unit": "g", + "nutrition-score-fr_100g": 25, + "sodium_value": "0.196850393700787", + "nutrition-score-fr": 25, + "sugars_unit": "g", + "carbohydrates": "67", + "carbohydrates_value": "67", + "nutrition-score-uk_100g": 25, + "energy_100g": 2305, + "fat_100g": 24, + "fat": "24", + "saturated-fat_100g": 13, + "saturated-fat_value": "13", + "energy_value": "551", + "sodium": 0.196850393700787 + }, + "product_name_de_debug_tags": [], + "purchase_places_debug_tags": [], + "ingredients_text_debug_tags": [], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "de:biscuits-et-gateaux", + "de:snacks-sucres" + ], + "no_nutrition_data": "", + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "link_debug_tags": [], + "additives_tags": [ + "en:e322", + "en:e330", + "en:e450" + ], + "nutrition_grades": "e", + "ingredients_text_en": "_Wheat_ flour, sugar, cocoa butter, palm oil, whole _milk_ powder, glucose syrup, fat reduced cocoa powder (2,2%), clarified _butter_, salt, raising agents: sodium carbonates, diphosphates; skimmed _milk_ powder, emulsifier: lecithins (_soya_); flavouring (_milk_), starch (_wheat_), acidulant: citric acid; shole hen's _egg_ powder.", + "labels_debug_tags": [ + "added-en-utz-certified-cacao", + "removed-fr-cacao-certifie-utz" + ], + "additives_prev_n": 3, + "origins_tags": [], + "nutrition_data_prepared": "", + "nova_group": 4, + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.400.jpg", + "pnns_groups_2": "Biscuits and cakes", + "origins": "", + "ingredients_original_tags": [ + "en:wheat-flour", + "en:sugar", + "en:cocoa-butter", + "de:Palmöl", + "en:whole-milk-powder", + "de:Glukosesirup", + "de:fettarmes Kakaopulver", + "en:melted-butter", + "en:salt", + "en:anti-caking-agent", + "de:Natriumcarbonate", + "de:Diphosphate", + "en:pasteurized-skim-milk", + "de:Emulgator", + "de:Stärke", + "de:_Weizen_", + "en:acid", + "de:Lecithine", + "de:_Soja_", + "en:flavour", + "en:milk", + "de:Citronensäure", + "de:_Hühnervolleipulver_" + ], + "informers_tags": [ + "kiliweb", + "anticultist" + ], + "origins_debug_tags": [], + "selected_images": { + "nutrition": { + "small": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.200.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.100.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.400.jpg" + } + }, + "front": { + "small": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.200.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.100.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.400.jpg" + } + }, + "ingredients": { + "small": { + "it": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_it.20.200.jpg", + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_de.13.200.jpg", + "en": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.200.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_de.13.100.jpg", + "it": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_it.20.100.jpg", + "en": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.100.jpg" + }, + "display": { + "it": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_it.20.400.jpg", + "de": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_de.13.400.jpg", + "en": "https://static.openfoodfacts.org/images/products/401/710/022/5611/ingredients_en.17.400.jpg" + } + } + }, + "brands_debug_tags": [], + "generic_name_de_debug_tags": [], + "pnns_groups_1": "Sugary snacks", + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "ingredients_text_with_allergens_en": "Wheat flour, sugar, cocoa butter, palm oil, whole milk powder, glucose syrup, fat reduced cocoa powder (2,2%), clarified butter, salt, raising agents: sodium carbonates, diphosphates; skimmed milk powder, emulsifier: lecithins (soya); flavouring (milk), starch (wheat), acidulant: citric acid; shole hen's egg powder.", + "ingredients_text_en_debug_tags": [], + "creator": "kiliweb", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "labels_tags": [ + "en:sustainable-farming", + "en:utz-certified", + "en:green-dot", + "en:utz-certified-cacao" + ], + "cities_tags": [], + "last_modified_by": "date-limite-app", + "nutrition_data_per_debug_tags": [], + "created_t": 1515877134, + "emb_codes": "", + "labels": "Agriculture durable,UTZ Certified,Point Vert,Cacao certifié UTZ", + "id": "4017100225611", + "ingredients_n": 23, + "emb_codes_debug_tags": [], + "serving_quantity": 0, + "emb_codes_orig": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "sortkey": 1533392992, + "generic_name_it": "Biscotti al cacao con cioccolato bianco (35%)", + "brands_tags": [ + "leibnitz", + "bahlsen" + ], + "rev": 24, + "minerals_prev_tags": [], + "completed_t": 1525532278, + "allergens_hierarchy": [ + "en:eggs", + "en:gluten", + "en:milk", + "en:soybeans" + ], + "product_name_en": "", + "correctors_tags": [ + "openfoodfacts-contributors", + "anticultist", + "kiliweb", + "tacite" + ], + "product_name_de": "Minis Black'n White", + "stores_tags": [ + "rewe" + ], + "ingredients_text_de_debug_tags": [], + "interface_version_modified": "20150316.jqm2", + "ingredients_that_may_be_from_palm_oil_tags": [], + "ingredients_n_tags": [ + "23", + "21-30" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/nutrition_de.14.200.jpg", + "quantity": "125g", + "expiration_date_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/401/710/022/5611/front_de.12.400.jpg", + "entry_dates_tags": [ + "2018-01-13", + "2018-01", + "2018" + ], + "last_image_t": 1525528939, + "interface_version_created": "20150316.jqm2", + "lc": "de", + "traces": "" + }, + { + "ingredients": [], + "allergens_hierarchy": [], + "rev": 1, + "minerals_prev_tags": [], + "sortkey": 533392927, + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "id": "7613034968364", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "additives_debug_tags": [], + "lc": "pt", + "interface_version_created": "20150316.jqm2", + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "allergens_from_ingredients": "", + "lang": "pt", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "countries_hierarchy": [ + "en:france", + "en:portugal" + ], + "correctors_tags": [], + "nutrient_levels": {}, + "product_name_pt_debug_tags": [], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "nutrition_data_per": "100g", + "informers_tags": [ + "date-limite-app" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "date-limite-app" + ], + "created_t": 1533392924, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:portuguese" + ], + "last_modified_by": "date-limite-app", + "ingredients_tags": [], + "creator": "date-limite-app", + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "ingredients_from_palm_oil_tags": [], + "countries": "en:FR, en:pt", + "traces_tags": [], + "allergens_tags": [], + "traces_from_ingredients": "", + "languages_tags": [ + "en:portuguese", + "en:1" + ], + "product_name_debug_tags": [], + "nutriments": {}, + "quality_tags": [], + "additives_prev_original_tags": [], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "pt": 1 + }, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "product_name": "Formula Nan 800g Supreme 1", + "nutrient_levels_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/7613034968364/formula-nan-800g-supreme-1", + "ingredients_text_with_allergens": null, + "ingredients_text_with_allergens_pt": null, + "last_editor": "date-limite-app", + "minerals_tags": [], + "checkers_tags": [], + "code": "7613034968364", + "nova_group_debug": "no nova group when the product does not have ingredients", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "languages": { + "en:portuguese": 1 + }, + "_id": "7613034968364", + "_keywords": [ + "nan", + "supreme", + "800g", + "formula" + ], + "ingredients_debug": [], + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533392927, + "additives_old_tags": [], + "codes_tags": [ + "code-13", + 7613034968364, + "761303496836x", + "76130349683xx", + "7613034968xxx", + "761303496xxxx", + "76130349xxxxx", + "7613034xxxxxx", + "761303xxxxxxx", + "76130xxxxxxxx", + "7613xxxxxxxxx", + "761xxxxxxxxxx", + "76xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-uploaded", + "vitamins_prev_tags": [], + "product_name_pt": "Formula Nan 800g Supreme 1", + "traces_hierarchy": [], + "countries_tags": [ + "en:france", + "en:portugal" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [] + }, + { + "last_modified_by": null, + "created_t": 1533392911, + "ingredients_hierarchy": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_data_per_debug_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.200.jpg", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1200, + "w": 899 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533392912 + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + }, + "uploaded_t": 1533392917, + "uploader": "kiliweb" + }, + "ingredients_fr": { + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 900, + "h": 1200 + } + }, + "y1": null, + "y2": null, + "x2": null, + "angle": null, + "rev": "7", + "normalize": "0", + "imgid": "2" + }, + "front_fr": { + "y1": null, + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 899, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "normalize": "0", + "angle": null, + "rev": "4", + "imgid": "1" + } + }, + "creator": "kiliweb", + "ingredients_tags": [], + "amino_acids_tags": [], + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.400.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.400.jpg" + } + } + }, + "last_image_t": 1533392917, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.400.jpg", + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "allergens_from_ingredients": "", + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "sortkey": 533392918, + "ingredients": [], + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "rev": 7, + "id": "3502490014774", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "last_modified_t": 1533392918, + "additives_old_tags": [], + "languages": { + "en:french": 3 + }, + "ingredients_debug": [], + "_id": "3502490014774", + "_keywords": [ + "emondee", + "amande", + "entiere" + ], + "ingredients_text_debug": null, + "complete": 0, + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "codes_tags": [ + "code-13", + "3502490014774", + "350249001477x", + "35024900147xx", + "3502490014xxx", + "350249001xxxx", + "35024900xxxxx", + "3502490xxxxxx", + "350249xxxxxxx", + "35024xxxxxxxx", + "3502xxxxxxxxx", + "350xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "checkers_tags": [], + "minerals_tags": [], + "ingredients_text_with_allergens": null, + "url": "https://ssl-api.openfoodfacts.org/product/3502490014774/amandes-entieres-emondees", + "max_imgid": "2", + "last_editor": null, + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "code": "3502490014774", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.200.jpg", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "product_name": "Amandes Entières émondées", + "nutrient_levels_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.100.jpg", + "traces_tags": [], + "allergens_tags": [], + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "additives_prev_original_tags": [], + "product_name_fr": "Amandes Entières émondées", + "quality_tags": [], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "nutriments": { + "proteins_100g": "24", + "proteins_value": "24", + "sugars": 4.3, + "sugars_value": "4.3", + "fat_serving": "", + "carbohydrates_unit": "", + "salt_unit": "", + "energy_unit": "kcal", + "proteins": "24", + "sugars_100g": 4.3, + "proteins_unit": "", + "saturated-fat": 4.5, + "sugars_serving": "", + "energy_serving": "", + "carbohydrates_100g": 4.9, + "fat_value": "56", + "salt_100g": 0.1, + "carbohydrates_value": "4.9", + "carbohydrates": 4.9, + "sugars_unit": "", + "sodium": 0.0393700787401575, + "saturated-fat_value": "4.5", + "saturated-fat_100g": 4.5, + "fat": "56", + "energy_value": "635", + "fat_100g": "56", + "energy_100g": "2657", + "fat_unit": "", + "sodium_100g": 0.0393700787401575, + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "proteins_serving": "", + "salt": 0.1, + "carbohydrates_serving": "", + "salt_value": "0.1", + "sodium_serving": "", + "salt_serving": "", + "energy": "2657" + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/350/249/001/4774/front_fr.4.200.jpg" + }, + { + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.400.jpg", + "nutriments": { + "fat_100g": 4.8, + "energy_100g": "506", + "fat": 4.8, + "saturated-fat_100g": 0.4, + "saturated-fat_value": "0.4", + "energy_value": "121", + "sodium": 0.708661417322835, + "sugars_unit": "", + "carbohydrates": "12", + "carbohydrates_value": "12", + "salt_serving": "", + "energy": "506", + "sodium_serving": "", + "carbohydrates_serving": "", + "salt_value": "1.8", + "proteins_serving": "", + "salt": 1.8, + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "fat_unit": "", + "sodium_100g": 0.708661417322835, + "proteins_unit": "", + "sugars_100g": "4", + "energy_unit": "kcal", + "proteins": 7.5, + "salt_unit": "", + "fat_serving": "", + "carbohydrates_unit": "", + "sugars_value": "4", + "sugars": "4", + "proteins_100g": 7.5, + "proteins_value": "7.5", + "salt_100g": 1.8, + "fat_value": "4.8", + "carbohydrates_100g": "12", + "energy_serving": "", + "saturated-fat": 0.4, + "sugars_serving": "" + }, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.200.jpg", + "additives_prev_original_tags": [], + "quality_tags": [], + "product_name_fr": "Batonnets de surimi", + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb" + ], + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "countries": "en:france", + "ingredients_from_palm_oil_tags": [], + "traces_tags": [], + "allergens_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.100.jpg", + "nutrient_levels_tags": [], + "product_name": "Batonnets de surimi", + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 3 + }, + "image_small_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.200.jpg", + "code": "20431839", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "nova_group_debug": "no nova group when the product does not have ingredients", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "max_imgid": "2", + "url": "https://ssl-api.openfoodfacts.org/product/20431839/batonnets-de-surimi", + "ingredients_text_with_allergens": null, + "last_editor": null, + "checkers_tags": [], + "minerals_tags": [], + "codes_tags": [ + "code-8", + "20431839", + "2043183x", + "204318xx", + "20431xxx", + "2043xxxx", + "204xxxxx", + "20xxxxxx", + "2xxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "languages": { + "en:french": 3 + }, + "_id": "20431839", + "ingredients_debug": [], + "_keywords": [ + "surimi", + "batonnet", + "de" + ], + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533392882, + "additives_old_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "countries_debug_tags": [], + "id": "20431839", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "ingredients": [], + "allergens_hierarchy": [], + "rev": 7, + "minerals_prev_tags": [], + "sortkey": 533392882, + "allergens_from_ingredients": "", + "lang": "fr", + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "last_image_t": 1533392880, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.400.jpg", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/front_fr.4.400.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.400.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors" + ], + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.200.jpg", + "images": { + "1": { + "uploaded_t": 1533392877, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 77, + "w": 100 + }, + "400": { + "w": 400, + "h": 308 + }, + "full": { + "w": 1557, + "h": 1200 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 33 + }, + "400": { + "h": 132, + "w": 400 + }, + "full": { + "w": 2933, + "h": 966 + } + }, + "uploaded_t": 1533392880, + "uploader": "kiliweb" + }, + "ingredients_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": 33, + "w": 100 + }, + "200": { + "h": 66, + "w": 200 + }, + "400": { + "h": 132, + "w": 400 + }, + "full": { + "w": 2933, + "h": 966 + } + }, + "imgid": "2", + "normalize": "0", + "rev": "7", + "angle": null + }, + "front_fr": { + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": "100", + "h": "77" + }, + "200": { + "h": 154, + "w": 200 + }, + "400": { + "w": 400, + "h": 308 + }, + "full": { + "w": 1557, + "h": 1200 + } + }, + "y1": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "1", + "angle": null, + "rev": "4", + "normalize": "0" + } + }, + "creator": "kiliweb", + "created_t": 1533392875, + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/20431839/ingredients_fr.7.400.jpg", + "nutrition_data_per_debug_tags": [], + "last_modified_by": null + }, + { + "ingredients_original_tags": [], + "unknown_nutrients_tags": [], + "languages_codes": { + "pt": 1 + }, + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "product_name": "Complemento alimentar Nutren 370g Senior Baunilha", + "nutrient_levels_tags": [], + "countries": "en:FR, en:pt", + "ingredients_from_palm_oil_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-to-be-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-uploaded" + ], + "no_nutrition_data": "", + "additives_tags": [], + "allergens_tags": [], + "traces_tags": [], + "nutriments": {}, + "product_name_debug_tags": [], + "languages_tags": [ + "en:portuguese", + "en:1" + ], + "traces_from_ingredients": "", + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [], + "quality_tags": [], + "additives_prev_original_tags": [], + "complete": 0, + "ingredients_text_debug": null, + "_id": "7891000241547", + "ingredients_debug": [], + "_keywords": [ + "senior", + "alimentar", + "370g", + "nutren", + "complemento", + "baunilha" + ], + "languages": { + "en:portuguese": 1 + }, + "additives_old_tags": [], + "last_modified_t": 1533392849, + "product_name_pt": "Complemento alimentar Nutren 370g Senior Baunilha", + "vitamins_prev_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-to-be-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-uploaded", + "codes_tags": [ + "code-13", + 7891000241547, + "789100024154x", + "78910002415xx", + "7891000241xxx", + "789100024xxxx", + "78910002xxxxx", + "7891000xxxxxx", + "789100xxxxxxx", + "78910xxxxxxxx", + "7891xxxxxxxxx", + "789xxxxxxxxxx", + "78xxxxxxxxxxx", + "7xxxxxxxxxxxx" + ], + "ingredients_ids_debug": [], + "nutrition_score_debug": "no score when the product does not have a category", + "countries_tags": [ + "en:france", + "en:portugal" + ], + "traces_hierarchy": [], + "last_editor": "date-limite-app", + "ingredients_text_with_allergens_pt": null, + "ingredients_text_with_allergens": null, + "url": "https://ssl-api.openfoodfacts.org/product/7891000241547/complemento-alimentar-nutren-370g-senior-baunilha", + "minerals_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "nova_group_debug": "no nova group when the product does not have ingredients", + "code": "7891000241547", + "nucleotides_prev_tags": [], + "nucleotides_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "pt", + "additives_debug_tags": [], + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "interface_version_modified": "20150316.jqm2", + "vitamins_tags": [], + "allergens_from_ingredients": "", + "lang": "pt", + "ingredients_that_may_be_from_palm_oil_tags": [], + "product_name_pt_debug_tags": [], + "countries_hierarchy": [ + "en:france", + "en:portugal" + ], + "correctors_tags": [], + "nutrient_levels": {}, + "rev": 1, + "minerals_prev_tags": [], + "ingredients": [], + "allergens_hierarchy": [], + "sortkey": 533392849, + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "serving_quantity": 0, + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "id": "7891000241547", + "languages_hierarchy": [ + "en:portuguese" + ], + "ingredients_hierarchy": [], + "created_t": 1533392849, + "last_modified_by": "date-limite-app", + "ingredients_tags": [], + "creator": "date-limite-app", + "nutrition_data_prepared_per": "100g", + "additives_prev_tags": [], + "amino_acids_tags": [], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "editors_tags": [ + "date-limite-app" + ], + "informers_tags": [ + "date-limite-app" + ], + "nutrition_data_per": "100g" + }, + { + "generic_name_fr_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "brands_debug_tags": [], + "origins_debug_tags": [], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.200.jpg" + } + } + }, + "pnns_groups_1": "Sugary snacks", + "informers_tags": [ + "kiliweb", + "moon-rabbit" + ], + "nutrition_data_per_debug_tags": [], + "created_t": 1519924078, + "cities_tags": [], + "last_modified_by": "moon-rabbit", + "labels_tags": [], + "creator": "kiliweb", + "minerals_prev_tags": [], + "rev": 9, + "allergens_hierarchy": [], + "emb_codes_orig": "", + "brands_tags": [ + "le-verger-des-abeilles" + ], + "sortkey": 533392828, + "emb_codes_debug_tags": [], + "serving_quantity": 0, + "emb_codes": "", + "labels": "", + "id": "3335440125721", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "traces": "", + "expiration_date_debug_tags": [], + "quantity": "", + "last_image_t": 1519924081, + "entry_dates_tags": [ + "2018-03-01", + "2018-03", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.400.jpg", + "interface_version_modified": "20120622", + "ingredients_that_may_be_from_palm_oil_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "tacite-mass-editor", + "moon-rabbit" + ], + "stores_tags": [], + "categories_prev_hierarchy": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:sweeteners", + "en:honey-based-preparations", + "en:blends-of-honey-and-propolis" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3335440125721/miel-de-thym-et-propolis-verte-le-verger-des-abeilles", + "ingredients_text_with_allergens": "", + "nutrition_data_prepared_per_debug_tags": [], + "purchase_places": "", + "checkers_tags": [], + "minerals_tags": [], + "last_image_dates_tags": [ + "2018-03-01", + "2018-03", + "2018" + ], + "nucleotides_tags": [], + "labels_hierarchy": [], + "vitamins_prev_tags": [], + "nutrition_score_debug": " -- energy 3 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 10 + sodium 0 - fruits 0% 0 - fiber 0 - proteins 0 -- fsa 13 -- fr 13", + "ingredients_text_with_allergens_fr": "", + "nutrition_grades": "d", + "additives_tags": [], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "link_debug_tags": [], + "categories_tags": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:sweeteners", + "en:honey-based-preparations", + "en:blends-of-honey-and-propolis" + ], + "purchase_places_debug_tags": [], + "nutriments": { + "nutrition-score-uk": 13, + "proteins_unit": "g", + "sugars_100g": 82, + "proteins": 0.3, + "energy_unit": "kcal", + "salt_unit": "g", + "fat_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "82", + "sugars": 82, + "proteins_value": "0.3", + "proteins_100g": 0.3, + "salt_100g": 0.01, + "fat_value": "0", + "carbohydrates_100g": 82, + "energy_serving": "", + "sugars_serving": "", + "saturated-fat": 0, + "fat_100g": 0, + "energy_100g": 1272, + "energy_value": "304", + "saturated-fat_100g": 0, + "fat": 0, + "saturated-fat_value": "0", + "sodium": 0.00393700787401575, + "nutrition-score-fr": 13, + "sugars_unit": "g", + "carbohydrates": 82, + "nutrition-score-uk_100g": 13, + "carbohydrates_value": "82", + "energy": 1272, + "salt_serving": "", + "sodium_serving": "", + "salt_value": "0.01", + "sodium_unit": "g", + "carbohydrates_serving": "", + "nutrition-score-fr_100g": 13, + "sodium_value": "0.00393700787401575", + "proteins_serving": "", + "salt": 0.01, + "saturated-fat_serving": "", + "saturated-fat_unit": "g", + "sodium_100g": 0.00393700787401575, + "fat_unit": "g" + }, + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "packaging_debug_tags": [], + "additives_prev_original_tags": [], + "quality_tags": [ + "quantity-not-recognized" + ], + "ingredients_original_tags": [], + "origins": "", + "pnns_groups_2": "Sweets", + "origins_tags": [], + "labels_debug_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared": "", + "additives_prev_tags": [], + "categories_hierarchy": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:sweeteners", + "en:honey-based-preparations", + "en:blends-of-honey-and-propolis" + ], + "amino_acids_tags": [], + "product_name_fr_debug_tags": [], + "generic_name": "", + "editors_tags": [ + "openfoodfacts-contributors", + "moon-rabbit", + "tacite-mass-editor", + "kiliweb" + ], + "additives_original_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "manufacturing_places": "", + "nutrition_data_per": "100g", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "packaging": "", + "ingredients_hierarchy": [], + "nutrition_grade_fr": "d", + "link": "", + "expiration_date": "", + "stores_debug_tags": [], + "ingredients_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1519924079", + "sizes": { + "100": { + "h": 100, + "w": 74 + }, + "400": { + "w": 295, + "h": 400 + }, + "full": { + "w": 886, + "h": 1200 + } + } + }, + "2": { + "uploaded_t": "1519924081", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1200, + "w": 900 + } + } + }, + "ingredients_fr": { + "imgid": "2", + "rev": "7", + "angle": null, + "normalize": "0", + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 900 + } + }, + "y1": null + }, + "front_fr": { + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "74" + }, + "200": { + "h": 200, + "w": 148 + }, + "400": { + "w": 295, + "h": 400 + }, + "full": { + "w": 886, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4" + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.200.jpg", + "ingredients": [], + "manufacturing_places_tags": [], + "allergens_debug_tags": [], + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "ingredients_text_fr": "", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "serving_size": "", + "categories": "Mélanges de miel et propolis", + "additives_debug_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_prev_hierarchy": [], + "vitamins_tags": [], + "nutrition_data": "on", + "allergens_from_ingredients": "", + "lang": "fr", + "nutrient_levels": { + "fat": "low", + "salt": "low", + "saturated-fat": "low", + "sugars": "high" + }, + "countries_hierarchy": [ + "en:france" + ], + "ingredients_text_fr_debug_tags": [], + "last_editor": "moon-rabbit", + "max_imgid": "2", + "generic_name_fr": "", + "amino_acids_prev_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.100.jpg", + "manufacturing_places_debug_tags": [], + "code": "3335440125721", + "ingredients_text": "", + "nova_group_debug": "no nova group when the product does not have ingredients", + "lang_debug_tags": [], + "update_key": "nova3", + "labels_prev_tags": [], + "nucleotides_prev_tags": [], + "ingredients_text_debug": "", + "complete": 0, + "traces_debug_tags": [], + "languages": { + "en:french": 3 + }, + "_id": "3335440125721", + "_keywords": [ + "miel", + "propoli", + "de", + "verger", + "abeille", + "le", + "verte", + "melange", + "thym", + "et" + ], + "ingredients_debug": [], + "last_modified_t": 1533392828, + "categories_prev_tags": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:sweeteners", + "en:honey-based-preparations", + "en:blends-of-honey-and-propolis" + ], + "additives_old_tags": [], + "quantity_debug_tags": [], + "codes_tags": [ + "code-13", + 3335440125721, + "333544012572x", + "33354401257xx", + "3335440125xxx", + "333544012xxxx", + "33354401xxxxx", + "3335440xxxxxx", + "333544xxxxxxx", + "33354xxxxxxxx", + "3335xxxxxxxxx", + "333xxxxxxxxxx", + "33xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "allergens": "", + "ingredients_ids_debug": [], + "brands": "Le Verger des Abeilles", + "stores": "", + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "ingredients_from_palm_oil_tags": [], + "countries": "France", + "purchase_places_tags": [], + "traces_tags": [], + "allergens_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.200.jpg", + "packaging_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ], + "emb_codes_tags": [], + "product_name_fr": "Miel de thym et propolis verte", + "unknown_nutrients_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "sweets" + ], + "serving_size_debug_tags": [], + "nutrition_score_warning_no_fiber": 1, + "languages_codes": { + "fr": 3 + }, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/333/544/012/5721/ingredients_fr.7.100.jpg", + "categories_debug_tags": [], + "nutrient_levels_tags": [ + "en:fat-in-low-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-low-quantity" + ], + "product_name": "Miel de thym et propolis verte" + }, + { + "debug_param_sorted_langs": [ + "fr" + ], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fruits-and-vegetables-based-foods", + "en:fruits-based-foods", + "en:fruits", + "en:grapes" + ], + "nutrition_data_prepared_per_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/8433065001323/raison-blanc-sans-pepins-frutas-esther", + "ingredients_text_with_allergens": "raisin blancs variété millennium origine Espagne.", + "purchase_places": "", + "checkers_tags": [], + "minerals_tags": [], + "last_image_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "additives_old_n": 0, + "nucleotides_tags": [], + "labels_hierarchy": [], + "vitamins_prev_tags": [], + "nutrition_score_debug": "missing energy", + "ingredients_text_with_allergens_fr": "raisin blancs variété millennium origine Espagne.", + "no_nutrition_data": "on", + "pnns_groups_1_tags": [ + "fruits-and-vegetables" + ], + "link_debug_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fruits-and-vegetables-based-foods", + "en:fruits-based-foods", + "en:fruits", + "en:grapes" + ], + "nutriments": { + "nova-group_100g": 1, + "nova-group_serving": 1, + "nova-group": 1 + }, + "purchase_places_debug_tags": [], + "product_name_debug_tags": [], + "traces_from_ingredients": "", + "packaging_debug_tags": [], + "additives_prev_original_tags": [], + "quality_tags": [ + "ingredients-unknown-score-above-0", + "ingredients-100-percent-unknown", + "ingredients-ingredient-tag-length-greater-than-50", + "no-nutrition-data" + ], + "origins": "Espagne", + "ingredients_original_tags": [ + "fr:raisin blancs variété millennium origine Espagne" + ], + "pnns_groups_2": "Fruits", + "labels_debug_tags": [], + "origins_tags": [ + "espagne" + ], + "additives_prev_n": 0, + "nova_group": 1, + "nutrition_data_prepared": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.400.jpg" + } + } + }, + "origins_debug_tags": [], + "brands_debug_tags": [], + "pnns_groups_1": "Fruits and vegetables", + "informers_tags": [ + "kiliweb", + "moon-rabbit" + ], + "nutrition_data_per_debug_tags": [], + "created_t": 1533247353, + "cities_tags": [], + "last_modified_by": "moon-rabbit", + "labels_tags": [], + "creator": "kiliweb", + "nova_groups_tags": [ + "en:1-unprocessed-or-minimally-processed-foods" + ], + "minerals_prev_tags": [], + "rev": 9, + "allergens_hierarchy": [], + "emb_codes_orig": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "sortkey": 533392739, + "brands_tags": [ + "frutas-esther" + ], + "emb_codes_debug_tags": [], + "serving_quantity": 0, + "emb_codes": "", + "labels": "", + "ingredients_n": 1, + "id": "8433065001323", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "traces": "", + "quantity": "500 g", + "expiration_date_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.400.jpg", + "last_image_t": 1533247355, + "entry_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "interface_version_modified": "20120622", + "ingredients_that_may_be_from_palm_oil_tags": [], + "ingredients_n_tags": [ + "1", + "1-10" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "moon-rabbit" + ], + "stores_tags": [], + "last_editor": "moon-rabbit", + "ingredients_text_fr_debug_tags": [], + "max_imgid": "2", + "generic_name_fr": "", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "manufacturing_places_debug_tags": [], + "nova_group_debug": "", + "ingredients_text": "raisin blancs variété millennium origine Espagne.", + "code": "8433065001323", + "update_key": "nova3", + "labels_prev_tags": [], + "lang_debug_tags": [], + "nucleotides_prev_tags": [], + "complete": 0, + "ingredients_text_debug": "raisin blancs variété millennium origine Espagne.", + "_keywords": [ + "produit", + "blanc", + "base", + "fruit", + "vegetaux", + "aliment", + "raisin", + "de", + "vegetale", + "espagne", + "origine", + "raison", + "et", + "boisson", + "derive", + "legume", + "pepin", + "san", + "fruta", + "esther" + ], + "ingredients_debug": [ + "raisin blancs variété millennium origine Espagne." + ], + "_id": "8433065001323", + "languages": { + "en:french": 4 + }, + "traces_debug_tags": [], + "additives_old_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fruits-and-vegetables-based-foods", + "en:fruits-based-foods", + "en:fruits", + "en:grapes" + ], + "last_modified_t": 1533392739, + "quantity_debug_tags": [], + "additives_n": 0, + "codes_tags": [ + "code-13", + 8433065001323, + "843306500132x", + "84330650013xx", + "8433065001xxx", + "843306500xxxx", + "84330650xxxxx", + "8433065xxxxxx", + "843306xxxxxxx", + "84330xxxxxxxx", + "8433xxxxxxxxx", + "843xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "ingredients_ids_debug": [ + "raisin-blancs-variete-millennium-origine-espagne" + ], + "allergens": "", + "stores": "", + "brands": "Frutas Esther", + "countries_tags": [ + "en:france" + ], + "traces_hierarchy": [], + "countries": "France", + "ingredients_from_palm_oil_tags": [], + "allergens_tags": [], + "traces_tags": [], + "purchase_places_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.200.jpg", + "packaging_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.400.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "unknown_ingredients_n": 1, + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb" + ], + "emb_codes_tags": [], + "product_quantity": 500, + "product_name_fr": "Raison blanc sans pepins", + "unknown_nutrients_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "fruits" + ], + "serving_size_debug_tags": [], + "languages_codes": { + "fr": 4 + }, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/front_fr.4.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.100.jpg", + "categories_debug_tags": [], + "nutrient_levels_tags": [], + "product_name": "Raison blanc sans pepins", + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fruits-and-vegetables-based-foods", + "en:fruits-based-foods", + "en:fruits", + "en:grapes" + ], + "additives_prev_tags": [], + "amino_acids_tags": [], + "product_name_fr_debug_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "manufacturing_places": "", + "additives_original_tags": [], + "editors_tags": [ + "moon-rabbit", + "openfoodfacts-contributors", + "kiliweb" + ], + "generic_name": "", + "nutrition_data_per": "100g", + "packaging": "", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "ingredients_hierarchy": [ + "fr:raisin blancs variété millennium origine Espagne" + ], + "link": "", + "expiration_date": "", + "stores_debug_tags": [], + "ingredients_tags": [ + "fr:raisin-blancs-variete-millennium-origine-espagne" + ], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 74 + }, + "400": { + "h": 400, + "w": 294 + }, + "full": { + "w": 883, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533247353 + }, + "2": { + "uploaded_t": 1533247355, + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 71, + "h": 100 + }, + "400": { + "h": 400, + "w": 285 + }, + "full": { + "h": 1200, + "w": 855 + } + } + }, + "front_fr": { + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "74" + }, + "200": { + "h": 200, + "w": 147 + }, + "400": { + "h": 400, + "w": 294 + }, + "full": { + "w": 883, + "h": 1200 + } + }, + "x2": null, + "y2": null, + "normalize": "0", + "angle": null, + "rev": "4", + "imgid": "1" + }, + "ingredients_fr": { + "normalize": "0", + "angle": null, + "rev": "7", + "imgid": "2", + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 71 + }, + "200": { + "h": 200, + "w": 143 + }, + "400": { + "w": 285, + "h": 400 + }, + "full": { + "h": 1200, + "w": 855 + } + }, + "x2": null, + "y2": null + } + }, + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/843/306/500/1323/ingredients_fr.7.200.jpg", + "ingredients": [ + { + "text": "raisin blancs variété millennium origine Espagne", + "rank": 1, + "id": "fr:raisin blancs variété millennium origine Espagne" + } + ], + "manufacturing_places_tags": [], + "allergens_debug_tags": [], + "countries_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "raisin blancs variété millennium origine Espagne.", + "nutrition_grades_tags": [ + "unknown" + ], + "misc_tags": [ + "en:nutriscore-not-computed", + "en:nutrition-not-enough-data-to-compute-nutrition-score", + "en:nutrition-no-saturated-fat" + ], + "nova_groups": 1, + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Aliments à base de fruits et de légumes,Fruits et produits dérivés,Fruits,Raisins", + "serving_size": "", + "additives_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "labels_prev_hierarchy": [], + "vitamins_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "nutrition_data": "on", + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ] + }, + { + "created_t": 1533392701, + "ingredients_hierarchy": [], + "nutrition_data_per_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "last_modified_by": null, + "ingredients_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.200.jpg", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 58 + }, + "400": { + "h": 400, + "w": 232 + }, + "full": { + "w": 696, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533392703 + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 36 + }, + "400": { + "h": 400, + "w": 144 + }, + "full": { + "w": 431, + "h": 1200 + } + }, + "uploaded_t": 1533392707, + "uploader": "kiliweb" + }, + "3": { + "uploaded_t": 1533392710, + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 84, + "w": 100 + }, + "400": { + "h": 336, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1428 + } + } + }, + "ingredients_fr": { + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 36 + }, + "200": { + "w": 72, + "h": 200 + }, + "400": { + "h": 400, + "w": 144 + }, + "full": { + "h": 1200, + "w": 431 + } + }, + "x2": null, + "y2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "normalize": "0", + "angle": null, + "rev": "8", + "imgid": "2" + }, + "front_fr": { + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "58" + }, + "200": { + "h": 200, + "w": 116 + }, + "400": { + "w": 232, + "h": 400 + }, + "full": { + "w": 696, + "h": 1200 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "5" + }, + "nutrition_fr": { + "rev": "11", + "angle": null, + "normalize": "0", + "imgid": "3", + "sizes": { + "100": { + "h": 84, + "w": 100 + }, + "200": { + "w": 200, + "h": 168 + }, + "400": { + "h": 336, + "w": 400 + }, + "full": { + "h": 1200, + "w": 1428 + } + }, + "y1": null, + "y2": null, + "x2": null, + "white_magic": "0", + "x1": null, + "geometry": "0x0-0-0" + } + }, + "creator": "kiliweb", + "amino_acids_tags": [], + "additives_prev_tags": [], + "nutrition_data_prepared_per": "100g", + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.200.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.100.jpg" + } + } + }, + "nutrition_data_per": "100g", + "informers_tags": [ + "kiliweb" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "additives_debug_tags": [], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "last_image_t": 1533392711, + "entry_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.400.jpg", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.200.jpg", + "allergens_from_ingredients": "", + "ingredients_that_may_be_from_palm_oil_tags": [], + "lang": "fr", + "vitamins_tags": [], + "interface_version_modified": "20150316.jqm2", + "countries_hierarchy": [ + "en:france" + ], + "nutrient_levels": {}, + "correctors_tags": [ + "openfoodfacts-contributors" + ], + "allergens_hierarchy": [], + "ingredients": [], + "minerals_prev_tags": [], + "rev": 11, + "sortkey": 533392712, + "serving_quantity": 0, + "nutrition_grades_tags": [ + "not-applicable" + ], + "countries_debug_tags": [], + "id": "8021851902055", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "languages": { + "en:french": 4 + }, + "_id": "8021851902055", + "ingredients_debug": [], + "_keywords": [ + "patate", + "romarin", + "traditionnel", + "taralli" + ], + "ingredients_text_debug": null, + "complete": 0, + "last_modified_t": 1533392712, + "additives_old_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "codes_tags": [ + "code-13", + "8021851902055", + "802185190205x", + "80218519020xx", + "8021851902xxx", + "802185190xxxx", + "80218519xxxxx", + "8021851xxxxxx", + "802185xxxxxxx", + "80218xxxxxxxx", + "8021xxxxxxxxx", + "802xxxxxxxxxx", + "80xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "vitamins_prev_tags": [], + "traces_hierarchy": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.100.jpg", + "ingredients_text_with_allergens_fr": null, + "countries_tags": [ + "en:france" + ], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_ids_debug": [], + "url": "https://ssl-api.openfoodfacts.org/product/8021851902055/taralli-traditionnels-patate-romarin", + "ingredients_text_with_allergens": null, + "max_imgid": "3", + "last_editor": null, + "checkers_tags": [], + "minerals_tags": [], + "code": "8021851902055", + "nova_group_debug": "no nova group when the product does not have ingredients", + "last_image_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.100.jpg", + "amino_acids_prev_tags": [], + "nucleotides_tags": [], + "nucleotides_prev_tags": [], + "unknown_nutrients_tags": [], + "ingredients_original_tags": [], + "languages_codes": { + "fr": 4 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/nutrition_fr.11.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.200.jpg", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.100.jpg", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/ingredients_fr.8.100.jpg", + "nutrient_levels_tags": [], + "product_name": "Taralli Traditionnels Patate & Romarin", + "additives_tags": [], + "no_nutrition_data": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "ingredients_from_palm_oil_tags": [], + "countries": "en:france", + "traces_tags": [], + "allergens_tags": [], + "traces_from_ingredients": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_debug_tags": [], + "nutriments": { + "sodium_serving": "", + "energy": "1958", + "salt_serving": "", + "salt_value": "2.2", + "carbohydrates_serving": "", + "saturated-fat_serving": "", + "saturated-fat_unit": "", + "salt": 2.2, + "proteins_serving": "", + "sodium_100g": 0.866141732283465, + "fat_unit": "", + "energy_value": "468", + "saturated-fat_100g": 2.7, + "saturated-fat_value": "2.7", + "fat": 18.6, + "energy_100g": "1958", + "fat_100g": 18.6, + "sodium": 0.866141732283465, + "carbohydrates": "66", + "sugars_unit": "", + "carbohydrates_value": "66", + "salt_100g": 2.2, + "carbohydrates_100g": "66", + "fat_value": "18.6", + "sugars_serving": "", + "saturated-fat": 2.7, + "energy_serving": "", + "proteins_unit": "", + "proteins": 8.4, + "energy_unit": "kcal", + "sugars_100g": 2.1, + "fat_serving": "", + "carbohydrates_unit": "", + "salt_unit": "", + "proteins_value": "8.4", + "proteins_100g": 8.4, + "sugars_value": "2.1", + "sugars": 2.1 + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/802/185/190/2055/front_fr.5.200.jpg", + "quality_tags": [], + "additives_prev_original_tags": [], + "product_name_fr": "Taralli Traditionnels Patate & Romarin", + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "photographers_tags": [ + "kiliweb" + ] + }, + { + "ingredients_tags": [ + "fr:farine-de-froment" + ], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1515333885", + "sizes": { + "100": { + "w": 69, + "h": 100 + }, + "400": { + "h": 400, + "w": 275 + }, + "full": { + "w": 935, + "h": 1360 + } + } + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1515333889", + "sizes": { + "100": { + "h": 96, + "w": 100 + }, + "400": { + "w": 400, + "h": 382 + }, + "full": { + "w": 1424, + "h": 1360 + } + } + }, + "nutrition_fr": { + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "sizes": { + "100": { + "w": 100, + "h": 96 + }, + "200": { + "h": 191, + "w": 200 + }, + "400": { + "h": 382, + "w": 400 + }, + "full": { + "w": 1424, + "h": 1360 + } + }, + "y1": null, + "imgid": "2", + "rev": "7", + "angle": null, + "normalize": "0" + }, + "front_fr": { + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "w": "69", + "h": "100" + }, + "200": { + "w": 138, + "h": 200 + }, + "400": { + "w": 275, + "h": 400 + }, + "full": { + "w": 935, + "h": 1360 + } + }, + "imgid": "1", + "normalize": "0", + "angle": null, + "rev": "4" + } + }, + "languages_hierarchy": [ + "en:french" + ], + "ingredients_hierarchy": [ + "fr:farine-de-froment" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "nutrition_data_per": "100g", + "additives_prev_tags": [], + "categories_hierarchy": [], + "amino_acids_tags": [], + "vitamins_tags": [], + "allergens_from_ingredients": "", + "lang": "fr", + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "additives_debug_tags": [], + "labels_prev_hierarchy": [], + "countries_debug_tags": [], + "nutrition_grades_tags": [ + "not-applicable" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_fr": "100% farine de froment", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "categories": "", + "ingredients": [ + { + "percent": "100", + "text": "farine de froment", + "rank": 1, + "id": "fr:farine-de-froment" + } + ], + "additives_n": 0, + "codes_tags": [ + "code-8", + 27005286, + "2700528x", + "270052xx", + "27005xxx", + "2700xxxx", + "270xxxxx", + "27xxxxxx", + "2xxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-to-be-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "ingredients_ids_debug": [ + "100-farine-de-froment" + ], + "brands": "Albona", + "allergens": "", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.100.jpg", + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "ingredients_text_debug": "100% farine de froment", + "complete": 0, + "languages": { + "en:french": 4 + }, + "ingredients_debug": [ + "100% farine de froment" + ], + "_keywords": [ + "farine", + "albona", + "pour", + "froment", + "patisserie", + "de" + ], + "_id": "27005286", + "categories_prev_tags": [], + "last_modified_t": 1533392631, + "additives_old_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "code": "27005286", + "ingredients_text": "100% farine de froment", + "nova_group_debug": "no nova group when the product does not have a category", + "labels_prev_tags": [], + "update_key": "20180706-categories", + "nucleotides_prev_tags": [], + "last_editor": "kiliweb", + "max_imgid": "2", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.100.jpg", + "categories_debug_tags": [], + "nutrient_levels_tags": [], + "product_name": "Farine de froment pour pâtisserie", + "unknown_nutrients_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "unknown" + ], + "languages_codes": { + "fr": 4 + }, + "image_front_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.200.jpg", + "languages_tags": [ + "en:french", + "en:1" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "photographers_tags": [ + "kiliweb" + ], + "unknown_ingredients_n": 0, + "product_name_fr": "Farine de froment pour pâtisserie", + "ingredients_from_palm_oil_tags": [], + "countries": "France", + "traces_tags": [], + "allergens_tags": [], + "labels_tags": [], + "creator": "kiliweb", + "nutrition_data_per_debug_tags": [], + "created_t": 1515333883, + "last_modified_by": "kiliweb", + "brands_debug_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.400.jpg" + } + } + }, + "pnns_groups_1": "unknown", + "informers_tags": [ + "kiliweb" + ], + "nutrition_data_prepared_per": "100g", + "interface_version_modified": "20150316.jqm2", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.200.jpg", + "ingredients_n_tags": [ + "1", + "1-10" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "kiliweb" + ], + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "last_image_t": 1515333889, + "entry_dates_tags": [ + "2018-01-07", + "2018-01", + "2018" + ], + "image_url": "https://static.openfoodfacts.org/images/products/27005286/front_fr.4.400.jpg", + "serving_quantity": 0, + "labels": "", + "id": "27005286", + "ingredients_n": 1, + "rev": 9, + "minerals_prev_tags": [], + "allergens_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_tags": [ + "albona" + ], + "sortkey": 533392631, + "vitamins_prev_tags": [], + "nutrition_score_debug": "no score when the product does not have a category", + "ingredients_text_with_allergens_fr": "100% farine de froment", + "labels_hierarchy": [], + "last_image_dates_tags": [ + "2018-01-07", + "2018-01", + "2018" + ], + "nucleotides_tags": [], + "additives_old_n": 0, + "categories_prev_hierarchy": [], + "ingredients_text_with_allergens": "100% farine de froment", + "url": "https://ssl-api.openfoodfacts.org/product/27005286/farine-de-froment-pour-patisserie-albona", + "minerals_tags": [], + "checkers_tags": [], + "additives_prev_n": 0, + "labels_debug_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "ingredients_original_tags": [ + "fr:farine-de-froment" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/27005286/nutrition_fr.7.400.jpg", + "pnns_groups_2": "unknown", + "nutriments": { + "carbohydrates_100g": 72, + "fat_value": "1", + "salt_100g": 0, + "saturated-fat": 0.1, + "sugars_serving": "", + "energy_serving": "", + "energy_unit": "kcal", + "proteins": 10, + "sugars_100g": 0.7, + "proteins_unit": "", + "proteins_100g": 10, + "proteins_value": "10", + "sugars": 0.7, + "sugars_value": "0.7", + "fat_serving": "", + "carbohydrates_unit": "", + "salt_unit": "", + "salt_value": "0", + "carbohydrates_serving": "", + "sodium_serving": "", + "salt_serving": "", + "energy": 1456, + "fat_unit": "", + "sodium_100g": 0, + "saturated-fat_unit": "", + "saturated-fat_serving": "", + "salt": 0, + "proteins_serving": "", + "sodium": 0, + "fat": 1, + "saturated-fat_value": "0.1", + "saturated-fat_100g": 0.1, + "energy_value": "348", + "energy_100g": 1456, + "fat_100g": 1, + "carbohydrates_value": "72", + "carbohydrates": 72, + "sugars_unit": "" + }, + "ingredients_text_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "quality_tags": [], + "additives_prev_original_tags": [], + "additives_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-to-be-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "pnns_groups_1_tags": [ + "unknown" + ], + "no_nutrition_data": "", + "categories_tags": [] + }, + { + "generic_name_fr": "", + "max_imgid": "2", + "last_editor": "moon-rabbit", + "ingredients_text_fr_debug_tags": [], + "nucleotides_prev_tags": [], + "lang_debug_tags": [], + "update_key": "nova3", + "labels_prev_tags": [], + "code": "3760272040001", + "nova_group_debug": "no nova group when the product does not have ingredients", + "ingredients_text": "", + "manufacturing_places_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.100.jpg", + "amino_acids_prev_tags": [], + "quantity_debug_tags": [], + "categories_prev_tags": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:farming-products", + "en:sweeteners", + "en:honeys", + "fr:miels-d-acacia" + ], + "last_modified_t": 1533392524, + "additives_old_tags": [], + "languages": { + "en:french": 3 + }, + "traces_debug_tags": [], + "ingredients_debug": [], + "_keywords": [ + "miel", + "la", + "acacia", + "dordogne", + "de", + "vallee" + ], + "_id": "3760272040001", + "ingredients_text_debug": "", + "complete": 0, + "traces_hierarchy": [], + "countries_tags": [ + "en:france" + ], + "ingredients_ids_debug": [], + "brands": "", + "allergens": "", + "stores": "", + "codes_tags": [ + "code-13", + 3760272040001, + "376027204000x", + "37602720400xx", + "3760272040xxx", + "376027204xxxx", + "37602720xxxxx", + "3760272xxxxxx", + "376027xxxxxxx", + "37602xxxxxxxx", + "3760xxxxxxxxx", + "376xxxxxxxxxx", + "37xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-to-be-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "traces_tags": [], + "purchase_places_tags": [], + "allergens_tags": [], + "ingredients_from_palm_oil_tags": [], + "countries": "France", + "emb_codes_tags": [], + "product_quantity": 500, + "product_name_fr": "Miel d'acacia de la vallée de dordogne", + "photographers_tags": [ + "kiliweb" + ], + "last_edit_dates_tags": [ + "2018-08-04", + "2018-08", + "2018" + ], + "unknown_ingredients_n": 0, + "languages_tags": [ + "en:french", + "en:1" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.400.jpg", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.200.jpg", + "packaging_tags": [], + "languages_codes": { + "fr": 3 + }, + "serving_size_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.200.jpg", + "pnns_groups_2_tags": [ + "sweets" + ], + "unknown_nutrients_tags": [], + "nutrient_levels_tags": [], + "product_name": "Miel d'acacia de la vallée de dordogne", + "categories_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.100.jpg", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.100.jpg", + "product_name_fr_debug_tags": [], + "amino_acids_tags": [], + "additives_prev_tags": [], + "categories_hierarchy": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:farming-products", + "en:sweeteners", + "en:honeys", + "fr:miels-d-acacia" + ], + "nutrition_data_per": "100g", + "generic_name": "", + "nova_group_tags": [ + "not-applicable" + ], + "additives_original_tags": [], + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "moon-rabbit" + ], + "manufacturing_places": "", + "expiration_date": "", + "link": "", + "ingredients_hierarchy": [], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.400.jpg", + "packaging": "", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.200.jpg", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 60 + }, + "400": { + "w": 239, + "h": 400 + }, + "full": { + "w": 716, + "h": 1200 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1533280327 + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": 1533280330, + "sizes": { + "100": { + "h": 100, + "w": 63 + }, + "400": { + "h": 400, + "w": 253 + }, + "full": { + "h": 1200, + "w": 759 + } + } + }, + "ingredients_fr": { + "imgid": "2", + "normalize": "0", + "angle": null, + "rev": "7", + "geometry": "0x0-0-0", + "x1": null, + "white_magic": "0", + "x2": null, + "y2": null, + "y1": null, + "sizes": { + "100": { + "h": 100, + "w": 63 + }, + "200": { + "w": 127, + "h": 200 + }, + "400": { + "w": 253, + "h": 400 + }, + "full": { + "w": 759, + "h": 1200 + } + } + }, + "front_fr": { + "sizes": { + "100": { + "w": "60", + "h": "100" + }, + "200": { + "w": 119, + "h": 200 + }, + "400": { + "h": 400, + "w": 239 + }, + "full": { + "w": 716, + "h": 1200 + } + }, + "y1": null, + "y2": null, + "x2": null, + "x1": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "angle": null, + "rev": "4", + "normalize": "0", + "imgid": "1" + } + }, + "ingredients_tags": [], + "stores_debug_tags": [], + "allergens_debug_tags": [], + "ingredients": [], + "manufacturing_places_tags": [], + "categories": "Miels d'acacia", + "serving_size": "", + "misc_tags": [ + "en:nutriscore-not-computed" + ], + "nutrition_grades_tags": [ + "not-applicable" + ], + "ingredients_text_fr": "", + "countries_debug_tags": [], + "labels_prev_hierarchy": [], + "additives_debug_tags": [], + "nutrient_levels": {}, + "countries_hierarchy": [ + "en:france" + ], + "nutrition_data": "on", + "allergens_from_ingredients": "", + "lang": "fr", + "vitamins_tags": [], + "minerals_tags": [], + "checkers_tags": [], + "purchase_places": "", + "ingredients_text_with_allergens": "", + "url": "https://ssl-api.openfoodfacts.org/product/3760272040001/miel-d-acacia-de-la-vallee-de-dordogne", + "nutrition_data_prepared_per_debug_tags": [], + "categories_prev_hierarchy": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:farming-products", + "en:sweeteners", + "en:honeys", + "fr:miels-d-acacia" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nucleotides_tags": [], + "last_image_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "labels_hierarchy": [], + "ingredients_text_with_allergens_fr": "", + "nutrition_score_debug": "no nutriscore for category en:honeys", + "vitamins_prev_tags": [], + "categories_tags": [ + "en:breakfasts", + "en:spreads", + "en:sweet-spreads", + "en:bee-products", + "en:farming-products", + "en:sweeteners", + "en:honeys", + "fr:miels-d-acacia" + ], + "additives_tags": [], + "link_debug_tags": [], + "no_nutrition_data": "on", + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_prev_original_tags": [], + "quality_tags": [ + "no-nutrition-data" + ], + "packaging_debug_tags": [], + "traces_from_ingredients": "", + "product_name_debug_tags": [], + "purchase_places_debug_tags": [], + "nutriments": {}, + "pnns_groups_2": "Sweets", + "origins": "", + "ingredients_original_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-to-be-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared": "", + "origins_tags": [], + "labels_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "generic_name_fr_debug_tags": [], + "informers_tags": [ + "kiliweb", + "moon-rabbit" + ], + "pnns_groups_1": "Sugary snacks", + "brands_debug_tags": [], + "origins_debug_tags": [], + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/ingredients_fr.7.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.100.jpg" + } + } + }, + "last_modified_by": "moon-rabbit", + "cities_tags": [], + "created_t": 1533280326, + "nutrition_data_per_debug_tags": [], + "creator": "kiliweb", + "labels_tags": [], + "brands_tags": [], + "sortkey": 533392524, + "emb_codes_orig": "", + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "rev": 8, + "id": "3760272040001", + "emb_codes": "", + "labels": "", + "serving_quantity": 0, + "emb_codes_debug_tags": [], + "entry_dates_tags": [ + "2018-08-03", + "2018-08", + "2018" + ], + "last_image_t": 1533280331, + "image_url": "https://static.openfoodfacts.org/images/products/376/027/204/0001/front_fr.4.400.jpg", + "expiration_date_debug_tags": [], + "quantity": "500 g", + "traces": "", + "interface_version_created": "20150316.jqm2", + "lc": "fr", + "stores_tags": [], + "correctors_tags": [ + "openfoodfacts-contributors", + "moon-rabbit" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "interface_version_modified": "20120622" + } + ] +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-4.json b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-4.json new file mode 100644 index 0000000..8646f81 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/category-pizzas-4.json @@ -0,0 +1,22142 @@ +{ + "page": "4", + "skip": 60, + "products": [ + { + "additives_old_tags": [ + "en:e301", + "en:e250", + "en:e1403", + "en:e579" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "rev": 20, + "id": "3242272505051", + "nutrition_score_debug": " -- energy 2 + sat-fat 4 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 10 -- fr 10", + "_keywords": [ + "et", + "tarte", + "mozzarella", + "pizz", + "jambon", + "salee", + "prepare", + "pizza", + "plat", + "la", + "cru", + "sodebo", + "quiche", + "jambon-fromage" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "", + "debug_param_sorted_langs": [ + "fr" + ], + "nutrition_data_prepared_per": "100g", + "additives_tags": [ + "en:e250", + "en:e301", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.200.jpg", + "generic_name": "", + "labels_prev_hierarchy": [], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-not-recognized" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.200.jpg", + "stores_tags": [], + "labels": "", + "pnns_groups_1": "Composite foods", + "product_name_fr": "La Pizz - Mozzarella Jambon cru", + "purchase_places_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20120622", + "packaging_tags": [ + "plaque", + "carton", + "film", + "plastique", + "plaque" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272505051/la-pizz-mozzarella-jambon-cru-sodebo", + "origins_debug_tags": [], + "traces_from_ingredients": "", + "entry_dates_tags": [ + "2015-12-20", + "2015-12", + "2015" + ], + "quantity": "470 g", + "amino_acids_prev_tags": [], + "brands": "Sodebo, la pizz", + "checkers_tags": [], + "countries_debug_tags": [], + "lc": "fr", + "product_name": "La Pizz - Mozzarella Jambon cru", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "nutrient_levels": { + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "lang_debug_tags": [], + "sortkey": 1530626268, + "ingredients_text_fr": "Garniture 58%: mozzarella 43%, sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cru fumé 15% (viande de porc, sel, épices, plantes aromatiques, antioxygène: E301, conservateur: E250), olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.400.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.400.jpg" + } + } + }, + "ingredients_text": "Garniture 58%: mozzarella 43%, sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cru fumé 15% (viande de porc, sel, épices, plantes aromatiques, antioxygène: E301, conservateur: E250), olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "emb_codes_tags": [], + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "nutrition_grade_fr": "c", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.400.jpg", + "languages_codes": { + "fr": 5 + }, + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "nutrition_grades_tags": [ + "c" + ], + "expiration_date": "24/12/2015", + "emb_codes": "", + "minerals_prev_tags": [], + "correctors_tags": [ + "segundo", + "tacite", + "date-limite-app", + "kiliweb", + "openfoodfacts-contributors", + "syl44", + "sodebo" + ], + "codes_tags": [ + "code-13", + "3242272505051", + "324227250505x", + "32422725050xx", + "3242272505xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "labels_prev_tags": [], + "serving_quantity": 0, + "nutrition_grades": "c", + "additives_old_n": 4, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1530626266, + "ingredients_hierarchy": [ + "fr:garniture", + "fr:mozzarella", + "fr:sauce-tomate", + "fr:jambon cru fumé", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:pork-meat", + "en:meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e301", + "en:e250", + "en:e579" + ], + "emb_codes_orig": "", + "max_imgid": "6", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 2, + "unique_scans_n": 6, + "generic_name_fr": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.200.jpg", + "nova_groups": 3, + "traces_hierarchy": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1450639441, + "nova_group_debug": " -- ingredients/en:salt : 3", + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.100.jpg", + "labels_hierarchy": [], + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "origins": "", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.400.jpg", + "allergens_debug_tags": [], + "lang": "fr", + "sources": [ + { + "images": [], + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "manufacturer": 1, + "id": "sodebo", + "name": "Sodebo", + "import_t": 1530626268, + "url": "https://www.sodebo.com/" + } + ], + "ingredients_text_with_allergens_fr": "Garniture 58%: mozzarella 43%, sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cru fumé 15% (viande de porc, sel, épices, plantes aromatiques, antioxygène: E301, conservateur: E250), olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 58%: mozzarella 43%, sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cru fumé 15% (viande de porc, sel, épices, plantes aromatiques, antioxygène: E301, conservateur: E250), olives noires avec noyau (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/nutrition_fr.14.100.jpg", + "quantity_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.100.jpg", + "additives_prev_original_tags": [ + "en:e301", + "en:e250", + "en:e579" + ], + "interface_version_created": "20120622", + "serving_size": "157 g", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pizza-with-ham-and-cheese" + ], + "_id": "3242272505051", + "ingredients_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:sauce-tomate", + "fr:jambon-cru-fume", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:pork-meat", + "en:meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "vitamins_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/ingredients_fr.16.200.jpg", + "ingredients_ids_debug": [ + "garniture-58", + "mozzarella-43", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "jambon-cru-fume-15", + "viande-de-porc", + "sel", + "epices", + "plantes-aromatiques", + "antioxygene", + "e301", + "conservateur", + "e250", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "pate-42", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "packaging": "Plaque,Carton,Film,Plastique,plaque", + "informers_tags": [ + "segundo", + "syl44", + "sodebo" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_from_ingredients": "blé", + "additives_prev_tags": [ + "en:e250", + "en:e301", + "en:e579" + ], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "serving_size_debug_tags": [], + "traces_tags": [], + "images": { + "1": { + "uploader": "segundo", + "uploaded_t": "1450639441", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2666, + "w": 2000 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploaded_t": "1450639481", + "uploader": "segundo" + }, + "3": { + "uploader": "segundo", + "uploaded_t": "1450639495", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + } + }, + "4": { + "uploader": "kiliweb", + "uploaded_t": "1513712006", + "sizes": { + "100": { + "w": 98, + "h": 100 + }, + "400": { + "h": 400, + "w": 394 + }, + "full": { + "w": 1338, + "h": 1360 + } + } + }, + "5": { + "uploader": "kiliweb", + "uploaded_t": "1513712009", + "sizes": { + "100": { + "w": 100, + "h": 37 + }, + "400": { + "h": 147, + "w": 400 + }, + "full": { + "w": 2448, + "h": 898 + } + } + }, + "6": { + "sizes": { + "100": { + "h": 100, + "w": 100 + }, + "400": { + "h": 400, + "w": 400 + }, + "full": { + "w": 1500, + "h": 1500 + } + }, + "uploaded_t": 1530626266, + "uploader": "sodebo" + }, + "nutrition": { + "geometry": "734x613-752-1247", + "white_magic": "false", + "imgid": "3", + "normalize": "false", + "rev": "8", + "sizes": { + "100": { + "h": 84, + "w": 100 + }, + "200": { + "h": 167, + "w": 200 + }, + "400": { + "w": 400, + "h": 334 + }, + "full": { + "h": 613, + "w": 734 + } + } + }, + "nutrition_fr": { + "rev": "14", + "sizes": { + "100": { + "h": 100, + "w": 98 + }, + "200": { + "h": 200, + "w": 197 + }, + "400": { + "h": 400, + "w": 394 + }, + "full": { + "w": 1338, + "h": 1360 + } + }, + "angle": null, + "y1": null, + "normalize": "0", + "x2": null, + "x1": null, + "y2": null, + "imgid": "4", + "geometry": "0x0-0-0", + "white_magic": "0" + }, + "ingredients_fr": { + "normalize": "0", + "x2": null, + "x1": null, + "y2": null, + "imgid": "5", + "geometry": "0x0-0-0", + "white_magic": "0", + "rev": "16", + "sizes": { + "100": { + "h": 37, + "w": 100 + }, + "200": { + "h": 73, + "w": 200 + }, + "400": { + "w": 400, + "h": 147 + }, + "full": { + "h": 898, + "w": 2448 + } + }, + "angle": null, + "y1": null + }, + "front": { + "geometry": "1960x1966-26-586", + "imgid": "1", + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 100 + }, + "200": { + "h": 200, + "w": 199 + }, + "400": { + "w": 399, + "h": 400 + }, + "full": { + "w": 1960, + "h": 1966 + } + }, + "normalize": "false", + "rev": "6" + }, + "front_fr": { + "imgid": "6", + "geometry": "0x0--3--3", + "white_magic": null, + "normalize": null, + "x2": "-1", + "x1": "-1", + "y2": "-1", + "angle": 0, + "y1": "-1", + "rev": "19", + "sizes": { + "100": { + "h": "100", + "w": "100" + }, + "200": { + "h": 200, + "w": 199 + }, + "400": { + "w": 399, + "h": 400 + }, + "full": { + "h": 1471, + "w": 1467 + } + } + }, + "ingredients": { + "imgid": "2", + "white_magic": "false", + "geometry": "1660x540-266-842", + "rev": "7", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 33 + }, + "200": { + "w": 200, + "h": 65 + }, + "400": { + "w": 400, + "h": 130 + }, + "full": { + "h": 540, + "w": 1660 + } + } + } + }, + "no_nutrition_data": "", + "ingredients": [ + { + "rank": 1, + "text": "Garniture", + "percent": "58", + "id": "fr:garniture" + }, + { + "text": "mozzarella", + "rank": 2, + "percent": "43", + "id": "fr:mozzarella" + }, + { + "id": "fr:sauce-tomate", + "text": "sauce tomate", + "rank": 3 + }, + { + "text": "jambon cru fumé", + "rank": 4, + "id": "fr:jambon cru fumé", + "percent": "15" + }, + { + "id": "fr:olives-noires-avec-noyau", + "text": "olives noires avec noyau", + "rank": 5 + }, + { + "text": "basilic et origan.Pourcentages exprimés sur la garniture", + "rank": 6, + "id": "fr:basilic et origan.Pourcentages exprimés sur la garniture" + }, + { + "text": "Pâte", + "rank": 7, + "percent": "42", + "id": "en:paste" + }, + { + "rank": 8, + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "text": "eau", + "rank": 9 + }, + { + "id": "fr:levure-boulangere", + "text": "levure boulangère", + "rank": 10 + }, + { + "id": "en:salt", + "rank": 11, + "text": "sel" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "huile d’olive", + "id": "en:olive-oil" + }, + { + "text": "amidon de maïs", + "id": "en:corn-starch" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:spice", + "text": "épices" + }, + { + "text": "plantes aromatiques", + "id": "fr:plante-aromatique" + }, + { + "text": "antioxygène", + "id": "en:antioxidant" + }, + { + "id": "fr:e301", + "text": "E301" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "emb_codes_20141016": "", + "ingredients_n_tags": [ + "27", + "21-30" + ], + "last_modified_by": "sodebo", + "cities_tags": [], + "origins_tags": [], + "ingredients_original_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:sauce-tomate", + "fr:jambon cru fumé", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "en:pork-meat", + "en:salt", + "en:spice", + "fr:plante-aromatique", + "en:antioxidant", + "fr:e301", + "en:preservative", + "fr:e250", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 27, + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas jambon-fromage", + "categories_hierarchy": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530626268, + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_text_debug": "Garniture 58%: mozzarella 43%, sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), jambon cru fumé 15% (viande de porc, sel, épices, plantes aromatiques, antioxygène : - e301 - , conservateur : - e250 - ), olives noires avec noyau (stabilisant : - e579 - ), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 42% : farine de blé, eau, levure boulangère, sel.", + "ingredients_from_palm_oil_n": 0, + "additives_n": 3, + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 3, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "nutriments": { + "proteins_value": "12.0", + "proteins": "12.0", + "fat_100g": 7.4, + "energy": "940", + "nova-group_100g": 3, + "nutrition-score-fr_100g": "10", + "sugars_serving": "", + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group": 3, + "nova-group_serving": 3, + "sodium_unit": "g", + "saturated-fat_100g": 4.5, + "sodium_100g": 0.511811023622047, + "fat_value": "7.4", + "sodium_serving": "", + "fiber_value": "1.7", + "energy_100g": "940", + "carbohydrates_100g": "26", + "salt_serving": "", + "proteins_100g": "12", + "fat_unit": "g", + "nutrition-score-uk_100g": "10", + "saturated-fat_value": "4.5", + "proteins_unit": "g", + "salt": 1.3, + "energy_value": "940", + "fat": 7.4, + "sodium_value": "0.5118110236220472", + "sugars": "4.0", + "energy_serving": "", + "fiber": 1.7, + "salt_value": "1.3", + "sugars_100g": "4", + "saturated-fat": 4.5, + "fiber_100g": 1.7, + "carbohydrates": "26.0", + "sodium": 0.511811023622047, + "salt_100g": 1.3, + "salt_unit": "g", + "carbohydrates_unit": "g", + "sugars_value": "4.0", + "carbohydrates_serving": "", + "fat_serving": "", + "sugars_unit": "g", + "nutrition-score-fr": "10", + "proteins_serving": "", + "nutrition-score-uk": "10", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "fiber_serving": "", + "carbohydrates_value": "26.0" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pizza-with-ham-and-cheese" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "purchase_places": "", + "creator": "segundo", + "labels_debug_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "last_editor": "sodebo", + "categories_tags": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-tartes-salees-et-quiches" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272505051", + "scans_n": 6, + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "completed_t": 1450639851, + "allergens": "Gluten,Lait, mozzarella, blé, blé, blé", + "editors_tags": [ + "openfoodfacts-contributors", + "segundo", + "date-limite-app", + "syl44", + "tacite", + "sodebo", + "kiliweb" + ], + "languages": { + "en:french": 5 + }, + "link_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "traces": "", + "brands_debug_tags": [], + "ingredients_debug": [ + "Garniture 58%", + ":", + ":", + null, + null, + " mozzarella 43%", + ",", + null, + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " jambon cru fumé 15% ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " antioxygène ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e301", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan.Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 42% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "labels_tags": [], + "photographers_tags": [ + "segundo", + "kiliweb", + "sodebo" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/5051/front_fr.19.400.jpg", + "vitamins_prev_tags": [] + }, + { + "informers_tags": [ + "date-limite-app", + "teolemon", + "tacite", + "k13b3r", + "asmoth", + "syl44" + ], + "packaging": "Plastique,Film,Carton,Film plastique à jeter,Support carton à recycler", + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.200.jpg", + "ingredients_ids_debug": [ + "garniture-59", + "fromages", + "emmental-21", + "mozzarella-20", + "cheddar-fondu-10", + "cheddar", + "eau", + "amidon-modifie-de-pomme-de-terre", + "beurre", + "proteines-de-lait", + "sels-de-fonte", + "e331", + "sel", + "colorant", + "extrait-de-paprika", + "raclette-7", + "colorant", + "e160b", + "conservateur", + "e235", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "olives-noires-avec-noyau-3", + "stabilisant", + "e579", + "basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "emb_codes_20141016": "", + "ingredients": [ + { + "rank": 1, + "text": "Garniture", + "percent": "59", + "id": "fr:garniture" + }, + { + "text": "mozzarella", + "rank": 2, + "percent": "20", + "id": "fr:mozzarella" + }, + { + "text": "cheddar fondu", + "rank": 3, + "percent": "10", + "id": "fr:cheddar-fondu" + }, + { + "percent": "7", + "id": "fr:raclette", + "rank": 4, + "text": "raclette" + }, + { + "id": "fr:sauce-tomate", + "rank": 5, + "text": "sauce tomate" + }, + { + "id": "fr:olives-noires-avec-noyau", + "percent": "3", + "text": "olives noires avec noyau", + "rank": 6 + }, + { + "id": "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "rank": 7, + "text": "basilic et origan.Pourcentages exprimés sur la garniture" + }, + { + "text": "Pâte", + "rank": 8, + "percent": "41", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "rank": 9, + "text": "farine de blé" + }, + { + "text": "eau", + "rank": 10, + "id": "en:water" + }, + { + "id": "fr:levure-boulangere", + "text": "levure boulangère", + "rank": 11 + }, + { + "text": "sel", + "rank": 12, + "id": "en:salt" + }, + { + "text": "fromages", + "id": "fr:fromage" + }, + { + "text": "emmental", + "id": "fr:emmental", + "percent": "21" + }, + { + "id": "en:cheddar", + "text": "cheddar" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "amidon modifié de pomme de terre", + "id": "fr:amidon-modifie-de-pomme-de-terre" + }, + { + "id": "en:butter", + "text": "beurre" + }, + { + "text": "protéines de lait", + "id": "en:milk-protein" + }, + { + "text": "sels de fonte", + "id": "fr:sel-de-fonte" + }, + { + "id": "fr:e331", + "text": "E331" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "text": "extrait de paprika", + "id": "en:paprika-extract" + }, + { + "id": "en:colour", + "text": "colorant" + }, + { + "text": "E160b", + "id": "fr:e160b" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "text": "E235", + "id": "fr:natamycine" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:wheat-flour", + "text": "farine de blé" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "huile d’olive", + "id": "en:olive-oil" + }, + { + "text": "amidon de maïs", + "id": "en:corn-starch" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "ingredients_n_tags": [ + "36", + "31-40" + ], + "cities_tags": [], + "last_modified_by": "sodebo", + "origins_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [ + "en:e14xx", + "en:e160b", + "en:e160c", + "en:e235", + "en:e331", + "en:e579" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "emmental, mozzarella, cheddar, beurre, protéines de lait, blé", + "serving_size_debug_tags": [], + "images": { + "1": { + "uploader": "k13b3r", + "uploaded_t": "1452366604", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "k13b3r", + "uploaded_t": "1452366626" + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploaded_t": "1452366649", + "uploader": "k13b3r" + }, + "4": { + "uploaded_t": "1452366669", + "uploader": "k13b3r", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + } + }, + "5": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "k13b3r", + "uploaded_t": "1452366722" + }, + "6": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploader": "k13b3r", + "uploaded_t": "1452366795" + }, + "7": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "8": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "9": { + "uploader": "date-limite-app", + "uploaded_t": "1473876247", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1333, + "w": 1000 + } + } + }, + "10": { + "uploader": "asmoth", + "uploaded_t": 1529950366, + "sizes": { + "100": { + "w": 100, + "h": 99 + }, + "400": { + "w": 400, + "h": 396 + }, + "full": { + "w": 3128, + "h": 3096 + } + } + }, + "11": { + "sizes": { + "100": { + "w": 100, + "h": 89 + }, + "400": { + "h": 355, + "w": 400 + }, + "full": { + "h": 2326, + "w": 2620 + } + }, + "uploaded_t": 1529950383, + "uploader": "asmoth" + }, + "12": { + "sizes": { + "100": { + "h": 48, + "w": 100 + }, + "400": { + "h": 191, + "w": 400 + }, + "full": { + "w": 3289, + "h": 1568 + } + }, + "uploaded_t": 1529950438, + "uploader": "asmoth" + }, + "13": { + "uploaded_t": 1529950468, + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "400": { + "h": 189, + "w": 400 + }, + "full": { + "h": 1472, + "w": 3111 + } + } + }, + "14": { + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "w": 400, + "h": 400 + }, + "full": { + "h": 1500, + "w": 1500 + } + }, + "uploaded_t": 1530626236, + "uploader": "sodebo" + }, + "front_fr": { + "imgid": "14", + "white_magic": null, + "geometry": "0x0--3--3", + "y2": "-1", + "x1": "-1", + "normalize": null, + "x2": "-1", + "y1": "-1", + "angle": 0, + "sizes": { + "100": { + "w": "100", + "h": "100" + }, + "200": { + "h": 200, + "w": 200 + }, + "400": { + "w": 400, + "h": 400 + }, + "full": { + "h": 1430, + "w": 1431 + } + }, + "rev": "32" + }, + "nutrition_fr": { + "y1": "0", + "angle": "0", + "sizes": { + "100": { + "w": 100, + "h": 47 + }, + "200": { + "h": 95, + "w": 200 + }, + "400": { + "w": 400, + "h": 189 + }, + "full": { + "h": 1472, + "w": 3111 + } + }, + "rev": "28", + "geometry": "0x0-0-0", + "imgid": "13", + "white_magic": "false", + "y2": "0", + "x1": "0", + "x2": "0", + "normalize": "false" + }, + "ingredients": { + "imgid": "5", + "geometry": "2493x753-86-672", + "white_magic": "false", + "normalize": "false", + "rev": "12", + "sizes": { + "100": { + "h": 30, + "w": 100 + }, + "200": { + "h": 60, + "w": 200 + }, + "400": { + "h": 121, + "w": 400 + }, + "full": { + "h": 753, + "w": 2493 + } + } + }, + "front": { + "sizes": { + "100": { + "w": 99, + "h": 100 + }, + "200": { + "w": 199, + "h": 200 + }, + "400": { + "h": 400, + "w": 397 + }, + "full": { + "w": 1415, + "h": 1425 + } + }, + "normalize": "false", + "rev": "13", + "geometry": "1415x1425-385-24", + "white_magic": "false", + "imgid": "1" + }, + "ingredients_fr": { + "y1": "41.98333740234375", + "angle": "0", + "rev": "27", + "sizes": { + "100": { + "w": 100, + "h": 38 + }, + "200": { + "w": 200, + "h": 76 + }, + "400": { + "w": 400, + "h": 152 + }, + "full": { + "h": 1215, + "w": 3191 + } + }, + "white_magic": "false", + "geometry": "3191x1215-47-344", + "imgid": "12", + "x1": "5.83331298828125", + "y2": "189.98333740234375", + "normalize": "false", + "x2": "393.83331298828125" + }, + "nutrition": { + "geometry": "1640x860-259-252", + "imgid": "6", + "white_magic": "false", + "normalize": "false", + "rev": "11", + "sizes": { + "100": { + "h": 52, + "w": 100 + }, + "200": { + "h": 105, + "w": 200 + }, + "400": { + "w": 400, + "h": 210 + }, + "full": { + "h": 860, + "w": 1640 + } + } + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "lang": "fr", + "sources": [ + { + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "ingredients_text_fr" + ], + "id": "sodebo", + "manufacturer": 1, + "images": [], + "url": "https://www.sodebo.com/", + "import_t": 1530626239, + "name": "Sodebo" + } + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- additives/en:e14xx : 4", + "created_t": 1442399008, + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.100.jpg", + "labels_hierarchy": [ + "en:green-dot" + ], + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "origins": "", + "serving_size": "157 g", + "interface_version_created": "20130323.jqm", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "_id": "3242272501053", + "ingredients_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan-pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:stabiliser", + "fr:e579" + ], + "vitamins_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte: E331, sel, colorant: extrait de paprika), raclette 7% (colorant: E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte: E331, sel, colorant: extrait de paprika), raclette 7% (colorant: E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.100.jpg", + "additives_prev_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e579" + ], + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "completed_t": 1454555899, + "allergens": "Gluten,Lait, fromages, lait, blé, blé, cheddar, beurre, cheddar, beurre, protéines de lait, blé", + "editors_tags": [ + "k13b3r", + "sodebo", + "tacite", + "asmoth", + "syl44", + "date-limite-app", + "teolemon" + ], + "languages": { + "en:french": 6 + }, + "link_debug_tags": [], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "editors": [ + "date-limite-app", + "teolemon", + "tacite" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272501053", + "scans_n": 9, + "ingredients_debug": [ + "Garniture 59% ", + ":", + ":", + null, + null, + " fromages ", + "[", + "[", + null, + null, + "emmental 21%", + ",", + null, + null, + null, + " mozzarella 20%", + ",", + null, + null, + null, + " cheddar fondu 10% ", + "(", + "(", + null, + null, + "cheddar", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " amidon modifié de pomme de terre", + ",", + null, + null, + null, + " beurre", + ",", + null, + null, + null, + " protéines de lait", + ",", + null, + null, + null, + " sels de fonte ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e331", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " extrait de paprika)", + ",", + null, + null, + null, + " raclette 7% ", + "(", + "(", + null, + null, + "colorant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e160b", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e235", + " - ", + " - ", + " - ", + null, + ")]", + ",", + null, + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d’olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " olives noires avec noyau 3% ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan.Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 41% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "labels_tags": [ + "en:green-dot" + ], + "photographers_tags": [ + "k13b3r", + "teolemon", + "date-limite-app", + "asmoth", + "sodebo" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.400.jpg", + "vitamins_prev_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "additives_tags_n": null, + "traces": "", + "brands_debug_tags": [], + "ingredients_text_debug": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : - e331 - , sel, colorant : extrait de paprika), raclette 7% (colorant : - e160b - , conservateur : - e235 - )], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : - e579 - ), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "ingredients_from_palm_oil_n": 0, + "ingredients_original_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 36, + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas aux quatre fromages", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530626239, + "pnns_groups_2": "Pizza pies and quiche", + "nutriments": { + "salt_unit": "g", + "fiber_100g": 2.3, + "carbohydrates": "26.0", + "sodium": 0.511811023622047, + "salt_100g": 1.3, + "salt_value": "1.3", + "fiber": 2.3, + "sugars_100g": 1.9, + "saturated-fat": "6.0", + "energy_serving": "", + "fruits-vegetables-nuts-estimate_100g": "3", + "sugars": 1.9, + "sodium_value": "0.5118110236220472", + "fat": 9.5, + "fruits-vegetables-nuts-estimate_unit": "g", + "energy_value": "1021", + "proteins_unit": "g", + "saturated-fat_value": "6.0", + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "salt": 1.3, + "fiber_serving": "", + "carbohydrates_value": "26.0", + "nutrition-score-uk": "11", + "fruits-vegetables-nuts-estimate_value": "3", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "fruits-vegetables-nuts-estimate_serving": "3", + "nutrition-score-fr": "11", + "sugars_unit": "g", + "proteins_serving": "", + "fruits-vegetables-nuts-estimate": "3", + "fat_serving": "", + "carbohydrates_serving": "", + "sugars_value": "1.9", + "carbohydrates_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "sugars_serving": "", + "nutrition-score-fr_100g": "11", + "nova-group_100g": 4, + "fat_100g": 9.5, + "energy": "1021", + "proteins": "13.0", + "proteins_value": "13.0", + "fat_unit": "g", + "nutrition-score-uk_100g": "11", + "proteins_100g": "13", + "carbohydrates_100g": "26", + "salt_serving": "", + "energy_100g": "1021", + "fiber_value": "2.3", + "fat_value": "9.5", + "sodium_serving": "", + "sodium_100g": 0.511811023622047, + "saturated-fat_100g": "6" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "purchase_places": "Niort,France", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "creator": "date-limite-app", + "last_editor": "sodebo", + "additives_n": 6, + "purchase_places_debug_tags": [], + "additives_prev_n": 6, + "fruits-vegetables-nuts_100g_estimate": 0, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242272501053/la-pizz-4-fromages-sodebo", + "origins_debug_tags": [], + "traces_from_ingredients": "", + "entry_dates_tags": [ + "2015-09-16", + "2015-09", + "2015" + ], + "labels": "Point Vert", + "pnns_groups_1": "Composite foods", + "purchase_places_tags": [ + "niort", + "france" + ], + "product_name_fr": "La Pizz - 4 fromages", + "interface_version_modified": "20120622", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.100.jpg", + "update_key": "key_1533677490", + "packaging_tags": [ + "plastique", + "film", + "carton", + "film-plastique-a-jeter", + "support-carton-a-recycler" + ], + "sortkey": 1530626239, + "lang_debug_tags": [], + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte: E331, sel, colorant: extrait de paprika), raclette 7% (colorant: E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.200.jpg" + } + } + }, + "ingredients_text": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte: E331, sel, colorant: extrait de paprika), raclette 7% (colorant: E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d’olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan.Pourcentages exprimés sur la garniture.\n\nPâte 41% : farine de blé, eau, levure boulangère, sel.", + "emb_codes_tags": [], + "quantity": "470 g", + "amino_acids_prev_tags": [], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Sodebo, la pizz", + "product_name": "La Pizz - 4 fromages", + "lc": "fr", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "high", + "fat": "moderate", + "salt": "moderate" + }, + "nutrition_data_prepared_per": "100g", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e14xx", + "en:e160b", + "en:e160c", + "en:e235", + "en:e331", + "en:e579" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.200.jpg", + "generic_name": "Pizza pâte fine garnie d'emmental, de mozzarella, de cheddar fondu et de raclette", + "additives_old_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e1403", + "en:e579" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/ingredients_fr.27.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "id": "3242272501053", + "rev": 33, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 3% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "_keywords": [ + "et", + "mozzarella", + "aux", + "tarte", + "cheddar", + "fondu", + "garnie", + "de", + "pizz", + "fromage", + "pate", + "salee", + "prepare", + "pizza", + "la", + "plat", + "point", + "raclette", + "quatre", + "fine", + "emmental", + "vert", + "sodebo", + "quiche" + ], + "stores": "Leclerc", + "debug_param_sorted_langs": [ + "fr" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50", + "quantity-not-recognized" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.200.jpg", + "stores_tags": [ + "leclerc" + ], + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e579" + ], + "nutrition_data": "on", + "last_image_t": 1530626236, + "additives_old_n": 7, + "ingredients_hierarchy": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan.Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:stabiliser", + "fr:e579" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "generic_name_fr": "Pizza pâte fine garnie d'emmental, de mozzarella, de cheddar fondu et de raclette", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/front_fr.32.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [], + "emb_codes_orig": "", + "nutrition_data_per": "100g", + "max_imgid": "14", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 1, + "unique_scans_n": 9, + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "nutrition_grades_tags": [ + "d" + ], + "nutrition_grade_fr": "d", + "brands_tags": [ + "sodebo", + "la-pizz" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/1053/nutrition_fr.28.400.jpg", + "languages_codes": { + "fr": 6 + }, + "correctors_tags": [ + "teolemon", + "tacite", + "date-limite-app", + "asmoth", + "syl44", + "sodebo" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272501053", + "324227250105x", + "32422725010xx", + "3242272501xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "labels_prev_tags": [ + "en:green-dot" + ], + "nutrition_grades": "d", + "serving_quantity": 0, + "expiration_date": "06/07/2018", + "emb_codes": "", + "minerals_prev_tags": [] + }, + { + "vitamins_tags": [], + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:tuna-pizzas" + ], + "serving_size": "200 g", + "interface_version_created": "20150316.jqm2", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "en:starch", + "fr:mozzarella", + "en:tuna", + "en:fish", + "fr:sauce-a-la-ricotta", + "fr:poivrons-grilles", + "fr:olives-noires-avec-noyau", + "fr:echalote", + "en:sunflower-oil", + "en:sunflower", + "fr:huile-d-olive-vierge", + "en:olive-oil", + "en:vegetable-oil", + "en:lemon-juice", + "fr:roquette", + "en:water", + "en:mint", + "fr:basilic", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:creme-fraiche-legere", + "fr:ricotta", + "fr:dont-correcteur-d-acidite", + "en:lactic-acid", + "en:canola-oil", + "en:vegetable-oil", + "fr:mozzarella", + "fr:emmental", + "fr:amidon-modifie-de-manioc", + "en:modified-starch", + "en:starch", + "en:salt", + "en:preservative", + "fr:e202", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272349051", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 60% : sauce tomate 33% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 25%, thon 18%, sauce à la ricotta 9% [crème fraiche légère, ricotta 2% (dont correcteur d’acidité : acide lactique), huile de colza, mozzarella, emmental, amidon modifié de manioc, sel, conservateur : E202], poivrons grillés 4%, olives noires avec noyau (stabilisant : E579), échalote, huile de tournesol, huile d’olive vierge, jus de citron, roquette 0,7%, eau, menthe, basilic.\nPourcentages exprimés sur la garniture.\n\nPâte 40% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.100.jpg", + "additives_prev_original_tags": [ + "en:e270", + "en:e14xx", + "en:e202", + "en:e579" + ], + "ingredients_text_with_allergens_fr": "Garniture 60% : sauce tomate 33% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 25%, thon 18%, sauce à la ricotta 9% [crème fraiche légère, ricotta 2% (dont correcteur d’acidité : acide lactique), huile de colza, mozzarella, emmental, amidon modifié de manioc, sel, conservateur : E202], poivrons grillés 4%, olives noires avec noyau (stabilisant : E579), échalote, huile de tournesol, huile d’olive vierge, jus de citron, roquette 0,7%, eau, menthe, basilic.\nPourcentages exprimés sur la garniture.\n\nPâte 40% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "lang": "fr", + "sources": [ + { + "images": [], + "fields": [ + "product_name_fr", + "quantity", + "brands", + "serving_size", + "allergens", + "traces", + "ingredients_text_fr" + ], + "id": "sodebo", + "manufacturer": 1, + "name": "Sodebo", + "import_t": 1530626224, + "url": "https://www.sodebo.com/" + } + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.100.jpg", + "origins": "", + "categories_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:preservative : 3 -- additives/en:e14xx : 4", + "created_t": 1504960262, + "ingredients_n_tags": [ + "40", + "31-40" + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "sodebo", + "ingredients": [ + { + "text": "Garniture", + "rank": 1, + "percent": "60", + "id": "fr:garniture" + }, + { + "rank": 2, + "text": "eau", + "id": "en:water" + }, + { + "id": "en:wheat-flour", + "text": "farine de blé", + "rank": 3 + }, + { + "id": "en:salt", + "text": "sel", + "rank": 4 + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs", + "rank": 5 + }, + { + "rank": 6, + "text": "mozzarella", + "id": "fr:mozzarella", + "percent": "25" + }, + { + "percent": "18", + "id": "en:tuna", + "rank": 7, + "text": "thon" + }, + { + "id": "fr:sauce à la ricotta", + "percent": "9", + "text": "sauce à la ricotta", + "rank": 8 + }, + { + "percent": "4", + "id": "fr:poivrons-grilles", + "text": "poivrons grillés", + "rank": 9 + }, + { + "id": "fr:olives-noires-avec-noyau", + "text": "olives noires avec noyau", + "rank": 10 + }, + { + "id": "fr:echalote", + "rank": 11, + "text": "échalote" + }, + { + "text": "huile de tournesol", + "rank": 12, + "id": "en:sunflower-oil" + }, + { + "id": "fr:huile-d-olive-vierge", + "rank": 13, + "text": "huile d’olive vierge" + }, + { + "id": "en:lemon-juice", + "text": "jus de citron", + "rank": 14 + }, + { + "id": "fr:roquette", + "percent": "0.7", + "text": "roquette", + "rank": 15 + }, + { + "id": "en:water", + "rank": 16, + "text": "eau" + }, + { + "rank": 17, + "text": "menthe", + "id": "en:mint" + }, + { + "rank": 18, + "text": "basilic", + "id": "fr:basilic" + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "text": "Pourcentages exprimés sur la garniture", + "rank": 19 + }, + { + "text": "Pâte", + "rank": 20, + "percent": "40", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "rank": 21, + "text": "farine de blé" + }, + { + "id": "en:water", + "text": "eau", + "rank": 22 + }, + { + "rank": 23, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "id": "en:salt", + "rank": 24, + "text": "sel" + }, + { + "id": "fr:farine-de-ble-malte", + "text": "farine de blé malté", + "rank": 25 + }, + { + "id": "fr:sauce-tomate", + "percent": "33", + "text": "sauce tomate" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "id": "fr:creme-fraiche-legere", + "text": "crème fraiche légère" + }, + { + "text": "ricotta", + "percent": "2", + "id": "fr:ricotta" + }, + { + "text": "dont correcteur d’acidité", + "id": "fr:dont correcteur d’acidité" + }, + { + "id": "en:lactic-acid", + "text": "acide lactique" + }, + { + "id": "en:canola-oil", + "text": "huile de colza" + }, + { + "id": "fr:mozzarella", + "text": "mozzarella" + }, + { + "id": "fr:emmental", + "text": "emmental" + }, + { + "id": "fr:amidon-modifie-de-manioc", + "text": "amidon modifié de manioc" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "text": "E202", + "id": "fr:e202" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1504960263", + "sizes": { + "100": { + "w": 96, + "h": 100 + }, + "400": { + "w": 384, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1304 + } + } + }, + "2": { + "uploaded_t": "1504960264", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 17, + "w": 100 + }, + "400": { + "h": 69, + "w": 400 + }, + "full": { + "h": 389, + "w": 2259 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 31 + }, + "400": { + "h": 400, + "w": 123 + }, + "full": { + "h": 3468, + "w": 1065 + } + }, + "uploaded_t": "1516277331", + "uploader": "kiliweb" + }, + "4": { + "sizes": { + "100": { + "w": 100, + "h": 98 + }, + "400": { + "h": 393, + "w": 400 + }, + "full": { + "h": 1500, + "w": 1528 + } + }, + "uploaded_t": 1530626223, + "uploader": "sodebo" + }, + "front_fr": { + "imgid": "4", + "geometry": "0x0--3--3", + "white_magic": null, + "x2": "-1", + "normalize": null, + "y2": "-1", + "x1": "-1", + "angle": 0, + "y1": "-1", + "sizes": { + "100": { + "h": "98", + "w": "100" + }, + "200": { + "w": 200, + "h": 196 + }, + "400": { + "h": 393, + "w": 400 + }, + "full": { + "h": 1500, + "w": 1528 + } + }, + "rev": "14" + }, + "ingredients_fr": { + "rev": "11", + "sizes": { + "100": { + "h": 31, + "w": 100 + }, + "200": { + "h": 61, + "w": 200 + }, + "400": { + "h": 123, + "w": 400 + }, + "full": { + "h": 1065, + "w": 3468 + } + }, + "y1": "0", + "angle": "270", + "x1": "0", + "y2": "0", + "x2": "0", + "normalize": "false", + "geometry": "0x0-0-0", + "white_magic": "false", + "imgid": "3" + } + }, + "traces_tags": [ + "en:eggs" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [ + "en:e14xx", + "en:e202", + "en:e270", + "en:e579" + ], + "allergens_tags": [ + "en:fish", + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "", + "informers_tags": [ + "kiliweb", + "julie-yuka", + "sodebo" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.200.jpg", + "ingredients_ids_debug": [ + "garniture-60", + "sauce-tomate-33", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "amidon-de-mais", + "mozzarella-25", + "thon-18", + "sauce-a-la-ricotta-9", + "creme-fraiche-legere", + "ricotta-2", + "dont-correcteur-d-acidite", + "acide-lactique", + "huile-de-colza", + "mozzarella", + "emmental", + "amidon-modifie-de-manioc", + "sel", + "conservateur", + "e202", + "poivrons-grilles-4", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "echalote", + "huile-de-tournesol", + "huile-d-olive-vierge", + "jus-de-citron", + "roquette-0", + "7", + "eau", + "menthe", + "basilic", + "pourcentages-exprimes-sur-la-garniture", + "pate-40", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel", + "farine-de-ble-malte" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "creator": "kiliweb", + "labels_debug_tags": [], + "purchase_places": "", + "last_editor": "sodebo", + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:tuna-pizzas" + ], + "nutriments": { + "energy_value": "818", + "fat": 6.5, + "saturated-fat_value": "3.1", + "proteins_unit": "g", + "salt": "1.1", + "sugars": 1.8, + "nutrition-score-fr_value": "2", + "sodium_value": "0.448818897637795", + "fiber": "2.0", + "sugars_100g": 1.8, + "salt_value": "1.1", + "saturated-fat": 3.1, + "energy_serving": "", + "nutrition-score-fr_unit": "g", + "salt_unit": "g", + "sodium": 0.433070866141732, + "fiber_100g": "2", + "carbohydrates": "23.0", + "salt_100g": 1.1, + "carbohydrates_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "1.8", + "fat_serving": "", + "sugars_unit": "g", + "nutrition-score-fr": "2", + "proteins_serving": "", + "fiber_serving": "", + "carbohydrates_value": "23.0", + "nutrition-score-uk": "2", + "energy_unit": "kJ", + "saturated-fat_unit": "g", + "proteins": "10.0", + "proteins_value": "10.0", + "nova-group_100g": 4, + "fat_100g": 6.5, + "energy": "818", + "sugars_serving": "", + "nutrition-score-fr_100g": "2", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "fat_value": "6.5", + "sodium_serving": "", + "sodium_100g": 0.433070866141732, + "saturated-fat_100g": 3.1, + "energy_100g": "818", + "fiber_value": "2.0", + "fat_unit": "g", + "nutrition-score-uk_100g": "2", + "proteins_100g": "10", + "salt_serving": "", + "carbohydrates_100g": "23" + }, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "complete": 0, + "additives_prev_n": 4, + "purchase_places_debug_tags": [], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_n": 4, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 60% : sauce tomate 33% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 25%, thon 18%, sauce à la ricotta 9% [crème fraiche légère, ricotta 2% (dont correcteur d’acidité : acide lactique), huile de colza, mozzarella, emmental, amidon modifié de manioc, sel, conservateur : - e202 - ], poivrons grillés 4%, olives noires avec noyau (stabilisant : - e579 - ), échalote, huile de tournesol, huile d’olive vierge, jus de citron, roquette 0,7%, eau, menthe, basilic.\nPourcentages exprimés sur la garniture.\n\nPâte 40% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "categories": "Pizzas au thon", + "manufacturing_places_tags": [], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:tuna-pizzas" + ], + "last_modified_t": 1530626224, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "fr:mozzarella", + "en:tuna", + "fr:sauce à la ricotta", + "fr:poivrons-grilles", + "fr:olives-noires-avec-noyau", + "fr:echalote", + "en:sunflower-oil", + "fr:huile-d-olive-vierge", + "en:lemon-juice", + "fr:roquette", + "en:water", + "en:mint", + "fr:basilic", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:creme-fraiche-legere", + "fr:ricotta", + "fr:dont correcteur d’acidité", + "en:lactic-acid", + "en:canola-oil", + "fr:mozzarella", + "fr:emmental", + "fr:amidon-modifie-de-manioc", + "en:salt", + "en:preservative", + "fr:e202", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 40, + "image_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.400.jpg", + "photographers_tags": [ + "kiliweb", + "sodebo" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Garniture 60% ", + ":", + ":", + null, + null, + " sauce tomate 33% ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " mozzarella 25%", + ",", + null, + null, + null, + " thon 18%", + ",", + null, + null, + null, + " sauce à la ricotta 9% ", + "[", + "[", + null, + null, + "crème fraiche légère", + ",", + null, + null, + null, + " ricotta 2% ", + "(", + "(", + null, + null, + "dont correcteur d’acidité ", + ":", + ":", + null, + null, + " acide lactique)", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " mozzarella", + ",", + null, + null, + null, + " emmental", + ",", + null, + null, + null, + " amidon modifié de manioc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e202", + " - ", + " - ", + " - ", + null, + "]", + ",", + null, + null, + null, + " poivrons grillés 4%", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " échalote", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " huile d’olive vierge", + ",", + null, + null, + null, + " jus de citron", + ",", + null, + null, + null, + " roquette 0", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " menthe", + ",", + null, + null, + null, + " basilic", + ".\n", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ".\n", + null, + null, + null, + "\nPâte 40% ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " farine de blé malté." + ], + "labels_tags": [], + "traces": "oeuf", + "brands_debug_tags": [], + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "languages": { + "en:french": 4 + }, + "editors_tags": [ + "openfoodfacts-contributors", + "julie-yuka", + "sodebo", + "kiliweb" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "allergens": "gluten, poisson, lait, blé, mozzarella, emmental", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272349051", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:tuna-pizzas" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.200.jpg", + "stores_debug_tags": [], + "stores_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [ + "quantity-not-recognized" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "labels_prev_hierarchy": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e14xx", + "en:e202", + "en:e270", + "en:e579" + ], + "generic_name": "", + "nutrition_data_prepared_per": "100g", + "stores": "", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 2 -- fr 2", + "_keywords": [ + "sodebo", + "thon", + "pizza", + "au", + "tonno", + "dolce" + ], + "rev": 15, + "id": "3242272349051", + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e270", + "en:e14xx", + "en:e202", + "en:e1403", + "en:e579" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/9051/ingredients_fr.11.100.jpg" + } + } + }, + "emb_codes_tags": [], + "ingredients_text": "Garniture 60% : sauce tomate 33% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 25%, thon 18%, sauce à la ricotta 9% [crème fraiche légère, ricotta 2% (dont correcteur d’acidité : acide lactique), huile de colza, mozzarella, emmental, amidon modifié de manioc, sel, conservateur : E202], poivrons grillés 4%, olives noires avec noyau (stabilisant : E579), échalote, huile de tournesol, huile d’olive vierge, jus de citron, roquette 0,7%, eau, menthe, basilic.\nPourcentages exprimés sur la garniture.\n\nPâte 40% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "ingredients_text_fr": "Garniture 60% : sauce tomate 33% (purée de tomate, eau, farine de blé, sel, amidon de maïs), mozzarella 25%, thon 18%, sauce à la ricotta 9% [crème fraiche légère, ricotta 2% (dont correcteur d’acidité : acide lactique), huile de colza, mozzarella, emmental, amidon modifié de manioc, sel, conservateur : E202], poivrons grillés 4%, olives noires avec noyau (stabilisant : E579), échalote, huile de tournesol, huile d’olive vierge, jus de citron, roquette 0,7%, eau, menthe, basilic.\nPourcentages exprimés sur la garniture.\n\nPâte 40% : farine de blé, eau, levure boulangère, sel, farine de blé malté.", + "lang_debug_tags": [], + "sortkey": 530626224, + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "product_name": "Dolce Pizza - Tonno", + "lc": "fr", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "moderate", + "sugars": "low" + }, + "amino_acids_prev_tags": [], + "quantity": "400 g", + "brands": "Sodebo, dolce", + "countries_debug_tags": [], + "checkers_tags": [], + "entry_dates_tags": [ + "2017-09-09", + "2017-09", + "2017" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242272349051/dolce-pizza-tonno-sodebo", + "product_name_fr": "Dolce Pizza - Tonno", + "purchase_places_tags": [], + "packaging_tags": [], + "interface_version_modified": "20120622", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.100.jpg", + "update_key": "nova3", + "ingredients_text_debug_tags": [], + "pnns_groups_1": "Composite foods", + "labels": "", + "labels_prev_tags": [], + "serving_quantity": 0, + "nutrition_grades": "b", + "correctors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "julie-yuka", + "sodebo" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272349051", + "324227234905x", + "32422723490xx", + "3242272349xxx", + "324227234xxxx", + "32422723xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "", + "nutrition_grades_tags": [ + "b" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "last_edit_dates_tags": [ + "2018-07-03", + "2018-07", + "2018" + ], + "link": "", + "languages_codes": { + "fr": 4 + }, + "brands_tags": [ + "sodebo", + "dolce" + ], + "nutrition_grade_fr": "b", + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/9051/front_fr.14.200.jpg", + "traces_hierarchy": [ + "en:eggs" + ], + "generic_name_fr": "", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 3, + "emb_codes_orig": "", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "max_imgid": "4", + "nutrition_data_per": "100g", + "additives_debug_tags": [], + "additives_original_tags": [ + "en:e270", + "en:e14xx", + "en:e202", + "en:e579" + ], + "allergens_hierarchy": [ + "en:fish", + "en:gluten", + "en:milk" + ], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:corn-starch", + "en:starch", + "fr:mozzarella", + "en:tuna", + "en:fish", + "fr:sauce à la ricotta", + "fr:poivrons-grilles", + "fr:olives-noires-avec-noyau", + "fr:echalote", + "en:sunflower-oil", + "en:sunflower", + "fr:huile-d-olive-vierge", + "en:olive-oil", + "en:vegetable-oil", + "en:lemon-juice", + "fr:roquette", + "en:water", + "en:mint", + "fr:basilic", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:farine-de-ble-malte", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:creme-fraiche-legere", + "fr:ricotta", + "fr:dont correcteur d’acidité", + "en:lactic-acid", + "en:canola-oil", + "en:vegetable-oil", + "fr:mozzarella", + "fr:emmental", + "fr:amidon-modifie-de-manioc", + "en:modified-starch", + "en:starch", + "en:salt", + "en:preservative", + "fr:e202", + "en:stabiliser", + "fr:e579" + ], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 5, + "last_image_t": 1530626223 + }, + { + "nutrition_grade_fr": "c", + "brands_tags": [ + "sodebo" + ], + "new_additives_n": 3, + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.400.jpg", + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "link": "https://www.sodebo.com/fr/produits-frais/pizzas/ovale/ovale-chevre-affine-lardons", + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "emb_codes": "", + "expiration_date": "25/10/15", + "minerals_prev_tags": [], + "codes_tags": [ + "code-13", + "3242272826552", + "324227282655x", + "32422728265xx", + "3242272826xxx", + "324227282xxxx", + "32422728xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "malikele", + "manu1400", + "stephane", + "teolemon", + "jacob80", + "sto", + "syl44" + ], + "serving_quantity": 200, + "nutrition_grades": "c", + "labels_prev_tags": [ + "fr:info-tri-point-vert" + ], + "last_image_t": 1446028894, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 4, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:lardons cuits fumés standards", + "fr:emmental", + "fr:_fromage_ de chèvre affiné", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "fr:Pourcentages exprimés sur la pâte", + "fr:sauce tomate à l'huile d'olive", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:smoke-flavour", + "en:flavour", + "en:lactose", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure-boulangere", + "en:salt" + ], + "additives_original_tags": [ + "en:e451", + "en:e316", + "en:e250" + ], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "photographers": [ + "manu1400" + ], + "additives_debug_tags": [], + "checkers": [], + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:belgium", + "en:france" + ], + "max_imgid": "5", + "nutrition_data_per": "100g", + "emb_codes_orig": "", + "unique_scans_n": 2, + "unknown_ingredients_n": 6, + "unknown_nutrients_tags": [], + "generic_name_fr": "Pizza pâte fine garnie de lardons cuits fumés standards, d'emmental et de fromage de chèvre affiné", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.200.jpg", + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.400.jpg", + "additives_old_tags": [ + "en:e1403", + "en:e451", + "en:e316", + "en:e250" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "stores": "Banque alimentaire", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 10 -- fr 10", + "_keywords": [ + "tarte", + "emmental", + "vert", + "fume", + "fromage", + "affine", + "ovale", + "de", + "info-tri", + "quiche", + "chevre", + "lardon", + "point", + "plat", + "cuit", + "pate", + "frai", + "chevre-lardon", + "pizza", + "et", + "garnie", + "sodebo", + "fine", + "prepare", + "standard", + "salee" + ], + "rev": 27, + "id": "3242272826552", + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.200.jpg", + "generic_name": "Pizza pâte fine garnie de lardons cuits fumés standards, d'emmental et de fromage de chèvre affiné", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e316", + "en:e451" + ], + "labels_prev_hierarchy": [ + "fr:Info-Tri Point Vert" + ], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:belgium", + "en:france" + ], + "stores_tags": [ + "banque-alimentaire" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.200.jpg", + "stores_debug_tags": [], + "labels": "Info-Tri Point Vert", + "pnns_groups_1": "Composite foods", + "packaging_tags": [ + "frais", + "film-plastique-a-jeter", + "support-carton-a-recycler", + "sous-atmosphere-protectrice" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.100.jpg", + "interface_version_modified": "20120622", + "update_key": "key_1533677490", + "purchase_places_tags": [ + "villers-bocage-80260", + "france" + ], + "product_name_fr": "L'Ovale Lardons Chèvre affiné", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3242272826552/l-ovale-lardons-chevre-affine-sodebo", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2012-05-31", + "2012-05", + "2012" + ], + "checkers_tags": [], + "brands": "Sodebo", + "countries_debug_tags": [], + "amino_acids_prev_tags": [], + "quantity": "200 g", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "high", + "saturated-fat": "moderate", + "fat": "moderate" + }, + "ingredients_text_fr_debug_tags": [], + "countries": "Belgique,France", + "product_name": "L'Ovale Lardons Chèvre affiné", + "lc": "fr", + "nutrition_data_prepared": "", + "ingredients_text_fr": "GARNITURE 58 % : sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), lardons cuits fumés standards 28 % (poitrine de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, arôme de fumée, _lactose_, antioxydant : E316, conservateur : E250), _emmental_ 16 %, _fromage_ de chèvre affiné 14 %, basilic et origan.\r\nPourcentages exprimés sur la garniture.\r\nPÂTE 42 % (farine de _blé_, eau, huile d'olive vierge extra 2 %, levure boulangère, sel).\r\nPourcentages exprimés sur la pâte.", + "sortkey": 1530544477, + "lang_debug_tags": [], + "emb_codes_tags": [], + "ingredients_text": "GARNITURE 58 % : sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), lardons cuits fumés standards 28 % (poitrine de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, arôme de fumée, _lactose_, antioxydant : E316, conservateur : E250), _emmental_ 16 %, _fromage_ de chèvre affiné 14 %, basilic et origan.\r\nPourcentages exprimés sur la garniture.\r\nPÂTE 42 % (farine de _blé_, eau, huile d'olive vierge extra 2 %, levure boulangère, sel).\r\nPourcentages exprimés sur la pâte.", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.400.jpg" + } + } + }, + "ingredients_n": 32, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "fr:lardons cuits fumés standards", + "fr:emmental", + "fr:_fromage_ de chèvre affiné", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "fr:Pourcentages exprimés sur la pâte", + "fr:sauce tomate à l'huile d'olive", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:smoke-flavour", + "en:lactose", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "fr:levure-boulangere", + "en:salt" + ], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:goat-cheese-and-bacon-pizzas", + "en:oval-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530544477, + "categories": "Frais,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas chèvre-lardons,Pizzas ovales", + "manufacturing_places_tags": [ + "france" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "GARNITURE 58 % : sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), lardons cuits fumés standards 28 % (poitrine de porc, eau, sel, sirop de glucose, dextrose, stabilisant : - e451 - , arôme de fumée, _lactose_, antioxydant : - e316 - , conservateur : - e250 - ), _emmental_ 16 %, _fromage_ de chèvre affiné 14 %, basilic et origan.\r\nPourcentages exprimés sur la garniture.\r\nPÂTE 42 % (farine de _blé_, eau, huile d'olive vierge extra 2 %, levure boulangère, sel).\r\nPourcentages exprimés sur la pâte.", + "correctors": [ + "manu1400" + ], + "additives_n": 3, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_prev_n": 3, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:goat-cheese-and-bacon-pizzas", + "en:oval-pizzas" + ], + "nutriments": { + "fiber_value": "1.9", + "energy_100g": "874", + "sodium_100g": 0.62992125984252, + "saturated-fat_100g": 3.7, + "sodium_serving": 1.26, + "fat_value": "7.7", + "salt_serving": 3.2, + "proteins_100g": 9.5, + "carbohydrates_100g": "25", + "nutrition-score-uk_100g": "10", + "fat_unit": "g", + "energy": "874", + "fat_100g": 7.7, + "nova-group_100g": 4, + "proteins_value": "9.5", + "proteins": 9.5, + "saturated-fat_serving": 7.4, + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "nutrition-score-fr_100g": "10", + "sugars_serving": 5.4, + "fat_serving": 15.4, + "carbohydrates_unit": "g", + "sugars_value": "2.7", + "carbohydrates_serving": "50", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "nutrition-score-uk": "10", + "carbohydrates_value": "25", + "fiber_serving": 3.8, + "proteins_serving": "19", + "nutrition-score-fr": "10", + "sugars_unit": "g", + "sodium_value": "0.6299212598425197", + "sugars": 2.7, + "salt": 1.6, + "proteins_unit": "g", + "saturated-fat_value": "3.7", + "energy_value": "209", + "fat": 7.7, + "salt_100g": 1.6, + "sodium": 0.62992125984252, + "fiber_100g": 1.9, + "carbohydrates": "25", + "salt_unit": "g", + "energy_serving": "1750", + "saturated-fat": 3.7, + "salt_value": "1.6", + "sugars_100g": 2.7, + "fiber": 1.9 + }, + "last_editor": "syl44", + "nutrition_data_prepared_per_debug_tags": [], + "creator": "malikele", + "labels_debug_tags": [], + "purchase_places": "Villers Bocage 80260,France", + "categories_tags": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:goat-cheese-and-bacon-pizzas", + "en:oval-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "scans_n": 2, + "code": "3242272826552", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors": [ + "sto", + "teolemon", + "manu1400", + "malikele", + "jacob80", + "stephane" + ], + "allergens": "Gluten,Lait, blé, lactose, emmental, fromage, blé", + "completed_t": 1338481701, + "last_image_dates_tags": [ + "2015-10-28", + "2015-10", + "2015" + ], + "link_debug_tags": [], + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "syl44", + "malikele", + "manu1400", + "jacob80", + "teolemon", + "stephane", + "sto" + ], + "informers": [ + "manu1400" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "", + "labels_tags": [ + "fr:info-tri-point-vert" + ], + "ingredients_debug": [ + "GARNITURE 58 % ", + ":", + ":", + null, + null, + " sauce tomate à l'huile d'olive ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive vierge extra)", + ",", + null, + null, + null, + " lardons cuits fumés standards 28 % ", + "(", + "(", + null, + null, + "poitrine de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " arôme de fumée", + ",", + null, + null, + null, + " _lactose_", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " _emmental_ 16 %", + ",", + null, + null, + null, + " _fromage_ de chèvre affiné 14 %", + ",", + null, + null, + null, + " basilic et origan", + ".\r", + null, + null, + null, + "\nPourcentages exprimés sur la garniture", + ".\r", + null, + null, + null, + "\nPÂTE 42 % ", + "(", + "(", + null, + null, + "farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile d'olive vierge extra 2 %", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel)", + ".\r", + null, + null, + null, + "\nPourcentages exprimés sur la pâte." + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.400.jpg", + "photographers_tags": [ + "malikele", + "jacob80" + ], + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1338481249, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "origins": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "fr:Info-Tri Point Vert" + ], + "manufacturing_places": "France", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.100.jpg", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/front_fr.19.400.jpg", + "lang": "fr", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "GARNITURE 58 % : sauce tomate à l'huile d'olive (purée de tomate, eau, farine de blé, sel, huile d'olive vierge extra), lardons cuits fumés standards 28 % (poitrine de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, arôme de fumée, lactose, antioxydant : E316, conservateur : E250), emmental 16 %, fromage de chèvre affiné 14 %, basilic et origan.\r\nPourcentages exprimés sur la garniture.\r\nPÂTE 42 % (farine de blé, eau, huile d'olive vierge extra 2 %, levure boulangère, sel).\r\nPourcentages exprimés sur la pâte.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.100.jpg", + "additives_prev_original_tags": [ + "en:e451", + "en:e316", + "en:e250" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/nutrition_fr.24.100.jpg", + "ingredients_text_with_allergens": "GARNITURE 58 % : sauce tomate à l'huile d'olive (purée de tomate, eau, farine de blé, sel, huile d'olive vierge extra), lardons cuits fumés standards 28 % (poitrine de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, arôme de fumée, lactose, antioxydant : E316, conservateur : E250), emmental 16 %, fromage de chèvre affiné 14 %, basilic et origan.\r\nPourcentages exprimés sur la garniture.\r\nPÂTE 42 % (farine de blé, eau, huile d'olive vierge extra 2 %, levure boulangère, sel).\r\nPourcentages exprimés sur la pâte.", + "quantity_debug_tags": [], + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:lardons-cuits-fumes-standards", + "fr:emmental", + "fr:fromage-de-chevre-affine", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "fr:pourcentages-exprimes-sur-la-pate", + "fr:sauce-tomate-a-l-huile-d-olive", + "fr:puree-de-tomate", + "fr:poitrine-de-porc", + "en:pork-meat", + "en:meat", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:smoke-flavour", + "en:flavour", + "en:lactose", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "en:wheat-flour", + "en:water", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:levure-boulangere", + "en:salt" + ], + "_id": "3242272826552", + "categories_prev_tags": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:goat-cheese-and-bacon-pizzas", + "en:oval-pizzas" + ], + "serving_size": "200 g", + "product_quantity": 200, + "vitamins_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "garniture-58", + "sauce-tomate-a-l-huile-d-olive", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive-vierge-extra", + "lardons-cuits-fumes-standards-28", + "poitrine-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "stabilisant", + "e451", + "arome-de-fumee", + "lactose", + "antioxydant", + "e316", + "conservateur", + "e250", + "emmental-16", + "fromage-de-chevre-affine-14", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-42", + "farine-de-ble", + "eau", + "huile-d-olive-vierge-extra-2", + "levure-boulangere", + "sel", + "pourcentages-exprimes-sur-la-pate" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/282/6552/ingredients_fr.23.200.jpg", + "packaging": "Frais,Film plastique à jeter,Support carton à recycler,Sous atmosphère protectrice", + "informers_tags": [ + "malikele", + "stephane", + "jacob80", + "syl44" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "allergens_from_ingredients": "blé, lactose, emmental, fromage, blé", + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e451" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploaded_t": 1338481274, + "uploader": "malikele" + }, + "2": { + "uploaded_t": 1338481275, + "uploader": "malikele", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "malikele", + "uploaded_t": 1338481276 + }, + "4": { + "sizes": { + "100": { + "w": 64, + "h": 100 + }, + "400": { + "w": 255, + "h": 400 + }, + "full": { + "w": 1900, + "h": 2981 + } + }, + "uploader": "jacob80", + "uploaded_t": "1446028437" + }, + "5": { + "uploader": "jacob80", + "uploaded_t": "1446028894", + "sizes": { + "100": { + "h": 95, + "w": 100 + }, + "400": { + "h": 381, + "w": 400 + }, + "full": { + "w": 2254, + "h": 2148 + } + } + }, + "front": { + "sizes": { + "100": { + "w": 64, + "h": 100 + }, + "200": { + "h": 200, + "w": 127 + }, + "400": { + "h": 400, + "w": 255 + }, + "full": { + "w": 1900, + "h": 2981 + } + }, + "rev": "19", + "normalize": "false", + "white_magic": "false", + "geometry": "0x0-0-0", + "imgid": "4" + }, + "ingredients_fr": { + "normalize": "false", + "rev": "23", + "sizes": { + "100": { + "h": 33, + "w": 100 + }, + "200": { + "h": 66, + "w": 200 + }, + "400": { + "h": 132, + "w": 400 + }, + "full": { + "w": 1459, + "h": 480 + } + }, + "imgid": "5", + "geometry": "1459x480-92-621", + "white_magic": "false" + }, + "front_fr": { + "imgid": "4", + "geometry": "0x0-0-0", + "white_magic": "false", + "sizes": { + "100": { + "w": "64", + "h": "100" + }, + "200": { + "h": 200, + "w": 127 + }, + "400": { + "h": 400, + "w": 255 + }, + "full": { + "h": 2981, + "w": 1900 + } + }, + "rev": "19", + "normalize": "false" + }, + "ingredients": { + "sizes": { + "100": { + "h": 33, + "w": 100 + }, + "200": { + "w": 200, + "h": 66 + }, + "400": { + "h": 132, + "w": 400 + }, + "full": { + "h": 480, + "w": 1459 + } + }, + "rev": "23", + "normalize": "false", + "geometry": "1459x480-92-621", + "white_magic": "false", + "imgid": "5" + }, + "nutrition": { + "sizes": { + "100": { + "w": 100, + "h": 42 + }, + "200": { + "w": 200, + "h": 85 + }, + "400": { + "w": 400, + "h": 170 + }, + "full": { + "h": 626, + "w": 1476 + } + }, + "normalize": "false", + "rev": "24", + "imgid": "5", + "geometry": "1476x626-75-1473", + "white_magic": "false" + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 42, + "w": 100 + }, + "200": { + "w": 200, + "h": 85 + }, + "400": { + "w": 400, + "h": 170 + }, + "full": { + "h": 626, + "w": 1476 + } + }, + "rev": "24", + "normalize": "false", + "geometry": "1476x626-75-1473", + "imgid": "5", + "white_magic": "false" + } + }, + "traces_tags": [], + "serving_size_debug_tags": [], + "ingredients": [ + { + "text": "GARNITURE", + "rank": 1, + "id": "fr:garniture", + "percent": "58" + }, + { + "id": "en:water", + "rank": 2, + "text": "eau" + }, + { + "rank": 3, + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "id": "en:salt", + "rank": 4, + "text": "sel" + }, + { + "rank": 5, + "text": "huile d'olive vierge extra", + "id": "en:extra-virgin-olive-oil" + }, + { + "text": "lardons cuits fumés standards", + "rank": 6, + "id": "fr:lardons cuits fumés standards", + "percent": "28" + }, + { + "percent": "16", + "id": "fr:emmental", + "rank": 7, + "text": "_emmental_" + }, + { + "rank": 8, + "text": "_fromage_ de chèvre affiné", + "percent": "14", + "id": "fr:_fromage_ de chèvre affiné" + }, + { + "rank": 9, + "text": "basilic et origan", + "id": "fr:basilic et origan" + }, + { + "text": "Pourcentages exprimés sur la garniture", + "rank": 10, + "id": "fr:Pourcentages exprimés sur la garniture" + }, + { + "percent": "42", + "id": "en:paste", + "rank": 11, + "text": "PÂTE" + }, + { + "id": "fr:Pourcentages exprimés sur la pâte", + "text": "Pourcentages exprimés sur la pâte", + "rank": 12 + }, + { + "id": "fr:sauce tomate à l'huile d'olive", + "text": "sauce tomate à l'huile d'olive" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "id": "fr:poitrine-de-porc", + "text": "poitrine de porc" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "id": "en:dextrose", + "text": "dextrose" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "text": "E451", + "id": "fr:e451" + }, + { + "text": "arôme de fumée", + "id": "en:smoke-flavour" + }, + { + "text": "_lactose_", + "id": "en:lactose" + }, + { + "id": "en:antioxidant", + "text": "antioxydant" + }, + { + "text": "E316", + "id": "fr:e316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:extra-virgin-olive-oil", + "percent": "2", + "text": "huile d'olive vierge extra" + }, + { + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "text": "sel", + "id": "en:salt" + } + ], + "emb_codes_20141016": "", + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "syl44", + "ingredients_n_tags": [ + "32", + "31-40" + ] + }, + { + "nutrition_data_prepared_per": "100g", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.200.jpg", + "generic_name": "", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "stores": "Casino", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "_keywords": [ + "prepare", + "salee", + "nutritionnel", + "2016", + "jambon-fromage", + "sodebo", + "et", + "etiquetage", + "pizza", + "frai", + "experimentation", + "pizz", + "plat", + "quiche", + "nutriscore", + "jambon", + "tarte", + "la", + "emmental" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 9 -- fr 9", + "rev": 18, + "id": "3242272500261", + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "casino" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.200.jpg", + "stores_debug_tags": [], + "labels_prev_hierarchy": [ + "fr:Experimentation Etiquetage Nutritionnel 2016", + "fr:Expérimentation NutriScore 0", + "fr:Expérimentation Nutriscore" + ], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3242272500261/la-pizz-jambon-emmental-sodebo", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2016-09-29", + "2016-09", + "2016" + ], + "pnns_groups_1": "Composite foods", + "labels": "Expérimentation Nutriscore,Experimentation Etiquetage Nutritionnel 2016,Expérimentation NutriScore 0", + "packaging_tags": [ + "film", + "plastique" + ], + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.100.jpg", + "interface_version_modified": "20120622", + "purchase_places_tags": [ + "paris", + "maison-laffitte" + ], + "product_name_fr": "La Pizz Jambon Emmental", + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, _lactose_, arôme naturel de porc, bouillon de porc, conservateurs: E316, E250, ferments), _emmental_ 22%, _mozzarella_, olives noires avec noyau (stabilisant : E579), basilic et origan. \r\nPâte 41%: farine de _blé_, eau, levure boulangère, sel", + "lang_debug_tags": [], + "sortkey": 1530544127, + "emb_codes_tags": [], + "ingredients_text": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, _lactose_, arôme naturel de porc, bouillon de porc, conservateurs: E316, E250, ferments), _emmental_ 22%, _mozzarella_, olives noires avec noyau (stabilisant : E579), basilic et origan. \r\nPâte 41%: farine de _blé_, eau, levure boulangère, sel", + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.400.jpg" + } + } + }, + "countries_debug_tags": [], + "checkers_tags": [], + "brands": "Sodebo", + "amino_acids_prev_tags": [], + "quantity": "470 g", + "nutrient_levels": { + "sugars": "low", + "salt": "high", + "saturated-fat": "moderate", + "fat": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "lc": "fr", + "product_name": "La Pizz Jambon Emmental", + "link": "", + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "brands_tags": [ + "sodebo" + ], + "nutrition_grade_fr": "c", + "languages_codes": { + "fr": 5 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.400.jpg", + "codes_tags": [ + "code-13", + "3242272500261", + "324227250026x", + "32422725002xx", + "3242272500xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "teolemon", + "tacinte", + "syl44" + ], + "serving_quantity": 157, + "nutrition_grades": "c", + "labels_prev_tags": [ + "fr:experimentation-etiquetage-nutritionnel-2016", + "fr:experimentation-nutriscore-0", + "fr:experimentation-nutriscore" + ], + "emb_codes": "", + "expiration_date": "", + "minerals_prev_tags": [], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_debug_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 6, + "last_image_t": 1475160840, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "fr:arome-naturel-de-porc", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:preservative", + "fr:e316", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "generic_name_fr": "", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.200.jpg", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "6", + "emb_codes_orig": "", + "unique_scans_n": 1, + "unknown_ingredients_n": 1, + "unknown_nutrients_tags": [], + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.400.jpg", + "lang": "fr", + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1475160814, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "origins": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "fr:Expérimentation NutriScore 0" + ], + "manufacturing_places": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.100.jpg", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "fr:arome-naturel-de-porc", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:preservative", + "fr:e316", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272500261", + "categories_prev_tags": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:fresh-meals", + "en:pizzas", + "en:pizza-with-ham-and-cheese" + ], + "interface_version_created": "upload_photos.pl - version 2016/09/29", + "serving_size": "157 g", + "product_quantity": 470, + "vitamins_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive vierge extra), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel de porc, bouillon de porc, conservateurs: E316, E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. \r\nPâte 41%: farine de blé, eau, levure boulangère, sel", + "additives_prev_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.100.jpg", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/nutrition_fr.15.100.jpg", + "ingredients_text_with_allergens": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive vierge extra), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant: E451, gélifiant: E407, lactose, arôme naturel de porc, bouillon de porc, conservateurs: E316, E250, ferments), emmental 22%, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. \r\nPâte 41%: farine de blé, eau, levure boulangère, sel", + "quantity_debug_tags": [], + "packaging": "film,plastique", + "informers_tags": [ + "tacinte", + "tacite-mass-editor", + "teolemon", + "syl44" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive-vierge-extra", + "jambon-cuit-standard-29", + "jambon-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "stabilisant", + "e451", + "gelifiant", + "e407", + "lactose", + "arome-naturel-de-porc", + "bouillon-de-porc", + "conservateurs", + "e316", + "e250", + "ferments", + "emmental-22", + "mozzarella", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/ingredients_fr.14.200.jpg", + "ingredients": [ + { + "rank": 1, + "text": "Garniture", + "id": "fr:garniture", + "percent": "59" + }, + { + "text": "eau", + "rank": 2, + "id": "en:water" + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_", + "rank": 3 + }, + { + "id": "en:salt", + "rank": 4, + "text": "sel" + }, + { + "id": "en:extra-virgin-olive-oil", + "rank": 5, + "text": "huile d'olive vierge extra" + }, + { + "text": "jambon cuit standard", + "rank": 6, + "percent": "29", + "id": "fr:jambon-cuit-standard" + }, + { + "text": "_emmental_", + "rank": 7, + "percent": "22", + "id": "fr:emmental" + }, + { + "text": "_mozzarella_", + "rank": 8, + "id": "fr:mozzarella" + }, + { + "id": "fr:olives-noires-avec-noyau", + "text": "olives noires avec noyau", + "rank": 9 + }, + { + "text": "basilic et origan", + "rank": 10, + "id": "fr:basilic et origan" + }, + { + "rank": 11, + "text": "Pâte", + "percent": "41", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "rank": 12, + "text": "farine de _blé_" + }, + { + "id": "en:water", + "rank": 13, + "text": "eau" + }, + { + "id": "fr:levure-boulangere", + "text": "levure boulangère", + "rank": 14 + }, + { + "id": "en:salt", + "text": "sel", + "rank": 15 + }, + { + "text": "sauce tomate", + "id": "fr:sauce-tomate" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "id": "fr:jambon-de-porc", + "text": "jambon de porc" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "id": "fr:e451", + "text": "E451" + }, + { + "id": "en:gelling-agent", + "text": "gélifiant" + }, + { + "text": "E407", + "id": "fr:e407" + }, + { + "id": "en:lactose", + "text": "_lactose_" + }, + { + "text": "arôme naturel de porc", + "id": "fr:arome-naturel-de-porc" + }, + { + "id": "fr:bouillon-de-porc", + "text": "bouillon de porc" + }, + { + "text": "conservateurs", + "id": "en:preservative" + }, + { + "id": "fr:e316", + "text": "E316" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "id": "fr:ferment", + "text": "ferments" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "origins_tags": [], + "last_modified_by": "syl44", + "cities_tags": [], + "ingredients_n_tags": [ + "35", + "31-40" + ], + "allergens_from_ingredients": "blé, lactose, emmental, mozzarella, blé", + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 4160, + "w": 3120 + } + }, + "uploaded_t": "1474910936", + "uploader": "tacinte" + }, + "2": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3120, + "h": 4160 + } + }, + "uploader": "tacinte", + "uploaded_t": "1474910939" + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3120, + "h": 4160 + } + }, + "uploaded_t": "1474910946", + "uploader": "tacinte" + }, + "front_fr": { + "normalize": "true", + "x2": "294.75", + "x1": "16.75", + "y2": "326.8125", + "geometry": "2891x2849-174-549", + "imgid": "2", + "white_magic": "false", + "rev": "13", + "sizes": { + "100": { + "w": "100", + "h": "99" + }, + "200": { + "h": 197, + "w": 200 + }, + "400": { + "h": 394, + "w": 400 + }, + "full": { + "h": 2849, + "w": 2891 + } + }, + "angle": "0", + "y1": "52.8125" + }, + "nutrition_fr": { + "rev": "15", + "sizes": { + "100": { + "h": 45, + "w": 100 + }, + "200": { + "h": 91, + "w": 200 + }, + "400": { + "w": 400, + "h": 181 + }, + "full": { + "h": 593, + "w": 1310 + } + }, + "angle": "0", + "y1": "195.8125", + "normalize": "true", + "x2": "165.75", + "x1": "39.75", + "y2": "252.8125", + "white_magic": "false", + "geometry": "1310x593-413-2036", + "imgid": "3" + }, + "ingredients_fr": { + "normalize": "true", + "x2": "189.75", + "y2": "190.8125", + "x1": "43.75", + "white_magic": "false", + "imgid": "3", + "geometry": "1518x478-455-1506", + "sizes": { + "100": { + "h": 31, + "w": 100 + }, + "200": { + "h": 63, + "w": 200 + }, + "400": { + "h": 126, + "w": 400 + }, + "full": { + "h": 478, + "w": 1518 + } + }, + "rev": "14", + "angle": "0", + "y1": "144.8125" + } + }, + "serving_size_debug_tags": [], + "ingredients_text_debug": "Garniture 59%: sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive vierge extra), jambon cuit standard 29% (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : - e451 - , gélifiant : - e407 - , _lactose_, arôme naturel de porc, bouillon de porc, conservateurs : - e316 - , - e250 - , ferments), _emmental_ 22%, _mozzarella_, olives noires avec noyau (stabilisant : - e579 - ), basilic et origan. \r\nPâte 41%: farine de _blé_, eau, levure boulangère, sel", + "ingredients_from_palm_oil_n": 0, + "ingredients_n": 35, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:extra-virgin-olive-oil", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "fr:arome-naturel-de-porc", + "fr:bouillon-de-porc", + "en:preservative", + "fr:e316", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:fresh-meals", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530544127, + "categories": "Frais,Plats préparés,Pizzas tartes salées et quiches,Plats préparés frais,Pizzas,Pizzas jambon-fromage", + "manufacturing_places_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:fresh-meals", + "en:pizzas", + "en:pizza-with-ham-and-cheese" + ], + "nutriments": { + "fiber_unit": "g", + "saturated-fat_serving": 5.97, + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "nutrition-score-fr_100g": "9", + "sugars_serving": 3.3, + "fat_100g": 6.2, + "energy": "866", + "nova-group_100g": 4, + "proteins_value": "11", + "proteins": "11", + "salt_serving": 2.51, + "carbohydrates_100g": "26", + "proteins_100g": "11", + "fat_unit": "g", + "nutrition-score-uk_100g": "9", + "fiber_value": "2.4", + "energy_100g": "866", + "sodium_100g": 0.62992125984252, + "saturated-fat_100g": 3.8, + "fat_value": "6.2", + "sodium_serving": 0.989, + "fiber_100g": 2.4, + "carbohydrates": "26", + "sodium": 0.62992125984252, + "salt_100g": 1.6, + "salt_unit": "g", + "energy_serving": "1360", + "salt_value": "1.6", + "fiber": 2.4, + "sugars_100g": 2.1, + "saturated-fat": 3.8, + "sodium_value": "0.6299212598425197", + "sugars": 2.1, + "saturated-fat_value": "3.8", + "proteins_unit": "g", + "salt": 1.6, + "fat": 6.2, + "energy_value": "207", + "nutrition-score-uk": "9", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "fiber_serving": 3.77, + "carbohydrates_value": "26", + "nutrition-score-fr": "9", + "sugars_unit": "g", + "proteins_serving": 17.3, + "fat_serving": 9.73, + "sugars_value": "2.1", + "carbohydrates_unit": "g", + "carbohydrates_serving": 40.8 + }, + "last_editor": "syl44", + "creator": "tacinte", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-nutriscore-experiment", + "added-en-2016-nutrition-labelling-experiment", + "removed-fr-experimentation-etiquetage-nutritionnel-2016", + "removed-fr-experimentation-nutriscore" + ], + "purchase_places": "Paris,Maison-Laffitte", + "additives_n": 5, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_prev_n": 5, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "allergens": "Gluten,Lait, blé, lactose, emmental, mozzarella, blé", + "completed_t": 1475333821, + "last_image_dates_tags": [ + "2016-09-29", + "2016-09", + "2016" + ], + "link_debug_tags": [], + "languages": { + "en:french": 5 + }, + "editors_tags": [ + "tacinte", + "tacite-mass-editor", + "teolemon", + "syl44" + ], + "categories_tags": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:fresh-meals", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-tartes-salees-et-quiches" + ], + "scans_n": 1, + "code": "3242272500261", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "labels_tags": [ + "en:nutriscore-experiment", + "en:2016-nutrition-labelling-experiment", + "fr:experimentation-nutriscore-0" + ], + "ingredients_debug": [ + "Garniture 59%", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive vierge extra)", + ",", + null, + null, + null, + " jambon cuit standard 29% ", + "(", + "(", + null, + null, + "jambon de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e407", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " _lactose_", + ",", + null, + null, + null, + " arôme naturel de porc", + ",", + null, + null, + null, + " bouillon de porc", + ",", + null, + null, + null, + " conservateurs ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " _emmental_ 22%", + ",", + null, + null, + null, + " _mozzarella_", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan", + ". ", + null, + null, + null, + "\r\nPâte 41%", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel" + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "tacinte" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/0261/front_fr.13.400.jpg", + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces": "", + "brands_debug_tags": [] + }, + { + "additives_prev_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e579" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331 sel, colorant : extrait de paprika), raclette 7% (colorant : E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 41 % : farine de blé, eau, levure boulangère, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 59% : fromages [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331 sel, colorant : extrait de paprika), raclette 7% (colorant : E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 41 % : farine de blé, eau, levure boulangère, sel.", + "vitamins_tags": [], + "ingredients_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331-sel", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272501565", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "serving_size": "", + "interface_version_created": "20150316.jqm2", + "product_quantity": 470, + "origins": "", + "labels_hierarchy": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.100.jpg", + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "nova_group_debug": " -- ingredients/en:preservative : 3 -- additives/en:e14xx : 4", + "created_t": 1506154759, + "languages_tags": [ + "en:french", + "en:1" + ], + "lang": "fr", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.400.jpg", + "no_nutrition_data": "", + "images": { + "1": { + "uploaded_t": "1506154760", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1021, + "h": 1360 + } + } + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1506154761", + "sizes": { + "100": { + "w": 42, + "h": 100 + }, + "400": { + "w": 167, + "h": 400 + }, + "full": { + "h": 2984, + "w": 1247 + } + } + }, + "front_fr": { + "y1": null, + "angle": null, + "rev": "4", + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1021, + "h": 1360 + } + }, + "imgid": "1", + "white_magic": "0", + "geometry": "0x0-0-0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0" + }, + "ingredients_fr": { + "y1": "14.433334350585955", + "angle": "270", + "sizes": { + "100": { + "h": 35, + "w": 100 + }, + "200": { + "h": 71, + "w": 200 + }, + "400": { + "h": 142, + "w": 400 + }, + "full": { + "h": 889, + "w": 2507 + } + }, + "rev": "8", + "geometry": "2507x889-333-107", + "white_magic": "false", + "imgid": "2", + "y2": "133.433334350586", + "x1": "44.75000000000001", + "x2": "380.75000000000006", + "normalize": "false" + } + }, + "traces_tags": [], + "serving_size_debug_tags": [], + "additives_prev_tags": [ + "en:e14xx", + "en:e160b", + "en:e160c", + "en:e235", + "en:e331", + "en:e579" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "syl44", + "ingredients_n_tags": [ + "36", + "31-40" + ], + "ingredients": [ + { + "percent": "59", + "id": "fr:garniture", + "text": "Garniture", + "rank": 1 + }, + { + "rank": 2, + "text": "mozzarella", + "id": "fr:mozzarella", + "percent": "20" + }, + { + "id": "fr:cheddar-fondu", + "percent": "10", + "text": "cheddar fondu", + "rank": 3 + }, + { + "percent": "7", + "id": "fr:raclette", + "rank": 4, + "text": "raclette" + }, + { + "rank": 5, + "text": "sauce tomate", + "id": "fr:sauce-tomate" + }, + { + "id": "fr:olives-noires-avec-noyau", + "percent": "3", + "text": "olives noires avec noyau", + "rank": 6 + }, + { + "id": "fr:basilic et origan", + "text": "basilic et origan", + "rank": 7 + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "rank": 8, + "text": "Pourcentages exprimés sur la garniture" + }, + { + "percent": "41", + "id": "en:paste", + "text": "Pâte", + "rank": 9 + }, + { + "text": "farine de _blé_", + "rank": 10, + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "text": "eau", + "rank": 11 + }, + { + "rank": 12, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "rank": 13, + "text": "sel", + "id": "en:salt" + }, + { + "text": "_fromages_", + "id": "fr:fromage" + }, + { + "percent": "21", + "id": "fr:emmental", + "text": "emmental" + }, + { + "id": "en:cheddar", + "text": "cheddar" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "fr:amidon-modifie-de-pomme-de-terre", + "text": "amidon modifié de pomme de terre" + }, + { + "text": "beurre", + "id": "en:butter" + }, + { + "text": "protéines de lait", + "id": "en:milk-protein" + }, + { + "id": "fr:sel-de-fonte", + "text": "sels de fonte" + }, + { + "id": "fr:E331 sel", + "text": "E331 sel" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "id": "en:paprika-extract", + "text": "extrait de paprika" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "id": "fr:e160b", + "text": "E160b" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "id": "fr:natamycine", + "text": "E235" + }, + { + "text": "purée de tomate", + "id": "fr:puree-de-tomate" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "huile d'olive", + "id": "en:olive-oil" + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "ingredients_ids_debug": [ + "garniture-59", + "fromages", + "emmental-21", + "mozzarella-20", + "cheddar-fondu-10", + "cheddar", + "eau", + "amidon-modifie-de-pomme-de-terre", + "beurre", + "proteines-de-lait", + "sels-de-fonte", + "e331", + "sel", + "colorant", + "extrait-de-paprika", + "raclette-7", + "colorant", + "e160b", + "conservateur", + "e235", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "olives-noires-avec-noyau-3", + "stabilisant", + "e579", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.200.jpg", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "informers_tags": [ + "kiliweb", + "segundo", + "syl44" + ], + "packaging": "", + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_prev_n": 6, + "purchase_places_debug_tags": [], + "additives_n": 6, + "last_editor": "syl44", + "nutrition_data_prepared_per_debug_tags": [], + "creator": "kiliweb", + "labels_debug_tags": [], + "purchase_places": "", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "complete": 0, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "nutriments": { + "energy_serving": "", + "saturated-fat": "6", + "sugars_100g": 1.9, + "salt_value": "1.3", + "fiber": 2.3, + "salt_100g": 1.3, + "fiber_100g": 2.3, + "sodium": 0.511811023622047, + "carbohydrates": "26", + "salt_unit": "g", + "salt": 1.3, + "saturated-fat_value": "6", + "proteins_unit": "g", + "energy_value": "243", + "fat": 9.5, + "sodium_value": "0.5118110236220472", + "sugars": 1.9, + "proteins_serving": "", + "nutrition-score-fr": "11", + "sugars_unit": "g", + "energy_unit": "kcal", + "saturated-fat_unit": "g", + "nutrition-score-uk": "11", + "carbohydrates_value": "26", + "fiber_serving": "", + "sugars_value": "1.9", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "fat_serving": "", + "nutrition-score-fr_100g": "11", + "sugars_serving": "", + "saturated-fat_serving": "", + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "proteins_value": "13", + "proteins": "13", + "energy": "1017", + "fat_100g": 9.5, + "nova-group_100g": 4, + "carbohydrates_100g": "26", + "proteins_100g": "13", + "salt_serving": "", + "nutrition-score-uk_100g": "11", + "fat_unit": "g", + "sodium_100g": 0.511811023622047, + "saturated-fat_100g": "6", + "sodium_serving": "", + "fat_value": "9.5", + "fiber_value": "2.3", + "energy_100g": "1017" + }, + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530543742, + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas aux quatre fromages", + "ingredients_n": 36, + "ingredients_original_tags": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "fr:E331 sel", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "en:stabiliser", + "fr:e579" + ], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 59% : _fromages_ [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : - e331 - sel, colorant : extrait de paprika), raclette 7% (colorant : - e160b - , conservateur : - e235 - )], sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : - e579 - ), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 41 % : farine de _blé_, eau, levure boulangère, sel.", + "traces": "", + "brands_debug_tags": [], + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "labels_tags": [], + "ingredients_debug": [ + "Garniture 59% ", + ":", + ":", + null, + null, + " _fromages_ ", + "[", + "[", + null, + null, + "emmental 21%", + ",", + null, + null, + null, + " mozzarella 20%", + ",", + null, + null, + null, + " cheddar fondu 10% ", + "(", + "(", + null, + null, + "cheddar", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " amidon modifié de pomme de terre", + ",", + null, + null, + null, + " beurre", + ",", + null, + null, + null, + " protéines de lait", + ",", + null, + null, + null, + " sels de fonte ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e331", + " - ", + " - ", + " - ", + null, + "sel", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " extrait de paprika)", + ",", + null, + null, + null, + " raclette 7% ", + "(", + "(", + null, + null, + "colorant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e160b", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e235", + " - ", + " - ", + " - ", + null, + ")]", + ",", + null, + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " olives noires avec noyau 3% ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan", + ". ", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ".\r", + null, + null, + null, + "\nPâte 41 % ", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "code": "3242272501565", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "link_debug_tags": [], + "languages": { + "en:french": 4 + }, + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "syl44", + "segundo" + ], + "allergens": "Gluten,Lait, fromages, blé, blé, cheddar, beurre, protéines de lait", + "last_image_dates_tags": [ + "2017-09-23", + "2017-09", + "2017" + ], + "labels_prev_hierarchy": [], + "stores_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.200.jpg", + "stores_debug_tags": [], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "_keywords": [ + "fromage", + "la", + "pizz", + "tarte", + "aux", + "pizza", + "quiche", + "et", + "sodebo", + "quatre", + "plat", + "salee", + "prepare" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "stores": "", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "id": "3242272501565", + "rev": 10, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e1403", + "en:e579" + ], + "generic_name": "", + "additives_tags": [ + "en:e14xx", + "en:e160b", + "en:e160c", + "en:e235", + "en:e331", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "saturated-fat": "high", + "fat": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "lc": "fr", + "product_name": "La Pizz", + "countries_debug_tags": [], + "checkers_tags": [], + "brands": "Sodebo", + "amino_acids_prev_tags": [], + "quantity": "470 g", + "emb_codes_tags": [], + "ingredients_text": "Garniture 59% : _fromages_ [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331 sel, colorant : extrait de paprika), raclette 7% (colorant : E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 41 % : farine de _blé_, eau, levure boulangère, sel.", + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1565/ingredients_fr.8.100.jpg" + } + } + }, + "ingredients_text_fr": "Garniture 59% : _fromages_ [emmental 21%, mozzarella 20%, cheddar fondu 10% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331 sel, colorant : extrait de paprika), raclette 7% (colorant : E160b, conservateur : E235)], sauce tomate (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), olives noires avec noyau 3% (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 41 % : farine de _blé_, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "lang_debug_tags": [], + "sortkey": 530543742, + "packaging_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "product_name_fr": "La Pizz", + "purchase_places_tags": [], + "labels": "", + "pnns_groups_1": "Composite foods", + "ingredients_text_debug_tags": [], + "entry_dates_tags": [ + "2017-09-23", + "2017-09", + "2017" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242272501565/la-pizz-sodebo", + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "", + "serving_quantity": 0, + "nutrition_grades": "d", + "labels_prev_tags": [], + "codes_tags": [ + "code-13", + "3242272501565", + "324227250156x", + "32422725015xx", + "3242272501xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "correctors_tags": [ + "openfoodfacts-contributors", + "segundo", + "syl44" + ], + "languages_codes": { + "fr": 4 + }, + "nutrition_grade_fr": "d", + "brands_tags": [ + "sodebo" + ], + "nutrition_grades_tags": [ + "d" + ], + "link": "", + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "unknown_ingredients_n": 3, + "unknown_nutrients_tags": [], + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "2", + "emb_codes_orig": "", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1565/front_fr.4.200.jpg", + "generic_name_fr": "", + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:mozzarella", + "fr:cheddar-fondu", + "fr:raclette", + "fr:sauce-tomate", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:emmental", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:E331 sel", + "en:colour", + "en:paprika-extract", + "en:colour", + "fr:e160b", + "en:preservative", + "fr:natamycine", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "en:stabiliser", + "fr:e579" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1506154761, + "additives_old_n": 7, + "additives_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c", + "en:e160b", + "en:e235", + "en:e579" + ], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_debug_tags": [] + }, + { + "nutrition_data_prepared_per": "100g", + "generic_name": "", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e14xx", + "en:e160c", + "en:e331" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.400.jpg", + "additives_old_tags": [ + "en:e14xx", + "en:e331", + "en:e160c" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "", + "nutrition_score_debug": " -- energy 2 + sat-fat 5 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 10 -- fr 10", + "_keywords": [ + "aux", + "pizza", + "fromage", + "tarte", + "plat", + "salee", + "troi", + "prepare", + "quiche", + "et", + "sodebo" + ], + "rev": 10, + "id": "3242273205660", + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.200.jpg", + "stores_debug_tags": [], + "labels_prev_hierarchy": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242273205660/pizza-3-fromages-sodebo", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2017-07-08", + "2017-07", + "2017" + ], + "pnns_groups_1": "Composite foods", + "labels": "", + "ingredients_text_debug_tags": [], + "packaging_tags": [], + "update_key": "nova3", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.100.jpg", + "interface_version_modified": "20120622", + "product_name_fr": "Pizza 3 fromages", + "purchase_places_tags": [], + "ingredients_text_fr": "Garniture 57% : _fromages_ (mozzarella 27%, emmental 16%, cheddar fondu 13% (cheddar, eau, amidon modifié de pomme de terre, _beurre_, protéines de _lait_, sels de fonte : E331, sel, colorant : extrait de paprika), sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 43% : farine de _blé_, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "lang_debug_tags": [], + "sortkey": 530543695, + "emb_codes_tags": [], + "ingredients_text": "Garniture 57% : _fromages_ (mozzarella 27%, emmental 16%, cheddar fondu 13% (cheddar, eau, amidon modifié de pomme de terre, _beurre_, protéines de _lait_, sels de fonte : E331, sel, colorant : extrait de paprika), sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 43% : farine de _blé_, eau, levure boulangère, sel.", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.200.jpg" + } + } + }, + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Sodebo", + "amino_acids_prev_tags": [], + "quantity": "200 g", + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "high" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "product_name": "Pizza 3 fromages", + "lc": "fr", + "link": "", + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "nutrition_grade_fr": "c", + "brands_tags": [ + "sodebo" + ], + "languages_codes": { + "fr": 4 + }, + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242273205660", + "324227320566x", + "32422732056xx", + "3242273205xxx", + "324227320xxxx", + "32422732xxxxx", + "3242273xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "segundo", + "syl44" + ], + "serving_quantity": 0, + "nutrition_grades": "c", + "labels_prev_tags": [], + "emb_codes": "", + "expiration_date": "", + "minerals_prev_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutrition_data": "on", + "additives_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c" + ], + "additives_debug_tags": [], + "last_image_t": 1499538994, + "additives_old_n": 3, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:emmental", + "fr:cheddar-fondu", + "fr:sauce tomate à l'huile d'olive", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:mozzarella", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch" + ], + "generic_name_fr": "", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.200.jpg", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "2", + "emb_codes_orig": "", + "unknown_ingredients_n": 3, + "unknown_nutrients_tags": [], + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.400.jpg", + "lang": "fr", + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "created_t": 1499538984, + "nova_group_debug": " -- ingredients/en:salt : 3 -- additives/en:e14xx : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "origins": "", + "labels_hierarchy": [], + "manufacturing_places": "", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.100.jpg", + "ingredients_tags": [ + "fr:garniture", + "fr:emmental", + "fr:cheddar-fondu", + "fr:sauce-tomate-a-l-huile-d-olive", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:mozzarella", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:potato-starch", + "en:modified-starch", + "en:starch", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "en:salt", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch" + ], + "_id": "3242273205660", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:three-cheese-pizza" + ], + "interface_version_created": "20150316.jqm2", + "serving_size": "", + "product_quantity": 200, + "vitamins_tags": [], + "packaging_debug_tags": [], + "amino_acids_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 57% : fromages (mozzarella 27%, emmental 16%, cheddar fondu 13% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331, sel, colorant : extrait de paprika), sauce tomate à l'huile d'olive (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 43% : farine de blé, eau, levure boulangère, sel.", + "additives_prev_original_tags": [ + "en:e14xx", + "en:e331", + "en:e160c" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 57% : fromages (mozzarella 27%, emmental 16%, cheddar fondu 13% (cheddar, eau, amidon modifié de pomme de terre, beurre, protéines de lait, sels de fonte : E331, sel, colorant : extrait de paprika), sauce tomate à l'huile d'olive (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 43% : farine de blé, eau, levure boulangère, sel.", + "packaging": "", + "informers_tags": [ + "kiliweb", + "segundo", + "syl44" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "garniture-57", + "fromages", + "mozzarella-27", + "emmental-16", + "cheddar-fondu-13", + "cheddar", + "eau", + "amidon-modifie-de-pomme-de-terre", + "beurre", + "proteines-de-lait", + "sels-de-fonte", + "e331", + "sel", + "colorant", + "extrait-de-paprika", + "sauce-tomate-a-l-huile-d-olive", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-43", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/ingredients_fr.8.200.jpg", + "ingredients": [ + { + "text": "Garniture", + "rank": 1, + "percent": "57", + "id": "fr:garniture" + }, + { + "percent": "16", + "id": "fr:emmental", + "rank": 2, + "text": "emmental" + }, + { + "percent": "13", + "id": "fr:cheddar-fondu", + "text": "cheddar fondu", + "rank": 3 + }, + { + "id": "fr:sauce tomate à l'huile d'olive", + "rank": 4, + "text": "sauce tomate à l'huile d'olive" + }, + { + "rank": 5, + "text": "basilic et origan", + "id": "fr:basilic et origan" + }, + { + "rank": 6, + "text": "Pourcentages exprimés sur la garniture", + "id": "fr:Pourcentages exprimés sur la garniture" + }, + { + "percent": "43", + "id": "en:paste", + "rank": 7, + "text": "Pâte" + }, + { + "rank": 8, + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "text": "eau", + "rank": 9 + }, + { + "id": "fr:levure-boulangere", + "rank": 10, + "text": "levure boulangère" + }, + { + "text": "sel", + "rank": 11, + "id": "en:salt" + }, + { + "id": "fr:fromage", + "text": "_fromages_" + }, + { + "percent": "27", + "id": "fr:mozzarella", + "text": "mozzarella" + }, + { + "text": "cheddar", + "id": "en:cheddar" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "amidon modifié de pomme de terre", + "id": "fr:amidon-modifie-de-pomme-de-terre" + }, + { + "text": "_beurre_", + "id": "en:butter" + }, + { + "text": "protéines de _lait_", + "id": "en:milk-protein" + }, + { + "id": "fr:sel-de-fonte", + "text": "sels de fonte" + }, + { + "id": "fr:e331", + "text": "E331" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "id": "en:paprika-extract", + "text": "extrait de paprika" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "en:olive-oil", + "text": "huile d'olive" + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs" + } + ], + "origins_tags": [], + "cities_tags": [], + "last_modified_by": "syl44", + "ingredients_n_tags": [ + "29", + "21-30" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e14xx", + "en:e160c", + "en:e331" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1020, + "h": 1360 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1499538985" + }, + "2": { + "uploaded_t": "1499538993", + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "ingredients_fr": { + "y2": "257.93333435058594", + "x1": "-4.25", + "normalize": "false", + "x2": "251.75", + "geometry": "2088x1028--34-1076", + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "h": 50, + "w": 100 + }, + "200": { + "w": 200, + "h": 100 + }, + "400": { + "w": 400, + "h": 200 + }, + "full": { + "w": 2054, + "h": 1028 + } + }, + "rev": "8", + "y1": "131.93333435058594", + "angle": "0" + }, + "front_fr": { + "angle": null, + "y1": null, + "rev": "4", + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1020, + "h": 1360 + } + }, + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "1", + "x2": null, + "normalize": "0", + "x1": null, + "y2": null + } + }, + "traces_tags": [], + "serving_size_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 57% : _fromages_ (mozzarella 27%, emmental 16%, cheddar fondu 13% (cheddar, eau, amidon modifié de pomme de terre, _beurre_, protéines de _lait_, sels de fonte : - e331 - , sel, colorant : extrait de paprika), sauce tomate à l'huile d'olive (purée de tomate, eau, farine de _blé_, sel, huile d'olive, amidon de maïs), basilic et origan. Pourcentages exprimés sur la garniture.\r\nPâte 43% : farine de _blé_, eau, levure boulangère, sel.", + "ingredients_n": 29, + "ingredients_original_tags": [ + "fr:garniture", + "fr:emmental", + "fr:cheddar-fondu", + "fr:sauce tomate à l'huile d'olive", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:fromage", + "fr:mozzarella", + "en:cheddar", + "en:water", + "fr:amidon-modifie-de-pomme-de-terre", + "en:butter", + "en:milk-protein", + "fr:sel-de-fonte", + "fr:e331", + "en:salt", + "en:colour", + "en:paprika-extract", + "fr:puree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch" + ], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530543695, + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas aux trois fromages", + "manufacturing_places_tags": [], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "complete": 0, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:three-cheese-pizza" + ], + "nutriments": { + "sugars": 2.3, + "sodium_value": "0.511811023622047", + "energy_value": "239", + "fat": 8.9, + "saturated-fat_value": "5.3", + "proteins_unit": "g", + "salt": 1.3, + "salt_unit": "g", + "fiber_100g": 2.4, + "carbohydrates": "27", + "sodium": 0.511811023622047, + "salt_100g": 1.3, + "fiber": 2.4, + "sugars_100g": 2.3, + "salt_value": "1.3", + "saturated-fat": 5.3, + "energy_serving": "", + "fat_serving": "", + "carbohydrates_serving": "", + "sugars_value": "2.3", + "carbohydrates_unit": "g", + "fiber_serving": "", + "carbohydrates_value": "27", + "nutrition-score-uk": "10", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "sugars_unit": "g", + "nutrition-score-fr": "10", + "proteins_serving": "", + "nova-group_100g": 4, + "fat_100g": 8.9, + "energy": "1000", + "proteins": "11", + "proteins_value": "11", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_unit": "g", + "fiber_unit": "g", + "saturated-fat_serving": "", + "sugars_serving": "", + "nutrition-score-fr_100g": "10", + "energy_100g": "1000", + "fiber_value": "2.4", + "fat_value": "8.9", + "sodium_serving": "", + "saturated-fat_100g": 5.3, + "sodium_100g": 0.511811023622047, + "fat_unit": "g", + "nutrition-score-uk_100g": "10", + "salt_serving": "", + "proteins_100g": "11", + "carbohydrates_100g": "27" + }, + "last_editor": "syl44", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "creator": "kiliweb", + "purchase_places": "", + "additives_n": 3, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 3, + "purchase_places_debug_tags": [], + "allergens": "Gluten,Lait, fromages, beurre, lait, blé, blé, cheddar", + "last_image_dates_tags": [ + "2017-07-08", + "2017-07", + "2017" + ], + "link_debug_tags": [], + "languages": { + "en:french": 4 + }, + "editors_tags": [ + "kiliweb", + "syl44", + "segundo", + "openfoodfacts-contributors" + ], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:three-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "code": "3242273205660", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "labels_tags": [], + "ingredients_debug": [ + "Garniture 57% ", + ":", + ":", + null, + null, + " _fromages_ ", + "(", + "(", + null, + null, + "mozzarella 27%", + ",", + null, + null, + null, + " emmental 16%", + ",", + null, + null, + null, + " cheddar fondu 13% ", + "(", + "(", + null, + null, + "cheddar", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " amidon modifié de pomme de terre", + ",", + null, + null, + null, + " _beurre_", + ",", + null, + null, + null, + " protéines de _lait_", + ",", + null, + null, + null, + " sels de fonte ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e331", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " extrait de paprika)", + ",", + null, + null, + null, + " sauce tomate à l'huile d'olive ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " basilic et origan", + ". ", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ".\r", + null, + null, + null, + "\nPâte 43% ", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "kiliweb" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/320/5660/front_fr.4.400.jpg", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "traces": "", + "brands_debug_tags": [] + }, + { + "labels_prev_tags": [], + "serving_quantity": 0, + "nutrition_grades": "d", + "correctors_tags": [ + "openfoodfacts-contributors", + "asmoth", + "syl44" + ], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3242272503767", + "324227250376x", + "32422725037xx", + "3242272503xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "nutrition_grades_tags": [ + "d" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "languages_codes": { + "fr": 5 + }, + "brands_tags": [ + "sodebo" + ], + "nutrition_grade_fr": "d", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [], + "generic_name_fr": "Pizza pâte fine garnie de chorizo cuit", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 6, + "emb_codes_orig": "", + "max_imgid": "2", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "additives_debug_tags": [], + "additives_original_tags": [ + "en:e160c", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "ingredients_hierarchy": [ + "fr:PIZZA PATE FINE GARNIE DE CHORIZO CUIT", + "fr:garniture", + "fr:sauce tons urée de tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:chorizo cuit", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "en:pork-meat", + "en:meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "fr:sirop de gTücose", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "fr:stabilisant E451", + "en:natural-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "last_image_t": 1516479199, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 6, + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.200.jpg", + "stores_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "quantity-not-recognized" + ], + "labels_prev_hierarchy": [], + "additives_tags": [ + "en:e160c", + "en:e250", + "en:e316", + "en:e451", + "en:e579" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "generic_name": "Pizza pâte fine garnie de chorizo cuit", + "nutrition_data_prepared_per": "100g", + "id": "3242272503767", + "rev": 11, + "stores": "", + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 7 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 12 -- fr 12", + "_keywords": [ + "prepare", + "au", + "plat", + "salee", + "cuit", + "et", + "garnie", + "sodebo", + "fine", + "quiche", + "pate", + "de", + "chorizo", + "pizza", + "tarte" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e160c", + "en:e1403", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.400.jpg" + } + } + }, + "ingredients_text": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT • Garniture 59% : sauce tons urée de tomate, eau, farine de blé, sel, huile d'olive, amidon de mais), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de gTücose, plantes aromatiques, colorant : extrait de paprika, stabilisant E451 , arômes naturels, antioxydant : E316, conservateur: E250, ferments), mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.", + "emb_codes_tags": [], + "sortkey": 530543600, + "lang_debug_tags": [], + "ingredients_text_fr": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT • Garniture 59% : sauce tons urée de tomate, eau, farine de blé, sel, huile d'olive, amidon de mais), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de gTücose, plantes aromatiques, colorant : extrait de paprika, stabilisant E451 , arômes naturels, antioxydant : E316, conservateur: E250, ferments), mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.", + "nutrition_data_prepared": "", + "lc": "fr", + "product_name": "pizza chorizo", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "nutrient_levels": { + "sugars": "low", + "fat": "moderate", + "saturated-fat": "high", + "salt": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "quantity": "", + "amino_acids_prev_tags": [], + "brands": "Sodebo", + "checkers_tags": [], + "countries_debug_tags": [], + "entry_dates_tags": [ + "2018-01-20", + "2018-01", + "2018" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/3242272503767/pizza-chorizo-sodebo", + "purchase_places_tags": [], + "product_name_fr": "pizza chorizo", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "packaging_tags": [], + "ingredients_text_debug_tags": [], + "pnns_groups_1": "Composite foods", + "labels": "", + "purchase_places": "", + "labels_debug_tags": [], + "creator": "kiliweb", + "nutrition_data_prepared_per_debug_tags": [], + "last_editor": "syl44", + "nutriments": { + "proteins_value": "11", + "proteins": "11", + "energy": "1033", + "fat_100g": "11", + "nova-group_100g": 4, + "nutrition-score-fr_100g": "12", + "sugars_serving": "", + "saturated-fat_serving": "", + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "sodium_100g": 0.551181102362205, + "saturated-fat_100g": 5.6, + "sodium_serving": "", + "fat_value": "11", + "fiber_value": "2", + "energy_100g": "1033", + "carbohydrates_100g": "26", + "proteins_100g": "11", + "salt_serving": "", + "nutrition-score-uk_100g": "12", + "fat_unit": "g", + "salt": 1.4, + "saturated-fat_value": "5.6", + "proteins_unit": "g", + "fat": "11", + "energy_value": "247", + "sodium_value": "0.551181102362205", + "sugars": 3.3, + "energy_serving": "", + "saturated-fat": 5.6, + "fiber": "2", + "sugars_100g": 3.3, + "salt_value": "1.4", + "salt_100g": 1.4, + "fiber_100g": "2", + "carbohydrates": "26", + "sodium": 0.551181102362205, + "salt_unit": "g", + "sugars_value": "3.3", + "carbohydrates_unit": "g", + "carbohydrates_serving": "", + "fat_serving": "", + "proteins_serving": "", + "nutrition-score-fr": "12", + "sugars_unit": "g", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "nutrition-score-uk": "12", + "carbohydrates_value": "26", + "fiber_serving": "" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas" + ], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-to-be-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "purchase_places_debug_tags": [], + "additives_prev_n": 5, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_n": 5, + "ingredients_text_debug": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT • Garniture 59% : sauce tons urée de tomate, eau, farine de blé, sel, huile d'olive, amidon de mais), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de gTücose, plantes aromatiques, colorant : extrait de paprika, stabilisant : - e451 - , arômes naturels, antioxydant : - e316 - , conservateur : - e250 - , ferments), mozzarella, olives noires avec noyau (stabilisant : - e579 - ), basilic et origan.", + "ingredients_from_palm_oil_n": 0, + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au chorizo", + "last_modified_t": 1530543600, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [ + "fr:PIZZA PATE FINE GARNIE DE CHORIZO CUIT", + "fr:garniture", + "fr:sauce tons urée de tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:chorizo cuit", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "en:pork-meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "fr:sirop de gTücose", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "fr:stabilisant E451", + "en:natural-flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 31, + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "PIZZA PATE FINE GARNIE DE CHORIZO CUIT ", + "•", + "•", + null, + null, + " Garniture 59% ", + ":", + ":", + null, + null, + " sauce tons urée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " amidon de mais)", + ",", + null, + null, + null, + " chorizo cuit 26% ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " gras de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " piments", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sirop de gTücose", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " extrait de paprika", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + " ", + ",", + null, + null, + null, + " arômes naturels", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " mozzarella", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan." + ], + "labels_tags": [], + "brands_debug_tags": [], + "traces": "", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "editors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "asmoth", + "syl44" + ], + "languages": { + "en:french": 5 + }, + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-01-20", + "2018-01", + "2018" + ], + "allergens": "blé, lactose, mozzarella", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272503767", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "vitamins_tags": [], + "serving_size": "", + "interface_version_created": "20150316.jqm2", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:chorizo-pizzas" + ], + "_id": "3242272503767", + "ingredients_tags": [ + "fr:pizza-pate-fine-garnie-de-chorizo-cuit", + "fr:garniture", + "fr:sauce-tons-uree-de-tomate", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:chorizo-cuit", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "en:pork-meat", + "en:meat", + "fr:gras-de-porc", + "en:salt", + "fr:piment", + "en:lactose", + "en:dextrose", + "fr:sirop-de-gtucose", + "fr:plante-aromatique", + "en:colour", + "en:paprika-extract", + "fr:stabilisant-e451", + "en:natural-flavour", + "en:flavour", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT • Garniture 59% : sauce tons urée de tomate, eau, farine de blé, sel, huile d'olive, amidon de mais), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de gTücose, plantes aromatiques, colorant : extrait de paprika, stabilisant E451 , arômes naturels, antioxydant : E316, conservateur: E250, ferments), mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.100.jpg", + "additives_prev_original_tags": [ + "en:e160c", + "en:e451", + "en:e316", + "en:e250", + "en:e579" + ], + "ingredients_text_with_allergens_fr": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT • Garniture 59% : sauce tons urée de tomate, eau, farine de blé, sel, huile d'olive, amidon de mais), chorizo cuit 26% (viande de porc, gras de porc, sel, piments, lactose, dextrose, sirop de gTücose, plantes aromatiques, colorant : extrait de paprika, stabilisant E451 , arômes naturels, antioxydant : E316, conservateur: E250, ferments), mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/front_fr.8.100.jpg", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-to-be-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [], + "origins": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:preservative : 3 -- ingredients/en:flavour : 4", + "created_t": 1516479194, + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "ingredients_n_tags": [ + "31", + "31-40" + ], + "cities_tags": [], + "last_modified_by": "syl44", + "origins_tags": [], + "ingredients": [ + { + "id": "fr:PIZZA PATE FINE GARNIE DE CHORIZO CUIT", + "rank": 1, + "text": "PIZZA PATE FINE GARNIE DE CHORIZO CUIT" + }, + { + "rank": 2, + "text": "Garniture", + "id": "fr:garniture", + "percent": "59" + }, + { + "text": "sauce tons urée de tomate", + "rank": 3, + "id": "fr:sauce tons urée de tomate" + }, + { + "id": "en:water", + "rank": 4, + "text": "eau" + }, + { + "rank": 5, + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "rank": 6, + "text": "sel", + "id": "en:salt" + }, + { + "rank": 7, + "text": "huile d'olive", + "id": "en:olive-oil" + }, + { + "text": "amidon de mais", + "rank": 8, + "id": "en:corn-starch" + }, + { + "text": "chorizo cuit", + "rank": 9, + "id": "fr:chorizo cuit", + "percent": "26" + }, + { + "rank": 10, + "text": "mozzarella", + "id": "fr:mozzarella" + }, + { + "id": "fr:olives-noires-avec-noyau", + "rank": 11, + "text": "olives noires avec noyau" + }, + { + "text": "basilic et origan", + "rank": 12, + "id": "fr:basilic et origan" + }, + { + "id": "en:pork-meat", + "text": "viande de porc" + }, + { + "id": "fr:gras-de-porc", + "text": "gras de porc" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "piments", + "id": "fr:piment" + }, + { + "text": "lactose", + "id": "en:lactose" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "text": "sirop de gTücose", + "id": "fr:sirop de gTücose" + }, + { + "text": "plantes aromatiques", + "id": "fr:plante-aromatique" + }, + { + "id": "en:colour", + "text": "colorant" + }, + { + "text": "extrait de paprika", + "id": "en:paprika-extract" + }, + { + "text": "stabilisant E451", + "id": "fr:stabilisant E451" + }, + { + "id": "en:natural-flavour", + "text": "arômes naturels" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "text": "E316", + "id": "fr:e316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "id": "fr:ferment", + "text": "ferments" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "id": "fr:e579", + "text": "E579" + } + ], + "serving_size_debug_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1516479196", + "sizes": { + "100": { + "h": 100, + "w": 80 + }, + "400": { + "w": 319, + "h": 400 + }, + "full": { + "w": 1084, + "h": 1360 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 58, + "w": 100 + }, + "400": { + "h": 234, + "w": 400 + }, + "full": { + "h": 1696, + "w": 2903 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1516479199" + }, + "ingredients_fr": { + "rev": "7", + "sizes": { + "100": { + "w": 100, + "h": 58 + }, + "200": { + "h": 117, + "w": 200 + }, + "400": { + "h": 234, + "w": 400 + }, + "full": { + "h": 1696, + "w": 2903 + } + }, + "angle": null, + "y1": null, + "x2": null, + "normalize": "0", + "x1": null, + "y2": null, + "imgid": "2", + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "front_fr": { + "y1": "119.31666564941406", + "angle": "0", + "rev": "8", + "sizes": { + "100": { + "h": "67", + "w": "100" + }, + "200": { + "w": 200, + "h": 133 + }, + "400": { + "h": 266, + "w": 400 + }, + "full": { + "h": 721, + "w": 1084 + } + }, + "geometry": "1093x721--5-405", + "white_magic": "false", + "imgid": "1", + "x1": "-1.66668701171875", + "y2": "331.31666564941406", + "x2": "320.33331298828125", + "normalize": "false" + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [ + "en:e160c", + "en:e250", + "en:e316", + "en:e451", + "en:e579" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "", + "informers_tags": [ + "kiliweb", + "asmoth", + "syl44" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/3767/ingredients_fr.7.200.jpg", + "ingredients_ids_debug": [ + "pizza-pate-fine-garnie-de-chorizo-cuit", + "garniture-59", + "sauce-tons-uree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "chorizo-cuit-26", + "viande-de-porc", + "gras-de-porc", + "sel", + "piments", + "lactose", + "dextrose", + "sirop-de-gtucose", + "plantes-aromatiques", + "colorant", + "extrait-de-paprika", + "stabilisant", + "e451", + "aromes-naturels", + "antioxydant", + "e316", + "conservateur", + "e250", + "ferments", + "mozzarella", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ] + }, + { + "traces": "", + "brands_debug_tags": [], + "product_name_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.400.jpg", + "photographers_tags": [ + "actarus-75" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [], + "labels_tags": [], + "code": "3242272501169", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "editors_tags": [ + "xavi", + "syl44", + "actarus-75" + ], + "languages": { + "en:french": 5 + }, + "link_debug_tags": [], + "last_image_dates_tags": [ + "2017-03-08", + "2017-03", + "2017" + ], + "allergens": "", + "purchase_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places": "", + "labels_debug_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "creator": "actarus-75", + "last_editor": "syl44", + "nutriments": { + "sodium_value": "0.5118110236220472", + "sugars": 1.9, + "saturated-fat_value": "6", + "proteins_unit": "g", + "salt": 1.3, + "energy_value": "243", + "fat": 9.5, + "fiber_100g": 2.3, + "sodium": 0.511811023622047, + "carbohydrates": "26", + "salt_100g": 1.3, + "salt_unit": "g", + "energy_serving": "1600", + "sugars_100g": 1.9, + "fiber": 2.3, + "salt_value": "1.3", + "saturated-fat": "6", + "fat_serving": 14.9, + "carbohydrates_unit": "g", + "sugars_value": "1.9", + "carbohydrates_serving": 40.8, + "nutrition-score-uk": "11", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "fiber_serving": 3.61, + "carbohydrates_value": "26", + "sugars_unit": "g", + "nutrition-score-fr": "11", + "proteins_serving": 20.4, + "fat_100g": 9.5, + "energy": "1017", + "proteins_value": "13", + "proteins": "13", + "fiber_unit": "g", + "saturated-fat_serving": 9.42, + "sodium_unit": "g", + "nutrition-score-fr_100g": "11", + "sugars_serving": 2.98, + "fiber_value": "2.3", + "energy_100g": "1017", + "saturated-fat_100g": "6", + "sodium_100g": 0.511811023622047, + "fat_value": "9.5", + "sodium_serving": 0.804, + "carbohydrates_100g": "26", + "salt_serving": 2.04, + "proteins_100g": "13", + "fat_unit": "g", + "nutrition-score-uk_100g": "11" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places_tags": [], + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas aux quatre fromages", + "last_modified_t": 1530543412, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:four-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [], + "ingredients_text_debug": "", + "serving_size_debug_tags": [], + "images": { + "1": { + "uploader": "actarus-75", + "uploaded_t": "1489003707", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3024, + "h": 4032 + } + } + }, + "2": { + "uploaded_t": "1489003803", + "uploader": "actarus-75", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3024, + "h": 4032 + } + } + }, + "nutrition_fr": { + "y2": "330.8125", + "x1": "16.25", + "normalize": "false", + "x2": "284.25", + "geometry": "2702x1048-163-2286", + "imgid": "2", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 39 + }, + "200": { + "w": 200, + "h": 78 + }, + "400": { + "w": 400, + "h": 155 + }, + "full": { + "w": 2702, + "h": 1048 + } + }, + "rev": "8", + "y1": "226.8125", + "angle": "0" + }, + "front_fr": { + "sizes": { + "100": { + "w": "98", + "h": "100" + }, + "200": { + "w": 196, + "h": 200 + }, + "400": { + "w": 392, + "h": 400 + }, + "full": { + "w": 2954, + "h": 3014 + } + }, + "rev": "6", + "angle": "0", + "y1": "46.8125", + "normalize": "false", + "x2": "294.25", + "y2": "345.8125", + "x1": "1.25", + "geometry": "2954x3014-12-471", + "imgid": "1", + "white_magic": "false" + }, + "ingredients_fr": { + "y2": "216.8125", + "x1": "14.25", + "normalize": "false", + "x2": "283.25", + "geometry": "2712x978-143-1207", + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "h": 36, + "w": 100 + }, + "200": { + "h": 72, + "w": 200 + }, + "400": { + "h": 144, + "w": 400 + }, + "full": { + "w": 2712, + "h": 978 + } + }, + "rev": "7", + "y1": "119.8125", + "angle": "0" + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [], + "allergens_tags": [], + "nova_group_tags": [ + "not-applicable" + ], + "cities_tags": [], + "last_modified_by": "syl44", + "origins_tags": [], + "ingredients": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.200.jpg", + "ingredients_ids_debug": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "Frais,Sous atmosphère protectrice", + "informers_tags": [ + "actarus-75", + "xavi", + "syl44" + ], + "ingredients_text_with_allergens": "", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.100.jpg", + "quantity_debug_tags": [], + "additives_prev_original_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.100.jpg", + "ingredients_text_with_allergens_fr": "", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "vitamins_tags": [], + "serving_size": "157g", + "interface_version_created": "20120622", + "product_quantity": 940, + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:four-cheese-pizza" + ], + "_id": "3242272501169", + "ingredients_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.100.jpg", + "manufacturing_places": "", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [], + "origins": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1489003707, + "nova_group_debug": "no nova group when the product does not have ingredients", + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 0, + "emb_codes_orig": "", + "max_imgid": "2", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.200.jpg", + "traces_hierarchy": [], + "generic_name_fr": "Pizza pâte fine garnie d'emmental, de mozzarella, de cheddar fondu et de raclette", + "ingredients_hierarchy": [], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1489003803, + "additives_debug_tags": [], + "nutrition_data": "on", + "additives_original_tags": [], + "allergens_hierarchy": [], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "labels_prev_tags": [], + "serving_quantity": 157, + "nutrition_grades": "d", + "correctors_tags": [ + "xavi", + "syl44" + ], + "codes_tags": [ + "code-13", + "3242272501169", + "324227250116x", + "32422725011xx", + "3242272501xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.400.jpg", + "languages_codes": { + "fr": 5 + }, + "brands_tags": [ + "sodebo" + ], + "nutrition_grade_fr": "d", + "nutrition_grades_tags": [ + "d" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "link": "", + "lc": "fr", + "product_name": "La Pizz 4 fromages - lot de 2", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "fat": "moderate", + "saturated-fat": "high", + "salt": "moderate", + "sugars": "low" + }, + "quantity": "940g", + "amino_acids_prev_tags": [], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Sodebo", + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.100.jpg" + } + } + }, + "ingredients_text": "", + "emb_codes_tags": [], + "sortkey": 530543412, + "lang_debug_tags": [], + "ingredients_text_fr": "", + "nutrition_data_prepared": "", + "purchase_places_tags": [], + "product_name_fr": "La Pizz 4 fromages - lot de 2", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "packaging_tags": [ + "frais", + "sous-atmosphere-protectrice" + ], + "pnns_groups_1": "Composite foods", + "labels": "", + "entry_dates_tags": [ + "2017-03-08", + "2017-03", + "2017" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272501169/la-pizz-4-fromages-lot-de-2-sodebo", + "origins_debug_tags": [], + "labels_prev_hierarchy": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/front_fr.6.200.jpg", + "stores_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "id": "3242272501169", + "rev": 10, + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "_keywords": [ + "pizz", + "fondu", + "lot", + "aux", + "pizza", + "pate", + "fine", + "et", + "garnie", + "sodebo", + "salee", + "prepare", + "fromage", + "emmental", + "la", + "tarte", + "de", + "mozzarella", + "quiche", + "plat", + "quatre", + "raclette", + "cheddar" + ], + "stores": "", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/ingredients_fr.7.400.jpg", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "generic_name": "Pizza pâte fine garnie d'emmental, de mozzarella, de cheddar fondu et de raclette", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/1169/nutrition_fr.8.200.jpg", + "nutrition_data_prepared_per": "100g" + }, + { + "additives_debug_tags": [], + "additives_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 6, + "last_image_t": 1528540748, + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.200.jpg", + "traces_hierarchy": [], + "generic_name_fr": "", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 2, + "emb_codes_orig": "", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "max_imgid": "2", + "nutrition_data_per": "100g", + "nutrition_grades_tags": [ + "c" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "link": "", + "languages_codes": { + "fr": 5 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.400.jpg", + "nutrition_grade_fr": "c", + "brands_tags": [ + "sodebo" + ], + "labels_prev_tags": [], + "nutrition_grades": "c", + "serving_quantity": 157, + "correctors_tags": [ + "julie-yuka", + "tacite", + "beniben", + "syl44" + ], + "codes_tags": [ + "code-13", + "3242272500469", + "324227250046x", + "32422725004xx", + "3242272500xxx", + "324227250xxxx", + "32422725xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "20/03/2018", + "entry_dates_tags": [ + "2018-01-29", + "2018-01", + "2018" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272500469/la-pizz-jambon-emmental-2-1-gratuite-sodebo", + "origins_debug_tags": [], + "purchase_places_tags": [ + "france" + ], + "product_name_fr": "La Pizz Jambon Emmental (2+1 gratuite)", + "packaging_tags": [ + "film", + "plastique", + "frais" + ], + "interface_version_modified": "20120622", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.100.jpg", + "update_key": "nova3", + "pnns_groups_1": "Composite foods", + "labels": "", + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.200.jpg" + } + }, + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.100.jpg" + } + } + }, + "emb_codes_tags": [], + "ingredients_text": "Garniture 59 % : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), jambon cuit standard 29 % (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22 %, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture. Pâte 41 % : farine de blé, eau, levure boulangère, sel.", + "nutrition_data_prepared": "", + "ingredients_text_fr": "Garniture 59 % : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), jambon cuit standard 29 % (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22 %, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture. Pâte 41 % : farine de blé, eau, levure boulangère, sel.", + "lang_debug_tags": [], + "sortkey": 1530541921, + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "product_name": "La Pizz Jambon Emmental (2+1 gratuite)", + "lc": "fr", + "nutrient_levels": { + "sugars": "low", + "salt": "high", + "fat": "moderate", + "saturated-fat": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "amino_acids_prev_tags": [], + "quantity": "1,410 kg (3 * 470 g)", + "countries_debug_tags": [], + "brands": "Sodebo", + "checkers_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "generic_name": "", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.200.jpg", + "nutrition_data_prepared_per": "100g", + "_keywords": [ + "plat", + "quiche", + "jambon", + "tarte", + "salee", + "union", + "prepare", + "sodebo", + "pizz", + "au", + "la", + "emmental", + "gratuite", + "et", + "pizza", + "europeenne", + "2-1" + ], + "stores": "", + "nutrition_score_debug": " -- energy 2 + sat-fat 3 + fr-sat-fat-for-fats 9 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 9 -- fr 9", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "id": "3242272500469", + "rev": 10, + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e1403", + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.400.jpg", + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.200.jpg", + "stores_debug_tags": [], + "stores_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "labels_prev_hierarchy": [], + "languages": { + "en:french": 5 + }, + "editors_tags": [ + "syl44", + "beniben", + "julie-yuka", + "tacite" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-06-09", + "2018-06", + "2018" + ], + "allergens": "blé, lactose, mozzarella", + "completed_t": 1528551613, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3242272500469", + "categories_tags": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:ham-pizzas", + "fr:pizzas-tartes-salees-et-quiches" + ], + "photographers_tags": [ + "tacite" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.400.jpg", + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Garniture 59 % ", + ":", + ":", + null, + null, + " sauce tomate ", + "(", + "(", + null, + null, + "purée de tomate", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " farine de blé", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile d'olive", + ",", + null, + null, + null, + " amidon de maïs)", + ",", + null, + null, + null, + " jambon cuit standard 29 % ", + "(", + "(", + null, + null, + "jambon de porc", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e451", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e407", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " bouillon de porc", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e316", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + ",", + null, + null, + null, + " ferments)", + ",", + null, + null, + null, + " emmental 22 %", + ",", + null, + null, + null, + " mozzarella", + ",", + null, + null, + null, + " olives noires avec noyau ", + "(", + "(", + null, + null, + "stabilisant ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e579", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " basilic et origan", + ". ", + null, + null, + null, + "Pourcentages exprimés sur la garniture", + ". ", + null, + null, + null, + "Pâte 41 % ", + ":", + ":", + null, + null, + " farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " sel." + ], + "labels_tags": [], + "traces": "", + "brands_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 59 % : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), jambon cuit standard 29 % (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : - e451 - , gélifiant : - e407 - , lactose, arôme naturel, bouillon de porc, antioxydant : - e316 - , conservateur : - e250 - , ferments), emmental 22 %, mozzarella, olives noires avec noyau (stabilisant : - e579 - ), basilic et origan. Pourcentages exprimés sur la garniture. Pâte 41 % : farine de blé, eau, levure boulangère, sel.", + "categories": "Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au jambon", + "manufacturing_places_tags": [], + "pnns_groups_2": "Pizza pies and quiche", + "categories_hierarchy": [ + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:pork-meals", + "en:ham-pizzas", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530541921, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:corn-starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic et origan", + "fr:Pourcentages exprimés sur la garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "ingredients_n": 38, + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "creator": "julie-yuka", + "purchase_places": "France", + "last_editor": "syl44", + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:ham-pizzas" + ], + "nutriments": { + "salt_unit": "g", + "salt_100g": 1.6, + "sodium": 0.62992125984252, + "fiber_100g": 2.4, + "carbohydrates": "26", + "saturated-fat": 3.8, + "salt_value": "1.6", + "fiber": 2.4, + "sugars_100g": 2.1, + "energy_serving": "1360", + "sugars": 2.1, + "sodium_value": "0.6299212598425197", + "fat": 6.2, + "energy_value": "207", + "salt": 1.6, + "saturated-fat_value": "3.8", + "proteins_unit": "g", + "carbohydrates_value": "26", + "fiber_serving": 3.77, + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "nutrition-score-uk": "9", + "proteins_serving": 17.3, + "nutrition-score-fr": "9", + "sugars_unit": "g", + "fat_serving": 9.73, + "carbohydrates_serving": 40.8, + "sugars_value": "2.1", + "carbohydrates_unit": "g", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "saturated-fat_serving": 5.97, + "fiber_unit": "g", + "sugars_serving": 3.3, + "nutrition-score-fr_100g": "9", + "nova-group_100g": 4, + "energy": "866", + "fat_100g": 6.2, + "proteins": "11", + "proteins_value": "11", + "nutrition-score-uk_100g": "9", + "fat_unit": "g", + "proteins_100g": "11", + "carbohydrates_100g": "26", + "salt_serving": 2.51, + "energy_100g": "866", + "fiber_value": "2.4", + "sodium_serving": 0.989, + "fat_value": "6.2", + "saturated-fat_100g": 3.8, + "sodium_100g": 0.62992125984252 + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "additives_prev_n": 5, + "purchase_places_debug_tags": [], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_n": 5, + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "film,plastique,frais", + "informers_tags": [ + "julie-yuka", + "tacite", + "beniben", + "syl44" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.200.jpg", + "ingredients_ids_debug": [ + "garniture-59", + "sauce-tomate", + "puree-de-tomate", + "eau", + "farine-de-ble", + "sel", + "huile-d-olive", + "amidon-de-mais", + "jambon-cuit-standard-29", + "jambon-de-porc", + "eau", + "sel", + "sirop-de-glucose", + "dextrose", + "stabilisant", + "e451", + "gelifiant", + "e407", + "lactose", + "arome-naturel", + "bouillon-de-porc", + "antioxydant", + "e316", + "conservateur", + "e250", + "ferments", + "emmental-22", + "mozzarella", + "olives-noires-avec-noyau", + "stabilisant", + "e579", + "basilic-et-origan", + "pourcentages-exprimes-sur-la-garniture", + "pate-41", + "farine-de-ble", + "eau", + "levure-boulangere", + "sel" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_n_tags": [ + "38", + "31-40" + ], + "origins_tags": [ + "union-europeenne" + ], + "last_modified_by": "syl44", + "cities_tags": [], + "ingredients": [ + { + "id": "fr:garniture", + "percent": "59", + "rank": 1, + "text": "Garniture" + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "id": "en:wheat-flour", + "rank": 3, + "text": "farine de blé" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 4 + }, + { + "rank": 5, + "text": "huile d'olive", + "id": "en:olive-oil" + }, + { + "id": "en:corn-starch", + "rank": 6, + "text": "amidon de maïs" + }, + { + "text": "jambon cuit standard", + "rank": 7, + "percent": "29", + "id": "fr:jambon-cuit-standard" + }, + { + "rank": 8, + "text": "emmental", + "percent": "22", + "id": "fr:emmental" + }, + { + "id": "fr:mozzarella", + "rank": 9, + "text": "mozzarella" + }, + { + "rank": 10, + "text": "olives noires avec noyau", + "id": "fr:olives-noires-avec-noyau" + }, + { + "id": "fr:basilic et origan", + "text": "basilic et origan", + "rank": 11 + }, + { + "id": "fr:Pourcentages exprimés sur la garniture", + "rank": 12, + "text": "Pourcentages exprimés sur la garniture" + }, + { + "rank": 13, + "text": "Pâte", + "percent": "41", + "id": "en:paste" + }, + { + "id": "en:wheat-flour", + "rank": 14, + "text": "farine de blé" + }, + { + "rank": 15, + "text": "eau", + "id": "en:water" + }, + { + "rank": 16, + "text": "levure boulangère", + "id": "fr:levure-boulangere" + }, + { + "text": "sel", + "rank": 17, + "id": "en:salt" + }, + { + "id": "fr:sauce-tomate", + "text": "sauce tomate" + }, + { + "id": "fr:puree-de-tomate", + "text": "purée de tomate" + }, + { + "text": "jambon de porc", + "id": "fr:jambon-de-porc" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:glucose-syrup", + "text": "sirop de glucose" + }, + { + "text": "dextrose", + "id": "en:dextrose" + }, + { + "text": "stabilisant", + "id": "en:stabiliser" + }, + { + "id": "fr:e451", + "text": "E451" + }, + { + "text": "gélifiant", + "id": "en:gelling-agent" + }, + { + "id": "fr:e407", + "text": "E407" + }, + { + "id": "en:lactose", + "text": "lactose" + }, + { + "text": "arôme naturel", + "id": "en:natural-flavour" + }, + { + "id": "fr:bouillon-de-porc", + "text": "bouillon de porc" + }, + { + "text": "antioxydant", + "id": "en:antioxidant" + }, + { + "id": "fr:e316", + "text": "E316" + }, + { + "id": "en:preservative", + "text": "conservateur" + }, + { + "id": "fr:e250", + "text": "E250" + }, + { + "id": "fr:ferment", + "text": "ferments" + }, + { + "id": "en:stabiliser", + "text": "stabilisant" + }, + { + "text": "E579", + "id": "fr:e579" + } + ], + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 4032, + "w": 3024 + } + }, + "uploader": "tacite", + "uploaded_t": "1528540741" + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4032, + "w": 3024 + } + }, + "uploaded_t": "1528540746", + "uploader": "tacite" + }, + "front_fr": { + "rev": "4", + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "y1": "-1", + "angle": 0, + "x1": "-1", + "y2": "-1", + "normalize": null, + "x2": "-1", + "geometry": "0x0--10--10", + "imgid": "1", + "white_magic": null + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 41, + "w": 100 + }, + "200": { + "w": 200, + "h": 82 + }, + "400": { + "w": 400, + "h": 164 + }, + "full": { + "w": 1401, + "h": 575 + } + }, + "rev": "7", + "angle": "0", + "y1": "254.8125", + "normalize": "false", + "x2": "152.75", + "y2": "311.8125", + "x1": "13.75", + "imgid": "2", + "geometry": "1401x575-138-2568", + "white_magic": "false" + }, + "ingredients_fr": { + "y1": "189.8125", + "angle": "0", + "sizes": { + "100": { + "w": 100, + "h": 35 + }, + "200": { + "h": 70, + "w": 200 + }, + "400": { + "w": 400, + "h": 139 + }, + "full": { + "h": 554, + "w": 1592 + } + }, + "rev": "6", + "geometry": "1592x554-199-1913", + "imgid": "2", + "white_magic": "false", + "y2": "244.8125", + "x1": "19.75", + "x2": "177.75", + "normalize": "false" + } + }, + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e250", + "en:e316", + "en:e407", + "en:e451", + "en:e579" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.400.jpg", + "allergens_debug_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/front_fr.4.100.jpg", + "origins": "Union Européenne", + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "nova_group_debug": " -- ingredients/en:preservative : 3 -- ingredients/en:flavour : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1517213092, + "vitamins_tags": [], + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:ham-pizzas" + ], + "product_quantity": 1410, + "serving_size": "157 g", + "interface_version_created": "20120622", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "en:wheat-flour", + "en:salt", + "en:olive-oil", + "en:vegetable-oil", + "en:corn-starch", + "en:starch", + "fr:jambon-cuit-standard", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-avec-noyau", + "fr:basilic-et-origan", + "fr:pourcentages-exprimes-sur-la-garniture", + "en:paste", + "en:wheat-flour", + "en:water", + "fr:levure-boulangere", + "en:salt", + "fr:sauce-tomate", + "fr:puree-de-tomate", + "fr:jambon-de-porc", + "en:water", + "en:salt", + "en:glucose-syrup", + "en:syrup", + "en:dextrose", + "en:stabiliser", + "fr:e451", + "en:gelling-agent", + "fr:e407", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "fr:bouillon-de-porc", + "en:antioxidant", + "fr:e316", + "en:preservative", + "fr:e250", + "fr:ferment", + "en:stabiliser", + "fr:e579" + ], + "_id": "3242272500469", + "ingredients_text_with_allergens": "Garniture 59 % : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), jambon cuit standard 29 % (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22 %, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture. Pâte 41 % : farine de blé, eau, levure boulangère, sel.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/nutrition_fr.7.100.jpg", + "quantity_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/250/0469/ingredients_fr.6.100.jpg", + "additives_prev_original_tags": [ + "en:e451", + "en:e407", + "en:e316", + "en:e250", + "en:e579" + ], + "ingredients_text_with_allergens_fr": "Garniture 59 % : sauce tomate (purée de tomate, eau, farine de blé, sel, huile d'olive, amidon de maïs), jambon cuit standard 29 % (jambon de porc, eau, sel, sirop de glucose, dextrose, stabilisant : E451, gélifiant : E407, lactose, arôme naturel, bouillon de porc, antioxydant : E316, conservateur : E250, ferments), emmental 22 %, mozzarella, olives noires avec noyau (stabilisant : E579), basilic et origan. Pourcentages exprimés sur la garniture. Pâte 41 % : farine de blé, eau, levure boulangère, sel.", + "amino_acids_tags": [], + "packaging_debug_tags": [] + }, + { + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.200.jpg", + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "generic_name": "", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutrition_data_prepared_per": "100g", + "debug_param_sorted_langs": [ + "fr" + ], + "id": "3242272345763", + "rev": 9, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-high-quantity" + ], + "stores": "", + "_keywords": [ + "campanella", + "tarte", + "fromage", + "vert", + "1-1", + "quiche", + "point", + "au", + "plat", + "frai", + "dolce", + "pizza", + "et", + "sodebo", + "gratuite", + "prepare", + "jambon-fromage", + "salee" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 4 + fr-sat-fat-for-fats 8 + sugars 0 + sodium 7 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 11 -- fr 11", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [], + "ingredients_text": "", + "emb_codes_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.100.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.100.jpg" + } + } + }, + "lang_debug_tags": [], + "sortkey": 530540195, + "ingredients_text_fr": "", + "nutrition_data_prepared": "", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "high", + "sugars": "low" + }, + "product_name": "Dolce Pizza Campanella (1+1 Gratuite)", + "lc": "fr", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "brands": "Sodebo", + "countries_debug_tags": [], + "checkers_tags": [], + "quantity": "2*380 g", + "amino_acids_prev_tags": [], + "entry_dates_tags": [ + "2018-04-25", + "2018-04", + "2018" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3242272345763/dolce-pizza-campanella-1-1-gratuite-sodebo", + "origins_debug_tags": [], + "update_key": "nova3", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.100.jpg", + "interface_version_modified": "20120622", + "packaging_tags": [], + "purchase_places_tags": [], + "product_name_fr": "Dolce Pizza Campanella (1+1 Gratuite)", + "pnns_groups_1": "Composite foods", + "labels": "Point Vert", + "nutrition_grades": "d", + "serving_quantity": 0, + "labels_prev_tags": [ + "en:green-dot" + ], + "codes_tags": [ + "code-13", + "3242272345763", + "324227234576x", + "32422723457xx", + "3242272345xxx", + "324227234xxxx", + "32422723xxxxx", + "3242272xxxxxx", + "324227xxxxxxx", + "32422xxxxxxxx", + "3242xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "openfoodfacts-contributors", + "nouky20", + "syl44" + ], + "minerals_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "nutrition_grades_tags": [ + "d" + ], + "last_edit_dates_tags": [ + "2018-07-02", + "2018-07", + "2018" + ], + "link": "", + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "languages_codes": { + "fr": 3 + }, + "brands_tags": [ + "sodebo" + ], + "nutrition_grade_fr": "d", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.200.jpg", + "generic_name_fr": "", + "unknown_ingredients_n": 0, + "unknown_nutrients_tags": [], + "max_imgid": "2", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "", + "allergens_hierarchy": [], + "nutrition_data": "on", + "additives_original_tags": [], + "additives_debug_tags": [], + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [], + "manufacturing_places_debug_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1524679066, + "vitamins_tags": [], + "_id": "3242272345763", + "ingredients_tags": [], + "serving_size": "", + "product_quantity": 760, + "interface_version_created": "20150316.jqm2", + "categories_prev_tags": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.100.jpg", + "additives_prev_original_tags": [], + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "", + "lang": "fr", + "allergens_debug_tags": [], + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.400.jpg", + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.100.jpg", + "manufacturing_places": "", + "labels_hierarchy": [ + "en:green-dot" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "nova_group_debug": "no nova group when the product does not have ingredients", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1524679063, + "categories_debug_tags": [ + "added-en-meat-based-products", + "added-en-meals-with-meat", + "added-en-pork-meals", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "last_modified_by": "syl44", + "nova_group_tags": [ + "not-applicable" + ], + "cities_tags": [], + "origins_tags": [], + "ingredients": [], + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 91 + }, + "400": { + "h": 400, + "w": 365 + }, + "full": { + "h": 1200, + "w": 1095 + } + }, + "uploaded_t": "1524679064", + "uploader": "kiliweb" + }, + "2": { + "uploaded_t": "1524679066", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 32 + }, + "400": { + "h": 128, + "w": 400 + }, + "full": { + "h": 993, + "w": 3109 + } + } + }, + "ingredients_fr": { + "sizes": { + "100": { + "w": 100, + "h": 32 + }, + "200": { + "w": 200, + "h": 64 + }, + "400": { + "w": 400, + "h": 128 + }, + "full": { + "h": 993, + "w": 3109 + } + }, + "rev": "7", + "angle": null, + "y1": null, + "x2": null, + "normalize": "0", + "y2": null, + "x1": null, + "white_magic": "0", + "imgid": "2", + "geometry": "0x0-0-0" + }, + "front_fr": { + "rev": "4", + "sizes": { + "100": { + "w": "91", + "h": "100" + }, + "200": { + "w": 183, + "h": 200 + }, + "400": { + "w": 365, + "h": 400 + }, + "full": { + "w": 1095, + "h": 1200 + } + }, + "angle": null, + "y1": null, + "normalize": "0", + "x2": null, + "x1": null, + "y2": null, + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "1" + } + }, + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "allergens_tags": [], + "additives_prev_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "", + "informers_tags": [ + "kiliweb", + "nouky20", + "syl44" + ], + "ingredients_ids_debug": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/ingredients_fr.7.200.jpg", + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "last_editor": "syl44", + "purchase_places": "", + "creator": "kiliweb", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutriments": { + "saturated-fat_100g": 4.2, + "sodium_100g": 0.708661417322835, + "fat_value": "7.9", + "sodium_serving": "", + "fiber_value": "2.2", + "energy_100g": "967", + "carbohydrates_100g": "25", + "proteins_100g": "14", + "salt_serving": "", + "fat_unit": "g", + "nutrition-score-uk_100g": "11", + "proteins_value": "14", + "proteins": "14", + "fat_100g": 7.9, + "energy": "967", + "nutrition-score-fr_100g": "11", + "sugars_serving": "", + "fiber_unit": "g", + "saturated-fat_serving": "", + "sodium_unit": "g", + "carbohydrates_unit": "g", + "sugars_value": "2.1", + "carbohydrates_serving": "", + "fat_serving": "", + "nutrition-score-fr": "11", + "sugars_unit": "g", + "proteins_serving": "", + "nutrition-score-uk": "11", + "energy_unit": "kcal", + "saturated-fat_unit": "g", + "fiber_serving": "", + "carbohydrates_value": "25", + "saturated-fat_value": "4.2", + "proteins_unit": "g", + "salt": 1.8, + "energy_value": "231", + "fat": 7.9, + "sodium_value": "0.708661417322835", + "sugars": 2.1, + "energy_serving": "", + "fiber": 2.2, + "sugars_100g": 2.1, + "salt_value": "1.8", + "saturated-fat": 4.2, + "carbohydrates": "25", + "sodium": 0.708661417322835, + "fiber_100g": 2.2, + "salt_100g": 1.8, + "salt_unit": "g" + }, + "categories_prev_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pizza-with-ham-and-cheese" + ], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "ingredients_text_debug": "", + "categories_hierarchy": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:Pizzas tartes salées et quiches" + ], + "last_modified_t": 1530540195, + "pnns_groups_2": "Pizza pies and quiche", + "categories": "Frais,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au fromage,Pizzas jambon-fromage", + "manufacturing_places_tags": [], + "ingredients_original_tags": [], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/324/227/234/5763/front_fr.4.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "labels_tags": [ + "en:green-dot" + ], + "ingredients_debug": [], + "brands_debug_tags": [], + "traces": "", + "product_name_debug_tags": [], + "link_debug_tags": [], + "editors_tags": [ + "kiliweb", + "syl44", + "nouky20", + "openfoodfacts-contributors" + ], + "languages": { + "en:french": 3 + }, + "allergens": "", + "last_image_dates_tags": [ + "2018-04-25", + "2018-04", + "2018" + ], + "code": "3242272345763", + "categories_tags": [ + "en:fresh-foods", + "en:meals", + "en:meat-based-products", + "en:meals-with-meat", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:pork-meals", + "en:pizza-with-ham-and-cheese", + "fr:pizzas-tartes-salees-et-quiches" + ] + }, + { + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-made-in-germany", + "removed-fr-fabrique-en-allemagne" + ], + "creator": "nouky20", + "purchase_places": "Le Mans,France", + "last_editor": "beniben", + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:Pizzas à la mozzarella" + ], + "nutriments": { + "fat_serving": 32.2, + "sugars_value": "4.4", + "carbohydrates_unit": "g", + "carbohydrates_serving": 85.8, + "energy_unit": "kcal", + "saturated-fat_unit": "g", + "fruits-vegetables-nuts-estimate_value": "29.3", + "nutrition-score-uk": "11", + "carbohydrates_value": "25.6", + "fruits-vegetables-nuts-estimate": 29.3, + "proteins_serving": 37.2, + "fruits-vegetables-nuts-estimate_serving": 29.3, + "sugars_unit": "g", + "nutrition-score-fr": "11", + "sodium_value": "0.39370078740157477", + "sugars": 4.4, + "salt": "1", + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "saturated-fat_value": "5.2", + "proteins_unit": "g", + "fat": 9.6, + "fruits-vegetables-nuts-estimate_unit": "", + "energy_value": "237", + "salt_100g": "1", + "sodium": 0.393700787401575, + "carbohydrates": 25.6, + "salt_unit": "g", + "energy_serving": "3320", + "fruits-vegetables-nuts-estimate_100g": 29.3, + "saturated-fat": 5.2, + "sugars_100g": 4.4, + "salt_value": "1.0", + "energy_100g": "992", + "saturated-fat_100g": 5.2, + "sodium_100g": 0.393700787401575, + "sodium_serving": 1.32, + "fat_value": "9.6", + "proteins_100g": 11.1, + "carbohydrates_100g": 25.6, + "salt_serving": 3.35, + "nutrition-score-uk_100g": "11", + "fat_unit": "g", + "energy": "992", + "fat_100g": 9.6, + "nova-group_100g": 4, + "proteins_value": "11.1", + "proteins": 11.1, + "saturated-fat_serving": 17.4, + "sodium_unit": "g", + "nova-group": 4, + "nova-group_serving": 4, + "nutrition-score-fr_100g": "11", + "sugars_serving": 14.7 + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "additives_prev_n": 3, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "additives_n": 3, + "ingredients_from_palm_oil_n": 1, + "ingredients_text_debug": "Farine de _blé_, 25 % tomates concassées, 22 % mozzarella (_lait_, sel, cultures starter, présure microbienne), 4,4 % fromage Edam (_lait_, sel, cultures starter, présure microbienne), eau, 4, 3% tomates en dés. huile de colza, basilic, sel de cuisine, sucre, levure de boulanger, persil, 0.2 % fromage à pâte dure râpé (_lait_, sel, cultures starter, présure microbienne), _lait_ entier en poudre, levain de _blé_ déshydraté (farine de _blé_, eau), extrait de malt d'_orge_, lactoserum (de _lait_ en poudre), farine de malt torréfié (_blé_, _orge_), ail, origan, margarine (huile de colza, graisse de palme, eau, émulsifiants : lécithines, mono- et diglycerides d'acides gras; sel de cuisine, arôme, acidifiant : acide citrique, piment, poivre noir, concentre de jus de citron. amidon modifié (pommes de terre), arôme naturel.", + "manufacturing_places_tags": [ + "allemagne" + ], + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas au fromage,Pizzas surgelées,Pizzas et tartes surgelées,Pizzas à la mozzarella", + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1530466669, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:Pizzas tartes salées et quiches", + "fr:Pizzas à la mozzarella" + ], + "ingredients_original_tags": [ + "en:wheat-flour", + "fr:tomate-concassee", + "fr:mozzarella", + "fr:fromage-edam", + "en:water", + "fr:4", + "fr:tomates-en-des", + "en:canola-oil", + "fr:basilic", + "en:salt", + "en:sugar", + "fr:levure-de-boulanger", + "fr:persil", + "fr:fromage à pâte dure râpé", + "en:whole-milk-powder", + "fr:levain-de-ble-deshydrate", + "fr:extrait-de-malt-d-orge", + "en:whey", + "en:milk-powder", + "fr:farine de malt torréfié", + "en:garlic", + "fr:origan", + "fr:margarine", + "en:natural-flavour", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:wheat-flour", + "en:water", + "fr:ble", + "fr:orge", + "en:canola-oil", + "fr:graisse-de-palme", + "en:water", + "en:emulsifier", + "fr:lecithine", + "fr:mono-et-diglycerides-d-acides-gras", + "en:salt", + "en:flavour", + "fr:acidifiant", + "en:citric-acid", + "fr:piment", + "en:black-pepper", + "fr:concentre-de-jus-de-citron", + "fr:amidon modifié", + "en:potatoes" + ], + "ingredients_n": 55, + "photographers_tags": [ + "nouky20" + ], + "image_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.400.jpg", + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " 25 % tomates concassées", + ",", + null, + null, + null, + " 22 % mozzarella ", + "(", + "(", + null, + null, + "_lait_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " cultures starter", + ",", + null, + null, + null, + " présure microbienne)", + ",", + null, + null, + null, + " 4", + ",", + null, + null, + null, + "4 % fromage Edam ", + "(", + "(", + null, + null, + "_lait_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " cultures starter", + ",", + null, + null, + null, + " présure microbienne)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " 4", + ",", + null, + null, + null, + " 3% tomates en dés", + ". ", + null, + null, + null, + "huile de colza", + ",", + null, + null, + null, + " basilic", + ",", + null, + null, + null, + " sel de cuisine", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " levure de boulanger", + ",", + null, + null, + null, + " persil", + ",", + null, + null, + null, + " 0.2 % fromage à pâte dure râpé ", + "(", + "(", + null, + null, + "_lait_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " cultures starter", + ",", + null, + null, + null, + " présure microbienne)", + ",", + null, + null, + null, + " _lait_ entier en poudre", + ",", + null, + null, + null, + " levain de _blé_ déshydraté ", + "(", + "(", + null, + null, + "farine de _blé_", + ",", + null, + null, + null, + " eau)", + ",", + null, + null, + null, + " extrait de malt d'_orge_", + ",", + null, + null, + null, + " lactoserum ", + "(", + "(", + null, + null, + "de _lait_ en poudre)", + ",", + null, + null, + null, + " farine de malt torréfié ", + "(", + "(", + null, + null, + "_blé_", + ",", + null, + null, + null, + " _orge_)", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " margarine ", + "(", + "(", + null, + null, + "huile de colza", + ",", + null, + null, + null, + " graisse de palme", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " émulsifiants ", + ":", + ":", + null, + null, + " lécithines", + ",", + null, + null, + null, + " mono- et diglycerides d'acides gras", + ";", + ";", + null, + null, + " sel de cuisine", + ",", + null, + null, + null, + " arôme", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique", + ",", + null, + null, + null, + " piment", + ",", + null, + null, + null, + " poivre noir", + ",", + null, + null, + null, + " concentre de jus de citron", + ". ", + null, + null, + null, + "amidon modifié ", + "(", + "(", + null, + null, + "pommes de terre)", + ",", + null, + null, + null, + " arôme naturel." + ], + "labels_tags": [ + "en:fsc", + "en:fsc-mix", + "en:made-in-germany" + ], + "brands_debug_tags": [], + "traces": "Céleri,Œufs,Moutarde,Graines de sésame,Soja", + "ingredients_that_may_be_from_palm_oil_n": 1, + "languages": { + "en:french": 6 + }, + "editors_tags": [ + "beniben", + "nouky20" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2017-05-28", + "2017-05", + "2017" + ], + "allergens": "Gluten,Lait, blé, lait, lait, lait, lait, blé, blé, orge, lait, blé, orge, lactoserum", + "completed_t": 1495983845, + "ingredients_from_or_that_may_be_from_palm_oil_n": 2, + "code": "20516659", + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:pizzas-tartes-salees-et-quiches", + "fr:pizzas-a-la-mozzarella" + ], + "vitamins_tags": [], + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:pizzas-a-la-mozzarella" + ], + "serving_size": "1 pizza 335 g", + "product_quantity": 1005, + "interface_version_created": "20120622", + "ingredients_tags": [ + "en:wheat-flour", + "fr:tomate-concassee", + "fr:mozzarella", + "fr:fromage-edam", + "en:water", + "fr:4", + "fr:tomates-en-des", + "en:canola-oil", + "en:vegetable-oil", + "fr:basilic", + "en:salt", + "en:sugar", + "fr:levure-de-boulanger", + "fr:persil", + "fr:fromage-a-pate-dure-rape", + "en:whole-milk-powder", + "en:milk-powder", + "en:milk", + "fr:levain-de-ble-deshydrate", + "fr:extrait-de-malt-d-orge", + "en:whey", + "en:milk-powder", + "fr:farine-de-malt-torrefie", + "en:garlic", + "fr:origan", + "fr:margarine", + "en:natural-flavour", + "en:flavour", + "en:milk", + "en:salt", + "fr:cultures-starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures-starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures-starter", + "fr:presure-microbienne", + "en:wheat-flour", + "en:water", + "fr:ble", + "fr:orge", + "en:canola-oil", + "en:vegetable-oil", + "fr:graisse-de-palme", + "en:palm-oil", + "en:vegetable-oil", + "en:water", + "en:emulsifier", + "fr:lecithine", + "fr:mono-et-diglycerides-d-acides-gras", + "en:salt", + "en:flavour", + "fr:acidifiant", + "en:citric-acid", + "fr:piment", + "en:black-pepper", + "en:pepper", + "fr:concentre-de-jus-de-citron", + "en:lemon-juice", + "fr:amidon-modifie", + "en:potatoes" + ], + "_id": "20516659", + "ingredients_text_with_allergens": "Farine de blé, 25 % tomates concassées, 22 % mozzarella (lait, sel, cultures starter, présure microbienne), 4,4 % fromage Edam (lait, sel, cultures starter, présure microbienne), eau, 4, 3% tomates en dés. huile de colza, basilic, sel de cuisine, sucre, levure de boulanger, persil, 0.2 % fromage à pâte dure râpé (lait, sel, cultures starter, présure microbienne), lait entier en poudre, levain de blé déshydraté (farine de blé, eau), extrait de malt d'orge, lactoserum (de lait en poudre), farine de malt torréfié (blé, orge), ail, origan, margarine (huile de colza, graisse de palme, eau, émulsifiants: lécithines, mono- et diglycerides d'acides gras; sel de cuisine, arôme, acidifiant: acide citrique, piment, poivre noir, concentre de jus de citron. amidon modifié (pommes de terre), arôme naturel.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.100.jpg", + "quantity_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.100.jpg", + "additives_prev_original_tags": [ + "en:e322", + "en:e471", + "en:e330" + ], + "ingredients_text_with_allergens_fr": "Farine de blé, 25 % tomates concassées, 22 % mozzarella (lait, sel, cultures starter, présure microbienne), 4,4 % fromage Edam (lait, sel, cultures starter, présure microbienne), eau, 4, 3% tomates en dés. huile de colza, basilic, sel de cuisine, sucre, levure de boulanger, persil, 0.2 % fromage à pâte dure râpé (lait, sel, cultures starter, présure microbienne), lait entier en poudre, levain de blé déshydraté (farine de blé, eau), extrait de malt d'orge, lactoserum (de lait en poudre), farine de malt torréfié (blé, orge), ail, origan, margarine (huile de colza, graisse de palme, eau, émulsifiants: lécithines, mono- et diglycerides d'acides gras; sel de cuisine, arôme, acidifiant: acide citrique, piment, poivre noir, concentre de jus de citron. amidon modifié (pommes de terre), arôme naturel.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.400.jpg", + "traces_debug_tags": [], + "allergens_debug_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "Allemagne", + "labels_hierarchy": [ + "en:fsc", + "en:fsc-mix", + "en:made-in-germany" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.100.jpg", + "origins": "", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "created_t": 1495982785, + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:whey : 4", + "ingredients_n_tags": [ + "55", + "51-60" + ], + "origins_tags": [], + "last_modified_by": "beniben", + "cities_tags": [], + "ingredients": [ + { + "rank": 1, + "text": "Farine de _blé_", + "id": "en:wheat-flour" + }, + { + "rank": 2, + "text": "tomates concassées", + "percent": "25", + "id": "fr:tomate-concassee" + }, + { + "id": "fr:mozzarella", + "percent": "22", + "text": "mozzarella", + "rank": 3 + }, + { + "percent": "4.4", + "id": "fr:fromage-edam", + "text": "fromage Edam", + "rank": 4 + }, + { + "id": "en:water", + "rank": 5, + "text": "eau" + }, + { + "text": "4", + "rank": 6, + "id": "fr:4" + }, + { + "percent": "3", + "id": "fr:tomates-en-des", + "text": "tomates en dés", + "rank": 7 + }, + { + "id": "en:canola-oil", + "rank": 8, + "text": "huile de colza" + }, + { + "rank": 9, + "text": "basilic", + "id": "fr:basilic" + }, + { + "rank": 10, + "text": "sel de cuisine", + "id": "en:salt" + }, + { + "text": "sucre", + "rank": 11, + "id": "en:sugar" + }, + { + "text": "levure de boulanger", + "rank": 12, + "id": "fr:levure-de-boulanger" + }, + { + "rank": 13, + "text": "persil", + "id": "fr:persil" + }, + { + "id": "fr:fromage à pâte dure râpé", + "percent": "0.2", + "rank": 14, + "text": "fromage à pâte dure râpé" + }, + { + "id": "en:whole-milk-powder", + "rank": 15, + "text": "_lait_ entier en poudre" + }, + { + "id": "fr:levain-de-ble-deshydrate", + "rank": 16, + "text": "levain de _blé_ déshydraté" + }, + { + "rank": 17, + "text": "extrait de malt d'_orge_", + "id": "fr:extrait-de-malt-d-orge" + }, + { + "text": "lactoserum", + "rank": 18, + "id": "en:whey" + }, + { + "text": "de _lait_ en poudre", + "rank": 19, + "id": "en:milk-powder" + }, + { + "id": "fr:farine de malt torréfié", + "rank": 20, + "text": "farine de malt torréfié" + }, + { + "id": "en:garlic", + "text": "ail", + "rank": 21 + }, + { + "id": "fr:origan", + "text": "origan", + "rank": 22 + }, + { + "id": "fr:margarine", + "rank": 23, + "text": "margarine" + }, + { + "id": "en:natural-flavour", + "text": "arôme naturel", + "rank": 24 + }, + { + "id": "en:milk", + "text": "_lait_" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "cultures starter", + "id": "fr:cultures starter" + }, + { + "text": "présure microbienne", + "id": "fr:presure-microbienne" + }, + { + "text": "_lait_", + "id": "en:milk" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "cultures starter", + "id": "fr:cultures starter" + }, + { + "text": "présure microbienne", + "id": "fr:presure-microbienne" + }, + { + "text": "_lait_", + "id": "en:milk" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "id": "fr:cultures starter", + "text": "cultures starter" + }, + { + "text": "présure microbienne", + "id": "fr:presure-microbienne" + }, + { + "id": "en:wheat-flour", + "text": "farine de _blé_" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "_blé_", + "id": "fr:ble" + }, + { + "id": "fr:orge", + "text": "_orge_" + }, + { + "text": "huile de colza", + "id": "en:canola-oil" + }, + { + "text": "graisse de palme", + "id": "fr:graisse-de-palme" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "id": "en:emulsifier", + "text": "émulsifiants" + }, + { + "text": "lécithines", + "id": "fr:lecithine" + }, + { + "id": "fr:mono-et-diglycerides-d-acides-gras", + "text": "mono- et diglycerides d'acides gras" + }, + { + "text": "sel de cuisine", + "id": "en:salt" + }, + { + "text": "arôme", + "id": "en:flavour" + }, + { + "id": "fr:acidifiant", + "text": "acidifiant" + }, + { + "id": "en:citric-acid", + "text": "acide citrique" + }, + { + "text": "piment", + "id": "fr:piment" + }, + { + "text": "poivre noir", + "id": "en:black-pepper" + }, + { + "id": "fr:concentre-de-jus-de-citron", + "text": "concentre de jus de citron" + }, + { + "text": "amidon modifié", + "id": "fr:amidon modifié" + }, + { + "text": "pommes de terre", + "id": "en:potatoes" + } + ], + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "images": { + "1": { + "uploader": "nouky20", + "uploaded_t": "1495982817", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 1125, + "w": 2000 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + }, + "uploaded_t": "1495982818", + "uploader": "nouky20" + }, + "4": { + "uploaded_t": "1495982818", + "uploader": "nouky20", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "5": { + "uploader": "nouky20", + "uploaded_t": "1495982837", + "sizes": { + "100": { + "w": 100, + "h": 79 + }, + "400": { + "w": 400, + "h": 315 + }, + "full": { + "w": 1695, + "h": 1335 + } + } + }, + "6": { + "uploader": "nouky20", + "uploaded_t": "1495983535", + "sizes": { + "100": { + "h": 26, + "w": 100 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "h": 518, + "w": 2000 + } + } + }, + "nutrition_fr": { + "y2": "171.3125", + "x1": "118.25", + "normalize": "true", + "x2": "353.25", + "geometry": "1175x560-591-296", + "imgid": "3", + "white_magic": "false", + "sizes": { + "100": { + "h": 48, + "w": 100 + }, + "200": { + "w": 200, + "h": 95 + }, + "400": { + "w": 400, + "h": 191 + }, + "full": { + "w": 1175, + "h": 560 + } + }, + "rev": "9", + "y1": "59.3125", + "angle": "0" + }, + "ingredients_fr": { + "normalize": "true", + "x2": "0", + "y2": "0", + "x1": "0", + "geometry": "0x0-0-0", + "white_magic": "false", + "imgid": "6", + "sizes": { + "100": { + "h": 26, + "w": 100 + }, + "200": { + "h": 52, + "w": 200 + }, + "400": { + "h": 104, + "w": 400 + }, + "full": { + "h": 518, + "w": 2000 + } + }, + "rev": "13", + "angle": "0", + "y1": "0" + }, + "front_fr": { + "y1": "1.3125", + "angle": "0", + "rev": "8", + "sizes": { + "100": { + "h": "93", + "w": "100" + }, + "200": { + "w": 200, + "h": 187 + }, + "400": { + "w": 400, + "h": 374 + }, + "full": { + "h": 1060, + "w": 1135 + } + }, + "white_magic": "false", + "geometry": "1135x1060-331-6", + "imgid": "4", + "x1": "66.25", + "y2": "213.3125", + "normalize": "true", + "x2": "293.25" + } + }, + "traces_tags": [ + "en:celery", + "en:eggs", + "en:mustard", + "en:sesame-seeds", + "en:soybeans" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e322", + "en:e330", + "en:e471" + ], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "Carton,Film plastique,Surgelé,05,PAP,21", + "informers_tags": [ + "nouky20", + "beniben" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.200.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "25-tomates-concassees", + "22-mozzarella", + "lait", + "sel", + "cultures-starter", + "presure-microbienne", + "4", + "4-fromage-edam", + "lait", + "sel", + "cultures-starter", + "presure-microbienne", + "eau", + "4", + "3-tomates-en-des", + "huile-de-colza", + "basilic", + "sel-de-cuisine", + "sucre", + "levure-de-boulanger", + "persil", + "0-2-fromage-a-pate-dure-rape", + "lait", + "sel", + "cultures-starter", + "presure-microbienne", + "lait-entier-en-poudre", + "levain-de-ble-deshydrate", + "farine-de-ble", + "eau", + "extrait-de-malt-d-orge", + "lactoserum", + "de-lait-en-poudre", + "farine-de-malt-torrefie", + "ble", + "orge", + "ail", + "origan", + "margarine", + "huile-de-colza", + "graisse-de-palme", + "eau", + "emulsifiants", + "lecithines", + "mono-et-diglycerides-d-acides-gras", + "sel-de-cuisine", + "arome", + "acidifiant", + "acide-citrique", + "piment", + "poivre-noir", + "concentre-de-jus-de-citron", + "amidon-modifie", + "pommes-de-terre", + "arome-naturel" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "labels_prev_tags": [ + "en:fsc", + "en:fsc-mix", + "fr:fabrique-en-allemagne" + ], + "nutrition_grades": "d", + "serving_quantity": 335, + "correctors_tags": [ + "nouky20", + "beniben" + ], + "codes_tags": [ + "code-8", + "20516659", + "2051665x", + "205166xx", + "20516xxx", + "2051xxxx", + "205xxxxx", + "20xxxxxx", + "2xxxxxxx" + ], + "nova_group": 4, + "minerals_prev_tags": [], + "emb_codes": "", + "expiration_date": "20/04/2018", + "nutrition_grades_tags": [ + "d" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "link": "", + "last_edit_dates_tags": [ + "2018-07-01", + "2018-07", + "2018" + ], + "languages_codes": { + "fr": 6 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.400.jpg", + "nutrition_grade_fr": "d", + "brands_tags": [ + "trattoria-alfredo" + ], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.200.jpg", + "traces_hierarchy": [ + "en:celery", + "en:eggs", + "en:mustard", + "en:sesame-seeds", + "en:soybeans" + ], + "generic_name_fr": "Pizza pâte fine avec garniture tomates, mozzarella, edam, spécialité laitière, et margarine végétale", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 8, + "emb_codes_orig": "", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data_per": "100g", + "max_imgid": "6", + "nutrition_score_warning_no_fiber": 1, + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e322", + "en:e471", + "en:e330" + ], + "nutrition_data": "on", + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "fr:tomate-concassee", + "fr:mozzarella", + "fr:fromage-edam", + "en:water", + "fr:4", + "fr:tomates-en-des", + "en:canola-oil", + "en:vegetable-oil", + "fr:basilic", + "en:salt", + "en:sugar", + "fr:levure-de-boulanger", + "fr:persil", + "fr:fromage à pâte dure râpé", + "en:whole-milk-powder", + "en:milk-powder", + "en:milk", + "fr:levain-de-ble-deshydrate", + "fr:extrait-de-malt-d-orge", + "en:whey", + "en:milk-powder", + "fr:farine de malt torréfié", + "en:garlic", + "fr:origan", + "fr:margarine", + "en:natural-flavour", + "en:flavour", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:milk", + "en:salt", + "fr:cultures starter", + "fr:presure-microbienne", + "en:wheat-flour", + "en:water", + "fr:ble", + "fr:orge", + "en:canola-oil", + "en:vegetable-oil", + "fr:graisse-de-palme", + "en:palm-oil", + "en:vegetable-oil", + "en:water", + "en:emulsifier", + "fr:lecithine", + "fr:mono-et-diglycerides-d-acides-gras", + "en:salt", + "en:flavour", + "fr:acidifiant", + "en:citric-acid", + "fr:piment", + "en:black-pepper", + "en:pepper", + "fr:concentre-de-jus-de-citron", + "en:lemon-juice", + "fr:amidon modifié", + "en:potatoes" + ], + "nucleotides_prev_tags": [], + "last_image_t": 1495983535, + "additives_old_n": 3, + "image_small_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.200.jpg", + "stores_debug_tags": [], + "stores_tags": [ + "lidl" + ], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [ + "e471-mono-et-diglycerides-d-acides-gras-alimentaires" + ], + "labels_prev_hierarchy": [ + "en:fsc", + "en:fsc-mix", + "fr:Fabriqué en Allemagne" + ], + "additives_tags": [ + "en:e322", + "en:e330", + "en:e471" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.200.jpg", + "generic_name": "Pizza pâte fine avec garniture tomates, mozzarella, edam, spécialité laitière, et margarine végétale", + "nutrition_data_prepared_per": "100g", + "stores": "Lidl", + "_keywords": [ + "au", + "allemagne", + "tarte", + "fsc", + "salee", + "avec", + "fabrique", + "en", + "pate", + "surgelee", + "surgele", + "plat", + "la", + "pizza", + "xxl", + "alfredo", + "laitiere", + "fromage", + "quiche", + "format", + "garniture", + "tomate", + "specialite", + "mix", + "et", + "trattoria", + "fine", + "vegetale", + "delizioza", + "prepare", + "mozzarella", + "margarine", + "edam" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 5 + fr-sat-fat-for-fats 8 + sugars 0 + sodium 4 - fruits 29.3% 0 - fiber 0 - proteins 5 -- fsa 11 -- fr 11", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "id": "20516659", + "rev": 15, + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e322", + "en:e471", + "en:e330" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.200.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/nutrition_fr.9.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/20516659/ingredients_fr.13.200.jpg" + } + } + }, + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "emb_codes_tags": [], + "ingredients_text": "Farine de _blé_, 25 % tomates concassées, 22 % mozzarella (_lait_, sel, cultures starter, présure microbienne), 4,4 % fromage Edam (_lait_, sel, cultures starter, présure microbienne), eau, 4, 3% tomates en dés. huile de colza, basilic, sel de cuisine, sucre, levure de boulanger, persil, 0.2 % fromage à pâte dure râpé (_lait_, sel, cultures starter, présure microbienne), _lait_ entier en poudre, levain de _blé_ déshydraté (farine de _blé_, eau), extrait de malt d'_orge_, lactoserum (de _lait_ en poudre), farine de malt torréfié (_blé_, _orge_), ail, origan, margarine (huile de colza, graisse de palme, eau, émulsifiants: lécithines, mono- et diglycerides d'acides gras; sel de cuisine, arôme, acidifiant: acide citrique, piment, poivre noir, concentre de jus de citron. amidon modifié (pommes de terre), arôme naturel.", + "nutrition_data_prepared": "", + "ingredients_text_fr": "Farine de _blé_, 25 % tomates concassées, 22 % mozzarella (_lait_, sel, cultures starter, présure microbienne), 4,4 % fromage Edam (_lait_, sel, cultures starter, présure microbienne), eau, 4, 3% tomates en dés. huile de colza, basilic, sel de cuisine, sucre, levure de boulanger, persil, 0.2 % fromage à pâte dure râpé (_lait_, sel, cultures starter, présure microbienne), _lait_ entier en poudre, levain de _blé_ déshydraté (farine de _blé_, eau), extrait de malt d'_orge_, lactoserum (de _lait_ en poudre), farine de malt torréfié (_blé_, _orge_), ail, origan, margarine (huile de colza, graisse de palme, eau, émulsifiants: lécithines, mono- et diglycerides d'acides gras; sel de cuisine, arôme, acidifiant: acide citrique, piment, poivre noir, concentre de jus de citron. amidon modifié (pommes de terre), arôme naturel.", + "sortkey": 1530466669, + "lang_debug_tags": [], + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "lc": "fr", + "product_name": "Delizioza Mozzarella - Format XXL", + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "saturated-fat": "high", + "fat": "moderate", + "salt": "moderate", + "sugars": "low" + }, + "amino_acids_prev_tags": [], + "quantity": "3*335 g dont 3*88.4 g de fromages", + "brands": "Trattoria Alfredo", + "checkers_tags": [], + "countries_debug_tags": [], + "entry_dates_tags": [ + "2017-05-28", + "2017-05", + "2017" + ], + "origins_debug_tags": [], + "url": "https://ssl-api.openfoodfacts.org/product/20516659/delizioza-mozzarella-format-xxl-trattoria-alfredo", + "purchase_places_tags": [ + "le-mans", + "france" + ], + "product_name_fr": "Delizioza Mozzarella - Format XXL", + "packaging_tags": [ + "carton", + "film-plastique", + "surgele", + "05", + "pap", + "21" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/20516659/front_fr.8.100.jpg", + "update_key": "nova3", + "interface_version_modified": "20120622", + "labels": "FSC,FSC Mix,Fabriqué en Allemagne", + "pnns_groups_1": "Composite foods" + }, + { + "brands": "Carrefour", + "countries_debug_tags": [], + "checkers_tags": [], + "amino_acids_prev_tags": [], + "quantity": "450g", + "nutrient_levels": { + "saturated-fat": "high", + "fat": "moderate", + "salt": "moderate", + "sugars": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "product_name": "Pizza Crousty Cheese", + "lc": "fr", + "ingredients_text_fr": "Farine de blé, eau, mozzarella 11%, fromage fondu 10% (fromage, eau, lactose, lait écrémé en poudre, émulsifiant : citrate de sodium), lait fermenté, crème fraîche 5,7%, cheddar rouge 4,4% (lait, sel, ferments, présure, colorant : rocou), oignons rouges 3,3%, emmental 2,2%, huile de colza, dextrose, sel, stabilisant : méthylcellulose, levure, ail déshydraté, amidon de pomme de terre, poivre.", + "sortkey": 1530206374, + "lang_debug_tags": [], + "emb_codes_tags": [], + "ingredients_text": "Farine de blé, eau, mozzarella 11%, fromage fondu 10% (fromage, eau, lactose, lait écrémé en poudre, émulsifiant : citrate de sodium), lait fermenté, crème fraîche 5,7%, cheddar rouge 4,4% (lait, sel, ferments, présure, colorant : rocou), oignons rouges 3,3%, emmental 2,2%, huile de colza, dextrose, sel, stabilisant : méthylcellulose, levure, ail déshydraté, amidon de pomme de terre, poivre.", + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.200.jpg" + } + } + }, + "labels": "Surgelé", + "pnns_groups_1": "Composite foods", + "packaging_tags": [ + "surgele" + ], + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.100.jpg", + "interface_version_modified": "20150316.jqm2", + "purchase_places_tags": [], + "product_name_fr": "Pizza Crousty Cheese", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3560070602407/pizza-crousty-cheese-carrefour", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2016-03-31", + "2016-03", + "2016" + ], + "labels_prev_hierarchy": [ + "fr:Surgelé" + ], + "quality_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.200.jpg", + "stores_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "additives_old_tags": [ + "en:e1403", + "en:e331", + "en:e160b", + "en:e461" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "nutrition_score_debug": " -- energy 3 + sat-fat 5 + fr-sat-fat-for-fats 8 + sugars 2 + sodium 4 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 13 -- fr 13", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-moderate-quantity" + ], + "_keywords": [ + "troi", + "cheese", + "crousty", + "fromage", + "prepare", + "quiche", + "surgelee", + "pizza", + "et", + "aux", + "carrefour", + "salee", + "plat", + "surgele", + "tarte" + ], + "stores": "", + "id": "3560070602407", + "rev": 24, + "nutrition_data_prepared_per": "100g", + "generic_name": "", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.200.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e160b", + "en:e331", + "en:e461" + ], + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "max_imgid": "5", + "nutrition_data_per": "100g", + "emb_codes_orig": "", + "unknown_ingredients_n": 1, + "unique_scans_n": 1, + "unknown_nutrients_tags": [], + "generic_name_fr": "", + "traces_hierarchy": [], + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.200.jpg", + "additives_old_n": 4, + "last_image_t": 1530206374, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:water", + "fr:mozzarella", + "fr:fromage-fondu", + "fr:lait-fermente", + "en:milk", + "en:sour-cream", + "fr:cheddar rouge", + "fr:red-onions", + "en:onions", + "fr:emmental", + "en:canola-oil", + "en:vegetable-oil", + "en:dextrose", + "en:salt", + "en:stabiliser", + "fr:methylcellulose", + "fr:levure", + "fr:ail-deshydrate", + "en:potato-starch", + "en:starch", + "en:pepper", + "fr:fromage", + "en:water", + "en:lactose", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "en:emulsifier", + "fr:citrate-de-sodium", + "en:milk", + "en:salt", + "fr:ferment", + "fr:presure", + "en:colour", + "fr:rocou" + ], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e331", + "en:e160b", + "en:e461" + ], + "additives_debug_tags": [], + "emb_codes": "", + "expiration_date": "", + "minerals_prev_tags": [], + "nova_group": 4, + "codes_tags": [ + "code-13", + "3560070602407", + "356007060240x", + "35600706024xx", + "3560070602xxx", + "356007060xxxx", + "35600706xxxxx", + "3560070xxxxxx", + "356007xxxxxxx", + "35600xxxxxxxx", + "3560xxxxxxxxx", + "356xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "correctors_tags": [ + "03dec1989", + "kiliweb", + "openfoodfacts-contributors" + ], + "serving_quantity": 0, + "nutrition_grades": "d", + "labels_prev_tags": [ + "fr:surgele" + ], + "nutrition_grade_fr": "d", + "brands_tags": [ + "carrefour" + ], + "languages_codes": { + "fr": 5 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.400.jpg", + "last_edit_dates_tags": [ + "2018-06-28", + "2018-06", + "2018" + ], + "link": "", + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "nutrition_grades_tags": [ + "d" + ], + "additives_prev_tags": [ + "en:e160b", + "en:e331", + "en:e461" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, mozzarella, fromage, lactose, crème fraîche, lait, emmental", + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "no_nutrition_data": "", + "traces_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": "1459449932", + "uploader": "openfoodfacts-contributors" + }, + "2": { + "uploaded_t": "1459450332", + "uploader": "03dec1989", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "3": { + "uploader": "03dec1989", + "uploaded_t": "1459450780", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "4": { + "uploader": "kiliweb", + "uploaded_t": 1530206370, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1599, + "h": 1200 + } + } + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 901 + } + }, + "uploaded_t": 1530206374, + "uploader": "kiliweb" + }, + "front": { + "normalize": null, + "rev": "3", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "imgid": "1", + "white_magic": null, + "geometry": "0x0--8--8" + }, + "ingredients_fr": { + "rev": "22", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "h": 150, + "w": 200 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1599, + "h": 1200 + } + }, + "angle": null, + "y1": null, + "x2": null, + "normalize": "0", + "x1": null, + "y2": null, + "imgid": "4", + "white_magic": "0", + "geometry": "0x0-0-0" + }, + "ingredients": { + "rev": "11", + "normalize": "false", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 3264, + "h": 2448 + } + }, + "white_magic": "false", + "geometry": "0x0-0-0", + "imgid": "3" + }, + "front_fr": { + "y1": "73.8125", + "angle": "0", + "sizes": { + "100": { + "w": "100", + "h": "91" + }, + "200": { + "h": 182, + "w": 200 + }, + "400": { + "w": 400, + "h": 365 + }, + "full": { + "h": 2195, + "w": 2407 + } + }, + "rev": "16", + "geometry": "2407x2195-8-602", + "imgid": "1", + "white_magic": "false", + "y2": "342.8125", + "x1": "1", + "normalize": "false", + "x2": "296" + }, + "nutrition": { + "rev": "12", + "normalize": "false", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "imgid": "2", + "geometry": "0x0-0-0", + "white_magic": "false" + }, + "nutrition_fr": { + "white_magic": "0", + "geometry": "0x0-0-0", + "imgid": "5", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "y1": null, + "angle": null, + "rev": "24", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1200, + "w": 901 + } + } + } + }, + "serving_size_debug_tags": [], + "emb_codes_20141016": "", + "ingredients": [ + { + "id": "en:wheat-flour", + "text": "Farine de blé", + "rank": 1 + }, + { + "text": "eau", + "rank": 2, + "id": "en:water" + }, + { + "id": "fr:mozzarella", + "percent": "11", + "rank": 3, + "text": "mozzarella" + }, + { + "id": "fr:fromage-fondu", + "percent": "10", + "text": "fromage fondu", + "rank": 4 + }, + { + "id": "fr:lait-fermente", + "text": "lait fermenté", + "rank": 5 + }, + { + "text": "crème fraîche", + "rank": 6, + "id": "en:sour-cream", + "percent": "5.7" + }, + { + "id": "fr:cheddar rouge", + "percent": "4.4", + "rank": 7, + "text": "cheddar rouge" + }, + { + "text": "oignons rouges", + "rank": 8, + "id": "fr:red-onions", + "percent": "3.3" + }, + { + "percent": "2.2", + "id": "fr:emmental", + "text": "emmental", + "rank": 9 + }, + { + "text": "huile de colza", + "rank": 10, + "id": "en:canola-oil" + }, + { + "rank": 11, + "text": "dextrose", + "id": "en:dextrose" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 12 + }, + { + "id": "en:stabiliser", + "rank": 13, + "text": "stabilisant" + }, + { + "id": "fr:methylcellulose", + "text": "méthylcellulose", + "rank": 14 + }, + { + "id": "fr:levure", + "text": "levure", + "rank": 15 + }, + { + "rank": 16, + "text": "ail déshydraté", + "id": "fr:ail-deshydrate" + }, + { + "id": "en:potato-starch", + "text": "amidon de pomme de terre", + "rank": 17 + }, + { + "id": "en:pepper", + "rank": 18, + "text": "poivre" + }, + { + "text": "fromage", + "id": "fr:fromage" + }, + { + "id": "en:water", + "text": "eau" + }, + { + "id": "en:lactose", + "text": "lactose" + }, + { + "text": "lait écrémé en poudre", + "id": "fr:lait-ecreme-en-poudre" + }, + { + "id": "en:emulsifier", + "text": "émulsifiant" + }, + { + "id": "fr:citrate-de-sodium", + "text": "citrate de sodium" + }, + { + "id": "en:milk", + "text": "lait" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "ferments", + "id": "fr:ferment" + }, + { + "text": "présure", + "id": "fr:presure" + }, + { + "text": "colorant", + "id": "en:colour" + }, + { + "text": "rocou", + "id": "fr:rocou" + } + ], + "origins_tags": [], + "last_modified_by": null, + "cities_tags": [], + "ingredients_n_tags": [ + "30", + "21-30" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "ingredients_ids_debug": [ + "farine-de-ble", + "eau", + "mozzarella-11", + "fromage-fondu-10", + "fromage", + "eau", + "lactose", + "lait-ecreme-en-poudre", + "emulsifiant", + "citrate-de-sodium", + "lait-fermente", + "creme-fraiche-5", + "7", + "cheddar-rouge-4", + "4", + "lait", + "sel", + "ferments", + "presure", + "colorant", + "rocou", + "oignons-rouges-3", + "3", + "emmental-2", + "2", + "huile-de-colza", + "dextrose", + "sel", + "stabilisant", + "methylcellulose", + "levure", + "ail-deshydrate", + "amidon-de-pomme-de-terre", + "poivre" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.200.jpg", + "informers_tags": [ + "openfoodfacts-contributors", + "03dec1989", + "teolemon", + "tacite-mass-editor", + "kiliweb" + ], + "packaging": "Surgelé", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Farine de blé, eau, mozzarella 11%, fromage fondu 10% (fromage, eau, lactose, lait écrémé en poudre, émulsifiant : citrate de sodium), lait fermenté, crème fraîche 5,7%, cheddar rouge 4,4% (lait, sel, ferments, présure, colorant : rocou), oignons rouges 3,3%, emmental 2,2%, huile de colza, dextrose, sel, stabilisant : méthylcellulose, levure, ail déshydraté, amidon de pomme de terre, poivre.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/ingredients_fr.22.100.jpg", + "additives_prev_original_tags": [ + "en:e331", + "en:e160b", + "en:e461" + ], + "ingredients_text_with_allergens": "Farine de blé, eau, mozzarella 11%, fromage fondu 10% (fromage, eau, lactose, lait écrémé en poudre, émulsifiant : citrate de sodium), lait fermenté, crème fraîche 5,7%, cheddar rouge 4,4% (lait, sel, ferments, présure, colorant : rocou), oignons rouges 3,3%, emmental 2,2%, huile de colza, dextrose, sel, stabilisant : méthylcellulose, levure, ail déshydraté, amidon de pomme de terre, poivre.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/nutrition_fr.24.100.jpg", + "quantity_debug_tags": [], + "ingredients_tags": [ + "en:wheat-flour", + "en:water", + "fr:mozzarella", + "fr:fromage-fondu", + "fr:lait-fermente", + "en:milk", + "en:sour-cream", + "fr:cheddar-rouge", + "fr:red-onions", + "en:onions", + "fr:emmental", + "en:canola-oil", + "en:vegetable-oil", + "en:dextrose", + "en:salt", + "en:stabiliser", + "fr:methylcellulose", + "fr:levure", + "fr:ail-deshydrate", + "en:potato-starch", + "en:starch", + "en:pepper", + "fr:fromage", + "en:water", + "en:lactose", + "fr:lait-ecreme-en-poudre", + "en:milk-powder", + "en:emulsifier", + "fr:citrate-de-sodium", + "en:milk", + "en:salt", + "fr:ferment", + "fr:presure", + "en:colour", + "fr:rocou" + ], + "_id": "3560070602407", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ], + "product_quantity": 450, + "interface_version_created": "20120622", + "serving_size": "", + "vitamins_tags": [], + "categories_debug_tags": [ + "added-en-cheese-pizzas", + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:lactose : 4", + "created_t": 1459449932, + "languages_tags": [ + "en:french", + "en:1" + ], + "origins": "", + "manufacturing_places": "", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "fr:Surgelé" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.100.jpg", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.400.jpg", + "lang": "fr", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "", + "labels_tags": [ + "fr:surgele" + ], + "ingredients_debug": [ + "Farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " mozzarella 11%", + ",", + null, + null, + null, + " fromage fondu 10% ", + "(", + "(", + null, + null, + "fromage", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " lait écrémé en poudre", + ",", + null, + null, + null, + " émulsifiant ", + ":", + ":", + null, + null, + " citrate de sodium)", + ",", + null, + null, + null, + " lait fermenté", + ",", + null, + null, + null, + " crème fraîche 5", + ",", + null, + null, + null, + "7%", + ",", + null, + null, + null, + " cheddar rouge 4", + ",", + null, + null, + null, + "4% ", + "(", + "(", + null, + null, + "lait", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " ferments", + ",", + null, + null, + null, + " présure", + ",", + null, + null, + null, + " colorant ", + ":", + ":", + null, + null, + " rocou)", + ",", + null, + null, + null, + " oignons rouges 3", + ",", + null, + null, + null, + "3%", + ",", + null, + null, + null, + " emmental 2", + ",", + null, + null, + null, + "2%", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " stabilisant ", + ":", + ":", + null, + null, + " méthylcellulose", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " ail déshydraté", + ",", + null, + null, + null, + " amidon de pomme de terre", + ",", + null, + null, + null, + " poivre." + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/356/007/060/2407/front_fr.16.400.jpg", + "photographers_tags": [ + "openfoodfacts-contributors", + "03dec1989", + "kiliweb" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza", + "fr:pizzas-tartes-salees-et-quiches" + ], + "scans_n": 1, + "code": "3560070602407", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "allergens": "blé, fromage, lactose, lait", + "completed_t": 1487542164, + "last_image_dates_tags": [ + "2018-06-28", + "2018-06", + "2018" + ], + "link_debug_tags": [], + "languages": { + "en:french": 5 + }, + "editors_tags": [ + "teolemon", + "03dec1989", + "tacite-mass-editor", + "openfoodfacts-contributors", + "kiliweb" + ], + "additives_n": 3, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_prev_n": 3, + "fruits-vegetables-nuts_100g_estimate": 0, + "purchase_places_debug_tags": [], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza" + ], + "nutriments": { + "sugars_value": "9.7", + "carbohydrates_unit": "", + "carbohydrates_serving": "", + "fat_serving": "", + "sugars_unit": "", + "nutrition-score-fr": "13", + "proteins_serving": "", + "nutrition-score-uk": "13", + "saturated-fat_unit": "", + "energy_unit": "kcal", + "fiber_serving": "", + "carbohydrates_value": "29", + "proteins_unit": "", + "saturated-fat_value": "5.9", + "salt": 0.94, + "energy_value": "266", + "fat": "11", + "sugars": 9.7, + "energy_serving": "", + "fiber": 1.6, + "salt_value": "0.94", + "sugars_100g": 9.7, + "saturated-fat": 5.9, + "sodium": 0.37007874015748, + "fiber_100g": 1.6, + "carbohydrates": "29", + "salt_100g": 0.94, + "salt_unit": "", + "sodium_100g": 0.37007874015748, + "saturated-fat_100g": 5.9, + "fat_value": "11", + "sodium_serving": "", + "fiber_value": "1.6", + "energy_100g": "1113", + "carbohydrates_100g": "29", + "salt_serving": "", + "proteins_100g": "12", + "fat_unit": "", + "nutrition-score-uk_100g": "13", + "proteins_value": "12", + "proteins": "12", + "fat_100g": "11", + "energy": "1113", + "nova-group_100g": 4, + "nutrition-score-fr_100g": "13", + "sugars_serving": "", + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group": 4, + "nova-group_serving": 4 + }, + "last_editor": null, + "labels_debug_tags": [], + "creator": "openfoodfacts-contributors", + "purchase_places": "", + "ingredients_n": 30, + "ingredients_original_tags": [ + "en:wheat-flour", + "en:water", + "fr:mozzarella", + "fr:fromage-fondu", + "fr:lait-fermente", + "en:sour-cream", + "fr:cheddar rouge", + "fr:red-onions", + "fr:emmental", + "en:canola-oil", + "en:dextrose", + "en:salt", + "en:stabiliser", + "fr:methylcellulose", + "fr:levure", + "fr:ail-deshydrate", + "en:potato-starch", + "en:pepper", + "fr:fromage", + "en:water", + "en:lactose", + "fr:lait-ecreme-en-poudre", + "en:emulsifier", + "fr:citrate-de-sodium", + "en:milk", + "en:salt", + "fr:ferment", + "fr:presure", + "en:colour", + "fr:rocou" + ], + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1530206374, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:cheese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:three-cheese-pizza", + "fr:Pizzas tartes salées et quiches" + ], + "manufacturing_places_tags": [], + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas et tartes surgelées,Pizzas,Pizzas surgelées,Pizzas aux trois fromages", + "ingredients_text_debug": "Farine de blé, eau, mozzarella 11%, fromage fondu 10% (fromage, eau, lactose, lait écrémé en poudre, émulsifiant : citrate de sodium), lait fermenté, crème fraîche 5,7%, cheddar rouge 4,4% (lait, sel, ferments, présure, colorant : rocou), oignons rouges 3,3%, emmental 2,2%, huile de colza, dextrose, sel, stabilisant : méthylcellulose, levure, ail déshydraté, amidon de pomme de terre, poivre.", + "ingredients_from_palm_oil_n": 0 + }, + { + "nova_groups": 4, + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.200.jpg", + "traces_hierarchy": [], + "generic_name_fr": "Pizza aux fromages, jambon cuit, champignons de Paris et olives, cuite sur pierre - Surgelé", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 2, + "emb_codes_orig": "IT 892 L CE", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "nutrition_data_per": "100g", + "max_imgid": "11", + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:celery", + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e407", + "en:e250", + "en:e301", + "en:e14xx" + ], + "manufacturing_places_debug_tags": [], + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:water", + "fr:jambon-cuit", + "fr:champignon-de-paris", + "fr:puree-de-tomate", + "fr:emmental", + "fr:mozzarella", + "fr:olives noires confites dénoyautées", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:tomato-concentrate", + "en:onions", + "fr:levure", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:sugar", + "fr:ail-en-poudre", + "fr:origan", + "fr:herbe-de-provence", + "fr:oignon-en-poudre", + "en:onions", + "fr:legume-deshydrate", + "en:black-pepper", + "en:pepper", + "fr:Cette pizza a été préparée avec 211 g de pâte", + "en:pork-meat", + "en:meat", + "en:salt", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "en:glucose-syrup", + "en:syrup", + "fr:gelifiant", + "fr:carraghenane", + "en:spice", + "en:preservative", + "fr:nitrite-de-sodium", + "en:antioxidant", + "en:sodium-ascorbate", + "en:olive", + "en:water", + "en:salt", + "en:carot", + "fr:poireau", + "fr:epinard", + "fr:celeri" + ], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1529697105, + "additives_old_n": 4, + "labels_prev_tags": [ + "en:labels-of-distributors", + "en:carrefour-quality" + ], + "serving_quantity": 200, + "nutrition_grades": "c", + "correctors_tags": [ + "aurelien31" + ], + "codes_tags": [ + "code-13", + "3270190202974", + "327019020297x", + "32701902029xx", + "3270190202xxx", + "327019020xxxx", + "32701902xxxxx", + "3270190xxxxxx", + "327019xxxxxxx", + "32701xxxxxxxx", + "3270xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "minerals_prev_tags": [], + "emb_codes": "IT 892 L EC", + "expiration_date": "03/2018", + "nutrition_grades_tags": [ + "c" + ], + "minerals_tags": [], + "ingredients_from_palm_oil_tags": [], + "last_edit_dates_tags": [ + "2018-06-22", + "2018-06", + "2018" + ], + "link": "", + "product_name_en_debug_tags": [], + "languages_codes": { + "fr": 6, + "en": 1 + }, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.400.jpg", + "nutrition_grade_fr": "c", + "brands_tags": [ + "carrefour" + ], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.100.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.400.jpg" + } + } + }, + "emb_codes_tags": [ + "it-892-l-ec" + ], + "ingredients_text": "Farine de blé, eau, jambon cuit 12% (viande de porc, sel, lactose, arômes naturels, sirop de glucose, gélifiant : carraghénanes, épices, conservateur : nitrite de sodium, antioxydant : ascorbate de sodium), champignons de Paris 8%, purée de tomates, _emmental_ 6%, _mozzarella_ 6%, olives noires confites dénoyautées 3% (olives, eau, sel), huile de tournesol, sel, concentré de tomates, oignons, levure, amidon modifié de maïs, sucre, ail en poudre, origan, herbes de Provence, oignons en poudre, légumes déshydratés (carottes, poireaux, épinards, _céleri_), poivre noir. Cette pizza a été préparée avec 211 g de pâte.", + "ingredients_text_fr": "Farine de blé, eau, jambon cuit 12% (viande de porc, sel, lactose, arômes naturels, sirop de glucose, gélifiant : carraghénanes, épices, conservateur : nitrite de sodium, antioxydant : ascorbate de sodium), champignons de Paris 8%, purée de tomates, _emmental_ 6%, _mozzarella_ 6%, olives noires confites dénoyautées 3% (olives, eau, sel), huile de tournesol, sel, concentré de tomates, oignons, levure, amidon modifié de maïs, sucre, ail en poudre, origan, herbes de Provence, oignons en poudre, légumes déshydratés (carottes, poireaux, épinards, _céleri_), poivre noir. Cette pizza a été préparée avec 211 g de pâte.", + "ingredients_text_en": "", + "lang_debug_tags": [], + "sortkey": 1529697105, + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "product_name": "Pizza cuite sur pierre Royale", + "lc": "fr", + "nutrient_levels": { + "salt": "moderate", + "saturated-fat": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "amino_acids_prev_tags": [], + "quantity": "400 g", + "brands": "Carrefour", + "checkers_tags": [], + "countries_debug_tags": [], + "entry_dates_tags": [ + "2017-01-09", + "2017-01", + "2017" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3270190202974/pizza-jambon-carrefour", + "origins_debug_tags": [], + "ingredients_text_en_debug_tags": [], + "traces_from_ingredients": "", + "purchase_places_tags": [ + "france", + "rieumes" + ], + "product_name_fr": "Pizza cuite sur pierre Royale", + "packaging_tags": [ + "carton", + "plastique", + "surgele" + ], + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.100.jpg", + "interface_version_modified": "20120622", + "labels": "Qualité Carrefour", + "pnns_groups_1": "Composite foods", + "image_small_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.200.jpg", + "stores_debug_tags": [], + "stores_tags": [ + "carrefour-market" + ], + "countries_hierarchy": [ + "en:france" + ], + "quality_tags": [ + "quantity-not-recognized" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "labels_prev_hierarchy": [ + "en:labels-of-distributors", + "en:carrefour-quality" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e14xx", + "en:e250", + "en:e301", + "en:e407" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.200.jpg", + "generic_name": "Pizza aux fromages, jambon cuit, champignons de Paris et olives, cuite sur pierre - Surgelé", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 6 + sugars 0 + sodium 6 - fruits 0% 0 - fiber 2 - proteins 4 -- fsa 4 -- fr 4", + "_keywords": [ + "de", + "jambon", + "cuite", + "olive", + "carrefour", + "cuit", + "champignon", + "pizza", + "qualite", + "pierre", + "fromage", + "pari", + "aux", + "royale", + "et", + "sur", + "surgele" + ], + "stores": "Carrefour Market", + "rev": 23, + "id": "3270190202974", + "debug_param_sorted_langs": [ + "fr", + "en" + ], + "additives_old_tags": [ + "en:e407", + "en:e250", + "en:e301", + "en:e14xx" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.400.jpg", + "languages_hierarchy": [ + "en:english", + "en:french" + ], + "photographers_tags": [ + "aurelien31", + "geejee" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.400.jpg", + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " jambon cuit 12% ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " lactose", + ",", + null, + null, + null, + " arômes naturels", + ",", + null, + null, + null, + " sirop de glucose", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " carraghénanes", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " nitrite de sodium", + ",", + null, + null, + null, + " antioxydant ", + ":", + ":", + null, + null, + " ascorbate de sodium)", + ",", + null, + null, + null, + " champignons de Paris 8%", + ",", + null, + null, + null, + " purée de tomates", + ",", + null, + null, + null, + " _emmental_ 6%", + ",", + null, + null, + null, + " _mozzarella_ 6%", + ",", + null, + null, + null, + " olives noires confites dénoyautées 3% ", + "(", + "(", + null, + null, + "olives", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " concentré de tomates", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " amidon modifié de maïs", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " ail en poudre", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " herbes de Provence", + ",", + null, + null, + null, + " oignons en poudre", + ",", + null, + null, + null, + " légumes déshydratés ", + "(", + "(", + null, + null, + "carottes", + ",", + null, + null, + null, + " poireaux", + ",", + null, + null, + null, + " épinards", + ",", + null, + null, + null, + " _céleri_)", + ",", + null, + null, + null, + " poivre noir", + ". ", + null, + null, + null, + "Cette pizza a été préparée avec 211 g de pâte." + ], + "labels_tags": [ + "de:labels-von-distributoren", + "en:carrefour-quality" + ], + "brands_debug_tags": [], + "traces": "", + "product_name_en": "Pizza jambon", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "languages": { + "en:french": 6, + "en:english": 1 + }, + "editors_tags": [ + "beniben", + "tacite-mass-editor", + "aurelien31", + "date-limite-app" + ], + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-06-22", + "2018-06", + "2018" + ], + "allergens": "emmental, mozzarella, céleri", + "completed_t": 1489908682, + "ingredients_text_with_allergens_en": "", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3270190202974", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:regina-pizza" + ], + "labels_debug_tags": [ + "added-de-labels-von-distributoren", + "removed-en-labels-of-distributors" + ], + "creator": "date-limite-app", + "purchase_places": "France,Rieumes", + "last_editor": "geejee", + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:regina-pizza" + ], + "nutriments": { + "sodium_100g": 0.590551181102362, + "saturated-fat_100g": 2.8, + "sodium_serving": 1.18, + "fat_value": "6.8", + "fiber_value": "2.8", + "energy_100g": "836", + "salt_serving": "3", + "carbohydrates_100g": "25", + "proteins_100g": 7.8, + "nutrition-score-uk_100g": "4", + "fat_unit": "g", + "proteins_value": "7.8", + "proteins": 7.8, + "energy": "836", + "fat_100g": 6.8, + "nova-group_100g": 4, + "nutrition-score-fr_100g": "4", + "sugars_serving": 7.6, + "saturated-fat_serving": 5.6, + "fiber_unit": "g", + "sodium_unit": "g", + "nova-group_serving": 4, + "nova-group": 4, + "carbohydrates_unit": "g", + "sugars_value": "3.8", + "carbohydrates_serving": "50", + "fat_serving": 13.6, + "proteins_serving": 15.6, + "sugars_unit": "g", + "nutrition-score-fr": "4", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "nutrition-score-uk": "4", + "carbohydrates_value": "25", + "fiber_serving": 5.6, + "salt": 1.5, + "proteins_unit": "g", + "saturated-fat_value": "2.8", + "energy_value": "836", + "fat": 6.8, + "sodium_value": "0.5905511811023622", + "sugars": 3.8, + "energy_serving": "1670", + "saturated-fat": 2.8, + "sugars_100g": 3.8, + "fiber": 2.8, + "salt_value": "1.5", + "salt_100g": 1.5, + "carbohydrates": "25", + "sodium": 0.590551181102362, + "fiber_100g": 2.8, + "salt_unit": "g" + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "complete": 1, + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 4, + "purchase_places_debug_tags": [], + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_n": 4, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Farine de blé, eau, jambon cuit 12% (viande de porc, sel, lactose, arômes naturels, sirop de glucose, gélifiant : carraghénanes, épices, conservateur : nitrite de sodium, antioxydant : ascorbate de sodium), champignons de Paris 8%, purée de tomates, _emmental_ 6%, _mozzarella_ 6%, olives noires confites dénoyautées 3% (olives, eau, sel), huile de tournesol, sel, concentré de tomates, oignons, levure, amidon modifié de maïs, sucre, ail en poudre, origan, herbes de Provence, oignons en poudre, légumes déshydratés (carottes, poireaux, épinards, _céleri_), poivre noir. Cette pizza a été préparée avec 211 g de pâte.", + "manufacturing_places_tags": [ + "noceto", + "italie" + ], + "categories": "Pizza royale", + "pnns_groups_2": "Pizza pies and quiche", + "last_modified_t": 1529697105, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:regina-pizza" + ], + "ingredients_original_tags": [ + "en:wheat-flour", + "en:water", + "fr:jambon-cuit", + "fr:champignon-de-paris", + "fr:puree-de-tomate", + "fr:emmental", + "fr:mozzarella", + "fr:olives noires confites dénoyautées", + "en:sunflower-oil", + "en:salt", + "en:tomato-concentrate", + "en:onions", + "fr:levure", + "fr:amidon-modifie-de-mais", + "en:sugar", + "fr:ail-en-poudre", + "fr:origan", + "fr:herbe-de-provence", + "fr:oignon-en-poudre", + "fr:legume-deshydrate", + "en:black-pepper", + "fr:Cette pizza a été préparée avec 211 g de pâte", + "en:pork-meat", + "en:salt", + "en:lactose", + "en:natural-flavour", + "en:glucose-syrup", + "fr:gelifiant", + "fr:carraghenane", + "en:spice", + "en:preservative", + "fr:nitrite-de-sodium", + "en:antioxidant", + "en:sodium-ascorbate", + "en:olive", + "en:water", + "en:salt", + "en:carot", + "fr:poireau", + "fr:epinard", + "fr:celeri" + ], + "ingredients_n": 41, + "ingredients_n_tags": [ + "41", + "41-50" + ], + "origins_tags": [], + "last_modified_by": "beniben", + "cities_tags": [], + "ingredients": [ + { + "text": "Farine de blé", + "rank": 1, + "id": "en:wheat-flour" + }, + { + "text": "eau", + "rank": 2, + "id": "en:water" + }, + { + "percent": "12", + "id": "fr:jambon-cuit", + "text": "jambon cuit", + "rank": 3 + }, + { + "rank": 4, + "text": "champignons de Paris", + "percent": "8", + "id": "fr:champignon-de-paris" + }, + { + "id": "fr:puree-de-tomate", + "rank": 5, + "text": "purée de tomates" + }, + { + "rank": 6, + "text": "_emmental_", + "id": "fr:emmental", + "percent": "6" + }, + { + "percent": "6", + "id": "fr:mozzarella", + "rank": 7, + "text": "_mozzarella_" + }, + { + "text": "olives noires confites dénoyautées", + "rank": 8, + "percent": "3", + "id": "fr:olives noires confites dénoyautées" + }, + { + "rank": 9, + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "en:salt", + "text": "sel", + "rank": 10 + }, + { + "id": "en:tomato-concentrate", + "rank": 11, + "text": "concentré de tomates" + }, + { + "id": "en:onions", + "rank": 12, + "text": "oignons" + }, + { + "text": "levure", + "rank": 13, + "id": "fr:levure" + }, + { + "id": "fr:amidon-modifie-de-mais", + "text": "amidon modifié de maïs", + "rank": 14 + }, + { + "rank": 15, + "text": "sucre", + "id": "en:sugar" + }, + { + "text": "ail en poudre", + "rank": 16, + "id": "fr:ail-en-poudre" + }, + { + "rank": 17, + "text": "origan", + "id": "fr:origan" + }, + { + "id": "fr:herbe-de-provence", + "rank": 18, + "text": "herbes de Provence" + }, + { + "rank": 19, + "text": "oignons en poudre", + "id": "fr:oignon-en-poudre" + }, + { + "text": "légumes déshydratés", + "rank": 20, + "id": "fr:legume-deshydrate" + }, + { + "text": "poivre noir", + "rank": 21, + "id": "en:black-pepper" + }, + { + "id": "fr:Cette pizza a été préparée avec 211 g de pâte", + "rank": 22, + "text": "Cette pizza a été préparée avec 211 g de pâte" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:lactose", + "text": "lactose" + }, + { + "id": "en:natural-flavour", + "text": "arômes naturels" + }, + { + "text": "sirop de glucose", + "id": "en:glucose-syrup" + }, + { + "id": "fr:gelifiant", + "text": "gélifiant" + }, + { + "text": "carraghénanes", + "id": "fr:carraghenane" + }, + { + "text": "épices", + "id": "en:spice" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "text": "nitrite de sodium", + "id": "fr:nitrite-de-sodium" + }, + { + "id": "en:antioxidant", + "text": "antioxydant" + }, + { + "id": "en:sodium-ascorbate", + "text": "ascorbate de sodium" + }, + { + "id": "en:olive", + "text": "olives" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "id": "en:carot", + "text": "carottes" + }, + { + "text": "poireaux", + "id": "fr:poireau" + }, + { + "id": "fr:epinard", + "text": "épinards" + }, + { + "id": "fr:celeri", + "text": "_céleri_" + } + ], + "generic_name_en_debug_tags": [], + "serving_size_debug_tags": [], + "no_nutrition_data": "", + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "aurelien31", + "uploaded_t": "1489412444" + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploaded_t": "1489412454", + "uploader": "aurelien31" + }, + "3": { + "uploaded_t": "1489412466", + "uploader": "aurelien31", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "4": { + "uploaded_t": "1489412480", + "uploader": "aurelien31", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": "1489412494", + "uploader": "aurelien31" + }, + "6": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploaded_t": "1489908094", + "uploader": "aurelien31" + }, + "7": { + "uploader": "aurelien31", + "uploaded_t": "1489908111", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "8": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "aurelien31", + "uploaded_t": "1489908125" + }, + "9": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "aurelien31", + "uploaded_t": "1489908137" + }, + "10": { + "uploaded_t": "1489908152", + "uploader": "aurelien31", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "11": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "h": 1493, + "w": 2000 + } + }, + "uploader": "geejee", + "uploaded_t": "1529696910" + }, + "nutrition_fr": { + "angle": "270", + "y1": "9.8125", + "sizes": { + "100": { + "w": 100, + "h": 51 + }, + "200": { + "h": 103, + "w": 200 + }, + "400": { + "w": 400, + "h": 205 + }, + "full": { + "w": 1910, + "h": 979 + } + }, + "rev": "21", + "imgid": "8", + "geometry": "1910x979-487-80", + "white_magic": "false", + "x2": "293.75", + "normalize": "true", + "y2": "129.8125", + "x1": "59.75" + }, + "ingredients_fr": { + "y1": "31.8125", + "angle": "270", + "sizes": { + "100": { + "w": 100, + "h": 18 + }, + "200": { + "w": 200, + "h": 36 + }, + "400": { + "h": 71, + "w": 400 + }, + "full": { + "w": 2652, + "h": 473 + } + }, + "rev": "20", + "geometry": "2652x473-299-259", + "imgid": "9", + "white_magic": "false", + "y2": "89.8125", + "x1": "36.75", + "normalize": "true", + "x2": "361.75" + }, + "front_fr": { + "rev": "14", + "sizes": { + "100": { + "h": "100", + "w": "98" + }, + "200": { + "w": 196, + "h": 200 + }, + "400": { + "w": 391, + "h": 400 + }, + "full": { + "h": 2285, + "w": 2236 + } + }, + "y1": "8.8125", + "angle": "270", + "x1": "52.75", + "y2": "288.8125", + "normalize": "true", + "x2": "326.75", + "imgid": "6", + "geometry": "2236x2285-430-71", + "white_magic": "false" + } + }, + "traces_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_tags": [ + "en:celery", + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_prev_tags": [ + "en:e14xx", + "en:e250", + "en:e301", + "en:e407" + ], + "allergens_from_ingredients": "emmental, mozzarella, céleri, blé, lactose", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "packaging": "Carton,Plastique,Surgelé", + "informers_tags": [ + "date-limite-app", + "aurelien31" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.200.jpg", + "ingredients_ids_debug": [ + "farine-de-ble", + "eau", + "jambon-cuit-12", + "viande-de-porc", + "sel", + "lactose", + "aromes-naturels", + "sirop-de-glucose", + "gelifiant", + "carraghenanes", + "epices", + "conservateur", + "nitrite-de-sodium", + "antioxydant", + "ascorbate-de-sodium", + "champignons-de-paris-8", + "puree-de-tomates", + "emmental-6", + "mozzarella-6", + "olives-noires-confites-denoyautees-3", + "olives", + "eau", + "sel", + "huile-de-tournesol", + "sel", + "concentre-de-tomates", + "oignons", + "levure", + "amidon-modifie-de-mais", + "sucre", + "ail-en-poudre", + "origan", + "herbes-de-provence", + "oignons-en-poudre", + "legumes-deshydrates", + "carottes", + "poireaux", + "epinards", + "celeri", + "poivre-noir", + "cette-pizza-a-ete-preparee-avec-211-g-de-pate" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "generic_name_fr_debug_tags": [], + "vitamins_tags": [], + "generic_name_en": "", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:regina-pizza" + ], + "interface_version_created": "20150316.jqm2", + "serving_size": "200 g", + "ingredients_tags": [ + "en:wheat-flour", + "en:water", + "fr:jambon-cuit", + "fr:champignon-de-paris", + "fr:puree-de-tomate", + "fr:emmental", + "fr:mozzarella", + "fr:olives-noires-confites-denoyautees", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:tomato-concentrate", + "en:onions", + "fr:levure", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:sugar", + "fr:ail-en-poudre", + "fr:origan", + "fr:herbe-de-provence", + "fr:oignon-en-poudre", + "en:onions", + "fr:legume-deshydrate", + "en:black-pepper", + "en:pepper", + "fr:cette-pizza-a-ete-preparee-avec-211-g-de-pate", + "en:pork-meat", + "en:meat", + "en:salt", + "en:lactose", + "en:natural-flavour", + "en:flavour", + "en:glucose-syrup", + "en:syrup", + "fr:gelifiant", + "fr:carraghenane", + "en:spice", + "en:preservative", + "fr:nitrite-de-sodium", + "en:antioxidant", + "en:sodium-ascorbate", + "en:olive", + "en:water", + "en:salt", + "en:carot", + "fr:poireau", + "fr:epinard", + "fr:celeri" + ], + "_id": "3270190202974", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/nutrition_fr.21.100.jpg", + "ingredients_text_with_allergens": "Farine de blé, eau, jambon cuit 12% (viande de porc, sel, lactose, arômes naturels, sirop de glucose, gélifiant : carraghénanes, épices, conservateur : nitrite de sodium, antioxydant : ascorbate de sodium), champignons de Paris 8%, purée de tomates, emmental 6%, mozzarella 6%, olives noires confites dénoyautées 3% (olives, eau, sel), huile de tournesol, sel, concentré de tomates, oignons, levure, amidon modifié de maïs, sucre, ail en poudre, origan, herbes de Provence, oignons en poudre, légumes déshydratés (carottes, poireaux, épinards, céleri), poivre noir. Cette pizza a été préparée avec 211 g de pâte.", + "quantity_debug_tags": [], + "additives_prev_original_tags": [ + "en:e407", + "en:e250", + "en:e301", + "en:e14xx" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/ingredients_fr.20.100.jpg", + "ingredients_text_with_allergens_fr": "Farine de blé, eau, jambon cuit 12% (viande de porc, sel, lactose, arômes naturels, sirop de glucose, gélifiant : carraghénanes, épices, conservateur : nitrite de sodium, antioxydant : ascorbate de sodium), champignons de Paris 8%, purée de tomates, emmental 6%, mozzarella 6%, olives noires confites dénoyautées 3% (olives, eau, sel), huile de tournesol, sel, concentré de tomates, oignons, levure, amidon modifié de maïs, sucre, ail en poudre, origan, herbes de Provence, oignons en poudre, légumes déshydratés (carottes, poireaux, épinards, céleri), poivre noir. Cette pizza a été préparée avec 211 g de pâte.", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.400.jpg", + "traces_debug_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "labels_hierarchy": [ + "de:labels-von-distributoren", + "en:carrefour-quality" + ], + "manufacturing_places": "Noceto,Italie", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/019/020/2974/front_fr.14.100.jpg", + "origins": "", + "categories_debug_tags": [], + "languages_tags": [ + "en:english", + "en:french", + "en:2", + "en:multilingual" + ], + "created_t": 1483979408, + "nova_group_debug": " -- ingredients/en:salt : 3 -- additives/en:e14xx : 4" + }, + { + "nutrition_data_prepared_per": "100g", + "generic_name": "", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.400.jpg", + "additives_old_tags": [ + "en:e160c" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "id": "3248830719656", + "rev": 32, + "_keywords": [ + "poulet", + "crousti", + "kebab", + "pizzas-pies-and-quiche", + "marie", + "meal", + "epice", + "pizza", + "extreme", + "moelleuse" + ], + "stores": "", + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 6 + sugars 0 + sodium 3 - fruits 0% 0 - fiber 1 - proteins 5 -- fsa 1 -- fr 1", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50" + ], + "countries_hierarchy": [ + "en:france", + "en:switzerland" + ], + "stores_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.200.jpg", + "labels_prev_hierarchy": [], + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3248830719656/crousti-moelleuse-extreme-poulet-epice-kebab-marie", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2016-03-16", + "2016-03", + "2016" + ], + "labels": "", + "pnns_groups_1": "Composite foods", + "update_key": "key_1533677490", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.100.jpg", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [], + "product_name_fr": "Crousti moelleuse extrême Poulet épice Kebab", + "purchase_places_tags": [], + "sortkey": 529687229, + "lang_debug_tags": [], + "ingredients_text_fr": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ( viande de poulet 14.2 %, sel, sucre, épices et aromates), mozzarella 13.8 %, sauce blanche 13.5 % [eau, crème fraîche 3.6 %, oignons préfrits (dont huile de tournesol), amidon de maïs, sel, jus de citron à base de concentré, ail, menthe douce, épices et aromates, chapelure de blé, tomate, huile de tournesol, extraits d'épices ], oignons rouges 4.3 %, poivrons verts 3.7 %, paprika\r\nPâte Moelluse 49.8 % farine de blé, eau, levure boulangère, huile d'olive vierge extra 0.5 %, sucre, huile de colza ", + "ingredients_text": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ( viande de poulet 14.2 %, sel, sucre, épices et aromates), mozzarella 13.8 %, sauce blanche 13.5 % [eau, crème fraîche 3.6 %, oignons préfrits (dont huile de tournesol), amidon de maïs, sel, jus de citron à base de concentré, ail, menthe douce, épices et aromates, chapelure de blé, tomate, huile de tournesol, extraits d'épices ], oignons rouges 4.3 %, poivrons verts 3.7 %, paprika\r\nPâte Moelluse 49.8 % farine de blé, eau, levure boulangère, huile d'olive vierge extra 0.5 %, sucre, huile de colza ", + "emb_codes_tags": [], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.400.jpg" + } + } + }, + "brands": "Marie", + "checkers_tags": [], + "countries_debug_tags": [], + "quantity": "530 g", + "amino_acids_prev_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "saturated-fat": "moderate", + "fat": "moderate" + }, + "lc": "fr", + "product_name": "Crousti moelleuse extrême Poulet épice Kebab", + "countries": "en:france, en:switzerland", + "ingredients_text_fr_debug_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-06-22", + "2018-06", + "2018" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "b" + ], + "nutrition_grade_fr": "b", + "brands_tags": [ + "marie" + ], + "languages_codes": { + "fr": 4 + }, + "codes_tags": [ + "code-13", + "3248830719656", + "324883071965x", + "32488307196xx", + "3248830719xxx", + "324883071xxxx", + "32488307xxxxx", + "3248830xxxxxx", + "324883xxxxxxx", + "32488xxxxxxxx", + "3248xxxxxxxxx", + "324xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "correctors_tags": [ + "openfoodfacts-contributors", + "openfood-ch-import", + "julie-yuka", + "kiliweb", + "yukafix" + ], + "nutrition_grades": "b", + "serving_quantity": 177, + "labels_prev_tags": [], + "expiration_date": "", + "emb_codes": "", + "minerals_prev_tags": [], + "allergens_hierarchy": [ + "en:milk" + ], + "additives_original_tags": [], + "additives_debug_tags": [ + "en-e160c-removed" + ], + "additives_old_n": 1, + "last_image_t": 1526154383, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "fr:Garniture 50.2 % éminces de poulet mariné cuit facon kebab", + "fr:mozzarella", + "fr:sauce blanche", + "fr:red-onions", + "en:onions", + "fr:poivron-vert", + "fr:paprika\nPâte Moelluse 49.8 % farine de blé", + "en:water", + "fr:levure-boulangere", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:sugar", + "en:canola-oil", + "en:vegetable-oil", + "fr:viande-de-poulet", + "en:salt", + "en:sugar", + "fr:epice-et-aromate", + "en:water", + "en:sour-cream", + "fr:oignons-prefrits", + "en:onions", + "fr:dont huile de tournesol", + "en:corn-starch", + "en:starch", + "en:salt", + "en:lemon-juice-from-concentrate", + "en:lemon-juice", + "en:garlic", + "fr:menthe-douce", + "en:mint", + "fr:epice-et-aromate", + "fr:chapelure-de-ble", + "en:tomato", + "en:sunflower-oil", + "en:sunflower", + "fr:extrait-d-epice" + ], + "manufacturing_places_debug_tags": [], + "generic_name_fr": "", + "traces_hierarchy": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.200.jpg", + "nova_groups": 3, + "max_imgid": "15", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france", + "en:switzerland" + ], + "emb_codes_orig": "", + "unique_scans_n": 4, + "unknown_ingredients_n": 4, + "unknown_nutrients_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.400.jpg", + "traces_debug_tags": [], + "sources": [ + { + "fields": [ + "countries", + "serving_size", + "ingredients_text_fr", + "nutrients.energy", + "nutrients.fat", + "nutrients.saturated-fat", + "nutrients.carbohydrates", + "nutrients.sugars", + "nutrients.fiber", + "nutrients.proteins", + "nutrients.salt" + ], + "id": "openfood-ch", + "images": [ + "9", + "10", + "11", + "12", + "13" + ], + "import_t": 1486502209, + "url": "https://www.openfood.ch/en/products/7666" + } + ], + "lang": "fr", + "nova_group_debug": " -- ingredients/en:salt : 3", + "created_t": 1458157209, + "languages_tags": [ + "en:french", + "en:1" + ], + "categories_debug_tags": [], + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.100.jpg", + "labels_hierarchy": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "_id": "3248830719656", + "ingredients_tags": [ + "fr:garniture-50-2-eminces-de-poulet-marine-cuit-facon-kebab", + "fr:mozzarella", + "fr:sauce-blanche", + "fr:red-onions", + "en:onions", + "fr:poivron-vert", + "fr:paprika-pate-moelluse-49-8-farine-de-ble", + "en:water", + "fr:levure-boulangere", + "en:extra-virgin-olive-oil", + "en:olive-oil", + "en:vegetable-oil", + "en:sugar", + "en:canola-oil", + "en:vegetable-oil", + "fr:viande-de-poulet", + "en:salt", + "en:sugar", + "fr:epice-et-aromate", + "en:water", + "en:sour-cream", + "fr:oignons-prefrits", + "en:onions", + "fr:dont-huile-de-tournesol", + "en:corn-starch", + "en:starch", + "en:salt", + "en:lemon-juice-from-concentrate", + "en:lemon-juice", + "en:garlic", + "fr:menthe-douce", + "en:mint", + "fr:epice-et-aromate", + "fr:chapelure-de-ble", + "en:tomato", + "en:sunflower-oil", + "en:sunflower", + "fr:extrait-d-epice" + ], + "serving_size": "177 g", + "product_quantity": 530, + "interface_version_created": "20120622", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "vitamins_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ( viande de poulet 14.2 %, sel, sucre, épices et aromates), mozzarella 13.8 %, sauce blanche 13.5 % [eau, crème fraîche 3.6 %, oignons préfrits (dont huile de tournesol), amidon de maïs, sel, jus de citron à base de concentré, ail, menthe douce, épices et aromates, chapelure de blé, tomate, huile de tournesol, extraits d'épices ], oignons rouges 4.3 %, poivrons verts 3.7 %, paprika\r\nPâte Moelluse 49.8 % farine de blé, eau, levure boulangère, huile d'olive vierge extra 0.5 %, sucre, huile de colza ", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.100.jpg", + "additives_prev_original_tags": [ + "en:e160c" + ], + "ingredients_text_with_allergens": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ( viande de poulet 14.2 %, sel, sucre, épices et aromates), mozzarella 13.8 %, sauce blanche 13.5 % [eau, crème fraîche 3.6 %, oignons préfrits (dont huile de tournesol), amidon de maïs, sel, jus de citron à base de concentré, ail, menthe douce, épices et aromates, chapelure de blé, tomate, huile de tournesol, extraits d'épices ], oignons rouges 4.3 %, poivrons verts 3.7 %, paprika\r\nPâte Moelluse 49.8 % farine de blé, eau, levure boulangère, huile d'olive vierge extra 0.5 %, sucre, huile de colza ", + "quantity_debug_tags": [], + "packaging": "", + "informers_tags": [ + "sunflower88000", + "openfoodfacts-contributors", + "openfood-ch-import", + "julie-yuka", + "kiliweb" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [ + "garniture-50-2-eminces-de-poulet-marine-cuit-facon-kebab-14-6", + "viande-de-poulet-14-2", + "sel", + "sucre", + "epices-et-aromates", + "mozzarella-13-8", + "sauce-blanche-13-5", + "eau", + "creme-fraiche-3-6", + "oignons-prefrits", + "dont-huile-de-tournesol", + "amidon-de-mais", + "sel", + "jus-de-citron-a-base-de-concentre", + "ail", + "menthe-douce", + "epices-et-aromates", + "chapelure-de-ble", + "tomate", + "huile-de-tournesol", + "extraits-d-epices", + "oignons-rouges-4-3", + "poivrons-verts-3-7", + "paprika-pate-moelluse-49-8-farine-de-ble", + "eau", + "levure-boulangere", + "huile-d-olive-vierge-extra-0-5", + "sucre", + "huile-de-colza" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/ingredients_fr.30.200.jpg", + "emb_codes_20141016": "", + "ingredients": [ + { + "id": "fr:Garniture 50.2 % éminces de poulet mariné cuit facon kebab", + "percent": "14.6", + "rank": 1, + "text": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab" + }, + { + "id": "fr:mozzarella", + "percent": "13.8", + "text": "mozzarella", + "rank": 2 + }, + { + "id": "fr:sauce blanche", + "percent": "13.5", + "rank": 3, + "text": "sauce blanche" + }, + { + "rank": 4, + "text": "oignons rouges", + "percent": "4.3", + "id": "fr:red-onions" + }, + { + "rank": 5, + "text": "poivrons verts", + "percent": "3.7", + "id": "fr:poivron-vert" + }, + { + "id": "fr:paprika\nPâte Moelluse 49.8 % farine de blé", + "rank": 6, + "text": "paprika\nPâte Moelluse 49.8 % farine de blé" + }, + { + "rank": 7, + "text": "eau", + "id": "en:water" + }, + { + "id": "fr:levure-boulangere", + "rank": 8, + "text": "levure boulangère" + }, + { + "rank": 9, + "text": "huile d'olive vierge extra", + "percent": "0.5", + "id": "en:extra-virgin-olive-oil" + }, + { + "text": "sucre", + "rank": 10, + "id": "en:sugar" + }, + { + "text": "huile de colza", + "rank": 11, + "id": "en:canola-oil" + }, + { + "text": "viande de poulet", + "percent": "14.2", + "id": "fr:viande-de-poulet" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "sucre", + "id": "en:sugar" + }, + { + "text": "épices et aromates", + "id": "fr:epice-et-aromate" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "crème fraîche", + "id": "en:sour-cream", + "percent": "3.6" + }, + { + "id": "fr:oignons-prefrits", + "text": "oignons préfrits" + }, + { + "text": "dont huile de tournesol", + "id": "fr:dont huile de tournesol" + }, + { + "id": "en:corn-starch", + "text": "amidon de maïs" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "jus de citron à base de concentré", + "id": "en:lemon-juice-from-concentrate" + }, + { + "id": "en:garlic", + "text": "ail" + }, + { + "text": "menthe douce", + "id": "fr:menthe-douce" + }, + { + "text": "épices et aromates", + "id": "fr:epice-et-aromate" + }, + { + "id": "fr:chapelure-de-ble", + "text": "chapelure de blé" + }, + { + "text": "tomate", + "id": "en:tomato" + }, + { + "id": "en:sunflower-oil", + "text": "huile de tournesol" + }, + { + "text": "extraits d'épices", + "id": "fr:extrait-d-epice" + } + ], + "last_modified_by": "kiliweb", + "cities_tags": [], + "origins_tags": [], + "ingredients_n_tags": [ + "29", + "21-30" + ], + "allergens_tags": [ + "en:milk" + ], + "additives_prev_tags": [ + "en:e160c" + ], + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_from_ingredients": "mozzarella, crème fraîche", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1458157209", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1458157224" + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploaded_t": "1458157249", + "uploader": "openfoodfacts-contributors" + }, + "4": { + "uploaded_t": "1458157265", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "5": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1458157281", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "6": { + "uploaded_t": "1458157291", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "7": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1458157295", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "8": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1458157296", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "9": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486502207, + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 1000, + "w": 563 + } + } + }, + "10": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 563, + "w": 1000 + } + }, + "uploaded_t": 1486502207, + "uploader": "openfood-ch-import" + }, + "11": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486502207, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 563, + "w": 1000 + } + } + }, + "12": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486502208, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1000, + "h": 563 + } + } + }, + "13": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486502208, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1000, + "h": 563 + } + } + }, + "14": { + "uploader": "kiliweb", + "uploaded_t": "1509277827", + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "400": { + "w": 400, + "h": 203 + }, + "full": { + "w": 2420, + "h": 1228 + } + } + }, + "15": { + "sizes": { + "100": { + "w": 100, + "h": 55 + }, + "400": { + "w": 400, + "h": 218 + }, + "full": { + "h": 1200, + "w": 2200 + } + }, + "uploaded_t": "1526154383", + "uploader": "kiliweb" + }, + "front": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "normalize": null, + "rev": "5", + "geometry": "0x0--8--8", + "white_magic": null, + "imgid": "1" + }, + "ingredients_fr": { + "x2": null, + "normalize": "0", + "x1": null, + "y2": null, + "white_magic": "0", + "geometry": "0x0-0-0", + "imgid": "15", + "rev": "30", + "sizes": { + "100": { + "w": 100, + "h": 55 + }, + "200": { + "w": 200, + "h": 109 + }, + "400": { + "w": 400, + "h": 218 + }, + "full": { + "h": 1200, + "w": 2200 + } + }, + "angle": null, + "y1": null + }, + "front_fr": { + "normalize": null, + "rev": "5", + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "white_magic": null, + "geometry": "0x0--8--8", + "imgid": "1" + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "serving_size_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ( viande de poulet 14.2 %, sel, sucre, épices et aromates), mozzarella 13.8 %, sauce blanche 13.5 % [eau, crème fraîche 3.6 %, oignons préfrits (dont huile de tournesol), amidon de maïs, sel, jus de citron à base de concentré, ail, menthe douce, épices et aromates, chapelure de blé, tomate, huile de tournesol, extraits d'épices ], oignons rouges 4.3 %, poivrons verts 3.7 %, paprika\r\nPâte Moelluse 49.8 % farine de blé, eau, levure boulangère, huile d'olive vierge extra 0.5 %, sucre, huile de colza ", + "ingredients_n": 29, + "ingredients_original_tags": [ + "fr:Garniture 50.2 % éminces de poulet mariné cuit facon kebab", + "fr:mozzarella", + "fr:sauce blanche", + "fr:red-onions", + "fr:poivron-vert", + "fr:paprika\nPâte Moelluse 49.8 % farine de blé", + "en:water", + "fr:levure-boulangere", + "en:extra-virgin-olive-oil", + "en:sugar", + "en:canola-oil", + "fr:viande-de-poulet", + "en:salt", + "en:sugar", + "fr:epice-et-aromate", + "en:water", + "en:sour-cream", + "fr:oignons-prefrits", + "fr:dont huile de tournesol", + "en:corn-starch", + "en:salt", + "en:lemon-juice-from-concentrate", + "en:garlic", + "fr:menthe-douce", + "fr:epice-et-aromate", + "fr:chapelure-de-ble", + "en:tomato", + "en:sunflower-oil", + "fr:extrait-d-epice" + ], + "last_modified_t": 1529687229, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "en:meals, en:pizzas-pies-and-quiches, en:pizzas", + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "nutriments": { + "energy_serving": "1570", + "saturated-fat": 2.8, + "salt_value": "0.9", + "fiber": 1.8, + "sugars_100g": 1.9, + "salt_100g": 0.9, + "fiber_100g": 1.8, + "carbohydrates": "26", + "sodium": 0.354330708661417, + "salt_unit": "", + "salt": 0.9, + "saturated-fat_value": "2.8", + "proteins_unit": "", + "energy_value": "212", + "fat": 6.7, + "sugars": 1.9, + "proteins_serving": 19.5, + "nutrition-score-fr": "1", + "sugars_unit": "", + "saturated-fat_unit": "", + "energy_unit": "kcal", + "nutrition-score-uk": "1", + "carbohydrates_value": "26", + "fiber_serving": 3.19, + "carbohydrates_unit": "", + "sugars_value": "1.9", + "carbohydrates_serving": "46", + "fat_serving": 11.9, + "nutrition-score-fr_100g": "1", + "sugars_serving": 3.36, + "saturated-fat_serving": 4.96, + "fiber_unit": "", + "nova-group_serving": 3, + "nova-group": 3, + "proteins_value": "11", + "proteins": "11", + "energy": "887", + "fat_100g": 6.7, + "nova-group_100g": 3, + "proteins_100g": "11", + "salt_serving": 1.59, + "carbohydrates_100g": "26", + "nutrition-score-uk_100g": "1", + "fat_unit": "", + "sodium_100g": 0.354330708661417, + "saturated-fat_100g": 2.8, + "sodium_serving": 0.627, + "fat_value": "6.7", + "fiber_value": "1.8", + "energy_100g": "887" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "last_editor": "kiliweb", + "purchase_places": "", + "creator": "openfoodfacts-contributors", + "labels_debug_tags": [], + "additives_n": 0, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 1, + "allergens": "", + "last_image_dates_tags": [ + "2018-05-12", + "2018-05", + "2018" + ], + "link_debug_tags": [], + "editors_tags": [ + "sunflower88000", + "julie-yuka", + "openfood-ch-import", + "yukafix", + "kiliweb", + "openfoodfacts-contributors" + ], + "languages": { + "en:french": 4 + }, + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "code": "3248830719656", + "scans_n": 5, + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "labels_tags": [], + "ingredients_debug": [ + "Garniture 50.2 % éminces de poulet mariné cuit facon kebab 14.6 % ", + "(", + "(", + null, + null, + " viande de poulet 14.2 %", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " épices et aromates)", + ",", + null, + null, + null, + " mozzarella 13.8 %", + ",", + null, + null, + null, + " sauce blanche 13.5 % ", + "[", + "[", + null, + null, + "eau", + ",", + null, + null, + null, + " crème fraîche 3.6 %", + ",", + null, + null, + null, + " oignons préfrits ", + "(", + "(", + null, + null, + "dont huile de tournesol)", + ",", + null, + null, + null, + " amidon de maïs", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " jus de citron à base de concentré", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " menthe douce", + ",", + null, + null, + null, + " épices et aromates", + ",", + null, + null, + null, + " chapelure de blé", + ",", + null, + null, + null, + " tomate", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " extraits d'épices ]", + ",", + null, + null, + null, + " oignons rouges 4.3 %", + ",", + null, + null, + null, + " poivrons verts 3.7 %", + ",", + null, + null, + null, + " paprika\r\nPâte Moelluse 49.8 % farine de blé", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure boulangère", + ",", + null, + null, + null, + " huile d'olive vierge extra 0.5 %", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huile de colza " + ], + "vitamins_prev_tags": [], + "photographers_tags": [ + "openfoodfacts-contributors", + "openfood-ch-import", + "kiliweb" + ], + "image_url": "https://static.openfoodfacts.org/images/products/324/883/071/9656/front_fr.5.400.jpg", + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "" + }, + { + "labels_prev_hierarchy": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "ingredients-ingredient-tag-length-greater-than-50" + ], + "countries_hierarchy": [ + "en:france" + ], + "stores_tags": [ + "leclerc" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.200.jpg", + "languages_hierarchy": [ + "en:french", + "en:english" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.400.jpg", + "additives_old_tags": [], + "debug_param_sorted_langs": [ + "fr", + "en" + ], + "id": "3564700595039", + "rev": 21, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Leclerc", + "_keywords": [ + "pizza", + "de", + "edam", + "repere", + "thon", + "surgelee", + "marque", + "et", + "turini", + "au", + "base", + "mozzarella", + "tomate" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 3 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 1 -- fr 1", + "nutrition_data_prepared_per": "100g", + "generic_name": "Pizza à base de tomate, thon, edam et mozzarella.", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.200.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "brands": "Turini,Marque Repère", + "countries_debug_tags": [], + "checkers_tags": [], + "quantity": "355 g", + "amino_acids_prev_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "moderate" + }, + "lc": "fr", + "product_name": "Pizza thon", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "sortkey": 1529682568, + "lang_debug_tags": [], + "ingredients_text_en": "", + "ingredients_text_fr": "Garniture 60,6% : purée de tomates mi-réduite reconstituée 25%, morceaux et miettes de thon à l'huile de tournesol 9,9% (_thon_ 8,4%, huile de tournesol, sel), edam (_lait_) 7%, mozzarella (_lait_) 7%, eau, oignons frits (oignons, huile de tournesol), huile de colza, épices et plantes aromatiques, oignons, farine de _blé_, jaune d'_œuf_, _fromage_, câpres (câpres, eau, sel), sucre, sel, protéines de _blé_.\r\nPâte cuite 39,4% : farine de _blé_, eau, huile de colza, levure, sel, sucre .", + "ingredients_text": "Garniture 60,6% : purée de tomates mi-réduite reconstituée 25%, morceaux et miettes de thon à l'huile de tournesol 9,9% (_thon_ 8,4%, huile de tournesol, sel), edam (_lait_) 7%, mozzarella (_lait_) 7%, eau, oignons frits (oignons, huile de tournesol), huile de colza, épices et plantes aromatiques, oignons, farine de _blé_, jaune d'_œuf_, _fromage_, câpres (câpres, eau, sel), sucre, sel, protéines de _blé_.\r\nPâte cuite 39,4% : farine de _blé_, eau, huile de colza, levure, sel, sucre .", + "emb_codes_tags": [], + "selected_images": { + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.100.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.200.jpg" + } + } + }, + "labels": "", + "pnns_groups_1": "Composite foods", + "ingredients_text_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.100.jpg", + "interface_version_modified": "20150316.jqm2", + "update_key": "key_1533677490", + "packaging_tags": [ + "surgele", + "carton", + "plastique" + ], + "purchase_places_tags": [ + "france", + "nantes" + ], + "product_name_fr": "Pizza thon", + "traces_from_ingredients": "", + "url": "https://ssl-api.openfoodfacts.org/product/3564700595039/pizza-merveilles-a-turini", + "origins_debug_tags": [], + "ingredients_text_en_debug_tags": [], + "entry_dates_tags": [ + "2017-01-14", + "2017-01", + "2017" + ], + "expiration_date": "21/03/2017", + "emb_codes": "", + "minerals_prev_tags": [], + "codes_tags": [ + "code-13", + "3564700595039", + "356470059503x", + "35647005950xx", + "3564700595xxx", + "356470059xxxx", + "35647005xxxxx", + "3564700xxxxxx", + "356470xxxxxxx", + "35647xxxxxxxx", + "3564xxxxxxxxx", + "356xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 3, + "correctors_tags": [ + "kiliweb", + "openfoodfacts-contributors", + "beniben", + "tacite-mass-editor" + ], + "nutrition_grades": "b", + "serving_quantity": 0, + "labels_prev_tags": [], + "nutrition_grade_fr": "b", + "brands_tags": [ + "turini", + "marque-repere" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.400.jpg", + "languages_codes": { + "fr": 6, + "en": 1 + }, + "product_name_en_debug_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-06-22", + "2018-06", + "2018" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "nutrition_grades_tags": [ + "b" + ], + "max_imgid": "6", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "emb_codes_orig": "", + "unknown_ingredients_n": 3, + "unknown_nutrients_tags": [], + "generic_name_fr": "Pizza à base de tomate, thon, edam et mozzarella.", + "traces_hierarchy": [ + "en:celery", + "en:crustaceans", + "en:molluscs" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.200.jpg", + "nova_groups": 3, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1529682568, + "additives_old_n": 0, + "nucleotides_prev_tags": [], + "ingredients_hierarchy": [ + "fr:garniture", + "fr:purée de tomates mi", + "fr:réduite reconstituée", + "fr:morceaux et miettes de thon à l'huile de tournesol", + "fr:edam", + "en:milk", + "fr:mozzarella", + "en:milk", + "en:water", + "fr:oignon-frit", + "en:onions", + "en:canola-oil", + "en:vegetable-oil", + "fr:epice-et-plante-aromatique", + "en:onions", + "en:wheat-flour", + "fr:jaune-d-oeuf", + "fr:fromage", + "fr:capre", + "en:sugar", + "en:salt", + "fr:proteines-de-ble", + "fr:pate-cuite", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "en:sugar", + "en:tuna", + "en:fish", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:onions", + "en:sunflower-oil", + "en:sunflower", + "fr:capre", + "en:water", + "en:salt" + ], + "manufacturing_places_debug_tags": [], + "allergens_hierarchy": [ + "en:eggs", + "en:fish", + "en:gluten", + "en:milk" + ], + "additives_original_tags": [], + "additives_debug_tags": [], + "amino_acids_tags": [], + "packaging_debug_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 60,6% : purée de tomates mi-réduite reconstituée 25%, morceaux et miettes de thon à l'huile de tournesol 9,9% (thon 8,4%, huile de tournesol, sel), edam (lait) 7%, mozzarella (lait) 7%, eau, oignons frits (oignons, huile de tournesol), huile de colza, épices et plantes aromatiques, oignons, farine de blé, jaune d'œuf, fromage, câpres (câpres, eau, sel), sucre, sel, protéines de blé.\r\nPâte cuite 39,4% : farine de blé, eau, huile de colza, levure, sel, sucre .", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.100.jpg", + "additives_prev_original_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/nutrition_fr.21.100.jpg", + "ingredients_text_with_allergens": "Garniture 60,6% : purée de tomates mi-réduite reconstituée 25%, morceaux et miettes de thon à l'huile de tournesol 9,9% (thon 8,4%, huile de tournesol, sel), edam (lait) 7%, mozzarella (lait) 7%, eau, oignons frits (oignons, huile de tournesol), huile de colza, épices et plantes aromatiques, oignons, farine de blé, jaune d'œuf, fromage, câpres (câpres, eau, sel), sucre, sel, protéines de blé.\r\nPâte cuite 39,4% : farine de blé, eau, huile de colza, levure, sel, sucre .", + "quantity_debug_tags": [], + "_id": "3564700595039", + "ingredients_tags": [ + "fr:garniture", + "fr:puree-de-tomates-mi", + "fr:reduite-reconstituee", + "fr:morceaux-et-miettes-de-thon-a-l-huile-de-tournesol", + "fr:edam", + "en:milk", + "fr:mozzarella", + "en:milk", + "en:water", + "fr:oignon-frit", + "en:onions", + "en:canola-oil", + "en:vegetable-oil", + "fr:epice-et-plante-aromatique", + "en:onions", + "en:wheat-flour", + "fr:jaune-d-oeuf", + "fr:fromage", + "fr:capre", + "en:sugar", + "en:salt", + "fr:proteines-de-ble", + "fr:pate-cuite", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "en:vegetable-oil", + "fr:levure", + "en:salt", + "en:sugar", + "en:tuna", + "en:fish", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:onions", + "en:sunflower-oil", + "en:sunflower", + "fr:capre", + "en:water", + "en:salt" + ], + "interface_version_created": "20150316.jqm2", + "serving_size": "", + "product_quantity": 355, + "generic_name_en": "", + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "vitamins_tags": [], + "languages_tags": [ + "en:french", + "en:english", + "en:2", + "en:multilingual" + ], + "created_t": 1484399201, + "nova_group_debug": " -- ingredients/en:salt : 3", + "categories_debug_tags": [], + "origins": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.100.jpg", + "labels_hierarchy": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.400.jpg", + "lang": "fr", + "allergens_from_ingredients": "thon, lait, lait, blé, œuf, fromage, blé, blé, edam, mozzarella", + "nova_groups_tags": [ + "en:3-processed-foods" + ], + "allergens_tags": [ + "en:eggs", + "en:fish", + "en:gluten", + "en:milk" + ], + "additives_prev_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1503668239", + "sizes": { + "100": { + "w": 98, + "h": 100 + }, + "400": { + "h": 400, + "w": 390 + }, + "full": { + "h": 1360, + "w": 1327 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 76, + "w": 100 + }, + "400": { + "w": 400, + "h": 305 + }, + "full": { + "w": 1142, + "h": 870 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1503668242" + }, + "3": { + "sizes": { + "100": { + "h": 53, + "w": 100 + }, + "400": { + "h": 212, + "w": 400 + }, + "full": { + "h": 1287, + "w": 2433 + } + }, + "uploaded_t": "1503668244", + "uploader": "kiliweb" + }, + "4": { + "sizes": { + "100": { + "w": 91, + "h": 100 + }, + "400": { + "w": 362, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1087 + } + }, + "uploader": "kiliweb", + "uploaded_t": 1529682563 + }, + "5": { + "uploader": "kiliweb", + "uploaded_t": 1529682566, + "sizes": { + "100": { + "w": 90, + "h": 100 + }, + "400": { + "w": 359, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1077 + } + } + }, + "6": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 899, + "h": 1200 + } + }, + "uploaded_t": 1529682568, + "uploader": "kiliweb" + }, + "ingredients_fr": { + "sizes": { + "100": { + "h": 100, + "w": 90 + }, + "200": { + "w": 180, + "h": 200 + }, + "400": { + "w": 359, + "h": 400 + }, + "full": { + "w": 1077, + "h": 1200 + } + }, + "rev": "19", + "angle": null, + "y1": null, + "normalize": "0", + "x2": null, + "y2": null, + "x1": null, + "white_magic": "0", + "imgid": "5", + "geometry": "0x0-0-0" + }, + "front_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "w": "91", + "h": "100" + }, + "200": { + "h": 200, + "w": 181 + }, + "400": { + "w": 362, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1087 + } + }, + "rev": "17", + "geometry": "0x0-0-0", + "imgid": "4", + "white_magic": "0", + "x2": null, + "normalize": "0", + "y2": null, + "x1": null + }, + "nutrition_fr": { + "y1": null, + "angle": null, + "rev": "21", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 899, + "h": 1200 + } + }, + "imgid": "6", + "geometry": "0x0-0-0", + "white_magic": "0", + "x1": null, + "y2": null, + "x2": null, + "normalize": "0" + } + }, + "traces_tags": [ + "en:celery", + "en:crustaceans", + "en:molluscs" + ], + "no_nutrition_data": "", + "generic_name_en_debug_tags": [], + "serving_size_debug_tags": [], + "ingredients": [ + { + "rank": 1, + "text": "Garniture", + "percent": "60.6", + "id": "fr:garniture" + }, + { + "id": "fr:purée de tomates mi", + "rank": 2, + "text": "purée de tomates mi" + }, + { + "rank": 3, + "text": "réduite reconstituée", + "percent": "25", + "id": "fr:réduite reconstituée" + }, + { + "text": "morceaux et miettes de thon à l'huile de tournesol", + "rank": 4, + "percent": "9.9", + "id": "fr:morceaux et miettes de thon à l'huile de tournesol" + }, + { + "id": "fr:edam", + "percent": "7", + "rank": 5, + "text": "edam" + }, + { + "text": "_lait_", + "rank": 6, + "id": "en:milk" + }, + { + "id": "fr:mozzarella", + "percent": "7", + "text": "mozzarella", + "rank": 7 + }, + { + "id": "en:milk", + "rank": 8, + "text": "_lait_" + }, + { + "text": "eau", + "rank": 9, + "id": "en:water" + }, + { + "text": "oignons frits", + "rank": 10, + "id": "fr:oignon-frit" + }, + { + "id": "en:canola-oil", + "rank": 11, + "text": "huile de colza" + }, + { + "id": "fr:epice-et-plante-aromatique", + "rank": 12, + "text": "épices et plantes aromatiques" + }, + { + "id": "en:onions", + "rank": 13, + "text": "oignons" + }, + { + "text": "farine de _blé_", + "rank": 14, + "id": "en:wheat-flour" + }, + { + "id": "fr:jaune-d-oeuf", + "text": "jaune d'_œuf_", + "rank": 15 + }, + { + "rank": 16, + "text": "_fromage_", + "id": "fr:fromage" + }, + { + "id": "fr:capre", + "text": "câpres", + "rank": 17 + }, + { + "text": "sucre", + "rank": 18, + "id": "en:sugar" + }, + { + "id": "en:salt", + "rank": 19, + "text": "sel" + }, + { + "id": "fr:proteines-de-ble", + "text": "protéines de _blé_", + "rank": 20 + }, + { + "percent": "39.4", + "id": "fr:pate-cuite", + "text": "Pâte cuite", + "rank": 21 + }, + { + "text": "farine de _blé_", + "rank": 22, + "id": "en:wheat-flour" + }, + { + "id": "en:water", + "text": "eau", + "rank": 23 + }, + { + "id": "en:canola-oil", + "rank": 24, + "text": "huile de colza" + }, + { + "rank": 25, + "text": "levure", + "id": "fr:levure" + }, + { + "text": "sel", + "rank": 26, + "id": "en:salt" + }, + { + "id": "en:sugar", + "text": "sucre", + "rank": 27 + }, + { + "text": "_thon_", + "percent": "8.4", + "id": "en:tuna" + }, + { + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "oignons", + "id": "en:onions" + }, + { + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "fr:capre", + "text": "câpres" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "text": "sel", + "id": "en:salt" + } + ], + "last_modified_by": null, + "cities_tags": [], + "origins_tags": [], + "ingredients_n_tags": [ + "35", + "31-40" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "ingredients_ids_debug": [ + "garniture-60", + "6", + "puree-de-tomates-mi-reduite-reconstituee-25", + "morceaux-et-miettes-de-thon-a-l-huile-de-tournesol-9", + "9", + "thon-8", + "4", + "huile-de-tournesol", + "sel", + "edam", + "lait-7", + "mozzarella", + "lait-7", + "eau", + "oignons-frits", + "oignons", + "huile-de-tournesol", + "huile-de-colza", + "epices-et-plantes-aromatiques", + "oignons", + "farine-de-ble", + "jaune-d-oeuf", + "fromage", + "capres", + "capres", + "eau", + "sel", + "sucre", + "sel", + "proteines-de-ble", + "pate-cuite-39", + "4", + "farine-de-ble", + "eau", + "huile-de-colza", + "levure", + "sel", + "sucre" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/ingredients_fr.19.200.jpg", + "informers_tags": [ + "date-limite-app", + "kiliweb", + "beniben" + ], + "packaging": "surgelé,carton,plastique", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "additives_n": 0, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "purchase_places_debug_tags": [], + "additives_prev_n": 0, + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutriments": { + "salt_unit": "", + "fiber_100g": 2.4, + "carbohydrates": 21.9, + "sodium": 0.392913385826772, + "salt_100g": 0.998, + "sugars_100g": 4.1, + "fiber": 2.4, + "salt_value": "0.998", + "saturated-fat": 2.8, + "energy_serving": "", + "sugars": 4.1, + "energy_value": "232", + "fat": 11.1, + "saturated-fat_value": "2.8", + "proteins_unit": "", + "salt": 0.998, + "fiber_serving": "", + "carbohydrates_value": "21.9", + "nutrition-score-uk": "1", + "saturated-fat_unit": "", + "energy_unit": "kcal", + "nutrition-score-fr": "1", + "sugars_unit": "", + "proteins_serving": "", + "fat_serving": "", + "carbohydrates_serving": "", + "carbohydrates_unit": "", + "sugars_value": "4.1", + "nova-group_serving": 3, + "nova-group": 3, + "fiber_unit": "g", + "saturated-fat_serving": "", + "sugars_serving": "", + "nutrition-score-fr_100g": "1", + "nova-group_100g": 3, + "fat_100g": 11.1, + "energy": "971", + "proteins": "10", + "proteins_value": "10", + "fat_unit": "", + "nutrition-score-uk_100g": "1", + "proteins_100g": "10", + "carbohydrates_100g": 21.9, + "salt_serving": "", + "energy_100g": "971", + "fiber_value": "2.4", + "fat_value": "11.1", + "sodium_serving": "", + "sodium_100g": 0.392913385826772, + "saturated-fat_100g": 2.8 + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "last_editor": null, + "purchase_places": "France,Nantes", + "labels_debug_tags": [], + "creator": "date-limite-app", + "ingredients_n": 35, + "ingredients_original_tags": [ + "fr:garniture", + "fr:purée de tomates mi", + "fr:réduite reconstituée", + "fr:morceaux et miettes de thon à l'huile de tournesol", + "fr:edam", + "en:milk", + "fr:mozzarella", + "en:milk", + "en:water", + "fr:oignon-frit", + "en:canola-oil", + "fr:epice-et-plante-aromatique", + "en:onions", + "en:wheat-flour", + "fr:jaune-d-oeuf", + "fr:fromage", + "fr:capre", + "en:sugar", + "en:salt", + "fr:proteines-de-ble", + "fr:pate-cuite", + "en:wheat-flour", + "en:water", + "en:canola-oil", + "fr:levure", + "en:salt", + "en:sugar", + "en:tuna", + "en:sunflower-oil", + "en:salt", + "en:onions", + "en:sunflower-oil", + "fr:capre", + "en:water", + "en:salt" + ], + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "last_modified_t": 1529682568, + "pnns_groups_2": "Pizza pies and quiche", + "manufacturing_places_tags": [], + "categories": "Pizzas surgelées,Pizzas au thon", + "ingredients_text_debug": "Garniture 60,6% : purée de tomates mi-réduite reconstituée 25%, morceaux et miettes de thon à l'huile de tournesol 9,9% (_thon_ 8,4%, huile de tournesol, sel), edam (_lait_) 7%, mozzarella (_lait_) 7%, eau, oignons frits (oignons, huile de tournesol), huile de colza, épices et plantes aromatiques, oignons, farine de _blé_, jaune d'_œuf_, _fromage_, câpres (câpres, eau, sel), sucre, sel, protéines de _blé_.\r\nPâte cuite 39,4% : farine de _blé_, eau, huile de colza, levure, sel, sucre .", + "ingredients_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_en": "Pizza merveilles a", + "traces": "Céleri,Crustacés,Mollusques", + "brands_debug_tags": [], + "labels_tags": [], + "ingredients_debug": [ + "Garniture 60", + ",", + null, + null, + null, + "6% ", + ":", + ":", + null, + null, + " purée de tomates mi-réduite reconstituée 25%", + ",", + null, + null, + null, + " morceaux et miettes de thon à l'huile de tournesol 9", + ",", + null, + null, + null, + "9% ", + "(", + "(", + null, + null, + "_thon_ 8", + ",", + null, + null, + null, + "4%", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " edam ", + "(", + "(", + null, + null, + "_lait_) 7%", + ",", + null, + null, + null, + " mozzarella ", + "(", + "(", + null, + null, + "_lait_) 7%", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " oignons frits ", + "(", + "(", + null, + null, + "oignons", + ",", + null, + null, + null, + " huile de tournesol)", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " épices et plantes aromatiques", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " jaune d'_œuf_", + ",", + null, + null, + null, + " _fromage_", + ",", + null, + null, + null, + " câpres ", + "(", + "(", + null, + null, + "câpres", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " protéines de _blé_", + ".\r", + null, + null, + null, + "\nPâte cuite 39", + ",", + null, + null, + null, + "4% ", + ":", + ":", + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile de colza", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " sucre ." + ], + "vitamins_prev_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/356/470/059/5039/front_fr.17.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "en:tuna-pizzas" + ], + "code": "3564700595039", + "ingredients_text_with_allergens_en": "", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "completed_t": 1503932817, + "allergens": "thon, lait, lait, blé, œuf, fromage, blé, blé, thon, lait, lait, blé, œuf, fromage, blé, blé, edam, mozzarella", + "last_image_dates_tags": [ + "2018-06-22", + "2018-06", + "2018" + ], + "link_debug_tags": [], + "editors_tags": [ + "date-limite-app", + "kiliweb", + "openfoodfacts-contributors", + "beniben", + "tacite-mass-editor" + ], + "languages": { + "en:english": 1, + "en:french": 6 + } + }, + { + "product_name_xx_debug_tags": [], + "nutrition_score_warning_no_fiber": 1, + "additives_debug_tags": [], + "additives_original_tags": [], + "allergens_hierarchy": [], + "nutrition_data": "on", + "ingredients_hierarchy": [], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1486501969, + "traces_hierarchy": [], + "ingredients_text_it": "", + "generic_name_fr": "", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 0, + "emb_codes_orig": "", + "max_imgid": "10", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france", + "en:netherlands", + "en:switzerland" + ], + "emb_codes_debug_tags": [], + "nutrition_grades_tags": [ + "c" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "product_name_en_debug_tags": [], + "last_edit_dates_tags": [ + "2018-06-21", + "2018-06", + "2018" + ], + "link": "https://www.oetker.co.uk/uk-en/our-products/pizza/ristorante/hawaii.html", + "generic_name_de": "", + "languages_codes": { + "it": 1, + "fr": 5, + "en": 1, + "de": 2 + }, + "brands_tags": [ + "dr-oetker" + ], + "nutrition_grade_fr": "c", + "labels_prev_tags": [], + "serving_quantity": 355, + "nutrition_grades": "c", + "correctors_tags": [ + "openfood-ch-import", + "johnthejohnson" + ], + "codes_tags": [ + "code-13", + "4001724819608", + "400172481960x", + "40017248196xx", + "4001724819xxx", + "400172481xxxx", + "40017248xxxxx", + "4001724xxxxxx", + "400172xxxxxxx", + "40017xxxxxxxx", + "4001xxxxxxxxx", + "400xxxxxxxxxx", + "40xxxxxxxxxxx", + "4xxxxxxxxxxxx" + ], + "minerals_prev_tags": [], + "expiration_date": "", + "product_name_it": "Ristorante: Pizza Hawaii", + "emb_codes": "", + "entry_dates_tags": [ + "2017-01-06", + "2017-01", + "2017" + ], + "url": "https://ssl-api.openfoodfacts.org/product/4001724819608/pizza-hawaii-dr-oetker", + "origins_debug_tags": [], + "ingredients_text_en_debug_tags": [], + "traces_from_ingredients": "", + "purchase_places_tags": [], + "product_name_fr": "Ristorante: Pizza Hawaii", + "ingredients_text_de": "WEIZENMEHL, 27% passierte Tomaten, 15% KÄSE (schnittfester MOZZARELLA, EDAMER), 14% eingelegte Ananasstücke (Ananas, Wasser, Zucker, Säuerungsmittel (Citronensäure)), 6,8% gekochter Hinterschinken (Schweinefleisch, Wasser, Salz, Dextrose, Stabilisatoren (Di- und Triphosphate, Natriumnitrit), Aroma, Raucharoma), Rapsöl, Zucker, Backhefe, Salz, Wasser, modifizierte Stärke, Petersilie.", + "interface_version_modified": "20120622", + "update_key": "key_1533677490", + "generic_name_xx_debug_tags": [], + "packaging_tags": [], + "labels": "", + "pnns_groups_1": "Composite foods", + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/ingredients_fr.20.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/ingredients_fr.20.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/ingredients_fr.20.400.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/front_fr.3.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/front_fr.3.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/front_fr.3.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/nutrition_fr.8.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/nutrition_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/400/172/481/9608/nutrition_fr.8.400.jpg" + } + } + }, + "ingredients_text": "", + "emb_codes_tags": [], + "sortkey": 529599398, + "lang_debug_tags": [], + "ingredients_text_fr": "Farine de BLE, 27% purée de tomate, 15% FROMAGE (MOZZARELLA, EDAM), 14% ananas en morceaux marinés (ananas, eau, sucre, acidifiant (acide citrique)), 6,8% jambon cuit (viande de porc, eau, sel, dextrose, stabilisants (di- et triphosphate, nitrite de sodium), arôme, arôme de fumée), huile de colza, sucre, levure de boulangerie, sel, eau, amidon modifié, persil.", + "nutrition_data_prepared": "", + "ingredients_text_en": "", + "product_name": "", + "lc": "xx", + "ingredients_text_fr_debug_tags": [], + "countries": "France,Switzerland,Netherlands", + "nutrient_levels": { + "sugars": "moderate", + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "moderate" + }, + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "generic_name_de_debug_tags": [], + "quantity": "355 g", + "amino_acids_prev_tags": [], + "ingredients_text_xx": "", + "countries_debug_tags": [], + "checkers_tags": [], + "brands": "Dr. Oetker", + "additives_tags": [], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-to-be-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "generic_name": "", + "nutrition_data_prepared_per": "100g", + "generic_name_it_debug_tags": [], + "id": "4001724819608", + "rev": 24, + "_keywords": [ + "oetker", + "pizza", + "dr" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-moderate-quantity" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 4 + sugars 1 + sodium 4 - fruits 0% 0 - fiber 0 - proteins 5 -- fsa 4 -- fr 4", + "stores": "", + "ingredients_text_it_debug_tags": [], + "debug_param_sorted_langs": [ + "xx", + "de", + "en", + "fr", + "it" + ], + "product_name_xx": "", + "additives_old_tags": [], + "languages_hierarchy": [ + "en:italian", + "en:german", + "en:english", + "en:french" + ], + "stores_debug_tags": [], + "stores_tags": [], + "countries_hierarchy": [ + "en:france", + "en:netherlands", + "en:switzerland" + ], + "ingredients_text_xx_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "ingredients_text_with_allergens_it": "", + "quality_tags": [ + "ingredients-de-4-consonants" + ], + "labels_prev_hierarchy": [], + "product_name_de_debug_tags": [], + "editors_tags": [ + "openfood-ch-import", + "date-limite-app", + "tacite-mass-editor", + "johnthejohnson" + ], + "languages": { + "en:french": 5, + "en:english": 1, + "en:german": 2, + "en:italian": 1 + }, + "link_debug_tags": [], + "last_image_dates_tags": [ + "2017-02-07", + "2017-02", + "2017" + ], + "allergens": "", + "ingredients_text_with_allergens_en": "", + "code": "4001724819608", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "photographers_tags": [ + "openfood-ch-import" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [], + "labels_tags": [], + "brands_debug_tags": [], + "traces": "", + "product_name_en": "Pizza Hawaii", + "product_name_debug_tags": [], + "ingredients_text_debug": "", + "manufacturing_places_tags": [], + "categories": "Pizzas", + "last_modified_t": 1529599398, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "pnns_groups_2": "Pizza pies and quiche", + "product_name_it_debug_tags": [], + "ingredients_original_tags": [], + "purchase_places": "", + "creator": "date-limite-app", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [], + "last_editor": "johnthejohnson", + "ingredients_text_with_allergens_de": "WEIZENMEHL, 27% passierte Tomaten, 15% KÄSE (schnittfester MOZZARELLA, EDAMER), 14% eingelegte Ananasstücke (Ananas, Wasser, Zucker, Säuerungsmittel (Citronensäure)), 6,8% gekochter Hinterschinken (Schweinefleisch, Wasser, Salz, Dextrose, Stabilisatoren (Di- und Triphosphate, Natriumnitrit), Aroma, Raucharoma), Rapsöl, Zucker, Backhefe, Salz, Wasser, modifizierte Stärke, Petersilie.", + "nutriments": { + "salt_unit": "g", + "carbohydrates": "25", + "sodium": 0.433070866141732, + "salt_100g": 1.1, + "sugars_100g": 5.4, + "salt_value": "1.1", + "saturated-fat": 2.7, + "energy_serving": "3210", + "sugars": 5.4, + "sodium_value": "0.433070866141732", + "energy_value": "903", + "fat": 8.4, + "proteins_unit": "g", + "saturated-fat_value": "2.7", + "salt": 1.1, + "carbohydrates_value": "25", + "nutrition-score-uk": "4", + "saturated-fat_unit": "g", + "energy_unit": "kJ", + "sugars_unit": "g", + "nutrition-score-fr": "4", + "proteins_serving": 30.2, + "fat_serving": 29.8, + "carbohydrates_serving": 88.8, + "sugars_value": "5.4", + "carbohydrates_unit": "g", + "sodium_unit": "g", + "saturated-fat_serving": 9.59, + "sugars_serving": 19.2, + "nutrition-score-fr_100g": "4", + "fat_100g": 8.4, + "energy": "903", + "proteins": 8.5, + "proteins_value": "8.5", + "fat_unit": "g", + "nutrition-score-uk_100g": "4", + "carbohydrates_100g": "25", + "proteins_100g": 8.5, + "salt_serving": 3.91, + "energy_100g": "903", + "fat_value": "8.4", + "sodium_serving": 1.54, + "sodium_100g": 0.433070866141732, + "saturated-fat_100g": 2.7 + }, + "product_name_de": "Ristorante: Pizza Hawaii", + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-to-be-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "generic_name_it": "", + "purchase_places_debug_tags": [], + "generic_name_xx": "", + "fruits-vegetables-nuts_100g_estimate": 0, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [], + "ingredients_text_de_debug_tags": [], + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "informers_tags": [ + "date-limite-app", + "openfood-ch-import", + "johnthejohnson" + ], + "packaging": "", + "ingredients_ids_debug": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "last_modified_by": "johnthejohnson", + "nova_group_tags": [ + "not-applicable" + ], + "cities_tags": [], + "origins_tags": [], + "ingredients": [], + "generic_name_en_debug_tags": [], + "serving_size_debug_tags": [], + "images": { + "1": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486501967, + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 563, + "h": 1000 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 563, + "h": 1000 + } + }, + "uploaded_t": 1486501967, + "uploader": "openfood-ch-import" + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486501967 + }, + "4": { + "sizes": { + "100": { + "h": 19, + "w": 100 + }, + "400": { + "w": 400, + "h": 76 + }, + "full": { + "h": 152, + "w": 800 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486501968 + }, + "5": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 1000, + "w": 563 + } + }, + "uploaded_t": 1486501968, + "uploader": "openfood-ch-import" + }, + "6": { + "uploaded_t": 1486501968, + "uploader": "openfood-ch-import", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 563, + "w": 1000 + } + } + }, + "7": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486501968 + }, + "8": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486501969 + }, + "9": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486501969, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1000, + "h": 563 + } + } + }, + "10": { + "uploader": "openfood-ch-import", + "uploaded_t": 1486501969, + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 563, + "w": 1000 + } + } + }, + "ingredients_fr": { + "x1": -1, + "y2": -1, + "normalize": null, + "x2": -1, + "imgid": "10", + "geometry": "0x0--2--2", + "white_magic": null, + "rev": "20", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "200": { + "w": 200, + "h": 113 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 1000, + "h": 563 + } + }, + "y1": -1, + "angle": 0 + }, + "front_fr": { + "normalize": null, + "x2": -1, + "x1": -1, + "y2": -1, + "imgid": "1", + "geometry": "0x0--2--2", + "white_magic": null, + "rev": "3", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "200": { + "w": 113, + "h": 200 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 563, + "h": 1000 + } + }, + "angle": 0, + "y1": -1 + }, + "nutrition_fr": { + "x2": -1, + "normalize": null, + "y2": -1, + "x1": -1, + "imgid": "4", + "geometry": "0x0--2--2", + "white_magic": null, + "sizes": { + "100": { + "h": 19, + "w": 100 + }, + "200": { + "w": 200, + "h": 38 + }, + "400": { + "w": 400, + "h": 76 + }, + "full": { + "w": 800, + "h": 152 + } + }, + "rev": "8", + "angle": 0, + "y1": -1 + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_from_ingredients": "", + "additives_prev_tags": [], + "allergens_tags": [], + "lang": "xx", + "sources": [ + { + "url": "https://www.openfood.ch/en/products/7526", + "import_t": 1486501969, + "images": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10" + ], + "fields": [ + "product_name_fr", + "quantity", + "countries", + "serving_size", + "ingredients_text_fr", + "ingredients_text_de", + "nutrients.energy", + "nutrients.fat", + "nutrients.saturated-fat", + "nutrients.carbohydrates", + "nutrients.sugars", + "nutrients.proteins", + "nutrients.salt" + ], + "id": "openfood-ch" + } + ], + "traces_debug_tags": [], + "labels_hierarchy": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-to-be-completed, en:photos-to-be-validated, en:photos-uploaded", + "manufacturing_places": "", + "origins": "", + "nova_group_debug": "no nova group when the product does not have ingredients", + "created_t": 1483699704, + "languages_tags": [ + "en:italian", + "en:german", + "en:english", + "en:french", + "en:4", + "en:multilingual" + ], + "categories_debug_tags": [], + "vitamins_tags": [], + "product_quantity": 355, + "interface_version_created": "20150316.jqm2", + "serving_size": "355 g", + "generic_name_en": "", + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas" + ], + "_id": "4001724819608", + "ingredients_tags": [], + "quantity_debug_tags": [], + "additives_prev_original_tags": [], + "ingredients_text_with_allergens_fr": "Farine de BLE, 27% purée de tomate, 15% FROMAGE (MOZZARELLA, EDAM), 14% ananas en morceaux marinés (ananas, eau, sucre, acidifiant (acide citrique)), 6,8% jambon cuit (viande de porc, eau, sel, dextrose, stabilisants (di- et triphosphate, nitrite de sodium), arôme, arôme de fumée), huile de colza, sucre, levure de boulangerie, sel, eau, amidon modifié, persil.", + "packaging_debug_tags": [], + "amino_acids_tags": [] + }, + { + "ingredients_text_with_allergens": "FARINE DE BLÉ TENDRE, eau ,MOZZARELLA 16,6 % (LAIT, présure, ferments lactiques correcteur d'acidité E330), saucisson piquant (viande de porc, LACTOSE, conservateur : E250 E252), aubergines, GORCONZOLA (LAIT, sel, présure),pulpe de tomates ,FARINE INTEGRALE KOHRASAN, SEMOULE DE BLÉ DUR, sel, huile de olive extra-vierge, AVOINE, lin, GERME DE BLÉ, levure 0,003 %.", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.100.jpg", + "quantity_debug_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.100.jpg", + "additives_prev_original_tags": [ + "en:e330", + "en:e250", + "en:e252" + ], + "ingredients_text_with_allergens_fr": "FARINE DE BLÉ TENDRE, eau ,MOZZARELLA 16,6 % (LAIT, présure, ferments lactiques correcteur d'acidité E330), saucisson piquant (viande de porc, LACTOSE, conservateur : E250 E252), aubergines, GORCONZOLA (LAIT, sel, présure),pulpe de tomates ,FARINE INTEGRALE KOHRASAN, SEMOULE DE BLÉ DUR, sel, huile de olive extra-vierge, AVOINE, lin, GERME DE BLÉ, levure 0,003 %.", + "amino_acids_tags": [], + "packaging_debug_tags": [], + "vitamins_tags": [], + "interface_version_created": "20150316.jqm2", + "serving_size": "", + "product_quantity": 430, + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:refrigerated-foods", + "en:pizzas", + "en:refrigerated-meals", + "en:pepperoni-pizzas", + "fr:pizzas-au-peperroni" + ], + "_id": "3760019721279", + "ingredients_tags": [ + "fr:farine-de-ble-tendre", + "en:water", + "fr:mozzarella", + "fr:saucisson-piquant", + "en:aubergine", + "fr:gorconzola", + "fr:pulpe-de-tomate", + "fr:farine-integrale-kohrasan", + "fr:semoule-de-ble-dur", + "en:salt", + "fr:huile-de-olive-extra-vierge", + "fr:avoine", + "fr:lin", + "fr:germes-de-ble", + "fr:levure", + "en:milk", + "fr:presure", + "fr:ferments-lactiques-correcteur-d-acidite-e330", + "en:pork-meat", + "en:meat", + "en:lactose", + "en:preservative", + "fr:e250-e252", + "en:milk", + "en:salt", + "fr:presure" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.100.jpg", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "Italie", + "labels_hierarchy": [ + "en:made-in-italy" + ], + "origins": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "nova_group_debug": " -- additives/en:e252 : 3 -- ingredients/en:lactose : 4", + "created_t": 1518980323, + "categories_debug_tags": [], + "lang": "fr", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.400.jpg", + "serving_size_debug_tags": [], + "images": { + "1": { + "uploader": "kiliweb", + "uploaded_t": "1518980325", + "sizes": { + "100": { + "h": 100, + "w": 68 + }, + "400": { + "w": 273, + "h": 400 + }, + "full": { + "h": 1360, + "w": 927 + } + } + }, + "2": { + "uploaded_t": "1518980327", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 82, + "h": 100 + }, + "400": { + "h": 400, + "w": 329 + }, + "full": { + "w": 1118, + "h": 1360 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 226, + "w": 400 + }, + "full": { + "h": 1410, + "w": 2496 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1518980330" + }, + "4": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 901, + "h": 1200 + } + }, + "uploaded_t": "1521040523", + "uploader": "kiliweb" + }, + "5": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1200, + "w": 1599 + } + }, + "uploader": "kiliweb", + "uploaded_t": "1521040528" + }, + "front_fr": { + "rev": "12", + "sizes": { + "100": { + "w": "75", + "h": "100" + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 901, + "h": 1200 + } + }, + "y1": null, + "angle": null, + "x1": null, + "y2": null, + "x2": null, + "normalize": "0", + "imgid": "4", + "geometry": "0x0-0-0", + "white_magic": "0" + }, + "ingredients_fr": { + "x1": "1.30078125", + "y2": "233.875", + "x2": "394.8203125", + "normalize": "false", + "geometry": "1573x561-5-374", + "imgid": "5", + "white_magic": "false", + "rev": "16", + "sizes": { + "100": { + "h": 36, + "w": 100 + }, + "200": { + "h": 71, + "w": 200 + }, + "400": { + "h": 143, + "w": 400 + }, + "full": { + "w": 1573, + "h": 561 + } + }, + "y1": "93.55078125", + "angle": "0" + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 71, + "w": 100 + }, + "200": { + "h": 142, + "w": 200 + }, + "400": { + "w": 400, + "h": 284 + }, + "full": { + "h": 509, + "w": 717 + } + }, + "rev": "18", + "angle": "0", + "y1": "167.53515625", + "x2": "288.15234375", + "normalize": "false", + "y2": "317.22265625", + "x1": "77.11328125", + "geometry": "717x509-262-569", + "white_magic": "false", + "imgid": "2" + } + }, + "traces_tags": [], + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [ + "en:e250", + "en:e252", + "en:e330" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "ingredients_n_tags": [ + "25", + "21-30" + ], + "cities_tags": [], + "last_modified_by": "beniben", + "origins_tags": [], + "ingredients": [ + { + "id": "fr:farine-de-ble-tendre", + "text": "FARINE DE BLÉ TENDRE", + "rank": 1 + }, + { + "id": "en:water", + "rank": 2, + "text": "eau" + }, + { + "id": "fr:mozzarella", + "percent": "16.6", + "rank": 3, + "text": "MOZZARELLA" + }, + { + "text": "saucisson piquant", + "rank": 4, + "id": "fr:saucisson piquant" + }, + { + "id": "en:aubergine", + "text": "aubergines", + "rank": 5 + }, + { + "id": "fr:GORCONZOLA", + "rank": 6, + "text": "GORCONZOLA" + }, + { + "rank": 7, + "text": "pulpe de tomates", + "id": "fr:pulpe-de-tomate" + }, + { + "id": "fr:FARINE INTEGRALE KOHRASAN", + "text": "FARINE INTEGRALE KOHRASAN", + "rank": 8 + }, + { + "id": "fr:semoule-de-ble-dur", + "text": "SEMOULE DE BLÉ DUR", + "rank": 9 + }, + { + "id": "en:salt", + "rank": 10, + "text": "sel" + }, + { + "text": "huile de olive extra-vierge", + "rank": 11, + "id": "fr:huile de olive extra-vierge" + }, + { + "text": "AVOINE", + "rank": 12, + "id": "fr:avoine" + }, + { + "id": "fr:lin", + "text": "lin", + "rank": 13 + }, + { + "text": "GERME DE BLÉ", + "rank": 14, + "id": "fr:germes-de-ble" + }, + { + "rank": 15, + "text": "levure", + "percent": "0.003", + "id": "fr:levure" + }, + { + "id": "en:milk", + "text": "LAIT" + }, + { + "id": "fr:presure", + "text": "présure" + }, + { + "text": "ferments lactiques correcteur d'acidité E330", + "id": "fr:ferments lactiques correcteur d'acidité E330" + }, + { + "text": "viande de porc", + "id": "en:pork-meat" + }, + { + "id": "en:lactose", + "text": "LACTOSE" + }, + { + "text": "conservateur", + "id": "en:preservative" + }, + { + "id": "fr:E250 E252", + "text": "E250 E252" + }, + { + "id": "en:milk", + "text": "LAIT" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "présure", + "id": "fr:presure" + } + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.200.jpg", + "ingredients_ids_debug": [ + "farine-de-ble-tendre", + "eau", + "mozzarella-16", + "6", + "lait", + "presure", + "ferments-lactiques-correcteur-d-acidite", + "e330", + "saucisson-piquant", + "viande-de-porc", + "lactose", + "conservateur", + "e250", + "e252", + "aubergines", + "gorconzola", + "lait", + "sel", + "presure", + "pulpe-de-tomates", + "farine-integrale-kohrasan", + "semoule-de-ble-dur", + "sel", + "huile-de-olive-extra-vierge", + "avoine", + "lin", + "germe-de-ble", + "levure-0", + "003" + ], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "Frais,plastique", + "informers_tags": [ + "kiliweb", + "beniben" + ], + "purchase_places_debug_tags": [], + "additives_prev_n": 3, + "product_name_fr_debug_tags": [], + "expiration_date_debug_tags": [], + "additives_n": 3, + "purchase_places": "France", + "creator": "kiliweb", + "nutrition_data_prepared_per_debug_tags": [], + "labels_debug_tags": [ + "added-en-made-in-italy", + "removed-fr-fabrique-en-italie" + ], + "last_editor": "beniben", + "nutriments": { + "fat_100g": "9", + "polyunsaturated-fat": "1", + "energy": "1075", + "nova-group_100g": 4, + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "monounsaturated-fat_unit": "g", + "proteins_value": "11.9", + "proteins": 11.9, + "fiber_unit": "g", + "saturated-fat_serving": "", + "nova-group": 4, + "nova-group_serving": 4, + "monounsaturated-fat": 2.5, + "omega-3-fat_100g": 0.3, + "sugars_serving": "", + "polyphenols_unit": "µg", + "fiber_value": "3.1", + "energy_100g": "1075", + "polyphenols_serving": "", + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "saturated-fat_100g": 5.5, + "fat_value": "9", + "omega-3-fat_unit": "g", + "monounsaturated-fat_serving": "", + "polyunsaturated-fat_value": "1", + "proteins_100g": 11.9, + "carbohydrates_100g": 31.5, + "fat_unit": "g", + "polyunsaturated-fat_unit": "g", + "omega-3-fat_label": "Acides gras Oméga 3", + "polyphenols": 0.000106, + "sugars": "0", + "saturated-fat_value": "5.5", + "proteins_unit": "g", + "energy_value": "257", + "fat": "9", + "carbohydrates": 31.5, + "fiber_100g": 3.1, + "polyunsaturated-fat_serving": "", + "energy_serving": "", + "fiber": 3.1, + "omega-3-fat_serving": "", + "sugars_100g": "0", + "saturated-fat": 5.5, + "monounsaturated-fat_100g": 2.5, + "polyphenols_value": "106", + "fat_serving": "", + "carbohydrates_unit": "g", + "sugars_value": "0", + "polyunsaturated-fat_100g": "1", + "omega-3-fat": 0.3, + "carbohydrates_serving": "", + "saturated-fat_unit": "g", + "energy_unit": "kcal", + "fiber_serving": "", + "omega-3-fat_value": "0.3", + "carbohydrates_value": "31.5", + "monounsaturated-fat_value": "2.5", + "polyphenols_100g": 0.000106, + "sugars_unit": "g", + "polyphenols_label": "polyphénols", + "proteins_serving": "" + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:refrigerated-foods", + "en:pizzas", + "en:refrigerated-meals", + "en:pepperoni-pizzas", + "fr:Pizzas au peperroni" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "categories": "Pizzas,Plats préparés réfrigérés,Pizzas au peperroni,Pizzas au pepperoni", + "manufacturing_places_tags": [ + "italie" + ], + "last_modified_t": 1529435941, + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:refrigerated-foods", + "en:refrigerated-meals", + "en:pepperoni-pizzas", + "fr:Pizzas au peperroni" + ], + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [ + "fr:farine-de-ble-tendre", + "en:water", + "fr:mozzarella", + "fr:saucisson piquant", + "en:aubergine", + "fr:GORCONZOLA", + "fr:pulpe-de-tomate", + "fr:FARINE INTEGRALE KOHRASAN", + "fr:semoule-de-ble-dur", + "en:salt", + "fr:huile de olive extra-vierge", + "fr:avoine", + "fr:lin", + "fr:germes-de-ble", + "fr:levure", + "en:milk", + "fr:presure", + "fr:ferments lactiques correcteur d'acidité E330", + "en:pork-meat", + "en:lactose", + "en:preservative", + "fr:E250 E252", + "en:milk", + "en:salt", + "fr:presure" + ], + "ingredients_n": 25, + "ingredients_text_debug": "FARINE DE BLÉ TENDRE, eau ,MOZZARELLA 16,6 % (LAIT, présure, ferments lactiques correcteur d'acidité : - e330 - ), saucisson piquant (viande de porc, LACTOSE, conservateur : - e250 - - e252 - ), aubergines, GORCONZOLA (LAIT, sel, présure),pulpe de tomates ,FARINE INTEGRALE KOHRASAN, SEMOULE DE BLÉ DUR, sel, huile de olive extra-vierge, AVOINE, lin, GERME DE BLÉ, levure 0,003 %.", + "ingredients_from_palm_oil_n": 0, + "brands_debug_tags": [], + "traces": "", + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "FARINE DE BLÉ TENDRE", + ",", + null, + null, + null, + " eau ", + ",", + null, + null, + null, + "MOZZARELLA 16", + ",", + null, + null, + null, + "6 % ", + "(", + "(", + null, + null, + "LAIT", + ",", + null, + null, + null, + " présure", + ",", + null, + null, + null, + " ferments lactiques correcteur d'acidité ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e330", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " saucisson piquant ", + "(", + "(", + null, + null, + "viande de porc", + ",", + null, + null, + null, + " LACTOSE", + ",", + null, + null, + null, + " conservateur ", + ":", + ":", + null, + null, + " ", + " - ", + " - ", + " - ", + null, + "e250", + " - ", + " - ", + " - ", + null, + "", + " - ", + " - ", + " - ", + null, + "e252", + " - ", + " - ", + " - ", + null, + ")", + ",", + null, + null, + null, + " aubergines", + ",", + null, + null, + null, + " GORCONZOLA ", + "(", + "(", + null, + null, + "LAIT", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " présure)", + ",", + null, + null, + null, + "pulpe de tomates ", + ",", + null, + null, + null, + "FARINE INTEGRALE KOHRASAN", + ",", + null, + null, + null, + " SEMOULE DE BLÉ DUR", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " huile de olive extra-vierge", + ",", + null, + null, + null, + " AVOINE", + ",", + null, + null, + null, + " lin", + ",", + null, + null, + null, + " GERME DE BLÉ", + ",", + null, + null, + null, + " levure 0", + ",", + null, + null, + null, + "003 %." + ], + "labels_tags": [ + "en:made-in-italy" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3760019721279", + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:refrigerated-foods", + "en:refrigerated-meals", + "en:pepperoni-pizzas", + "fr:pizzas-au-peperroni" + ], + "editors_tags": [ + "beniben", + "openfoodfacts-contributors", + "kiliweb" + ], + "languages": { + "en:french": 6 + }, + "link_debug_tags": [], + "last_image_dates_tags": [ + "2018-03-14", + "2018-03", + "2018" + ], + "completed_t": 1529435941, + "allergens": "BLÉ, MOZZARELLA, LAIT, LACTOSE, LAIT, BLÉ, AVOINE, BLÉ", + "labels_prev_hierarchy": [ + "fr:Fabriqué en Italie" + ], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.200.jpg", + "stores_tags": [], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [ + "quantity-contains-e" + ], + "rev": 19, + "id": "3760019721279", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-low-quantity" + ], + "nutrition_score_debug": "missing sodium", + "_keywords": [ + "peperroni", + "refrigere", + "ricca", + "pizza", + "pepperoni", + "treo", + "italie", + "au", + "fabrique", + "en", + "prepare", + "plat" + ], + "stores": "", + "debug_param_sorted_langs": [ + "fr" + ], + "additives_old_tags": [ + "en:e330", + "en:e250", + "en:e252" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.400.jpg", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [ + "en:e250", + "en:e252", + "en:e330" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.200.jpg", + "generic_name": "Pizza Ricca", + "nutrition_data_prepared_per": "100g", + "product_name": "Pizza Ricca", + "lc": "fr", + "ingredients_text_fr_debug_tags": [], + "countries": "France", + "misc_tags": [ + "en:nutriscore-not-computed", + "en:nutrition-not-enough-data-to-compute-nutrition-score" + ], + "nutrient_levels": { + "saturated-fat": "high", + "fat": "moderate", + "sugars": "low" + }, + "quantity": "430 g e", + "amino_acids_prev_tags": [], + "countries_debug_tags": [], + "brands": "Treo", + "checkers_tags": [], + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.200.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.200.jpg" + } + }, + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/376/001/972/1279/ingredients_fr.16.400.jpg" + } + } + }, + "ingredients_text": "FARINE DE BLÉ TENDRE, eau ,MOZZARELLA 16,6 % (LAIT, présure, ferments lactiques correcteur d'acidité E330), saucisson piquant (viande de porc, LACTOSE, conservateur : E250 E252), aubergines, GORCONZOLA (LAIT, sel, présure),pulpe de tomates ,FARINE INTEGRALE KOHRASAN, SEMOULE DE BLÉ DUR, sel, huile de olive extra-vierge, AVOINE, lin, GERME DE BLÉ, levure 0,003 %.", + "emb_codes_tags": [], + "lang_debug_tags": [], + "sortkey": 1529435941, + "nutrition_data_prepared": "", + "ingredients_text_fr": "FARINE DE BLÉ TENDRE, eau ,MOZZARELLA 16,6 % (LAIT, présure, ferments lactiques correcteur d'acidité E330), saucisson piquant (viande de porc, LACTOSE, conservateur : E250 E252), aubergines, GORCONZOLA (LAIT, sel, présure),pulpe de tomates ,FARINE INTEGRALE KOHRASAN, SEMOULE DE BLÉ DUR, sel, huile de olive extra-vierge, AVOINE, lin, GERME DE BLÉ, levure 0,003 %.", + "purchase_places_tags": [ + "france" + ], + "product_name_fr": "Pizza Ricca", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.100.jpg", + "interface_version_modified": "20120622", + "update_key": "nova3", + "packaging_tags": [ + "frais", + "plastique" + ], + "ingredients_text_debug_tags": [], + "labels": "Fabriqué en Italie", + "pnns_groups_1": "Composite foods", + "entry_dates_tags": [ + "2018-02-18", + "2018-02", + "2018" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3760019721279/pizza-ricca-treo", + "origins_debug_tags": [], + "minerals_prev_tags": [], + "expiration_date": "15/03/2018", + "emb_codes": "", + "labels_prev_tags": [ + "fr:fabrique-en-italie" + ], + "serving_quantity": 0, + "correctors_tags": [ + "openfoodfacts-contributors", + "beniben" + ], + "codes_tags": [ + "code-13", + "3760019721279", + "376001972127x", + "37600197212xx", + "3760019721xxx", + "376001972xxxx", + "37600197xxxxx", + "3760019xxxxxx", + "376001xxxxxxx", + "37600xxxxxxxx", + "3760xxxxxxxxx", + "376xxxxxxxxxx", + "37xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/nutrition_fr.18.400.jpg", + "languages_codes": { + "fr": 6 + }, + "brands_tags": [ + "treo" + ], + "nutrition_grades_tags": [ + "unknown" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-06-19", + "2018-06", + "2018" + ], + "link": "", + "unknown_nutrients_tags": [ + "polyphenols" + ], + "unknown_ingredients_n": 6, + "emb_codes_orig": "", + "max_imgid": "5", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "emb_codes_debug_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/376/001/972/1279/front_fr.12.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [], + "generic_name_fr": "Pizza Ricca", + "ingredients_hierarchy": [ + "fr:farine-de-ble-tendre", + "en:water", + "fr:mozzarella", + "fr:saucisson piquant", + "en:aubergine", + "fr:GORCONZOLA", + "fr:pulpe-de-tomate", + "fr:FARINE INTEGRALE KOHRASAN", + "fr:semoule-de-ble-dur", + "en:salt", + "fr:huile de olive extra-vierge", + "fr:avoine", + "fr:lin", + "fr:germes-de-ble", + "fr:levure", + "en:milk", + "fr:presure", + "fr:ferments lactiques correcteur d'acidité E330", + "en:pork-meat", + "en:meat", + "en:lactose", + "en:preservative", + "fr:E250 E252", + "en:milk", + "en:salt", + "fr:presure" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "additives_old_n": 3, + "last_image_t": 1521040528, + "additives_debug_tags": [], + "nutrition_data": "on", + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e330", + "en:e250", + "en:e252" + ] + }, + { + "url": "https://ssl-api.openfoodfacts.org/product/3596710441938/pizza-bolognaise-auchan", + "origins_debug_tags": [], + "entry_dates_tags": [ + "2017-07-06", + "2017-07", + "2017" + ], + "ingredients_text_debug_tags": [], + "pnns_groups_1": "Composite foods", + "labels": "", + "product_name_fr": "Pizza Bolognaise", + "purchase_places_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.100.jpg", + "update_key": "nova3", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [], + "lang_debug_tags": [], + "sortkey": 529146379, + "ingredients_text_fr": "Garniture 55% : eau, préparation de viande hachée 1 0, 2% (viande bovine 8,6%, eau, plantes aromatiques, fécule de pomme de terre, arôme, sel, épices, poudre de tomate), purée de tomate 10%, préparation alimentaire (fromage (contient _lait_), eau, huile de tournesol, fécule de pomme de terre, protéines de _lait_, sel), mozzarella (contient _lait_), oignon 4,2%, oignon frit 2,5% (oignon, huile de tournesol), concentré de tomate, huile de tournesol, dextrose, sauce au piment (piment rouge, huile de tournesol, sel, ail), amidon modifié de maïs, carotte, ail, sel, arôme naturel, origan, poivre noir.\r\nPâte 45% : farine de blé (contient _gluten_), eau, huile de tournesol, sel, levure. ", + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.100.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.400.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.100.jpg" + } + } + }, + "ingredients_text": "Garniture 55% : eau, préparation de viande hachée 1 0, 2% (viande bovine 8,6%, eau, plantes aromatiques, fécule de pomme de terre, arôme, sel, épices, poudre de tomate), purée de tomate 10%, préparation alimentaire (fromage (contient _lait_), eau, huile de tournesol, fécule de pomme de terre, protéines de _lait_, sel), mozzarella (contient _lait_), oignon 4,2%, oignon frit 2,5% (oignon, huile de tournesol), concentré de tomate, huile de tournesol, dextrose, sauce au piment (piment rouge, huile de tournesol, sel, ail), amidon modifié de maïs, carotte, ail, sel, arôme naturel, origan, poivre noir.\r\nPâte 45% : farine de blé (contient _gluten_), eau, huile de tournesol, sel, levure. ", + "emb_codes_tags": [], + "quantity": "390 g", + "amino_acids_prev_tags": [], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Auchan", + "product_name": "Pizza Bolognaise", + "lc": "fr", + "countries": "France", + "ingredients_text_fr_debug_tags": [], + "nutrient_levels": { + "sugars": "moderate", + "saturated-fat": "moderate", + "fat": "moderate", + "salt": "high" + }, + "misc_tags": [ + "en:nutrition-no-fiber", + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrition_data_prepared_per": "100g", + "additives_tags": [ + "en:e14xx" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "generic_name": "", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.200.jpg", + "additives_old_tags": [ + "en:e14xx" + ], + "languages_hierarchy": [ + "en:french" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.400.jpg", + "rev": 12, + "id": "3596710441938", + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 4 + sugars 1 + sodium 6 - fruits 0% 0 - fiber 0 - proteins 5 -- fsa 11 -- fr 11", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-high-quantity" + ], + "stores": "", + "_keywords": [ + "la", + "pizza", + "bolognaise", + "auchan" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "quality_tags": [], + "stores_debug_tags": [], + "image_small_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.200.jpg", + "stores_tags": [], + "labels_prev_hierarchy": [], + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [ + "en:e14xx" + ], + "nutrition_score_warning_no_fiber": 1, + "additives_old_n": 1, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "last_image_t": 1499362136, + "ingredients_hierarchy": [ + "fr:garniture", + "en:water", + "fr:préparation de viande hachée 1 0", + "fr:viande-bovine", + "en:meat", + "en:water", + "fr:plante-aromatique", + "en:potato-starch", + "en:starch", + "en:flavour", + "en:salt", + "en:spice", + "fr:poudre-de-tomate", + "fr:puree-de-tomate", + "fr:préparation alimentaire", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "en:potato-starch", + "en:starch", + "en:milk-protein", + "en:salt", + "fr:mozzarella", + "fr:contient _lait_", + "en:onion", + "fr:oignon-frit", + "en:onions", + "en:tomato-concentrate", + "en:sunflower-oil", + "en:sunflower", + "en:dextrose", + "fr:sauce au piment", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:carot", + "en:garlic", + "en:salt", + "en:natural-flavour", + "en:flavour", + "fr:origan", + "en:black-pepper", + "en:pepper", + "en:paste", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "fr:levure", + "fr:fromage", + "fr:contient _lait_", + "en:onion", + "en:sunflower-oil", + "en:sunflower", + "fr:piment-rouge", + "fr:piment", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:garlic", + "en:wheat-flour", + "fr:contient _gluten_" + ], + "manufacturing_places_debug_tags": [], + "nucleotides_prev_tags": [], + "generic_name_fr": "", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [ + "en:celery", + "en:crustaceans", + "en:eggs", + "en:fish", + "en:molluscs", + "en:mustard", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "emb_codes_orig": "", + "max_imgid": "3", + "nutrition_data_per": "100g", + "emb_codes_debug_tags": [], + "countries_tags": [ + "en:france" + ], + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 6, + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "link": "", + "last_edit_dates_tags": [ + "2018-06-16", + "2018-06", + "2018" + ], + "nutrition_grades_tags": [ + "d" + ], + "brands_tags": [ + "auchan" + ], + "nutrition_grade_fr": "d", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.400.jpg", + "languages_codes": { + "fr": 5 + }, + "correctors_tags": [ + "openfoodfacts-contributors", + "segundo", + "kiliweb" + ], + "codes_tags": [ + "code-13", + "3596710441938", + "359671044193x", + "35967104419xx", + "3596710441xxx", + "359671044xxxx", + "35967104xxxxx", + "3596710xxxxxx", + "359671xxxxxxx", + "35967xxxxxxxx", + "3596xxxxxxxxx", + "359xxxxxxxxxx", + "35xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "labels_prev_tags": [], + "serving_quantity": 195, + "nutrition_grades": "d", + "expiration_date": "", + "emb_codes": "", + "minerals_prev_tags": [], + "informers_tags": [ + "kiliweb", + "segundo" + ], + "packaging": "", + "nutrition_data_per_debug_tags": [], + "nucleotides_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.200.jpg", + "ingredients_ids_debug": [ + "garniture-55", + "eau", + "preparation-de-viande-hachee-1-0", + "2", + "viande-bovine-8", + "6", + "eau", + "plantes-aromatiques", + "fecule-de-pomme-de-terre", + "arome", + "sel", + "epices", + "poudre-de-tomate", + "puree-de-tomate-10", + "preparation-alimentaire", + "fromage", + "contient-lait", + "eau", + "huile-de-tournesol", + "fecule-de-pomme-de-terre", + "proteines-de-lait", + "sel", + "mozzarella", + "contient-lait", + "oignon-4", + "2", + "oignon-frit-2", + "5", + "oignon", + "huile-de-tournesol", + "concentre-de-tomate", + "huile-de-tournesol", + "dextrose", + "sauce-au-piment", + "piment-rouge", + "huile-de-tournesol", + "sel", + "ail", + "amidon-modifie-de-mais", + "carotte", + "ail", + "sel", + "arome-naturel", + "origan", + "poivre-noir", + "pate-45", + "farine-de-ble", + "contient-gluten", + "eau", + "huile-de-tournesol", + "sel", + "levure" + ], + "ingredients": [ + { + "id": "fr:garniture", + "percent": "55", + "rank": 1, + "text": "Garniture" + }, + { + "id": "en:water", + "text": "eau", + "rank": 2 + }, + { + "text": "préparation de viande hachée 1 0", + "rank": 3, + "percent": "2", + "id": "fr:préparation de viande hachée 1 0" + }, + { + "id": "fr:viande-bovine", + "percent": "8.6", + "rank": 4, + "text": "viande bovine" + }, + { + "text": "eau", + "rank": 5, + "id": "en:water" + }, + { + "text": "plantes aromatiques", + "rank": 6, + "id": "fr:plante-aromatique" + }, + { + "text": "fécule de pomme de terre", + "rank": 7, + "id": "en:potato-starch" + }, + { + "text": "arôme", + "rank": 8, + "id": "en:flavour" + }, + { + "id": "en:salt", + "rank": 9, + "text": "sel" + }, + { + "id": "en:spice", + "rank": 10, + "text": "épices" + }, + { + "text": "poudre de tomate", + "rank": 11, + "id": "fr:poudre-de-tomate" + }, + { + "id": "fr:puree-de-tomate", + "percent": "10", + "rank": 12, + "text": "purée de tomate" + }, + { + "text": "préparation alimentaire", + "rank": 13, + "id": "fr:préparation alimentaire" + }, + { + "rank": 14, + "text": "eau", + "id": "en:water" + }, + { + "id": "en:sunflower-oil", + "rank": 15, + "text": "huile de tournesol" + }, + { + "text": "fécule de pomme de terre", + "rank": 16, + "id": "en:potato-starch" + }, + { + "rank": 17, + "text": "protéines de _lait_", + "id": "en:milk-protein" + }, + { + "id": "en:salt", + "rank": 18, + "text": "sel" + }, + { + "text": "mozzarella", + "rank": 19, + "id": "fr:mozzarella" + }, + { + "rank": 20, + "text": "contient _lait_", + "id": "fr:contient _lait_" + }, + { + "text": "oignon", + "rank": 21, + "id": "en:onion", + "percent": "4.2" + }, + { + "rank": 22, + "text": "oignon frit", + "percent": "2.5", + "id": "fr:oignon-frit" + }, + { + "id": "en:tomato-concentrate", + "rank": 23, + "text": "concentré de tomate" + }, + { + "rank": 24, + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "en:dextrose", + "rank": 25, + "text": "dextrose" + }, + { + "id": "fr:sauce au piment", + "text": "sauce au piment", + "rank": 26 + }, + { + "id": "fr:amidon-modifie-de-mais", + "text": "amidon modifié de maïs", + "rank": 27 + }, + { + "id": "en:carot", + "rank": 28, + "text": "carotte" + }, + { + "id": "en:garlic", + "rank": 29, + "text": "ail" + }, + { + "id": "en:salt", + "rank": 30, + "text": "sel" + }, + { + "text": "arôme naturel", + "rank": 31, + "id": "en:natural-flavour" + }, + { + "id": "fr:origan", + "rank": 32, + "text": "origan" + }, + { + "id": "en:black-pepper", + "rank": 33, + "text": "poivre noir" + }, + { + "rank": 34, + "text": "Pâte", + "id": "en:paste", + "percent": "45" + }, + { + "id": "en:water", + "rank": 35, + "text": "eau" + }, + { + "rank": 36, + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "rank": 37, + "text": "sel", + "id": "en:salt" + }, + { + "text": "levure", + "rank": 38, + "id": "fr:levure" + }, + { + "id": "fr:fromage", + "text": "fromage" + }, + { + "id": "fr:contient _lait_", + "text": "contient _lait_" + }, + { + "text": "oignon", + "id": "en:onion" + }, + { + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "fr:piment-rouge", + "text": "piment rouge" + }, + { + "text": "huile de tournesol", + "id": "en:sunflower-oil" + }, + { + "id": "en:salt", + "text": "sel" + }, + { + "text": "ail", + "id": "en:garlic" + }, + { + "text": "farine de blé", + "id": "en:wheat-flour" + }, + { + "id": "fr:contient _gluten_", + "text": "contient _gluten_" + } + ], + "ingredients_n_tags": [ + "48", + "41-50" + ], + "cities_tags": [], + "last_modified_by": "kiliweb", + "origins_tags": [], + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "additives_prev_tags": [ + "en:e14xx" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "serving_size_debug_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 98, + "h": 100 + }, + "400": { + "w": 391, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1328 + } + }, + "uploaded_t": "1499362133", + "uploader": "kiliweb" + }, + "2": { + "uploader": "kiliweb", + "uploaded_t": "1499362134", + "sizes": { + "100": { + "h": 65, + "w": 100 + }, + "400": { + "h": 258, + "w": 400 + }, + "full": { + "w": 2050, + "h": 1323 + } + } + }, + "3": { + "uploaded_t": "1499362136", + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 22 + }, + "400": { + "w": 400, + "h": 88 + }, + "full": { + "w": 2448, + "h": 540 + } + } + }, + "ingredients_fr": { + "y1": null, + "angle": null, + "sizes": { + "100": { + "h": 22, + "w": 100 + }, + "200": { + "w": 200, + "h": 44 + }, + "400": { + "h": 88, + "w": 400 + }, + "full": { + "h": 540, + "w": 2448 + } + }, + "rev": "10", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "3", + "y2": null, + "x1": null, + "normalize": "0", + "x2": null + }, + "nutrition_fr": { + "white_magic": "0", + "geometry": "0x0-0-0", + "imgid": "2", + "x1": null, + "y2": null, + "normalize": "0", + "x2": null, + "y1": null, + "angle": null, + "rev": "7", + "sizes": { + "100": { + "w": 100, + "h": 65 + }, + "200": { + "w": 200, + "h": 129 + }, + "400": { + "h": 258, + "w": 400 + }, + "full": { + "h": 1323, + "w": 2050 + } + } + }, + "front_fr": { + "angle": null, + "y1": null, + "sizes": { + "100": { + "h": "100", + "w": "98" + }, + "200": { + "w": 195, + "h": 200 + }, + "400": { + "h": 400, + "w": 391 + }, + "full": { + "w": 1328, + "h": 1360 + } + }, + "rev": "4", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "1", + "normalize": "0", + "x2": null, + "y2": null, + "x1": null + } + }, + "traces_tags": [ + "en:celery", + "en:crustaceans", + "en:eggs", + "en:fish", + "en:molluscs", + "en:mustard", + "en:nuts", + "en:sesame-seeds", + "en:soybeans" + ], + "no_nutrition_data": "", + "traces_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.400.jpg", + "lang": "fr", + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:flavour : 4", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1499362132, + "categories_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.100.jpg", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-to-be-completed, en:characteristics-to-be-completed, en:categories-completed, en:brands-completed, en:packaging-to-be-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "manufacturing_places": "", + "labels_hierarchy": [], + "origins": "", + "interface_version_created": "20150316.jqm2", + "serving_size": "195 g", + "product_quantity": 390, + "categories_prev_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas" + ], + "_id": "3596710441938", + "ingredients_tags": [ + "fr:garniture", + "en:water", + "fr:preparation-de-viande-hachee-1-0", + "fr:viande-bovine", + "en:meat", + "en:water", + "fr:plante-aromatique", + "en:potato-starch", + "en:starch", + "en:flavour", + "en:salt", + "en:spice", + "fr:poudre-de-tomate", + "fr:puree-de-tomate", + "fr:preparation-alimentaire", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "en:potato-starch", + "en:starch", + "en:milk-protein", + "en:salt", + "fr:mozzarella", + "fr:contient-lait", + "en:onion", + "fr:oignon-frit", + "en:onions", + "en:tomato-concentrate", + "en:sunflower-oil", + "en:sunflower", + "en:dextrose", + "fr:sauce-au-piment", + "fr:amidon-modifie-de-mais", + "en:modified-starch", + "en:corn-starch", + "en:starch", + "en:carot", + "en:garlic", + "en:salt", + "en:natural-flavour", + "en:flavour", + "fr:origan", + "en:black-pepper", + "en:pepper", + "en:paste", + "en:water", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "fr:levure", + "fr:fromage", + "fr:contient-lait", + "en:onion", + "en:sunflower-oil", + "en:sunflower", + "fr:piment-rouge", + "fr:piment", + "en:sunflower-oil", + "en:sunflower", + "en:salt", + "en:garlic", + "en:wheat-flour", + "fr:contient-gluten" + ], + "vitamins_tags": [], + "ingredients_text_with_allergens_fr": "Garniture 55% : eau, préparation de viande hachée 1 0, 2% (viande bovine 8,6%, eau, plantes aromatiques, fécule de pomme de terre, arôme, sel, épices, poudre de tomate), purée de tomate 10%, préparation alimentaire (fromage (contient lait), eau, huile de tournesol, fécule de pomme de terre, protéines de lait, sel), mozzarella (contient lait), oignon 4,2%, oignon frit 2,5% (oignon, huile de tournesol), concentré de tomate, huile de tournesol, dextrose, sauce au piment (piment rouge, huile de tournesol, sel, ail), amidon modifié de maïs, carotte, ail, sel, arôme naturel, origan, poivre noir.\r\nPâte 45% : farine de blé (contient gluten), eau, huile de tournesol, sel, levure. ", + "packaging_debug_tags": [], + "amino_acids_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/nutrition_fr.7.100.jpg", + "quantity_debug_tags": [], + "ingredients_text_with_allergens": "Garniture 55% : eau, préparation de viande hachée 1 0, 2% (viande bovine 8,6%, eau, plantes aromatiques, fécule de pomme de terre, arôme, sel, épices, poudre de tomate), purée de tomate 10%, préparation alimentaire (fromage (contient lait), eau, huile de tournesol, fécule de pomme de terre, protéines de lait, sel), mozzarella (contient lait), oignon 4,2%, oignon frit 2,5% (oignon, huile de tournesol), concentré de tomate, huile de tournesol, dextrose, sauce au piment (piment rouge, huile de tournesol, sel, ail), amidon modifié de maïs, carotte, ail, sel, arôme naturel, origan, poivre noir.\r\nPâte 45% : farine de blé (contient gluten), eau, huile de tournesol, sel, levure. ", + "additives_prev_original_tags": [ + "en:e14xx" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/ingredients_fr.10.100.jpg", + "last_image_dates_tags": [ + "2017-07-06", + "2017-07", + "2017" + ], + "allergens": "lait, lait, lait, gluten", + "editors_tags": [ + "openfoodfacts-contributors", + "segundo", + "kiliweb" + ], + "languages": { + "en:french": 5 + }, + "link_debug_tags": [], + "categories_tags": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "code": "3596710441938", + "ingredients_debug": [ + "Garniture 55% ", + ":", + ":", + null, + null, + " eau", + ",", + null, + null, + null, + " préparation de viande hachée 1 0", + ",", + null, + null, + null, + " 2% ", + "(", + "(", + null, + null, + "viande bovine 8", + ",", + null, + null, + null, + "6%", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " fécule de pomme de terre", + ",", + null, + null, + null, + " arôme", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " épices", + ",", + null, + null, + null, + " poudre de tomate)", + ",", + null, + null, + null, + " purée de tomate 10%", + ",", + null, + null, + null, + " préparation alimentaire ", + "(", + "(", + null, + null, + "fromage ", + "(", + "(", + null, + null, + "contient _lait_)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " fécule de pomme de terre", + ",", + null, + null, + null, + " protéines de _lait_", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " mozzarella ", + "(", + "(", + null, + null, + "contient _lait_)", + ",", + null, + null, + null, + " oignon 4", + ",", + null, + null, + null, + "2%", + ",", + null, + null, + null, + " oignon frit 2", + ",", + null, + null, + null, + "5% ", + "(", + "(", + null, + null, + "oignon", + ",", + null, + null, + null, + " huile de tournesol)", + ",", + null, + null, + null, + " concentré de tomate", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " sauce au piment ", + "(", + "(", + null, + null, + "piment rouge", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " ail)", + ",", + null, + null, + null, + " amidon modifié de maïs", + ",", + null, + null, + null, + " carotte", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " origan", + ",", + null, + null, + null, + " poivre noir", + ".\r", + null, + null, + null, + "\nPâte 45% ", + ":", + ":", + null, + null, + " farine de blé ", + "(", + "(", + null, + null, + "contient _gluten_)", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " levure", + ". " + ], + "labels_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/359/671/044/1938/front_fr.4.400.jpg", + "photographers_tags": [ + "kiliweb" + ], + "vitamins_prev_tags": [], + "product_name_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "traces": "Poissons,Crustacés,oeufs,Soja,Fruits à coque,Céleri,Moutarde,Sésame,Mollusques", + "brands_debug_tags": [], + "ingredients_text_debug": "Garniture 55% : eau, préparation de viande hachée 1 0, 2% (viande bovine 8,6%, eau, plantes aromatiques, fécule de pomme de terre, arôme, sel, épices, poudre de tomate), purée de tomate 10%, préparation alimentaire (fromage (contient _lait_), eau, huile de tournesol, fécule de pomme de terre, protéines de _lait_, sel), mozzarella (contient _lait_), oignon 4,2%, oignon frit 2,5% (oignon, huile de tournesol), concentré de tomate, huile de tournesol, dextrose, sauce au piment (piment rouge, huile de tournesol, sel, ail), amidon modifié de maïs, carotte, ail, sel, arôme naturel, origan, poivre noir.\r\nPâte 45% : farine de blé (contient _gluten_), eau, huile de tournesol, sel, levure. ", + "ingredients_from_palm_oil_n": 0, + "ingredients_original_tags": [ + "fr:garniture", + "en:water", + "fr:préparation de viande hachée 1 0", + "fr:viande-bovine", + "en:water", + "fr:plante-aromatique", + "en:potato-starch", + "en:flavour", + "en:salt", + "en:spice", + "fr:poudre-de-tomate", + "fr:puree-de-tomate", + "fr:préparation alimentaire", + "en:water", + "en:sunflower-oil", + "en:potato-starch", + "en:milk-protein", + "en:salt", + "fr:mozzarella", + "fr:contient _lait_", + "en:onion", + "fr:oignon-frit", + "en:tomato-concentrate", + "en:sunflower-oil", + "en:dextrose", + "fr:sauce au piment", + "fr:amidon-modifie-de-mais", + "en:carot", + "en:garlic", + "en:salt", + "en:natural-flavour", + "fr:origan", + "en:black-pepper", + "en:paste", + "en:water", + "en:sunflower-oil", + "en:salt", + "fr:levure", + "fr:fromage", + "fr:contient _lait_", + "en:onion", + "en:sunflower-oil", + "fr:piment-rouge", + "en:sunflower-oil", + "en:salt", + "en:garlic", + "en:wheat-flour", + "fr:contient _gluten_" + ], + "ingredients_n": 48, + "manufacturing_places_tags": [], + "categories": "Pizzas à la bolognaise", + "categories_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas" + ], + "last_modified_t": 1529146379, + "pnns_groups_2": "Pizza pies and quiche", + "nutriments": { + "saturated-fat_serving": 4.49, + "nova-group_serving": 4, + "nova-group": 4, + "nutrition-score-fr_100g": "11", + "sugars_serving": 10.5, + "energy": "941", + "fat_100g": 7.1, + "nova-group_100g": 4, + "proteins_value": "8.5", + "proteins": 8.5, + "carbohydrates_100g": "31", + "salt_serving": 3.12, + "proteins_100g": 8.5, + "nutrition-score-uk_100g": "11", + "fat_unit": "", + "energy_100g": "941", + "saturated-fat_100g": 2.3, + "sodium_100g": 0.62992125984252, + "sodium_serving": 1.23, + "fat_value": "7.1", + "salt_100g": 1.6, + "sodium": 0.62992125984252, + "carbohydrates": "31", + "salt_unit": "", + "energy_serving": "1830", + "saturated-fat": 2.3, + "sugars_100g": 5.4, + "salt_value": "1.6", + "sugars": 5.4, + "salt": 1.6, + "saturated-fat_value": "2.3", + "proteins_unit": "", + "fat": 7.1, + "energy_value": "225", + "energy_unit": "kcal", + "saturated-fat_unit": "", + "nutrition-score-uk": "11", + "carbohydrates_value": "31", + "proteins_serving": 16.6, + "sugars_unit": "", + "nutrition-score-fr": "11", + "fat_serving": 13.8, + "carbohydrates_unit": "", + "sugars_value": "5.4", + "carbohydrates_serving": 60.5 + }, + "categories_prev_hierarchy": [ + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas" + ], + "complete": 0, + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-to-be-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-to-be-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "purchase_places": "", + "creator": "kiliweb", + "labels_debug_tags": [], + "last_editor": "kiliweb", + "additives_n": 1, + "purchase_places_debug_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 1, + "expiration_date_debug_tags": [], + "product_name_fr_debug_tags": [] + }, + { + "lc": "fr", + "product_name": "Pizza Bolognaise cuite sur pierre", + "countries": "France", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "saturated-fat": "moderate", + "fat": "moderate" + }, + "quantity": "390 g", + "amino_acids_prev_tags": [], + "checkers_tags": [], + "countries_debug_tags": [], + "brands": "Cora", + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.200.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.400.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.100.jpg" + } + } + }, + "ingredients_text": "Pâte 42 % (Farine de _blé_, eau, levure, dextrose, huile végétale de colza, sel), purée de tomates, viande de bœuf 10.3 %, _edam_ 10.3 %, oignons 3.8 %, oignons frits 2.6 % (oignons, huile végétale de tournesol), sucre, huile végétale de colza, farine de _blé_, amidon de _blé_, sel, plantes aromatiques, ail, poivre.", + "emb_codes_tags": [ + "emb-69194c" + ], + "sortkey": 1529078795, + "ingredients_text_fr": "Pâte 42 % (Farine de _blé_, eau, levure, dextrose, huile végétale de colza, sel), purée de tomates, viande de bœuf 10.3 %, _edam_ 10.3 %, oignons 3.8 %, oignons frits 2.6 % (oignons, huile végétale de tournesol), sucre, huile végétale de colza, farine de _blé_, amidon de _blé_, sel, plantes aromatiques, ail, poivre.", + "purchase_places_tags": [ + "rots", + "france" + ], + "product_name_fr": "Pizza Bolognaise cuite sur pierre", + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.100.jpg", + "update_key": "key_1533677490", + "interface_version_modified": "20150316.jqm2", + "packaging_tags": [ + "surgele", + "film-plastique-a-jeter", + "etui-carton-a-recycler" + ], + "pnns_groups_1": "Composite foods", + "labels": "Cuite sur pierre,Info-Tri Point Vert,Triman", + "entry_dates_tags": [ + "2015-09-25", + "2015-09", + "2015" + ], + "url": "https://ssl-api.openfoodfacts.org/product/3257983940084/pizza-bolognaise-cuite-sur-pierre-cora", + "traces_from_ingredients": "", + "labels_prev_hierarchy": [ + "fr:Cuite sur pierre", + "fr:Info-Tri Point Vert", + "fr:Triman" + ], + "image_small_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.200.jpg", + "stores_tags": [ + "cora" + ], + "countries_hierarchy": [ + "en:france" + ], + "ingredients_that_may_be_from_palm_oil_tags": [ + "huile-vegetale" + ], + "quality_tags": [], + "rev": 15, + "id": "3257983940084", + "_keywords": [ + "salee", + "base", + "vert", + "frit", + "viande", + "la", + "tarte", + "cuite", + "bolognaise", + "quiche", + "point", + "info-tri", + "surgele", + "pizza", + "sur", + "pierre", + "boeuf", + "plat", + "et", + "prepare", + "de", + "triman", + "edam", + "cora", + "oignon", + "surgelee" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 2 + fr-sat-fat-for-fats 4 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 2 - proteins 5 -- fsa 2 -- fr 2", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-moderate-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "stores": "Cora", + "additives_old_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "additives_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.200.jpg", + "generic_name": "Pizza à base de viande de bœuf, d'edam, d'oignons et d'oignons frits, surgelée", + "nutrition_data_prepared_per": "100g", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 0, + "emb_codes_orig": "EMB 69194C", + "max_imgid": "4", + "nutrition_data_per": "100g", + "countries_tags": [ + "en:france" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.200.jpg", + "nova_groups": 4, + "traces_hierarchy": [ + "en:celery" + ], + "generic_name_fr": "Pizza à base de viande de bœuf, d'edam, d'oignons et d'oignons frits, surgelée", + "ingredients_hierarchy": [ + "en:paste", + "fr:puree-de-tomate", + "fr:viande-de-boeuf", + "en:meat", + "fr:edam", + "en:onions", + "fr:oignon-frit", + "en:onions", + "en:sugar", + "en:canola-oil", + "en:vegetable-oil", + "en:wheat-flour", + "fr:amidon-de-ble", + "en:starch", + "en:salt", + "fr:plante-aromatique", + "en:garlic", + "en:pepper", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:dextrose", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "en:onions", + "fr:huile-vegetale-de-tournesol", + "en:sunflower-oil", + "en:vegetable-oil", + "en:sunflower" + ], + "nucleotides_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "additives_old_n": 0, + "last_image_t": 1529078794, + "additives_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "additives_original_tags": [], + "minerals_prev_tags": [], + "expiration_date": "03/2016", + "emb_codes": "EMB 69194C", + "labels_prev_tags": [ + "fr:cuite-sur-pierre", + "fr:info-tri-point-vert", + "fr:triman" + ], + "serving_quantity": 195, + "nutrition_grades": "b", + "correctors_tags": [ + "phoenix", + "segundo", + "jacob80", + "kiliweb", + "openfoodfacts-contributors" + ], + "codes_tags": [ + "code-13", + "3257983940084", + "325798394008x", + "32579839400xx", + "3257983940xxx", + "325798394xxxx", + "32579839xxxxx", + "3257983xxxxxx", + "325798xxxxxxx", + "32579xxxxxxxx", + "3257xxxxxxxxx", + "325xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "nova_group": 4, + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.400.jpg", + "languages_codes": { + "fr": 6 + }, + "nutrition_grade_fr": "b", + "brands_tags": [ + "cora" + ], + "new_additives_n": 0, + "nutrition_grades_tags": [ + "b" + ], + "ingredients_from_palm_oil_tags": [], + "minerals_tags": [], + "last_edit_dates_tags": [ + "2018-06-15", + "2018-06", + "2018" + ], + "link": "Freiberger France - 12 Rue Claude Chappe - 69370 Saint-Didier-au-Mont-d'Or", + "traces_tags": [ + "en:celery" + ], + "images": { + "1": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 2666, + "w": 2000 + } + }, + "uploaded_t": "1443180156", + "uploader": "segundo" + }, + "2": { + "uploaded_t": "1443180167", + "uploader": "segundo", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + }, + "uploader": "segundo", + "uploaded_t": "1443180169" + }, + "4": { + "sizes": { + "100": { + "h": 87, + "w": 100 + }, + "400": { + "w": 400, + "h": 347 + }, + "full": { + "h": 1200, + "w": 1385 + } + }, + "uploaded_t": "1529078793", + "uploader": "kiliweb" + }, + "nutrition": { + "geometry": "1440x767-1214-78", + "imgid": "2", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 53 + }, + "200": { + "h": 107, + "w": 200 + }, + "400": { + "h": 213, + "w": 400 + }, + "full": { + "w": 1440, + "h": 767 + } + }, + "normalize": "false", + "rev": "8" + }, + "nutrition_fr": { + "geometry": "1440x767-1214-78", + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "w": 100, + "h": 53 + }, + "200": { + "h": 107, + "w": 200 + }, + "400": { + "h": 213, + "w": 400 + }, + "full": { + "w": 1440, + "h": 767 + } + }, + "normalize": "false", + "rev": "8" + }, + "ingredients_fr": { + "y1": null, + "angle": null, + "sizes": { + "100": { + "w": 100, + "h": 87 + }, + "200": { + "w": 200, + "h": 173 + }, + "400": { + "w": 400, + "h": 347 + }, + "full": { + "w": 1385, + "h": 1200 + } + }, + "rev": "15", + "geometry": "0x0-0-0", + "white_magic": "0", + "imgid": "4", + "y2": null, + "x1": null, + "x2": null, + "normalize": "0" + }, + "front": { + "sizes": { + "100": { + "w": 100, + "h": 99 + }, + "200": { + "w": 200, + "h": 198 + }, + "400": { + "w": 400, + "h": 396 + }, + "full": { + "w": 1780, + "h": 1760 + } + }, + "normalize": "false", + "rev": "6", + "imgid": "1", + "white_magic": "false", + "geometry": "1780x1760-461-85" + }, + "front_fr": { + "sizes": { + "100": { + "h": "99", + "w": "100" + }, + "200": { + "w": 200, + "h": 198 + }, + "400": { + "w": 400, + "h": 396 + }, + "full": { + "h": 1760, + "w": 1780 + } + }, + "normalize": "false", + "rev": "6", + "geometry": "1780x1760-461-85", + "white_magic": "false", + "imgid": "1" + }, + "ingredients": { + "imgid": "2", + "geometry": "614x773-54-892", + "white_magic": "false", + "rev": "7", + "normalize": "false", + "sizes": { + "100": { + "h": 100, + "w": 79 + }, + "200": { + "w": 159, + "h": 200 + }, + "400": { + "w": 318, + "h": 400 + }, + "full": { + "h": 773, + "w": 614 + } + } + } + }, + "no_nutrition_data": "", + "pnns_groups_2_tags": [ + "pizza-pies-and-quiche" + ], + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "allergens_from_ingredients": "blé, edam, blé, blé", + "additives_prev_tags": [], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "ingredients_n_tags": [ + "22", + "21-30" + ], + "cities_tags": [ + "saint-didier-au-mont-d-or-rhone-france" + ], + "last_modified_by": null, + "origins_tags": [], + "emb_codes_20141016": "EMB 69194C", + "ingredients": [ + { + "id": "en:paste", + "percent": "42", + "text": "Pâte", + "rank": 1 + }, + { + "id": "fr:puree-de-tomate", + "rank": 2, + "text": "purée de tomates" + }, + { + "percent": "10.3", + "id": "fr:viande-de-boeuf", + "rank": 3, + "text": "viande de bœuf" + }, + { + "rank": 4, + "text": "_edam_", + "percent": "10.3", + "id": "fr:edam" + }, + { + "text": "oignons", + "rank": 5, + "percent": "3.8", + "id": "en:onions" + }, + { + "percent": "2.6", + "id": "fr:oignon-frit", + "rank": 6, + "text": "oignons frits" + }, + { + "rank": 7, + "text": "sucre", + "id": "en:sugar" + }, + { + "id": "en:canola-oil", + "rank": 8, + "text": "huile végétale de colza" + }, + { + "rank": 9, + "text": "farine de _blé_", + "id": "en:wheat-flour" + }, + { + "id": "fr:amidon-de-ble", + "rank": 10, + "text": "amidon de _blé_" + }, + { + "rank": 11, + "text": "sel", + "id": "en:salt" + }, + { + "text": "plantes aromatiques", + "rank": 12, + "id": "fr:plante-aromatique" + }, + { + "id": "en:garlic", + "rank": 13, + "text": "ail" + }, + { + "text": "poivre", + "rank": 14, + "id": "en:pepper" + }, + { + "text": "Farine de _blé_", + "id": "en:wheat-flour" + }, + { + "text": "eau", + "id": "en:water" + }, + { + "id": "fr:levure", + "text": "levure" + }, + { + "id": "en:dextrose", + "text": "dextrose" + }, + { + "text": "huile végétale de colza", + "id": "en:canola-oil" + }, + { + "text": "sel", + "id": "en:salt" + }, + { + "text": "oignons", + "id": "en:onions" + }, + { + "id": "fr:huile-vegetale-de-tournesol", + "text": "huile végétale de tournesol" + } + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.200.jpg", + "ingredients_ids_debug": [ + "pate-42", + "farine-de-ble", + "eau", + "levure", + "dextrose", + "huile-vegetale-de-colza", + "sel", + "puree-de-tomates", + "viande-de-boeuf-10-3", + "edam-10-3", + "oignons-3-8", + "oignons-frits-2-6", + "oignons", + "huile-vegetale-de-tournesol", + "sucre", + "huile-vegetale-de-colza", + "farine-de-ble", + "amidon-de-ble", + "sel", + "plantes-aromatiques", + "ail", + "poivre" + ], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "nucleotides_tags": [], + "nutrition_data_per_debug_tags": [], + "packaging": "Surgelé,Film plastique à jeter,Etui carton à recycler", + "informers_tags": [ + "segundo", + "phoenix" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/nutrition_fr.8.100.jpg", + "ingredients_text_with_allergens": "Pâte 42 % (Farine de blé, eau, levure, dextrose, huile végétale de colza, sel), purée de tomates, viande de bœuf 10.3 %, edam 10.3 %, oignons 3.8 %, oignons frits 2.6 % (oignons, huile végétale de tournesol), sucre, huile végétale de colza, farine de blé, amidon de blé, sel, plantes aromatiques, ail, poivre.", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/ingredients_fr.15.100.jpg", + "additives_prev_original_tags": [], + "ingredients_text_with_allergens_fr": "Pâte 42 % (Farine de blé, eau, levure, dextrose, huile végétale de colza, sel), purée de tomates, viande de bœuf 10.3 %, edam 10.3 %, oignons 3.8 %, oignons frits 2.6 % (oignons, huile végétale de tournesol), sucre, huile végétale de colza, farine de blé, amidon de blé, sel, plantes aromatiques, ail, poivre.", + "amino_acids_tags": [], + "vitamins_tags": [], + "serving_size": "demi-pizza (195 g) Cette pizza contient 2 demi-pizzas", + "interface_version_created": "20120622", + "product_quantity": 390, + "categories_prev_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "_id": "3257983940084", + "ingredients_tags": [ + "en:paste", + "fr:puree-de-tomate", + "fr:viande-de-boeuf", + "en:meat", + "fr:edam", + "en:onions", + "fr:oignon-frit", + "en:onions", + "en:sugar", + "en:canola-oil", + "en:vegetable-oil", + "en:wheat-flour", + "fr:amidon-de-ble", + "en:starch", + "en:salt", + "fr:plante-aromatique", + "en:garlic", + "en:pepper", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:dextrose", + "en:canola-oil", + "en:vegetable-oil", + "en:salt", + "en:onions", + "fr:huile-vegetale-de-tournesol", + "en:sunflower-oil", + "en:vegetable-oil", + "en:sunflower" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.100.jpg", + "manufacturing_places": "", + "labels_hierarchy": [ + "fr:triman", + "fr:Cuite sur pierre", + "fr:Info-Tri Point Vert" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "origins": "", + "languages_tags": [ + "en:french", + "en:1" + ], + "created_t": 1443180156, + "nova_group_debug": " -- ingredients/en:salt : 3 -- ingredients/en:dextrose : 4", + "categories_debug_tags": [ + "added-fr-pizzas-tartes-salees-et-quiches" + ], + "lang": "fr", + "image_front_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.400.jpg", + "traces": "Céleri", + "ingredients_that_may_be_from_palm_oil_n": 1, + "product_name_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/325/798/394/0084/front_fr.6.400.jpg", + "photographers_tags": [ + "segundo", + "kiliweb" + ], + "vitamins_prev_tags": [], + "ingredients_debug": [ + "Pâte 42 % ", + "(", + "(", + null, + null, + "Farine de _blé_", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " levure", + ",", + null, + null, + null, + " dextrose", + ",", + null, + null, + null, + " huile végétale de colza", + ",", + null, + null, + null, + " sel)", + ",", + null, + null, + null, + " purée de tomates", + ",", + null, + null, + null, + " viande de bœuf 10.3 %", + ",", + null, + null, + null, + " _edam_ 10.3 %", + ",", + null, + null, + null, + " oignons 3.8 %", + ",", + null, + null, + null, + " oignons frits 2.6 % ", + "(", + "(", + null, + null, + "oignons", + ",", + null, + null, + null, + " huile végétale de tournesol)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huile végétale de colza", + ",", + null, + null, + null, + " farine de _blé_", + ",", + null, + null, + null, + " amidon de _blé_", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " plantes aromatiques", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " poivre." + ], + "labels_tags": [ + "fr:triman", + "fr:cuite-sur-pierre", + "fr:info-tri-point-vert" + ], + "editors": [ + "segundo", + "phoenix" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "code": "3257983940084", + "categories_tags": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:pizzas-tartes-salees-et-quiches" + ], + "editors_tags": [ + "openfoodfacts-contributors", + "segundo", + "phoenix", + "jacob80", + "kiliweb" + ], + "languages": { + "en:french": 6 + }, + "last_image_dates_tags": [ + "2018-06-15", + "2018-06", + "2018" + ], + "completed_t": 1443246960, + "allergens": "blé, edam, blé, blé", + "additives_prev_n": 0, + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_n": 0, + "purchase_places": "Rots,France", + "labels_debug_tags": [], + "creator": "segundo", + "last_editor": null, + "nutriments": { + "energy_100g": "900", + "fiber_value": "2.2", + "sodium_serving": 0.883, + "fat_value": "7.6", + "saturated-fat_100g": 2.5, + "sodium_100g": 0.452755905511811, + "nutrition-score-uk_100g": "2", + "fat_unit": "", + "carbohydrates_100g": 26.1, + "salt_serving": 2.24, + "proteins_100g": 9.7, + "nova-group_100g": 4, + "energy": "900", + "fat_100g": 7.6, + "proteins": 9.7, + "proteins_value": "9.7", + "nova-group_serving": 4, + "nova-group": 4, + "saturated-fat_serving": 4.88, + "fiber_unit": "g", + "sugars_serving": 7.8, + "nutrition-score-fr_100g": "2", + "fat_serving": 14.8, + "carbohydrates_serving": 50.9, + "carbohydrates_unit": "", + "sugars_value": "4", + "carbohydrates_value": "26.1", + "fiber_serving": 4.29, + "saturated-fat_unit": "", + "energy_unit": "kcal", + "nutrition-score-uk": "2", + "proteins_serving": 18.9, + "sugars_unit": "", + "nutrition-score-fr": "2", + "sugars": "4", + "fat": 7.6, + "energy_value": "215", + "salt": 1.15, + "proteins_unit": "", + "saturated-fat_value": "2.5", + "salt_unit": "", + "salt_100g": 1.15, + "fiber_100g": 2.2, + "carbohydrates": 26.1, + "sodium": 0.452755905511811, + "saturated-fat": 2.5, + "fiber": "2.2", + "salt_value": "1.15", + "sugars_100g": "4", + "energy_serving": "1760" + }, + "categories_prev_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies" + ], + "complete": 1, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "categories": "Surgelés,Plats préparés,Pizzas tartes salées et quiches,Pizzas,Pizzas à la bolognaise,Pizzas surgelées,Pizzas et tartes surgelées", + "manufacturing_places_tags": [], + "last_modified_t": 1529078795, + "categories_hierarchy": [ + "en:frozen-foods", + "en:meals", + "en:pizzas-pies-and-quiches", + "en:pizzas", + "en:bolognese-pizzas", + "en:frozen-pizzas", + "en:frozen-pizzas-and-pies", + "fr:Pizzas tartes salées et quiches" + ], + "pnns_groups_2": "Pizza pies and quiche", + "ingredients_original_tags": [ + "en:paste", + "fr:puree-de-tomate", + "fr:viande-de-boeuf", + "fr:edam", + "en:onions", + "fr:oignon-frit", + "en:sugar", + "en:canola-oil", + "en:wheat-flour", + "fr:amidon-de-ble", + "en:salt", + "fr:plante-aromatique", + "en:garlic", + "en:pepper", + "en:wheat-flour", + "en:water", + "fr:levure", + "en:dextrose", + "en:canola-oil", + "en:salt", + "en:onions", + "fr:huile-vegetale-de-tournesol" + ], + "ingredients_n": 22, + "ingredients_from_palm_oil_n": 0, + "ingredients_text_debug": "Pâte 42 % (Farine de _blé_, eau, levure, dextrose, huile végétale de colza, sel), purée de tomates, viande de bœuf 10.3 %, _edam_ 10.3 %, oignons 3.8 %, oignons frits 2.6 % (oignons, huile végétale de tournesol), sucre, huile végétale de colza, farine de _blé_, amidon de _blé_, sel, plantes aromatiques, ail, poivre." + } + ], + "page_size": 20, + "count": 390 +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/packager_code-emb-35069-c_brand-sojasun.json b/openclassrooms-trainings/pytestdiscovering/sample/packager_code-emb-35069-c_brand-sojasun.json new file mode 100644 index 0000000..34e035f --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/packager_code-emb-35069-c_brand-sojasun.json @@ -0,0 +1,10475 @@ +{ + "page": 1, + "page_size": 20, + "skip": 0, + "products": [ + { + "expiration_date": "24/05/2016", + "editors_tags": [ + "69mimolette", + "phoenix", + "sebleouf", + "luciebnt", + "date-limite-app", + "kiliweb", + "openfoodfacts-contributors" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "codes_tags": [ + "code-13", + 3273220086223, + "327322008622x", + "32732200862xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "quantity_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.100.jpg", + "labels_tags": [ + "de:proteinreich", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres", + "fr:soja-francais", + "fr:soja-francais-sans-ogm" + ], + "emb_codes_debug_tags": [], + "nucleotides_tags": [], + "lang_debug_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Steaks végétales", + "ingredients_text_with_allergens": "farine protéique de soja* réhydratée 66,6 %, tomates 17 % [concentré de tomates, tomates concassées (tomates, jus de tomates)], oignons 6 %, huile de tournesol, carottes 3 %, fibres de soja*, curry 1,6 % (moutarde), sucre, sel, gélifiant : méthylcellulose, jus concentré de citron.\r\n\r\n*issues de graines de soja cultivées en France, sans OGM.", + "languages_codes": { + "fr": 6 + }, + "ingredients_tags": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:tomate", + "fr:oignon", + "fr:huile-de-tournesol", + "fr:carotte", + "fr:fibres-de-soja", + "fr:curry", + "fr:moutarde", + "en:sugar", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:jus-concentre-de-citron", + "fr:issues-de-graines-de-soja-cultivees-en-france", + "fr:sans-ogm", + "fr:concentre-de-tomate", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate" + ], + "ingredients_text_fr": "farine protéique de _soja*_ réhydratée 66,6 %, tomates 17 % [concentré de tomates, tomates concassées (tomates, jus de tomates)], oignons 6 %, huile de tournesol, carottes 3 %, fibres de _soja*_, curry 1,6 % (_moutarde_), sucre, sel, gélifiant : méthylcellulose, jus concentré de citron.\r\n\r\n*issues de graines de soja cultivées en France, sans OGM.", + "minerals_tags": [], + "purchase_places": "Rennes,France", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "traces_debug_tags": [], + "pnns_groups_2_tags": [ + "unknown" + ], + "countries_hierarchy": [ + "en:france" + ], + "product_name": "Steaks de Soja Curry", + "last_modified_by": "kiliweb", + "ingredients_n_tags": [ + "19", + "11-20" + ], + "checkers_tags": [], + "photographers_tags": [ + "phoenix", + "69mimolette", + "kiliweb" + ], + "allergens_hierarchy": [ + "en:mustard", + "en:soybeans" + ], + "nutrition_data_per_debug_tags": [], + "max_imgid": "9", + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "fr:steaks-vegetales" + ], + "quality_tags": [], + "debug_param_sorted_langs": [ + "fr" + ], + "emb_codes_orig": "EMB 35069C", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "brands_tags": [ + "sojasun" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "lang": "fr", + "ingredients_n": 19, + "_keywords": [ + "france", + "vegetaux", + "specialite", + "aliment", + "curry", + "et", + "proteine", + "sojasun", + "fibre", + "gluten", + "san", + "boisson", + "francai", + "ogm", + "riche", + "en", + "de", + "prefrite", + "origine", + "vegetale", + "base", + "soja", + "steak" + ], + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "fr:steaks-vegetales" + ], + "last_image_dates_tags": [ + "2018-07-11", + "2018-07", + "2018" + ], + "nutrition_data_per": "100g", + "ingredients_that_may_be_from_palm_oil_n": 0, + "informers_tags": [ + "phoenix", + "sebleouf", + "kiliweb" + ], + "purchase_places_debug_tags": [], + "packaging": "Barquette individuelle,Plastique,Sous atmosphère protectrice,Carton", + "ingredients_from_palm_oil_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.100.jpg", + "labels_hierarchy": [ + "de:proteinreich", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres", + "fr:soja-francais", + "fr:soja-francais-sans-ogm" + ], + "manufacturing_places_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.400.jpg", + "allergens_tags": [ + "en:mustard", + "en:soybeans" + ], + "labels_debug_tags": [ + "added-de-proteinreich", + "added-fr-riche-en-fibres", + "removed-en-high-fibres", + "removed-en-high-proteins" + ], + "complete": 1, + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos", + "fr:Soja Français", + "fr:Soja Français sans OGM" + ], + "no_nutrition_data": "", + "additives_debug_tags": [], + "stores_debug_tags": [], + "vitamins_tags": [], + "link": "", + "additives_original_tags": [ + "en:e461" + ], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "fr:Steaks végétales" + ], + "nutrition_data_prepared_per_debug_tags": [], + "emb_codes_20141016": "EMB 35069C", + "generic_name_fr_debug_tags": [], + "pnns_groups_1": "unknown", + "ingredients_text_fr_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.400.jpg", + "additives_n": 1, + "product_name_fr_debug_tags": [], + "serving_size": "100 g", + "allergens_debug_tags": [], + "id": "3273220086223", + "emb_codes": "EMB 35069C", + "_id": "3273220086223", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.200.jpg", + "stores_tags": [ + "carrefour" + ], + "ingredients_text_with_allergens_fr": "farine protéique de soja* réhydratée 66,6 %, tomates 17 % [concentré de tomates, tomates concassées (tomates, jus de tomates)], oignons 6 %, huile de tournesol, carottes 3 %, fibres de soja*, curry 1,6 % (moutarde), sucre, sel, gélifiant : méthylcellulose, jus concentré de citron.\r\n\r\n*issues de graines de soja cultivées en France, sans OGM.", + "rev": 31, + "minerals_prev_tags": [], + "categories_debug_tags": [], + "stores": "Carrefour", + "link_debug_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086223/steaks-de-soja-curry-sojasun", + "amino_acids_tags": [], + "pnns_groups_1_tags": [ + "unknown" + ], + "product_quantity": 200, + "ingredients_text": "farine protéique de _soja*_ réhydratée 66,6 %, tomates 17 % [concentré de tomates, tomates concassées (tomates, jus de tomates)], oignons 6 %, huile de tournesol, carottes 3 %, fibres de _soja*_, curry 1,6 % (_moutarde_), sucre, sel, gélifiant : méthylcellulose, jus concentré de citron.\r\n\r\n*issues de graines de soja cultivées en France, sans OGM.", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.200.jpg", + "update_key": "20180706-categories", + "nutriments": { + "sugars_value": "4.5", + "polyunsaturated-fat_100g": 1.25, + "carbohydrates": 6.5, + "proteins_100g": 16.5, + "nutrition-score-uk_100g": -4, + "energy_serving": 753, + "saturated-fat_unit": "", + "carbohydrates_serving": 6.5, + "fiber_unit": "g", + "sodium": 0.433070866141732, + "proteins_unit": "", + "saturated-fat_serving": 0.85, + "energy_100g": 753, + "fiber_serving": 5.5, + "fiber_value": "5.5", + "saturated-fat_value": "0.85", + "nutrition-score-fr_100g": -4, + "carbohydrates_100g": 6.5, + "polyunsaturated-fat_serving": 1.25, + "proteins_value": "16.5", + "fat_unit": "", + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "sugars_100g": 4.5, + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "proteins_serving": 16.5, + "fat_100g": 8, + "sugars_serving": 4.5, + "fat": 8, + "sugars_unit": "", + "monounsaturated-fat_value": "6.9", + "polyunsaturated-fat": 1.25, + "carbohydrates_value": "6.5", + "polyunsaturated-fat_value": "1.25", + "saturated-fat_100g": 0.85, + "monounsaturated-fat_unit": "g", + "energy": 753, + "salt_serving": 1.1, + "energy_unit": "kcal", + "monounsaturated-fat_100g": 6.9, + "salt_100g": 1.1, + "polyunsaturated-fat_unit": "g", + "salt_value": "1.1", + "salt_unit": "", + "saturated-fat": 0.85, + "monounsaturated-fat": 6.9, + "sodium_100g": 0.433070866141732, + "fiber": 5.5, + "salt": 1.1, + "sodium_serving": 0.433, + "fat_value": "8", + "nutrition-score-fr": -4, + "fat_serving": 8, + "fiber_100g": 5.5, + "nutrition-score-uk": -4, + "energy_value": "180", + "proteins": 16.5, + "monounsaturated-fat_serving": 6.9, + "sugars": 4.5, + "carbohydrates_unit": "" + }, + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "low" + }, + "vitamins_prev_tags": [], + "last_image_t": 1531312217, + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "rennes", + "france" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 1 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "quantity": "200 g (2 x 100 g)", + "created_t": 1461691473, + "unique_scans_n": 17, + "countries_debug_tags": [], + "languages": { + "en:french": 6 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.400.jpg", + "languages_hierarchy": [ + "en:french" + ], + "nutrition_grades_tags": [ + "a" + ], + "manufacturing_places": "France", + "nutrition_grades": "a", + "traces": "", + "product_name_fr": "Steaks de Soja Curry", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.200.jpg", + "code": "3273220086223", + "serving_size_debug_tags": [], + "additives_prev_original_tags": [ + "en:e461" + ], + "interface_version_modified": "20150316.jqm2", + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "images": { + "1": { + "uploader": "phoenix", + "uploaded_t": "1461691473", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3555, + "w": 2000 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3555, + "w": 2000 + } + }, + "uploaded_t": "1461691496", + "uploader": "phoenix" + }, + "3": { + "uploader": "phoenix", + "uploaded_t": "1461691520", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "4": { + "uploader": "69mimolette", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploaded_t": "1499250830" + }, + "5": { + "uploader": "kiliweb", + "uploaded_t": "1518355334", + "sizes": { + "100": { + "h": 100, + "w": 73 + }, + "400": { + "h": 400, + "w": 290 + }, + "full": { + "w": 987, + "h": 1360 + } + } + }, + "6": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 100, + "h": 100 + }, + "400": { + "w": 400, + "h": 399 + }, + "full": { + "w": 1362, + "h": 1360 + } + }, + "uploaded_t": "1518355338" + }, + "7": { + "uploaded_t": "1518355342", + "sizes": { + "100": { + "w": 94, + "h": 100 + }, + "400": { + "w": 375, + "h": 400 + }, + "full": { + "w": 2012, + "h": 2144 + } + }, + "uploader": "kiliweb" + }, + "8": { + "uploader": "kiliweb", + "sizes": { + "100": { + "h": 86, + "w": 100 + }, + "400": { + "h": 344, + "w": 400 + }, + "full": { + "h": 1155, + "w": 1342 + } + }, + "uploaded_t": "1518693412" + }, + "9": { + "sizes": { + "100": { + "h": 100, + "w": 94 + }, + "400": { + "h": 400, + "w": 376 + }, + "full": { + "h": 1200, + "w": 1127 + } + }, + "uploaded_t": 1531312216, + "uploader": "kiliweb" + }, + "nutrition_fr": { + "white_magic": "0", + "sizes": { + "100": { + "h": 100, + "w": 94 + }, + "200": { + "h": 200, + "w": 188 + }, + "400": { + "w": 376, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1127 + } + }, + "x1": null, + "angle": null, + "x2": null, + "rev": "29", + "imgid": "9", + "y2": null, + "y1": null, + "geometry": "0x0-0-0", + "normalize": "0" + }, + "front_fr": { + "angle": "0", + "rev": "17", + "x2": "0", + "x1": "0", + "sizes": { + "100": { + "w": "73", + "h": "100" + }, + "200": { + "h": 200, + "w": 145 + }, + "400": { + "h": 400, + "w": 290 + }, + "full": { + "w": 987, + "h": 1360 + } + }, + "white_magic": "false", + "normalize": "false", + "geometry": "0x0-0-0", + "y1": "0", + "imgid": "5", + "y2": "0" + }, + "front": { + "sizes": { + "100": { + "w": 69, + "h": 100 + }, + "200": { + "h": 200, + "w": 138 + }, + "400": { + "w": 275, + "h": 400 + }, + "full": { + "w": 1858, + "h": 2701 + } + }, + "imgid": "1", + "white_magic": "false", + "normalize": "false", + "rev": "6", + "geometry": "1858x2701-35-479" + }, + "nutrition": { + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "w": 100, + "h": 74 + }, + "200": { + "h": 148, + "w": 200 + }, + "400": { + "w": 400, + "h": 296 + }, + "full": { + "h": 1270, + "w": 1716 + } + }, + "geometry": "1716x1270-168-892", + "rev": "8", + "normalize": "false" + }, + "ingredients_fr": { + "x1": null, + "x2": null, + "rev": "21", + "angle": null, + "white_magic": "0", + "sizes": { + "100": { + "h": 86, + "w": 100 + }, + "200": { + "w": 200, + "h": 172 + }, + "400": { + "w": 400, + "h": 344 + }, + "full": { + "w": 1342, + "h": 1155 + } + }, + "geometry": "0x0-0-0", + "normalize": "0", + "y2": null, + "imgid": "8", + "y1": null + }, + "ingredients": { + "normalize": "false", + "rev": "7", + "geometry": "1370x580-162-213", + "sizes": { + "100": { + "w": 100, + "h": 42 + }, + "200": { + "w": 200, + "h": 85 + }, + "400": { + "w": 400, + "h": 169 + }, + "full": { + "h": 580, + "w": 1370 + } + }, + "imgid": "3", + "white_magic": "false" + } + }, + "amino_acids_prev_tags": [], + "allergens": "Moutarde,Soja, soja*, soja*, moutarde, soja*, soja*, moutarde, soja*, soja*, moutarde, soja*, soja*, moutarde, soja*, soja*, moutarde, soja*, soja*, moutarde", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.100.jpg", + "entry_dates_tags": [ + "2016-04-26", + "2016-04", + "2016" + ], + "packaging_tags": [ + "barquette-individuelle", + "plastique", + "sous-atmosphere-protectrice", + "carton" + ], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 1531336225, + "ingredients_text_debug": "farine protéique de _soja*_ réhydratée 66,6 %, tomates 17 % [concentré de tomates, tomates concassées (tomates, jus de tomates)], oignons 6 %, huile de tournesol, carottes 3 %, fibres de _soja*_, curry 1,6 % (_moutarde_), sucre, sel, gélifiant : méthylcellulose, jus concentré de citron.\r\n\r\n*issues de graines de soja cultivées en France, sans OGM.", + "ingredients_from_palm_oil_n": 0, + "expiration_date_debug_tags": [], + "creator": "phoenix", + "additives_old_n": 1, + "nutrition_data": "on", + "origins": "France", + "origins_tags": [ + "france" + ], + "countries_tags": [ + "en:france" + ], + "traces_tags": [], + "unknown_nutrients_tags": [], + "labels": "Riche en protéines,Sans gluten,Riche en fibres,Sans OGM,Soja Français,Soja Français sans OGM", + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.400.jpg", + "last_edit_dates_tags": [ + "2018-07-11", + "2018-07", + "2018" + ], + "manufacturing_places_tags": [ + "france" + ], + "unknown_ingredients_n": 4, + "origins_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.100.jpg", + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "fr:Steaks végétales" + ], + "last_modified_t": 1531336225, + "selected_images": { + "ingredients": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.200.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/nutrition_fr.29.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6223/front_fr.17.100.jpg" + } + } + }, + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [ + "farine-proteique-de-soja-rehydratee-66", + "6", + "tomates-17", + "concentre-de-tomates", + "tomates-concassees", + "tomates", + "jus-de-tomates", + "oignons-6", + "huile-de-tournesol", + "carottes-3", + "fibres-de-soja", + "curry-1", + "6", + "moutarde", + "sucre", + "sel", + "gelifiant", + "methylcellulose", + "jus-concentre-de-citron", + "issues-de-graines-de-soja-cultivees-en-france", + "sans-ogm" + ], + "additives_prev_tags": [ + "en:e461" + ], + "scans_n": 18, + "nutrition_data_prepared": "", + "serving_quantity": 100, + "ingredients_hierarchy": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:tomate", + "fr:oignon", + "fr:huile-de-tournesol", + "fr:carotte", + "fr:fibres-de-soja", + "fr:curry", + "fr:moutarde", + "en:sugar", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:jus-concentre-de-citron", + "fr:issues-de-graines-de-soja-cultivees-en-france", + "fr:sans-ogm", + "fr:concentre-de-tomate", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate" + ], + "last_editor": "kiliweb", + "product_name_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "phoenix", + "sebleouf", + "kiliweb", + "openfoodfacts-contributors", + "luciebnt" + ], + "nucleotides_prev_tags": [], + "additives_prev_n": 1, + "fruits-vegetables-nuts_100g_estimate": 0, + "countries": "France", + "additives_tags": [ + "en:e461" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6223/ingredients_fr.21.200.jpg", + "generic_name_fr": "Spécialité à base de soja préfrite", + "ingredients_debug": [ + "farine protéique de _soja*_ réhydratée 66", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " tomates 17 % ", + "[", + "[", + null, + null, + "concentré de tomates", + ",", + null, + null, + null, + " tomates concassées ", + "(", + "(", + null, + null, + "tomates", + ",", + null, + null, + null, + " jus de tomates)]", + ",", + null, + null, + null, + " oignons 6 %", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " carottes 3 %", + ",", + null, + null, + null, + " fibres de _soja*_", + ",", + null, + null, + null, + " curry 1", + ",", + null, + null, + null, + "6 % ", + "(", + "(", + null, + null, + "_moutarde_)", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " méthylcellulose", + ",", + null, + null, + null, + " jus concentré de citron", + ".\r", + null, + null, + null, + "\n\r\n*issues de graines de soja cultivées en France", + ",", + null, + null, + null, + " sans OGM." + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun", + "completed_t": 1531312214, + "traces_hierarchy": [], + "emb_codes_tags": [ + "emb-35069c" + ], + "labels_prev_tags": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos", + "fr:soja-francais", + "fr:soja-francais-sans-ogm" + ], + "additives_old_tags": [ + "en:e461" + ], + "ingredients": [ + { + "text": "farine protéique de _soja*_ réhydratée", + "percent": "66.6", + "id": "farine-proteique-de-soja-rehydratee", + "rank": 1 + }, + { + "id": "tomates", + "rank": 2, + "text": "tomates", + "percent": "17" + }, + { + "text": "oignons", + "percent": "6", + "rank": 3, + "id": "oignons" + }, + { + "rank": 4, + "id": "huile-de-tournesol", + "text": "huile de tournesol" + }, + { + "text": "carottes", + "percent": "3", + "id": "carottes", + "rank": 5 + }, + { + "text": "fibres de _soja*_", + "rank": 6, + "id": "fibres-de-soja" + }, + { + "percent": "1.6", + "text": "curry", + "id": "curry", + "rank": 7 + }, + { + "rank": 8, + "id": "moutarde", + "text": "_moutarde_" + }, + { + "id": "sucre", + "rank": 9, + "text": "sucre" + }, + { + "text": "sel", + "id": "sel", + "rank": 10 + }, + { + "text": "gélifiant", + "rank": 11, + "id": "gelifiant" + }, + { + "rank": 12, + "id": "methylcellulose", + "text": "méthylcellulose" + }, + { + "text": "jus concentré de citron", + "rank": 13, + "id": "jus-concentre-de-citron" + }, + { + "rank": 14, + "id": "issues-de-graines-de-soja-cultivees-en-france", + "text": "issues de graines de soja cultivées en France" + }, + { + "text": "sans OGM", + "rank": 15, + "id": "sans-ogm" + }, + { + "text": "concentré de tomates", + "id": "concentre-de-tomates" + }, + { + "text": "tomates concassées", + "id": "tomates-concassees" + }, + { + "id": "tomates", + "text": "tomates" + }, + { + "id": "jus-de-tomates", + "text": "jus de tomates" + } + ], + "pnns_groups_2": "unknown", + "generic_name": "Spécialité à base de soja préfrite", + "packaging_debug_tags": [] + }, + { + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "manufacturing_places": "", + "traces": "", + "product_name_fr": "Steak de soja nature", + "nutrition_grades": "a", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.200.jpg", + "serving_size_debug_tags": [], + "code": "3273220086414", + "interface_version_modified": "20120622", + "additives_prev_original_tags": [ + "en:e461" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "lc": "fr", + "amino_acids_prev_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1021 + } + }, + "uploaded_t": "1502897466", + "uploader": "kiliweb" + }, + "2": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3024, + "h": 4030 + } + }, + "uploaded_t": "1502897467" + }, + "nutrition_fr": { + "x1": "11.33331298828125", + "angle": "0", + "x2": "249.33331298828125", + "rev": "8", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 60 + }, + "200": { + "w": 200, + "h": 119 + }, + "400": { + "w": 400, + "h": 239 + }, + "full": { + "w": 2399, + "h": 1431 + } + }, + "geometry": "2399x1431-114-1651", + "normalize": "false", + "y2": "305.9666748046875", + "imgid": "2", + "y1": "163.9666748046875" + } + }, + "allergens": "soja, soja", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.100.jpg", + "entry_dates_tags": [ + "2017-08-16", + "2017-08", + "2017" + ], + "packaging_tags": [ + "barquette", + "plastique" + ], + "categories_debug_tags": [], + "stores": "", + "minerals_prev_tags": [], + "link_debug_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086414/steak-de-soja-nature-sojasun", + "pnns_groups_1_tags": [ + "unknown" + ], + "amino_acids_tags": [], + "ingredients_text": "Farine protéique de _soja_* réhydratée 71,5%, oignons, eau, concentré de tomates, huile de tournesol, fibres de _soja_*, jus concentré d’oignons, sel, gélifiant : méthylcellulose, jus concentré de citron, sucre, poivre.", + "product_quantity": 2400, + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "nutriments": { + "carbohydrates_serving": "", + "saturated-fat_unit": "g", + "energy_serving": "", + "fiber_unit": "g", + "sodium": 0.433070866141732, + "carbohydrates": 4.5, + "sugars_value": "3", + "proteins_100g": 17, + "nutrition-score-uk_100g": -4, + "sugars_unit": "g", + "sugars_100g": 3, + "proteins_serving": "", + "fat_unit": "g", + "fat": 9, + "fat_100g": 9, + "sugars_serving": "", + "carbohydrates_value": "4.5", + "fiber_serving": "", + "proteins_unit": "g", + "saturated-fat_serving": "", + "energy_100g": 741, + "saturated-fat_value": "0.85", + "nutrition-score-fr_100g": -4, + "proteins_value": "17", + "carbohydrates_100g": 4.5, + "fiber_value": "5", + "saturated-fat": 0.85, + "salt_100g": 1.1, + "salt_unit": "g", + "salt_value": "1.1", + "fiber": 5, + "sodium_100g": 0.433070866141732, + "energy": 741, + "salt_serving": "", + "saturated-fat_100g": 0.85, + "energy_unit": "kcal", + "energy_value": "177", + "nutrition-score-uk": -4, + "sugars": 3, + "carbohydrates_unit": "g", + "sodium_unit": "g", + "proteins": 17, + "sodium_value": "0.433070866141732", + "sodium_serving": "", + "salt": 1.1, + "nutrition-score-fr": -4, + "fat_serving": "", + "fiber_100g": 5, + "fat_value": "9" + }, + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "low", + "fat": "moderate", + "salt": "moderate" + }, + "update_key": "20180706-categories", + "last_image_t": 1502897468, + "vitamins_prev_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [], + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "countries_debug_tags": [], + "quantity": "2,4 kg", + "created_t": 1502897465, + "languages": { + "en:french": 3 + }, + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.200.jpg" + } + } + }, + "ingredients_ids_debug": [ + "farine-proteique-de-soja-rehydratee-71", + "5", + "oignons", + "eau", + "concentre-de-tomates", + "huile-de-tournesol", + "fibres-de-soja", + "jus-concentre-d-oignons", + "sel", + "gelifiant", + "methylcellulose", + "jus-concentre-de-citron", + "sucre", + "poivre" + ], + "nutrition_grade_fr": "a", + "additives_prev_tags": [ + "en:e461" + ], + "nutrition_data_prepared": "", + "serving_quantity": 0, + "ingredients_hierarchy": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:oignon", + "en:water", + "fr:concentre-de-tomate", + "fr:huile-de-tournesol", + "fr:fibres-de-soja", + "fr:jus-concentre-d-oignons", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:jus-concentre-de-citron", + "en:sugar", + "fr:poivre" + ], + "last_editor": "tacite", + "product_name_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "openfoodfacts-contributors", + "tib-de-bar", + "tacite" + ], + "nucleotides_prev_tags": [], + "additives_prev_n": 1, + "additives_tags": [ + "en:e461" + ], + "countries": "France", + "brands": "Sojasun", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "ingredients_debug": [ + "Farine protéique de _soja_* réhydratée 71", + ",", + null, + null, + null, + "5%", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " eau", + ",", + null, + null, + null, + " concentré de tomates", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " fibres de _soja_*", + ",", + null, + null, + null, + " jus concentré d’oignons", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " méthylcellulose", + ",", + null, + null, + null, + " jus concentré de citron", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " poivre." + ], + "generic_name_fr": "", + "labels_prev_tags": [], + "traces_hierarchy": [], + "emb_codes_tags": [ + "emb-35069c" + ], + "pnns_groups_2": "unknown", + "additives_old_tags": [ + "en:e461" + ], + "ingredients": [ + { + "rank": 1, + "id": "farine-proteique-de-soja-rehydratee", + "percent": "71.5", + "text": "Farine protéique de _soja_* réhydratée" + }, + { + "rank": 2, + "id": "oignons", + "text": "oignons" + }, + { + "id": "eau", + "rank": 3, + "text": "eau" + }, + { + "text": "concentré de tomates", + "rank": 4, + "id": "concentre-de-tomates" + }, + { + "id": "huile-de-tournesol", + "rank": 5, + "text": "huile de tournesol" + }, + { + "text": "fibres de _soja_", + "rank": 6, + "id": "fibres-de-soja" + }, + { + "rank": 7, + "id": "jus-concentre-d-oignons", + "text": "jus concentré d’oignons" + }, + { + "text": "sel", + "rank": 8, + "id": "sel" + }, + { + "text": "gélifiant", + "rank": 9, + "id": "gelifiant" + }, + { + "rank": 10, + "id": "methylcellulose", + "text": "méthylcellulose" + }, + { + "id": "jus-concentre-de-citron", + "rank": 11, + "text": "jus concentré de citron" + }, + { + "id": "sucre", + "rank": 12, + "text": "sucre" + }, + { + "text": "poivre", + "id": "poivre", + "rank": 13 + } + ], + "generic_name": "", + "packaging_debug_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 531331796, + "ingredients_text_debug": "Farine protéique de _soja_* réhydratée 71,5%, oignons, eau, concentré de tomates, huile de tournesol, fibres de _soja_*, jus concentré d’oignons, sel, gélifiant : méthylcellulose, jus concentré de citron, sucre, poivre.", + "creator": "kiliweb", + "expiration_date_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "origins": "", + "nutrition_data": "on", + "origins_tags": [], + "additives_old_n": 1, + "countries_tags": [ + "en:france" + ], + "traces_tags": [], + "unknown_nutrients_tags": [], + "labels": "", + "unknown_ingredients_n": 3, + "last_edit_dates_tags": [ + "2018-07-11", + "2018-07", + "2018" + ], + "manufacturing_places_tags": [], + "origins_debug_tags": [], + "last_modified_t": 1531331796, + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties" + ], + "checkers_tags": [], + "photographers_tags": [ + "kiliweb" + ], + "allergens_hierarchy": [ + "en:soybeans" + ], + "nutrition_data_per_debug_tags": [], + "max_imgid": "2", + "quality_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties" + ], + "brands_debug_tags": [], + "emb_codes_orig": "EMB 35069C", + "debug_param_sorted_langs": [ + "fr" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "lang": "fr", + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties" + ], + "_keywords": [ + "soja", + "de", + "steak", + "viande", + "sojasun", + "pour", + "vegetaux", + "hamburger", + "nature", + "substitut" + ], + "ingredients_n": 13, + "last_image_dates_tags": [ + "2017-08-16", + "2017-08", + "2017" + ], + "nutrition_data_per": "100g", + "expiration_date": "20/08/2017", + "editors_tags": [ + "tacite", + "tib-de-bar", + "openfoodfacts-contributors", + "kiliweb" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20150316.jqm2", + "codes_tags": [ + "code-13", + 3273220086414, + "327322008641x", + "32732200864xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "quantity_debug_tags": [], + "nucleotides_tags": [], + "labels_tags": [], + "emb_codes_debug_tags": [], + "languages_codes": { + "fr": 3 + }, + "ingredients_text_with_allergens": "Farine protéique de soja* réhydratée 71,5%, oignons, eau, concentré de tomates, huile de tournesol, fibres de soja*, jus concentré d’oignons, sel, gélifiant : méthylcellulose, jus concentré de citron, sucre, poivre.", + "lang_debug_tags": [], + "categories": "Substituts de viande,Steaks végétaux pour hamburgers", + "ingredients_tags": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:oignon", + "en:water", + "fr:concentre-de-tomate", + "fr:huile-de-tournesol", + "fr:fibres-de-soja", + "fr:jus-concentre-d-oignons", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:jus-concentre-de-citron", + "en:sugar", + "fr:poivre" + ], + "minerals_tags": [], + "ingredients_text_fr": "Farine protéique de _soja_* réhydratée 71,5%, oignons, eau, concentré de tomates, huile de tournesol, fibres de _soja_*, jus concentré d’oignons, sel, gélifiant : méthylcellulose, jus concentré de citron, sucre, poivre.", + "purchase_places": "", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "countries_hierarchy": [ + "en:france" + ], + "product_name": "Steak de soja nature", + "traces_debug_tags": [], + "pnns_groups_2_tags": [ + "unknown" + ], + "last_modified_by": "tacite", + "ingredients_n_tags": [ + "13", + "11-20" + ], + "stores_debug_tags": [], + "additives_debug_tags": [], + "vitamins_tags": [], + "link": "http://triballatfoodservice.com/wp-content/uploads/2017/08/8641-FT-Steak-nature-100g-SOJASUN.pdf", + "additives_original_tags": [ + "en:e461" + ], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties" + ], + "nutrition_data_prepared_per_debug_tags": [], + "generic_name_fr_debug_tags": [], + "pnns_groups_1": "unknown", + "additives_n": 1, + "ingredients_text_fr_debug_tags": [], + "product_name_fr_debug_tags": [], + "allergens_debug_tags": [], + "serving_size": "", + "id": "3273220086414", + "emb_codes": "EMB 35069C", + "stores_tags": [], + "_id": "3273220086414", + "ingredients_text_with_allergens_fr": "Farine protéique de soja* réhydratée 71,5%, oignons, eau, concentré de tomates, huile de tournesol, fibres de soja*, jus concentré d’oignons, sel, gélifiant : méthylcellulose, jus concentré de citron, sucre, poivre.", + "rev": 14, + "ingredients_that_may_be_from_palm_oil_n": 0, + "ingredients_text_debug_tags": [], + "informers_tags": [ + "kiliweb", + "tib-de-bar", + "tacite" + ], + "purchase_places_debug_tags": [], + "packaging": "Barquette,Plastique", + "ingredients_from_palm_oil_tags": [], + "labels_hierarchy": [], + "manufacturing_places_debug_tags": [], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6414/nutrition_fr.8.400.jpg", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "allergens_tags": [ + "en:soybeans" + ], + "labels_debug_tags": [], + "complete": 0, + "labels_prev_hierarchy": [], + "no_nutrition_data": "" + }, + { + "last_modified_by": null, + "product_name": "Steaks de Soja Légumes du Jardin", + "countries_hierarchy": [ + "en:france" + ], + "pnns_groups_2_tags": [ + "one-dish-meals" + ], + "traces_debug_tags": [], + "ingredients_n_tags": [ + "19", + "11-20" + ], + "minerals_tags": [], + "ingredients_text_fr": "Farine protéique de _soja_ * réhydratée 64,4 %, légumes 27,8 % [carottes 9 %, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, mais doux 4%], huile de tournesol, jus concentrés de légumes (carottes, poireaux), fibres de soja * , jus concentré de citron, sel, gélifiant : méthylcelluiose, aneth, sucre. ", + "ingredients_tags": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:legume", + "fr:huile-de-tournesol", + "fr:jus-concentres-de-legumes", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcelluiose", + "fr:aneth", + "en:sugar", + "fr:carotte", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:haricot-vert", + "fr:mais-doux", + "fr:carotte", + "fr:poireau" + ], + "purchase_places": "Rennes,France,TOULOUSE", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "quantity_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.100.jpg", + "codes_tags": [ + "code-13", + "3273220086230", + "327322008623x", + "32732200862xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "languages_codes": { + "fr": 6 + }, + "ingredients_text_with_allergens": "Farine protéique de soja * réhydratée 64,4 %, légumes 27,8 % [carottes 9 %, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, mais doux 4%], huile de tournesol, jus concentrés de légumes (carottes, poireaux), fibres de soja * , jus concentré de citron, sel, gélifiant : méthylcelluiose, aneth, sucre. ", + "lang_debug_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Substituts de viande,Steaks végétales pour hamburgers,Plats préparés d'origine végétale", + "nucleotides_tags": [], + "emb_codes_debug_tags": [], + "labels_tags": [ + "de:proteinreich", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres" + ], + "editors_tags": [ + "date-limite-app", + "mp31", + "kiliweb", + "openfoodfacts-contributors", + "phoenix", + "segundo", + "tacite" + ], + "expiration_date": "01/11/16", + "interface_version_created": "20120622", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "_keywords": [ + "jardin", + "prefrite", + "de", + "riche", + "en", + "ogm", + "du", + "boisson", + "san", + "fibre", + "substitut", + "gluten", + "et", + "proteine", + "sojasun", + "vegetaux", + "specialite", + "aliment", + "steak", + "viande", + "legume", + "base", + "soja", + "vegetale", + "prepare", + "plat", + "hamburger", + "origine", + "pour" + ], + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "fr:steaks-vegetales-pour-hamburgers" + ], + "ingredients_n": "19", + "nutrition_data_per": "100g", + "last_image_dates_tags": [ + "2018-07-11", + "2018-07", + "2018" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "emb_codes_orig": "EMB 35069C", + "debug_param_sorted_langs": [ + "fr" + ], + "lang": "fr", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "max_imgid": "8", + "quality_tags": [], + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "fr:steaks-vegetales-pour-hamburgers" + ], + "checkers_tags": [], + "nutrition_data_per_debug_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "photographers_tags": [ + "openfoodfacts-contributors", + "phoenix", + "mp31", + "kiliweb" + ], + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos" + ], + "labels_debug_tags": [ + "added-de-proteinreich", + "added-fr-riche-en-fibres", + "removed-en-high-fibres", + "removed-en-high-proteins" + ], + "complete": 1, + "no_nutrition_data": "", + "manufacturing_places_debug_tags": [], + "allergens_tags": [ + "en:soybeans" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.400.jpg", + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "packaging": "Carton,Plastique,Sachet individuel,Sous atmosphère protectrice,carton", + "purchase_places_debug_tags": [], + "labels_hierarchy": [ + "de:proteinreich", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.100.jpg", + "ingredients_from_palm_oil_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "informers_tags": [ + "openfoodfacts-contributors", + "segundo", + "phoenix", + "mp31", + "tacite" + ], + "stores_tags": [ + "carrefour" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.200.jpg", + "_id": "3273220086230", + "emb_codes": "EMB 35069C", + "rev": 28, + "ingredients_text_with_allergens_fr": "Farine protéique de soja * réhydratée 64,4 %, légumes 27,8 % [carottes 9 %, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, mais doux 4%], huile de tournesol, jus concentrés de légumes (carottes, poireaux), fibres de soja * , jus concentré de citron, sel, gélifiant : méthylcelluiose, aneth, sucre. ", + "product_name_fr_debug_tags": [], + "id": "3273220086230", + "serving_size": "100 g", + "emb_codes_20141016": "EMB 35069C", + "pnns_groups_1": "Composite foods", + "generic_name_fr_debug_tags": [], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "fr:Steaks végétales pour hamburgers" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.400.jpg", + "additives_n": 0, + "ingredients_text_fr_debug_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [], + "additives_original_tags": [], + "vitamins_tags": [], + "link": "", + "countries_debug_tags": [], + "unique_scans_n": 18, + "quantity": "200 g (2 x 100 g)", + "created_t": 1460912079, + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 4 - fruits 27.8% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.400.jpg", + "languages": { + "en:french": 6 + }, + "last_image_t": 1531312510, + "vitamins_prev_tags": [], + "nutriments": { + "fat_value": "8.5", + "sodium_serving": 0.433, + "sugars": "3", + "monounsaturated-fat_serving": 6.5, + "energy_value": "169", + "saturated-fat_100g": 0.8, + "monounsaturated-fat_unit": "g", + "salt_value": "1.1", + "salt_unit": "", + "polyunsaturated-fat_unit": "g", + "salt_100g": 1.1, + "fruits-vegetables-nuts_unit": "", + "monounsaturated-fat": 6.5, + "saturated-fat": 0.8, + "fiber_value": "5.0", + "carbohydrates_100g": 4.5, + "polyunsaturated-fat_serving": 1.2, + "saturated-fat_value": "0.8", + "saturated-fat_serving": 0.8, + "fiber_serving": "5", + "carbohydrates_value": "4.5", + "sugars_serving": "3", + "fat_100g": 8.5, + "sugars_100g": "3", + "proteins_serving": "16", + "polyunsaturated-fat_100g": 1.2, + "sugars_value": "3", + "fruits-vegetables-nuts": 27.8, + "saturated-fat_unit": "", + "carbohydrates_serving": 4.5, + "fiber_100g": "5", + "nutrition-score-fr": "-4", + "fat_serving": 8.5, + "salt": 1.1, + "proteins": "16", + "carbohydrates_unit": "", + "nutrition-score-uk": "-4", + "monounsaturated-fat_100g": 6.5, + "energy_unit": "kcal", + "polyunsaturated-fat_value": "1.20", + "fruits-vegetables-nuts_100g": 27.8, + "energy": "707", + "salt_serving": 1.1, + "sodium_100g": 0.433070866141732, + "fiber": "5", + "proteins_value": "16", + "nutrition-score-fr_100g": "-4", + "fruits-vegetables-nuts_value": "27.8", + "energy_100g": "707", + "proteins_unit": "", + "fat": 8.5, + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "fat_unit": "", + "polyunsaturated-fat": 1.2, + "sugars_unit": "", + "monounsaturated-fat_value": "6.50", + "proteins_100g": "16", + "fruits-vegetables-nuts_serving": 27.8, + "nutrition-score-uk_100g": "-4", + "carbohydrates": 4.5, + "sodium": 0.433070866141732, + "fiber_unit": "g", + "energy_serving": "707", + "fruits-vegetables-nuts_label": "Fruits, légumes et noix (minimum)" + }, + "nutrient_levels": { + "saturated-fat": "low", + "salt": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "update_key": "20180706-categories", + "purchase_places_tags": [ + "rennes", + "france", + "toulouse" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "pnns_groups_1_tags": [ + "composite-foods" + ], + "amino_acids_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086230/steaks-de-soja-legumes-du-jardin-sojasun", + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.200.jpg", + "ingredients_text": "Farine protéique de _soja_ * réhydratée 64,4 %, légumes 27,8 % [carottes 9 %, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, mais doux 4%], huile de tournesol, jus concentrés de légumes (carottes, poireaux), fibres de soja * , jus concentré de citron, sel, gélifiant : méthylcelluiose, aneth, sucre. ", + "product_quantity": 200, + "categories_debug_tags": [], + "stores": "Carrefour", + "minerals_prev_tags": [], + "link_debug_tags": [], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.100.jpg", + "allergens": "soja, soja", + "packaging_tags": [ + "carton", + "plastique", + "sachet-individuel", + "sous-atmosphere-protectrice", + "carton" + ], + "entry_dates_tags": [ + "2016-04-17", + "2016-04", + "2016" + ], + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "interface_version_modified": "20150316.jqm2", + "additives_prev_original_tags": [], + "amino_acids_prev_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1456 + } + }, + "uploaded_t": "1460912079", + "uploader": "openfoodfacts-contributors" + }, + "2": { + "uploader": "phoenix", + "uploaded_t": "1462181866", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2000, + "h": 3555 + } + } + }, + "3": { + "uploader": "phoenix", + "uploaded_t": "1462181887", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3555, + "w": 2000 + } + } + }, + "4": { + "uploaded_t": "1462181894", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "uploader": "phoenix" + }, + "5": { + "uploader": "mp31", + "sizes": { + "100": { + "h": 100, + "w": 58 + }, + "400": { + "h": 400, + "w": 231 + }, + "full": { + "h": 2000, + "w": 1156 + } + }, + "uploaded_t": "1477382691" + }, + "6": { + "uploader": "mp31", + "sizes": { + "100": { + "w": 43, + "h": 100 + }, + "400": { + "h": 400, + "w": 170 + }, + "full": { + "w": 409, + "h": 961 + } + }, + "uploaded_t": "1477382769" + }, + "7": { + "uploader": "kiliweb", + "uploaded_t": 1531312509, + "sizes": { + "100": { + "h": 100, + "w": 93 + }, + "400": { + "w": 371, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1112 + } + } + }, + "8": { + "uploaded_t": 1531312509, + "sizes": { + "100": { + "w": 93, + "h": 100 + }, + "400": { + "w": 371, + "h": 400 + }, + "full": { + "h": 1200, + "w": 1112 + } + }, + "uploader": "kiliweb" + }, + "nutrition_fr": { + "y2": null, + "imgid": "8", + "y1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 100, + "w": 93 + }, + "200": { + "h": 200, + "w": 185 + }, + "400": { + "h": 400, + "w": 371 + }, + "full": { + "h": 1200, + "w": 1112 + } + }, + "x1": null, + "angle": null, + "rev": "27", + "x2": null + }, + "front_fr": { + "geometry": "0x0-0-0", + "normalize": "false", + "imgid": "5", + "y2": "0", + "y1": "0", + "x1": "0", + "angle": "0", + "x2": "0", + "rev": "21", + "white_magic": "false", + "sizes": { + "100": { + "h": "100", + "w": "58" + }, + "200": { + "w": 116, + "h": 200 + }, + "400": { + "h": 400, + "w": 231 + }, + "full": { + "w": 1156, + "h": 2000 + } + } + }, + "front": { + "sizes": { + "100": { + "w": 67, + "h": 100 + }, + "200": { + "h": 200, + "w": 135 + }, + "400": { + "h": 400, + "w": 269 + }, + "full": { + "h": 1590, + "w": 1070 + } + }, + "imgid": "4", + "white_magic": "false", + "normalize": "false", + "rev": "9", + "geometry": "1070x1590-16-249" + }, + "nutrition": { + "rev": "11", + "normalize": "false", + "geometry": "1191x1235-331-407", + "sizes": { + "100": { + "h": 100, + "w": 96 + }, + "200": { + "h": 200, + "w": 193 + }, + "400": { + "w": 386, + "h": 400 + }, + "full": { + "w": 1191, + "h": 1235 + } + }, + "white_magic": "false", + "imgid": "3" + }, + "ingredients_fr": { + "imgid": "6", + "y2": "0", + "y1": "0", + "geometry": "0x0-0-0", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 43 + }, + "200": { + "w": 85, + "h": 200 + }, + "400": { + "h": 400, + "w": 170 + }, + "full": { + "h": 961, + "w": 409 + } + }, + "x1": "0", + "angle": "0", + "x2": "0", + "rev": "18" + }, + "ingredients": { + "imgid": "3", + "white_magic": "false", + "sizes": { + "100": { + "h": 98, + "w": 100 + }, + "200": { + "w": 200, + "h": 196 + }, + "400": { + "w": 400, + "h": 392 + }, + "full": { + "w": 1226, + "h": 1200 + } + }, + "geometry": "1226x1200-314-1633", + "normalize": "false", + "rev": "10" + } + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.200.jpg", + "serving_size_debug_tags": [], + "code": "3273220086230", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "product_name_fr": "Steaks de Soja Légumes du Jardin", + "traces": "", + "nutrition_grades": "a", + "manufacturing_places": "France", + "origins_debug_tags": [], + "last_modified_t": 1531312511, + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "fr:Steaks végétales pour hamburgers" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.100.jpg", + "labels": "Sans gluten,Riche en fibres,Riche en protéines,Sans OGM", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 5, + "last_edit_dates_tags": [ + "2018-07-11", + "2018-07", + "2018" + ], + "manufacturing_places_tags": [ + "france" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.400.jpg", + "origins_tags": [], + "origins": "", + "additives_old_n": 0, + "creator": "openfoodfacts-contributors", + "ingredients_from_palm_oil_n": 0, + "expiration_date_debug_tags": [], + "traces_tags": [], + "countries_tags": [ + "en:france" + ], + "sortkey": 1531312511, + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_text_debug": "Farine protéique de _soja_ * réhydratée 64,4 %, légumes 27,8 % [carottes 9 %, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, mais doux 4%], huile de tournesol, jus concentrés de légumes (carottes, poireaux), fibres de soja * , jus concentré de citron, sel, gélifiant : méthylcelluiose, aneth, sucre. ", + "traces_hierarchy": [], + "emb_codes_tags": [ + "emb-35069c" + ], + "completed_t": 1462182560, + "labels_prev_tags": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos" + ], + "brands": "Sojasun", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "generic_name_fr": "Spécialité à base de soja préfrite", + "ingredients_debug": [ + "Farine protéique de _soja_ * réhydratée 64", + ",", + null, + null, + null, + "4 %", + ",", + null, + null, + null, + " légumes 27", + ",", + null, + null, + null, + "8 % ", + "[", + "[", + null, + null, + "carottes 9 %", + ",", + null, + null, + null, + " tomates concassées 7", + ",", + null, + null, + null, + "8% ", + "(", + "(", + null, + null, + "tomates", + ",", + null, + null, + null, + " jus de tomates)", + ",", + null, + null, + null, + " haricots verts 7%", + ",", + null, + null, + null, + " mais doux 4%]", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " jus concentrés de légumes ", + "(", + "(", + null, + null, + "carottes", + ",", + null, + null, + null, + " poireaux)", + ",", + null, + null, + null, + " fibres de soja * ", + ",", + null, + null, + null, + " jus concentré de citron", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " méthylcelluiose", + ",", + null, + null, + null, + " aneth", + ",", + null, + null, + null, + " sucre", + ". " + ], + "packaging_debug_tags": [], + "generic_name": "Spécialité à base de soja préfrite", + "pnns_groups_2": "One-dish meals", + "ingredients": [ + { + "rank": 1, + "id": "farine-proteique-de-soja-rehydratee", + "percent": "64.4", + "text": "Farine protéique de _soja_ * réhydratée" + }, + { + "text": "légumes", + "percent": "27.8", + "rank": 2, + "id": "legumes" + }, + { + "text": "huile de tournesol", + "rank": 3, + "id": "huile-de-tournesol" + }, + { + "rank": 4, + "id": "jus-concentres-de-legumes", + "text": "jus concentrés de légumes" + }, + { + "id": "fibres-de-soja", + "rank": 5, + "text": "fibres de soja" + }, + { + "id": "jus-concentre-de-citron", + "rank": 6, + "text": "jus concentré de citron" + }, + { + "id": "sel", + "rank": 7, + "text": "sel" + }, + { + "id": "gelifiant", + "rank": 8, + "text": "gélifiant" + }, + { + "rank": 9, + "id": "methylcelluiose", + "text": "méthylcelluiose" + }, + { + "text": "aneth", + "rank": 10, + "id": "aneth" + }, + { + "text": "sucre", + "rank": 11, + "id": "sucre" + }, + { + "text": "carottes", + "percent": "9", + "id": "carottes" + }, + { + "text": "tomates concassées", + "percent": "7.8", + "id": "tomates-concassees" + }, + { + "id": "tomates", + "text": "tomates" + }, + { + "text": "jus de tomates", + "id": "jus-de-tomates" + }, + { + "percent": "7", + "text": "haricots verts", + "id": "haricots-verts" + }, + { + "id": "mais-doux", + "text": "mais doux", + "percent": "4" + }, + { + "text": "carottes", + "id": "carottes" + }, + { + "id": "poireaux", + "text": "poireaux" + } + ], + "additives_old_tags": [], + "fruits-vegetables-nuts_100g_estimate": 27.8, + "additives_prev_n": 0, + "nucleotides_prev_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.200.jpg", + "additives_tags": [], + "countries": "France", + "serving_quantity": 100, + "last_editor": null, + "ingredients_hierarchy": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:legume", + "fr:huile-de-tournesol", + "fr:jus-concentres-de-legumes", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcelluiose", + "fr:aneth", + "en:sugar", + "fr:carotte", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:haricot-vert", + "fr:mais-doux", + "fr:carotte", + "fr:poireau" + ], + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "segundo", + "phoenix", + "date-limite-app", + "mp31", + "tacite", + "kiliweb", + "openfoodfacts-contributors" + ], + "product_name_debug_tags": [], + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/nutrition_fr.27.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/ingredients_fr.18.200.jpg" + } + }, + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6230/front_fr.21.200.jpg" + } + } + }, + "additives_prev_tags": [], + "scans_n": 21, + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [ + "farine-proteique-de-soja-rehydratee-64", + "4", + "legumes-27", + "8", + "carottes-9", + "tomates-concassees-7", + "8", + "tomates", + "jus-de-tomates", + "haricots-verts-7", + "mais-doux-4", + "huile-de-tournesol", + "jus-concentres-de-legumes", + "carottes", + "poireaux", + "fibres-de-soja", + "jus-concentre-de-citron", + "sel", + "gelifiant", + "methylcelluiose", + "aneth", + "sucre" + ] + }, + { + "product_name_fr": "Boulettes végétales à la tomate", + "traces": "", + "nutrition_grades": "a", + "manufacturing_places": "France", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "serving_size_debug_tags": [], + "code": "3273220086988", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.200.jpg", + "amino_acids_prev_tags": [], + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": 1437371360, + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + } + }, + "2": { + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1125, + "w": 2000 + } + }, + "uploaded_t": 1437371374, + "uploader": "openfoodfacts-contributors" + }, + "nutrition": { + "normalize": "false", + "rev": "6", + "geometry": "645x520-574-354", + "sizes": { + "100": { + "h": 81, + "w": 100 + }, + "200": { + "w": 200, + "h": 161 + }, + "400": { + "h": 322, + "w": 400 + }, + "full": { + "w": 645, + "h": 520 + } + }, + "imgid": "2", + "white_magic": "false" + }, + "nutrition_fr": { + "geometry": "645x520-574-354", + "rev": "6", + "normalize": "false", + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "w": 100, + "h": 81 + }, + "200": { + "w": 200, + "h": 161 + }, + "400": { + "h": 322, + "w": 400 + }, + "full": { + "w": 645, + "h": 520 + } + } + } + }, + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "interface_version_modified": "20120622", + "additives_prev_original_tags": [ + "en:e330", + "en:e407" + ], + "packaging_tags": [ + "barquette", + "plastique" + ], + "entry_dates_tags": [ + "2015-07-20", + "2015-07", + "2015" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.100.jpg", + "allergens": "Soja, soja*, soja*", + "link_debug_tags": [], + "categories_debug_tags": [], + "stores": "", + "minerals_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "ingredients_text": "Tomates 33 % [tomates concassées 25% (tomate, jus de tomate, acidifiant: acide citrique), concentré de tomates], jus de _soja*_ 33 % (eau, graines de _soja* 10 %), farine protéique de _soja*_ 25 %, oignons 4%, huile d'olive vierge extra, arôme naturel, fibres végétales, ail, sel, gélifiant : carraghénane, amidon, thym de Provence 0.1%. \r\n\r\n*Sans OGM", + "product_quantity": 200, + "pnns_groups_1_tags": [ + "composite-foods" + ], + "amino_acids_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086988/boulettes-vegetales-a-la-tomate-sojasun", + "purchase_places_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "last_image_t": 1437371374, + "vitamins_prev_tags": [], + "nutrient_levels": { + "saturated-fat": "low", + "salt": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "nutriments": { + "carbohydrates_value": "8.4", + "iron_unit": "mg", + "sugars_unit": "g", + "fat_unit": "g", + "sugars_100g": 4, + "proteins_serving": "", + "sugars_serving": "", + "fat_100g": 4.5, + "fat": 4.5, + "nutrition-score-fr_100g": -5, + "saturated-fat_value": "0.7", + "carbohydrates_100g": 8.4, + "proteins_value": "15", + "fiber_value": "6", + "fiber_serving": "", + "proteins_unit": "g", + "saturated-fat_serving": "", + "energy_100g": 612, + "iron_label": "Fer", + "fiber_unit": "g", + "sodium": 0.393700787401575, + "carbohydrates_serving": "", + "energy_serving": "", + "saturated-fat_unit": "g", + "proteins_100g": 15, + "nutrition-score-uk_100g": -5, + "carbohydrates": 8.4, + "sugars_value": "4", + "sugars": 4, + "iron_value": "2.5", + "carbohydrates_unit": "g", + "sodium_unit": "g", + "proteins": 15, + "energy_value": "612", + "nutrition-score-uk": -5, + "fat_serving": "", + "nutrition-score-fr": -5, + "fiber_100g": 6, + "fat_value": "4.5", + "sodium_value": "0.39370078740157477", + "sodium_serving": "", + "salt": 1, + "iron": 0.0025, + "fiber": 6, + "iron_serving": "", + "sodium_100g": 0.393700787401575, + "saturated-fat": 0.7, + "salt_100g": 1, + "salt_value": "1", + "salt_unit": "g", + "energy_unit": "kJ", + "iron_100g": 0.0025, + "energy": 612, + "salt_serving": "", + "saturated-fat_100g": 0.7 + }, + "update_key": "20180706-categories", + "languages": { + "en:french": 4 + }, + "countries_debug_tags": [], + "unique_scans_n": 5, + "quantity": "200 g", + "created_t": 1437371359, + "nutrition_score_debug": " -- energy 1 + sat-fat 0 + fr-sat-fat-for-fats 1 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -5 -- fr -5", + "scans_n": 5, + "additives_prev_tags": [ + "en:e330", + "en:e407" + ], + "ingredients_ids_debug": [ + "tomates-33", + "tomates-concassees-25", + "tomate", + "jus-de-tomate", + "acidifiant", + "acide-citrique", + "concentre-de-tomates", + "jus-de-soja-33", + "eau", + "graines-de-soja-10", + "farine-proteique-de-soja-25", + "oignons-4", + "huile-d-olive-vierge-extra", + "arome-naturel", + "fibres-vegetales", + "ail", + "sel", + "gelifiant", + "carraghenane", + "amidon", + "thym-de-provence-0-1", + "sans-ogm" + ], + "nutrition_grade_fr": "a", + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.200.jpg" + } + } + }, + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "sebleouf", + "tacite", + "luciebnt" + ], + "last_editor": "luciebnt", + "serving_quantity": 0, + "ingredients_hierarchy": [ + "fr:tomate", + "fr:jus-de-soja", + "fr:farine-proteique-de-soja", + "fr:oignon", + "fr:huile-d-olive-vierge-extra", + "fr:arome-naturel", + "fr:fibres-vegetales", + "fr:ail", + "en:salt", + "fr:gelifiant", + "fr:carraghenane", + "fr:amidon", + "fr:thym-de-provence", + "fr:sans-ogm", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:acidifiant", + "fr:acide-citrique", + "fr:concentre-de-tomate", + "en:water", + "fr:graines-de-soja" + ], + "nutrition_data_prepared": "", + "additives_tags": [ + "en:e330", + "en:e407" + ], + "countries": "France", + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 2, + "nucleotides_prev_tags": [], + "generic_name": "Préparation à base de soja précuite aromatisée à la tomate", + "packaging_debug_tags": [], + "pnns_groups_2": "One-dish meals", + "ingredients": [ + { + "percent": "33", + "text": "Tomates", + "rank": 1, + "id": "tomates" + }, + { + "percent": "33", + "text": "jus de _soja*_", + "rank": 2, + "id": "jus-de-soja" + }, + { + "percent": "25", + "text": "farine protéique de _soja*_", + "rank": 3, + "id": "farine-proteique-de-soja" + }, + { + "text": "oignons", + "percent": "4", + "rank": 4, + "id": "oignons" + }, + { + "text": "huile d'olive vierge extra", + "id": "huile-d-olive-vierge-extra", + "rank": 5 + }, + { + "text": "arôme naturel", + "id": "arome-naturel", + "rank": 6 + }, + { + "text": "fibres végétales", + "id": "fibres-vegetales", + "rank": 7 + }, + { + "text": "ail", + "rank": 8, + "id": "ail" + }, + { + "text": "sel", + "rank": 9, + "id": "sel" + }, + { + "text": "gélifiant", + "rank": 10, + "id": "gelifiant" + }, + { + "text": "carraghénane", + "rank": 11, + "id": "carraghenane" + }, + { + "rank": 12, + "id": "amidon", + "text": "amidon" + }, + { + "text": "thym de Provence", + "percent": "0.1", + "id": "thym-de-provence", + "rank": 13 + }, + { + "id": "sans-ogm", + "rank": 14, + "text": "Sans OGM" + }, + { + "text": "tomates concassées", + "percent": "25", + "id": "tomates-concassees" + }, + { + "text": "tomate", + "id": "tomate" + }, + { + "id": "jus-de-tomate", + "text": "jus de tomate" + }, + { + "text": "acidifiant", + "id": "acidifiant" + }, + { + "text": "acide citrique", + "id": "acide-citrique" + }, + { + "text": "concentré de tomates", + "id": "concentre-de-tomates" + }, + { + "id": "eau", + "text": "eau" + }, + { + "text": "graines de _soja", + "percent": "10", + "id": "graines-de-soja" + } + ], + "additives_old_tags": [ + "en:e330", + "en:e407" + ], + "traces_hierarchy": [], + "labels_prev_tags": [ + "en:gluten-free", + "en:no-gmos" + ], + "emb_codes_tags": [ + "emb-35069c" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "brands": "Sojasun", + "generic_name_fr": "Préparation à base de soja précuite aromatisée à la tomate", + "ingredients_debug": [ + "Tomates 33 % ", + "[", + "[", + null, + null, + "tomates concassées 25% ", + "(", + "(", + null, + null, + "tomate", + ",", + null, + null, + null, + " jus de tomate", + ",", + null, + null, + null, + " acidifiant ", + ":", + ":", + null, + null, + " acide citrique)", + ",", + null, + null, + null, + " concentré de tomates]", + ",", + null, + null, + null, + " jus de _soja*_ 33 % ", + "(", + "(", + null, + null, + "eau", + ",", + null, + null, + null, + " graines de _soja* 10 %)", + ",", + null, + null, + null, + " farine protéique de _soja*_ 25 %", + ",", + null, + null, + null, + " oignons 4%", + ",", + null, + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + null, + " arôme naturel", + ",", + null, + null, + null, + " fibres végétales", + ",", + null, + null, + null, + " ail", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " carraghénane", + ",", + null, + null, + null, + " amidon", + ",", + null, + null, + null, + " thym de Provence 0.1%", + ". ", + null, + null, + null, + "\r\n\r\n*Sans OGM" + ], + "ingredients_text_debug": "Tomates 33 % [tomates concassées 25% (tomate, jus de tomate, acidifiant : acide citrique), concentré de tomates], jus de _soja*_ 33 % (eau, graines de _soja* 10 %), farine protéique de _soja*_ 25 %, oignons 4%, huile d'olive vierge extra, arôme naturel, fibres végétales, ail, sel, gélifiant : carraghénane, amidon, thym de Provence 0.1%. \r\n\r\n*Sans OGM", + "sortkey": 531151539, + "languages_tags": [ + "en:french", + "en:1" + ], + "traces_tags": [], + "countries_tags": [ + "en:france" + ], + "origins_tags": [], + "nutrition_data": "on", + "origins": "", + "additives_old_n": 2, + "creator": "openfoodfacts-contributors", + "ingredients_from_palm_oil_n": 0, + "expiration_date_debug_tags": [], + "unknown_ingredients_n": 3, + "manufacturing_places_tags": [ + "france" + ], + "last_edit_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "labels": "Sans gluten,Sans OGM", + "unknown_nutrients_tags": [], + "last_modified_t": 1531151539, + "categories_hierarchy": [ + "en:meals", + "en:prepared-vegetables" + ], + "origins_debug_tags": [], + "nutrition_data_per_debug_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "photographers_tags": [ + "openfoodfacts-contributors" + ], + "checkers_tags": [], + "quality_tags": [], + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:meals", + "en:prepared-vegetables" + ], + "max_imgid": "2", + "lang": "fr", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "emb_codes_orig": "EMB 35069C", + "debug_param_sorted_langs": [ + "fr" + ], + "editors": [ + "", + "sebleouf", + "tacite" + ], + "nutrition_data_per": "100g", + "last_image_dates_tags": [ + "2015-07-20", + "2015-07", + "2015" + ], + "categories_tags": [ + "en:meals", + "en:prepared-vegetables" + ], + "_keywords": [ + "plat", + "tomate", + "base", + "sojasun", + "aromatisee", + "vegetale", + "preparation", + "prepare", + "la", + "de", + "precuite", + "boulette", + "soja", + "san", + "legume", + "gluten", + "ogm" + ], + "ingredients_n": 22, + "interface_version_created": "20120622", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors_tags": [ + "sebleouf", + "openfoodfacts-contributors", + "tacite", + "luciebnt" + ], + "expiration_date": "", + "languages_codes": { + "fr": 4 + }, + "lang_debug_tags": [], + "categories": "Plats préparés,Légumes préparés", + "ingredients_text_with_allergens": "Tomates 33 % [tomates concassées 25% (tomate, jus de tomate, acidifiant: acide citrique), concentré de tomates], jus de soja* 33 % (eau, graines de _soja* 10 %), farine protéique de soja* 25 %, oignons 4%, huile d'olive vierge extra, arôme naturel, fibres végétales, ail, sel, gélifiant : carraghénane, amidon, thym de Provence 0.1%. \r\n\r\n*Sans OGM", + "nucleotides_tags": [], + "emb_codes_debug_tags": [], + "labels_tags": [ + "en:gluten-free", + "en:no-gmos" + ], + "quantity_debug_tags": [], + "codes_tags": [ + "code-13", + 3273220086988, + "327322008698x", + "32732200869xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 2, + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "purchase_places": "", + "minerals_tags": [], + "ingredients_text_fr": "Tomates 33 % [tomates concassées 25% (tomate, jus de tomate, acidifiant: acide citrique), concentré de tomates], jus de _soja*_ 33 % (eau, graines de _soja* 10 %), farine protéique de _soja*_ 25 %, oignons 4%, huile d'olive vierge extra, arôme naturel, fibres végétales, ail, sel, gélifiant : carraghénane, amidon, thym de Provence 0.1%. \r\n\r\n*Sans OGM", + "ingredients_tags": [ + "fr:tomate", + "fr:jus-de-soja", + "fr:farine-proteique-de-soja", + "fr:oignon", + "fr:huile-d-olive-vierge-extra", + "fr:arome-naturel", + "fr:fibres-vegetales", + "fr:ail", + "en:salt", + "fr:gelifiant", + "fr:carraghenane", + "fr:amidon", + "fr:thym-de-provence", + "fr:sans-ogm", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:acidifiant", + "fr:acide-citrique", + "fr:concentre-de-tomate", + "en:water", + "fr:graines-de-soja" + ], + "ingredients_n_tags": [ + "22", + "21-30" + ], + "last_modified_by": "luciebnt", + "countries_hierarchy": [ + "en:france" + ], + "product_name": "Boulettes végétales à la tomate", + "traces_debug_tags": [], + "pnns_groups_2_tags": [ + "one-dish-meals" + ], + "additives_original_tags": [ + "en:e330", + "en:e407" + ], + "vitamins_tags": [], + "link": "", + "additives_debug_tags": [], + "stores_debug_tags": [], + "additives_n": 2, + "ingredients_text_fr_debug_tags": [], + "pnns_groups_1": "Composite foods", + "emb_codes_20141016": "EMB 35069C", + "nutrition_data_prepared_per_debug_tags": [], + "generic_name_fr_debug_tags": [], + "categories_prev_hierarchy": [ + "en:meals", + "en:prepared-vegetables" + ], + "id": "3273220086988", + "allergens_debug_tags": [], + "serving_size": "", + "product_name_fr_debug_tags": [], + "rev": 13, + "ingredients_text_with_allergens_fr": "Tomates 33 % [tomates concassées 25% (tomate, jus de tomate, acidifiant: acide citrique), concentré de tomates], jus de soja* 33 % (eau, graines de _soja* 10 %), farine protéique de soja* 25 %, oignons 4%, huile d'olive vierge extra, arôme naturel, fibres végétales, ail, sel, gélifiant : carraghénane, amidon, thym de Provence 0.1%. \r\n\r\n*Sans OGM", + "stores_tags": [], + "_id": "3273220086988", + "emb_codes": "EMB 35069C", + "informers_tags": [ + "openfoodfacts-contributors", + "sebleouf", + "tacite" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "labels_hierarchy": [ + "en:gluten-free", + "en:no-gmos" + ], + "ingredients_from_palm_oil_tags": [], + "packaging": "Barquette,plastique", + "purchase_places_debug_tags": [], + "allergens_tags": [ + "en:soybeans" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6988/nutrition_fr.6.400.jpg", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "manufacturing_places_debug_tags": [], + "no_nutrition_data": "", + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:no-gmos" + ], + "complete": 0, + "labels_debug_tags": [] + }, + { + "last_modified_by": "luciebnt", + "product_name": "Haché végétal prêt a cuisiner", + "countries_hierarchy": [ + "en:france" + ], + "pnns_groups_2_tags": [ + "legumes" + ], + "traces_debug_tags": [], + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "purchase_places": "Paris,Villers Bocage 80260,France,Courrières", + "minerals_tags": [], + "ingredients_text_fr": "", + "ingredients_tags": [], + "languages_codes": { + "fr": 5 + }, + "lang_debug_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Frais,Légumineuses et dérivés,Légumineuses,Graines,Graines de légumineuses,Soja,Hachés végétaux,Préparations de soja cuisinées", + "ingredients_text_with_allergens": "", + "nucleotides_tags": [], + "emb_codes_debug_tags": [], + "labels_tags": [ + "de:proteinreich", + "de:reich-an-pflanzlichem-eiweiss", + "en:gluten-free", + "en:green-dot", + "fr:eco-emballages" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.100.jpg", + "quantity_debug_tags": [], + "codes_tags": [ + "code-13", + 3273220086308, + "327322008630x", + "32732200863xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 2, + "interface_version_created": "20120622", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "editors_tags": [ + "tacite", + "openfoodfacts-contributors", + "jacob80", + "luciebnt", + "kiliweb", + "fred-chauviere" + ], + "expiration_date": "01/06/2015", + "editors": [ + "tacite", + "fred-chauviere", + "jacob80" + ], + "nutrition_data_per": "100g", + "last_image_dates_tags": [ + "2017-10-04", + "2017-10", + "2017" + ], + "_keywords": [ + "riche", + "de", + "pret", + "vegetal", + "vegetale", + "preparation", + "hache", + "en", + "vegetaux", + "san", + "point", + "gluten", + "vert", + "frai", + "soja", + "proteine", + "legumineuse", + "boisson", + "derive", + "et", + "base", + "sojasun", + "graine", + "eco-emballage", + "cuisinee", + "cuisiner", + "hachee", + "aliment", + "origine" + ], + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fresh-foods", + "en:legumes-and-their-products", + "en:legumes", + "en:seeds", + "en:legume-seeds", + "en:soy", + "fr:haches-vegetaux", + "fr:preparations-de-soja-cuisinees" + ], + "lang": "fr", + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "emb_codes_orig": "EMB 35069C", + "debug_param_sorted_langs": [ + "fr" + ], + "quality_tags": [], + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fresh-foods", + "en:legumes-and-their-products", + "en:legumes", + "en:seeds", + "en:legume-seeds", + "en:soy", + "fr:haches-vegetaux", + "fr:preparations-de-soja-cuisinees" + ], + "max_imgid": "11", + "nutrition_data_per_debug_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "photographers_tags": [ + "fred-chauviere", + "jacob80", + "tacite", + "kiliweb" + ], + "checkers_tags": [], + "no_nutrition_data": "", + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:green-dot", + "en:high-proteins", + "fr:Eco-Emballages", + "fr:Riche en protéines végétales" + ], + "labels_debug_tags": [ + "added-de-proteinreich", + "added-de-reich-an-pflanzlichem-eiweiss", + "removed-en-high-proteins", + "removed-fr-riche-en-proteines-vegetales" + ], + "complete": 0, + "allergens_tags": [ + "en:soybeans" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.400.jpg", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "manufacturing_places_debug_tags": [], + "labels_hierarchy": [ + "de:proteinreich", + "de:reich-an-pflanzlichem-eiweiss", + "en:gluten-free", + "en:green-dot", + "fr:Eco-Emballages" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.100.jpg", + "ingredients_from_palm_oil_tags": [], + "packaging": "Frais,Barquette,Plastique,Opercule,Film plastique,Sous atmosphère protectrice", + "purchase_places_debug_tags": [], + "informers_tags": [ + "fred-chauviere", + "jacob80", + "tacite" + ], + "rev": 38, + "ingredients_text_with_allergens_fr": "", + "stores_tags": [ + "intermarche", + "banque-alimentaire", + "cora" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.200.jpg", + "_id": "3273220086308", + "emb_codes": "EMB 35069C", + "id": "3273220086308", + "allergens_debug_tags": [], + "serving_size": "", + "product_name_fr_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.400.jpg", + "ingredients_text_fr_debug_tags": [], + "pnns_groups_1": "Cereals and potatoes", + "nutrition_data_prepared_per_debug_tags": [], + "generic_name_fr_debug_tags": [], + "emb_codes_20141016": "", + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fresh-foods", + "en:legumes-and-their-products", + "en:legumes", + "en:seeds", + "en:legume-seeds", + "en:soy", + "fr:Hachés végétaux", + "fr:Préparations de soja cuisinées" + ], + "additives_original_tags": [], + "link": "http://www.sojasun.com/nos-produits/tous-nos-plats-et-ingredients-culinaires/ingredients/product/hache-vegetal.html", + "vitamins_tags": [], + "stores_debug_tags": [], + "additives_debug_tags": [], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.400.jpg", + "languages": { + "en:french": 5 + }, + "countries_debug_tags": [], + "unique_scans_n": 22, + "quantity": "240 g", + "created_t": 1373890860, + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "purchase_places_tags": [ + "paris", + "villers-bocage-80260", + "france", + "courrieres" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "last_image_t": 1507118084, + "vitamins_prev_tags": [], + "nutriments": { + "sodium_unit": "g", + "proteins": 17, + "sugars": 3, + "carbohydrates_unit": "g", + "nutrition-score-uk": -4, + "energy_value": "739", + "fat_value": "9", + "nutrition-score-fr": -4, + "fat_serving": "", + "fiber_100g": 5, + "salt": 1.1, + "sodium_value": "0.433070866141732", + "sodium_serving": "", + "sodium_100g": 0.433070866141732, + "fiber": 5, + "salt_100g": 1.1, + "salt_value": "1.1", + "salt_unit": "g", + "saturated-fat": 0.85, + "energy_unit": "kJ", + "saturated-fat_100g": 0.85, + "energy": 739, + "salt_serving": "", + "carbohydrates_value": "4.5", + "proteins_serving": "", + "fat_unit": "g", + "sugars_100g": 3, + "fat_100g": 9, + "fat": 9, + "sugars_serving": "", + "sugars_unit": "g", + "fiber_value": "5", + "saturated-fat_value": "0.85", + "nutrition-score-fr_100g": -4, + "proteins_value": "17", + "carbohydrates_100g": 4.5, + "saturated-fat_serving": "", + "proteins_unit": "g", + "energy_100g": 739, + "fiber_serving": "", + "sodium": 0.433070866141732, + "fiber_unit": "g", + "energy_serving": "", + "saturated-fat_unit": "g", + "carbohydrates_serving": "", + "nutrition-score-uk_100g": -4, + "proteins_100g": 17, + "sugars_value": "3", + "carbohydrates": 4.5 + }, + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "low", + "salt": "moderate", + "fat": "moderate" + }, + "update_key": "20180706-categories", + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.200.jpg", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "ingredients_text": "", + "product_quantity": 240, + "pnns_groups_1_tags": [ + "cereals-and-potatoes" + ], + "amino_acids_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086308/hache-vegetal-pret-a-cuisiner-sojasun", + "link_debug_tags": [], + "categories_debug_tags": [], + "stores": "Intermarché,Banque alimentaire,Cora", + "minerals_prev_tags": [], + "packaging_tags": [ + "frais", + "barquette", + "plastique", + "opercule", + "film-plastique", + "sous-atmosphere-protectrice" + ], + "entry_dates_tags": [ + "2013-07-15", + "2013-07", + "2013" + ], + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.100.jpg", + "allergens": "Soja", + "amino_acids_prev_tags": [], + "images": { + "1": { + "uploader": "fred-chauviere", + "uploaded_t": 1373890862, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "uploaded_t": 1373890918, + "uploader": "fred-chauviere" + }, + "3": { + "uploader": "jacob80", + "uploaded_t": 1420369956, + "sizes": { + "100": { + "h": 100, + "w": 74 + }, + "400": { + "w": 297, + "h": 400 + }, + "full": { + "h": 2261, + "w": 1679 + } + } + }, + "4": { + "uploaded_t": 1420369968, + "sizes": { + "100": { + "h": 100, + "w": 64 + }, + "400": { + "w": 256, + "h": 400 + }, + "full": { + "w": 1492, + "h": 2332 + } + }, + "uploader": "jacob80" + }, + "5": { + "uploader": "jacob80", + "uploaded_t": 1420369982, + "sizes": { + "100": { + "h": 76, + "w": 100 + }, + "400": { + "h": 304, + "w": 400 + }, + "full": { + "h": 1236, + "w": 1628 + } + } + }, + "6": { + "uploader": "jacob80", + "uploaded_t": 1420369991, + "sizes": { + "100": { + "h": 84, + "w": 100 + }, + "400": { + "h": 337, + "w": 400 + }, + "full": { + "w": 1702, + "h": 1436 + } + } + }, + "7": { + "sizes": { + "100": { + "w": 73, + "h": 100 + }, + "400": { + "h": 400, + "w": 292 + }, + "full": { + "w": 2059, + "h": 2825 + } + }, + "uploaded_t": 1431536238, + "uploader": "tacite" + }, + "8": { + "uploader": "tacite", + "uploaded_t": 1431536240, + "sizes": { + "100": { + "w": 76, + "h": 100 + }, + "400": { + "w": 304, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3224 + } + } + }, + "9": { + "uploader": "kiliweb", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 1360, + "w": 1021 + } + }, + "uploaded_t": "1507118081" + }, + "10": { + "uploader": "kiliweb", + "uploaded_t": "1507118083", + "sizes": { + "100": { + "h": 100, + "w": 97 + }, + "400": { + "w": 389, + "h": 400 + }, + "full": { + "w": 1324, + "h": 1360 + } + } + }, + "11": { + "uploaded_t": "1507118084", + "sizes": { + "100": { + "w": 100, + "h": 50 + }, + "400": { + "w": 400, + "h": 201 + }, + "full": { + "h": 1517, + "w": 3024 + } + }, + "uploader": "kiliweb" + }, + "nutrition_fr": { + "y2": null, + "imgid": "10", + "y1": null, + "geometry": "0x0-0-0", + "normalize": "0", + "white_magic": "0", + "sizes": { + "100": { + "h": 100, + "w": 97 + }, + "200": { + "h": 200, + "w": 195 + }, + "400": { + "h": 400, + "w": 389 + }, + "full": { + "w": 1324, + "h": 1360 + } + }, + "x1": null, + "rev": "32", + "x2": null, + "angle": null + }, + "ingredients": { + "geometry": "749x419-376-796", + "normalize": "false", + "rev": "26", + "imgid": "8", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "200": { + "w": 200, + "h": 112 + }, + "400": { + "h": 224, + "w": 400 + }, + "full": { + "h": 419, + "w": 749 + } + } + }, + "ingredients_fr": { + "y1": null, + "imgid": "11", + "y2": null, + "normalize": "0", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "h": 50, + "w": 100 + }, + "200": { + "w": 200, + "h": 100 + }, + "400": { + "w": 400, + "h": 201 + }, + "full": { + "w": 3024, + "h": 1517 + } + }, + "white_magic": "0", + "x2": null, + "rev": "34", + "angle": null, + "x1": null + }, + "nutrition": { + "sizes": { + "100": { + "w": 100, + "h": 84 + }, + "200": { + "h": 169, + "w": 200 + }, + "400": { + "h": 337, + "w": 400 + }, + "full": { + "w": 1702, + "h": 1436 + } + }, + "imgid": "6", + "white_magic": null, + "normalize": null, + "rev": "19", + "geometry": "0x0--4--4" + }, + "front_fr": { + "normalize": "0", + "geometry": "0x0-0-0", + "y1": null, + "imgid": "9", + "y2": null, + "angle": null, + "x2": null, + "rev": "30", + "x1": null, + "sizes": { + "100": { + "h": "100", + "w": "75" + }, + "200": { + "h": 200, + "w": 150 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 1360, + "w": 1021 + } + }, + "white_magic": "0" + }, + "front": { + "sizes": { + "100": { + "w": 73, + "h": 100 + }, + "200": { + "w": 146, + "h": 200 + }, + "400": { + "w": 292, + "h": 400 + }, + "full": { + "w": 2059, + "h": 2825 + } + }, + "white_magic": "false", + "imgid": "7", + "rev": "25", + "normalize": "false", + "geometry": "0x0-0-0" + } + }, + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "interface_version_modified": "20120622", + "additives_prev_original_tags": [], + "serving_size_debug_tags": [], + "code": "3273220086308", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.200.jpg", + "traces": "", + "product_name_fr": "Haché végétal prêt a cuisiner", + "nutrition_grades": "a", + "manufacturing_places": "", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "last_modified_t": 1531150912, + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:fresh-foods", + "en:legumes-and-their-products", + "en:legumes", + "en:seeds", + "en:legume-seeds", + "en:soy", + "fr:Hachés végétaux", + "fr:Préparations de soja cuisinées" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.100.jpg", + "origins_debug_tags": [], + "unknown_ingredients_n": 0, + "last_edit_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "manufacturing_places_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.400.jpg", + "labels": "Riche en protéines,Riche en protéines végétales,Sans gluten,Point Vert,Eco-Emballages", + "unknown_nutrients_tags": [], + "traces_tags": [], + "countries_tags": [ + "en:france" + ], + "nutrition_data": "on", + "origins_tags": [], + "origins": "", + "creator": "fred-chauviere", + "expiration_date_debug_tags": [], + "ingredients_text_debug": "", + "sortkey": 531150912, + "languages_tags": [ + "en:french", + "en:1" + ], + "packaging_debug_tags": [], + "generic_name": "Préparation végétale hachée à base de soja", + "pnns_groups_2": "Legumes", + "additives_old_tags": [], + "ingredients": [], + "emb_codes_tags": [ + "emb-35069c" + ], + "traces_hierarchy": [], + "labels_prev_tags": [ + "en:gluten-free", + "en:green-dot", + "en:high-proteins", + "fr:eco-emballages", + "fr:riche-en-proteines-vegetales" + ], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun", + "generic_name_fr": "Préparation végétale hachée à base de soja", + "ingredients_debug": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.200.jpg", + "additives_tags": [], + "countries": "France", + "fruits-vegetables-nuts_100g_estimate": 0, + "nucleotides_prev_tags": [], + "correctors_tags": [ + "fred-chauviere", + "jacob80", + "tacite", + "kiliweb", + "openfoodfacts-contributors", + "luciebnt" + ], + "nutrition_data_prepared_per": "100g", + "product_name_debug_tags": [], + "last_editor": "luciebnt", + "serving_quantity": 0, + "ingredients_hierarchy": [], + "nutrition_data_prepared": "", + "additives_prev_tags": [], + "scans_n": 24, + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [], + "selected_images": { + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/front_fr.30.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/nutrition_fr.32.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6308/ingredients_fr.34.200.jpg" + } + } + } + }, + { + "product_name": "Steaks de Soja Petits Légumes", + "countries_hierarchy": [ + "en:france" + ], + "traces_debug_tags": [], + "pnns_groups_2_tags": [ + "unknown" + ], + "last_modified_by": "luciebnt", + "ingredients_n_tags": [ + "21", + "21-30" + ], + "ingredients_tags": [ + "fr:farine-proteique-de-soja-rehydrate", + "fr:legume", + "fr:huile-de-tournesol", + "fr:jus-concentre-de-legumes", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:aneth", + "en:sugar", + "fr:issues-de-traines-de-soja-cultivees-en-france", + "fr:sans-ogm", + "fr:carotte", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:haricot-vert", + "fr:mais-doux", + "fr:carotte", + "fr:poireau" + ], + "minerals_tags": [], + "ingredients_text_fr": "Farine protéique de _soja_* réhydraté 64,4%, légumes 27,8% [Carottes 9%, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, maïs doux 4%], huile de tournesol, jus concentré de légumes (carottes, poireaux), fibres de _soja_*, jus concentré de citron, sel, gélifiant : méthylcellulose, aneth, sucre.\r\n*issues de traines de soja cultivées en France, sans OGM.", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "purchase_places": "Rennes,France,Paris,Orvault", + "new_additives_n": 1, + "codes_tags": [ + "code-13", + 3273220086087, + "327322008608x", + "32732200860xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.100.jpg", + "quantity_debug_tags": [], + "nucleotides_tags": [], + "labels_tags": [ + "de:proteinreich", + "de:reich-an-pflanzlichem-eiweiss", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres", + "fr:filiere-soja-francaise" + ], + "emb_codes_debug_tags": [], + "debug_tags": [ + "43" + ], + "languages_codes": { + "fr": 6 + }, + "lang_debug_tags": [], + "ingredients_text_with_allergens": "Farine protéique de soja* réhydraté 64,4%, légumes 27,8% [Carottes 9%, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, maïs doux 4%], huile de tournesol, jus concentré de légumes (carottes, poireaux), fibres de soja*, jus concentré de citron, sel, gélifiant : méthylcellulose, aneth, sucre.\r\n*issues de traines de soja cultivées en France, sans OGM.", + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Substituts de viande,Steaks végétaux pour hamburgers,Steaks de soja", + "expiration_date": "10/04/2018", + "editors_tags": [ + "openfoodfacts-contributors", + "tacite", + "diane146", + "teolemon", + "javichu", + "date-limite-app", + "phoenix", + "scanparty-franprix-05-2016", + "tacite-mass-editor", + "raphael0202", + "kiliweb", + "gendy54", + "asmoth", + "luciebnt" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties", + "fr:steaks-de-soja" + ], + "_keywords": [ + "substitut", + "gluten", + "de", + "france", + "pour", + "hamburger", + "fibre", + "base", + "vegetale", + "et", + "prefrite", + "francaise", + "ogm", + "boisson", + "steak", + "specialite", + "petit", + "riche", + "filiere", + "proteine", + "vegetaux", + "viande", + "soja", + "origine", + "san", + "aliment", + "legume", + "sojasun", + "en" + ], + "ingredients_n": 21, + "last_image_dates_tags": [ + "2018-06-07", + "2018-06", + "2018" + ], + "editors": [ + "", + "diane146", + "phoenix", + "javichu", + "raphael0202", + "gendy54" + ], + "nutrition_data_per": "100g", + "emb_codes_orig": "EMB 35069C", + "debug_param_sorted_langs": [ + "fr" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "lang": "fr", + "max_imgid": "20", + "quality_tags": [], + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties", + "fr:steaks-de-soja" + ], + "checkers_tags": [], + "photographers_tags": [ + "openfoodfacts-contributors", + "diane146", + "phoenix", + "gendy54", + "teolemon", + "asmoth", + "kiliweb" + ], + "allergens_hierarchy": [ + "en:soybeans" + ], + "nutrition_data_per_debug_tags": [], + "complete": 1, + "labels_debug_tags": [ + "added-de-proteinreich", + "added-de-reich-an-pflanzlichem-eiweiss", + "added-fr-riche-en-fibres", + "removed-en-high-fibres", + "removed-en-high-proteins", + "removed-fr-riche-en-proteines-vegetales" + ], + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos", + "fr:Filière soja française", + "fr:Riche en protéines végétales" + ], + "no_nutrition_data": "", + "manufacturing_places_debug_tags": [], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.400.jpg", + "misc_tags": [ + "en:nutrition-fruits-vegetables-nuts-estimate", + "en:nutrition-all-nutriscore-values-known", + "en:nutriscore-computed" + ], + "allergens_tags": [ + "en:soybeans" + ], + "purchase_places_debug_tags": [], + "packaging": "Carton,Plastique,Sous atmosphère protectrice,frais", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.100.jpg", + "ingredients_from_palm_oil_tags": [], + "labels_hierarchy": [ + "de:proteinreich", + "de:reich-an-pflanzlichem-eiweiss", + "en:gluten-free", + "en:no-gmos", + "fr:riche-en-fibres", + "fr:Filière soja française" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "informers_tags": [ + "openfoodfacts-contributors", + "diane146", + "raphael0202", + "phoenix", + "tacite", + "asmoth" + ], + "emb_codes": "EMB 35069C", + "stores_tags": [ + "carrefour", + "franprix", + "leclerc" + ], + "_id": "3273220086087", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.200.jpg", + "ingredients_text_with_allergens_fr": "Farine protéique de soja* réhydraté 64,4%, légumes 27,8% [Carottes 9%, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, maïs doux 4%], huile de tournesol, jus concentré de légumes (carottes, poireaux), fibres de soja*, jus concentré de citron, sel, gélifiant : méthylcellulose, aneth, sucre.\r\n*issues de traines de soja cultivées en France, sans OGM.", + "rev": 53, + "product_name_fr_debug_tags": [], + "allergens_debug_tags": [], + "serving_size": "100 g - 1 Steak", + "id": "3273220086087", + "nutrition_score_warning_fruits_vegetables_nuts_estimate": 1, + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties", + "fr:Steaks de soja" + ], + "nutrition_data_prepared_per_debug_tags": [], + "pnns_groups_1": "unknown", + "emb_codes_20141016": "", + "generic_name_fr_debug_tags": [], + "additives_n": 1, + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.400.jpg", + "ingredients_text_fr_debug_tags": [], + "additives_debug_tags": [], + "stores_debug_tags": [], + "link": "", + "vitamins_tags": [], + "additives_original_tags": [ + "en:e461" + ], + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 4 - fruits 27.8% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "countries_debug_tags": [], + "unique_scans_n": 52, + "created_t": 1396986490, + "quantity": "200 g (2 x 100 g)", + "languages": { + "en:french": 6 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.400.jpg", + "nutriments": { + "sodium_100g": 0.433070866141732, + "fiber": 5, + "polyunsaturated-fat_value": "1.2", + "energy": 703, + "salt_serving": 1.1, + "energy_unit": "kJ", + "monounsaturated-fat_100g": 6.5, + "nutrition-score-uk": -4, + "proteins": 16, + "carbohydrates_unit": "g", + "fruits-vegetables-nuts-estimate": 27.8, + "salt": 1.1, + "sodium_value": "0.433070866141732", + "fiber_100g": 5, + "fat_serving": 8.5, + "nutrition-score-fr": -4, + "energy_serving": 703, + "fruits-vegetables-nuts-estimate_serving": 27.8, + "sodium": 0.433070866141732, + "fiber_unit": "g", + "carbohydrates": 4.5, + "fruits-vegetables-nuts-estimate_label": "Fruits, légumes et noix (estimation avec la liste des ingrédients)", + "nutrition-score-uk_100g": -4, + "proteins_100g": 16, + "fat": 8.5, + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "fat_unit": "g", + "polyunsaturated-fat": 1.2, + "sugars_unit": "g", + "monounsaturated-fat_value": "6.5", + "energy_100g": 703, + "fruits-vegetables-nuts-estimate_value": "27.8", + "proteins_unit": "g", + "proteins_value": "16", + "nutrition-score-fr_100g": -4, + "salt_value": "1.1", + "salt_unit": "g", + "polyunsaturated-fat_unit": "g", + "salt_100g": 1.1, + "monounsaturated-fat": 6.5, + "saturated-fat": 0.8, + "saturated-fat_100g": 0.8, + "monounsaturated-fat_unit": "g", + "energy_value": "703", + "sodium_unit": "g", + "monounsaturated-fat_serving": 6.5, + "sugars": 3, + "sodium_serving": 0.433, + "fat_value": "8.5", + "fruits-vegetables-nuts-estimate_100g": 27.8, + "saturated-fat_unit": "g", + "carbohydrates_serving": 4.5, + "polyunsaturated-fat_100g": 1.2, + "sugars_value": "3", + "fruits-vegetables-nuts-estimate_unit": "g", + "fat_100g": 8.5, + "sugars_serving": 3, + "sugars_100g": 3, + "proteins_serving": 16, + "carbohydrates_value": "4.5", + "saturated-fat_serving": 0.8, + "fiber_serving": 5, + "fiber_value": "5", + "polyunsaturated-fat_serving": 1.2, + "carbohydrates_100g": 4.5, + "saturated-fat_value": "0.8" + }, + "nutrient_levels": { + "sugars": "low", + "salt": "moderate", + "fat": "moderate", + "saturated-fat": "low" + }, + "update_key": "20180706-categories", + "last_image_t": 1528398796, + "vitamins_prev_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "rennes", + "france", + "paris", + "orvault" + ], + "url": "https://world.openfoodfacts.org/product/3273220086087/steaks-de-soja-petits-legumes-sojasun", + "pnns_groups_1_tags": [ + "unknown" + ], + "amino_acids_tags": [], + "ingredients_text": "Farine protéique de _soja_* réhydraté 64,4%, légumes 27,8% [Carottes 9%, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, maïs doux 4%], huile de tournesol, jus concentré de légumes (carottes, poireaux), fibres de _soja_*, jus concentré de citron, sel, gélifiant : méthylcellulose, aneth, sucre.\r\n*issues de traines de soja cultivées en France, sans OGM.", + "product_quantity": 200, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.200.jpg", + "stores": "Carrefour,Franprix,Leclerc", + "categories_debug_tags": [], + "minerals_prev_tags": [], + "link_debug_tags": [], + "allergens": "Soja, soja, soja", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.100.jpg", + "entry_dates_tags": [ + "2014-04-08", + "2014-04", + "2014" + ], + "packaging_tags": [ + "carton", + "plastique", + "sous-atmosphere-protectrice", + "frais" + ], + "interface_version_modified": "20120622", + "additives_prev_original_tags": [ + "en:e461" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "lc": "fr", + "amino_acids_prev_tags": [], + "images": { + "1": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 299 + }, + "full": { + "w": 1936, + "h": 2592 + } + }, + "uploaded_t": 1396986491 + }, + "2": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 299 + }, + "full": { + "h": 2592, + "w": 1936 + } + }, + "uploaded_t": 1396986529 + }, + "3": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "h": 1936, + "w": 2592 + } + }, + "uploaded_t": 1396986600, + "uploader": "openfoodfacts-contributors" + }, + "4": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 299 + }, + "full": { + "w": 2592, + "h": 1936 + } + }, + "uploaded_t": 1396986635, + "uploader": "openfoodfacts-contributors" + }, + "5": { + "uploader": "diane146", + "uploaded_t": 1409950595, + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "h": 1746, + "w": 3104 + } + } + }, + "6": { + "uploader": "phoenix", + "uploaded_t": 1428302106, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "7": { + "uploader": "phoenix", + "uploaded_t": 1428302129, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "8": { + "uploader": "phoenix", + "uploaded_t": 1428302144, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2000, + "h": 2666 + } + } + }, + "9": { + "uploader": "gendy54", + "uploaded_t": "1449435836", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 2000, + "h": 1500 + } + } + }, + "10": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "11": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "12": { + "uploaded_t": "1464713804", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploader": "teolemon" + }, + "13": { + "uploader": "teolemon", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploaded_t": "1464713804" + }, + "14": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3840, + "w": 2160 + } + }, + "uploaded_t": "1464713804", + "uploader": "teolemon" + }, + "15": { + "uploader": "teolemon", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 2160, + "h": 3840 + } + }, + "uploaded_t": "1464713804" + }, + "16": { + "uploader": "asmoth", + "uploaded_t": "1522169508", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + } + }, + "17": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1522169516", + "uploader": "asmoth" + }, + "18": { + "uploader": "asmoth", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploaded_t": "1522169532" + }, + "19": { + "uploader": "asmoth", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploaded_t": "1522169542" + }, + "20": { + "uploader": "kiliweb", + "uploaded_t": "1528398795", + "sizes": { + "100": { + "h": 100, + "w": 70 + }, + "400": { + "h": 400, + "w": 281 + }, + "full": { + "h": 1200, + "w": 844 + } + } + }, + "nutrition_fr": { + "imgid": "19", + "y2": "275.96667480468756", + "y1": "126.96667480468751", + "geometry": "675x745-409-634", + "normalize": "true", + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 91 + }, + "200": { + "w": 181, + "h": 200 + }, + "400": { + "w": 362, + "h": 400 + }, + "full": { + "h": 745, + "w": 675 + } + }, + "x1": "81.83331298828126", + "rev": "46", + "x2": "216.8333129882813", + "angle": "90" + }, + "ingredients": { + "rev": "18", + "normalize": "checked", + "geometry": "2666x1540-0-433", + "sizes": { + "100": { + "w": 100, + "h": 58 + }, + "200": { + "w": 200, + "h": 116 + }, + "400": { + "w": 400, + "h": 231 + }, + "full": { + "h": 1540, + "w": 2666 + } + }, + "white_magic": null, + "imgid": "7" + }, + "ingredients_fr": { + "white_magic": "false", + "sizes": { + "100": { + "h": 83, + "w": 100 + }, + "200": { + "w": 200, + "h": 165 + }, + "400": { + "h": 330, + "w": 400 + }, + "full": { + "h": 570, + "w": 690 + } + }, + "x1": "84.83331298828126", + "angle": "90", + "x2": "222.8333129882813", + "rev": "45", + "imgid": "18", + "y2": "261.4833374023438", + "y1": "147.48333740234378", + "geometry": "690x570-424-737", + "normalize": "true" + }, + "nutrition": { + "white_magic": null, + "imgid": "8", + "sizes": { + "100": { + "w": 100, + "h": 63 + }, + "200": { + "w": 200, + "h": 126 + }, + "400": { + "w": 400, + "h": 253 + }, + "full": { + "h": 1640, + "w": 2593 + } + }, + "geometry": "2593x1640-73-166", + "rev": "19", + "normalize": "checked" + }, + "front_fr": { + "white_magic": "0", + "sizes": { + "100": { + "h": "100", + "w": "70" + }, + "200": { + "w": 141, + "h": 200 + }, + "400": { + "w": 281, + "h": 400 + }, + "full": { + "w": 844, + "h": 1200 + } + }, + "x1": null, + "x2": null, + "rev": "50", + "angle": null, + "y2": null, + "imgid": "20", + "y1": null, + "geometry": "0x0-0-0", + "normalize": "0" + }, + "front": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 1500, + "h": 2000 + } + }, + "white_magic": null, + "imgid": "6", + "rev": "17", + "normalize": "checked", + "geometry": "0x0-0-0" + } + }, + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.200.jpg", + "serving_size_debug_tags": [], + "code": "3273220086087", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "manufacturing_places": "", + "traces": "", + "product_name_fr": "Steaks de Soja Petits Légumes", + "nutrition_grades": "a", + "origins_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.100.jpg", + "last_modified_t": 1531143370, + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "en:veggie-burger-patties", + "fr:Steaks de soja" + ], + "unknown_nutrients_tags": [], + "labels": "Riche en protéines,Riche en protéines végétales,Sans gluten,Sans OGM,Riche en fibres,Filière soja française", + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.400.jpg", + "unknown_ingredients_n": 6, + "last_edit_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "manufacturing_places_tags": [], + "expiration_date_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "creator": "openfoodfacts-contributors", + "origins_tags": [ + "soja-origine-france" + ], + "origins": "Soja origine France", + "nutrition_data": "on", + "additives_old_n": 1, + "countries_tags": [ + "en:france" + ], + "traces_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 1531143370, + "ingredients_text_debug": "Farine protéique de _soja_* réhydraté 64,4%, légumes 27,8% [Carottes 9%, tomates concassées 7,8% (tomates, jus de tomates), haricots verts 7%, maïs doux 4%], huile de tournesol, jus concentré de légumes (carottes, poireaux), fibres de _soja_*, jus concentré de citron, sel, gélifiant : méthylcellulose, aneth, sucre.\r\n*issues de traines de soja cultivées en France, sans OGM.", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun", + "generic_name_fr": "Spécialité à base de soja, préfrite", + "ingredients_debug": [ + "Farine protéique de _soja_* réhydraté 64", + ",", + null, + null, + null, + "4%", + ",", + null, + null, + null, + " légumes 27", + ",", + null, + null, + null, + "8% ", + "[", + "[", + null, + null, + "Carottes 9%", + ",", + null, + null, + null, + " tomates concassées 7", + ",", + null, + null, + null, + "8% ", + "(", + "(", + null, + null, + "tomates", + ",", + null, + null, + null, + " jus de tomates)", + ",", + null, + null, + null, + " haricots verts 7%", + ",", + null, + null, + null, + " maïs doux 4%]", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " jus concentré de légumes ", + "(", + "(", + null, + null, + "carottes", + ",", + null, + null, + null, + " poireaux)", + ",", + null, + null, + null, + " fibres de _soja_*", + ",", + null, + null, + null, + " jus concentré de citron", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " méthylcellulose", + ",", + null, + null, + null, + " aneth", + ",", + null, + null, + null, + " sucre", + ".\r", + null, + null, + null, + "\n*issues de traines de soja cultivées en France", + ",", + null, + null, + null, + " sans OGM." + ], + "emb_codes_tags": [ + "emb-35069c" + ], + "completed_t": 1428302748, + "traces_hierarchy": [], + "labels_prev_tags": [ + "en:gluten-free", + "en:high-fibres", + "en:high-proteins", + "en:no-gmos", + "fr:filiere-soja-francaise", + "fr:riche-en-proteines-vegetales" + ], + "pnns_groups_2": "unknown", + "ingredients": [ + { + "rank": 1, + "id": "farine-proteique-de-soja-rehydrate", + "text": "Farine protéique de _soja_* réhydraté", + "percent": "64.4" + }, + { + "text": "légumes", + "percent": "27.8", + "rank": 2, + "id": "legumes" + }, + { + "rank": 3, + "id": "huile-de-tournesol", + "text": "huile de tournesol" + }, + { + "text": "jus concentré de légumes", + "rank": 4, + "id": "jus-concentre-de-legumes" + }, + { + "rank": 5, + "id": "fibres-de-soja", + "text": "fibres de _soja_" + }, + { + "text": "jus concentré de citron", + "rank": 6, + "id": "jus-concentre-de-citron" + }, + { + "id": "sel", + "rank": 7, + "text": "sel" + }, + { + "text": "gélifiant", + "id": "gelifiant", + "rank": 8 + }, + { + "text": "méthylcellulose", + "rank": 9, + "id": "methylcellulose" + }, + { + "text": "aneth", + "rank": 10, + "id": "aneth" + }, + { + "text": "sucre", + "id": "sucre", + "rank": 11 + }, + { + "rank": 12, + "id": "issues-de-traines-de-soja-cultivees-en-france", + "text": "issues de traines de soja cultivées en France" + }, + { + "text": "sans OGM", + "id": "sans-ogm", + "rank": 13 + }, + { + "text": "Carottes", + "percent": "9", + "id": "carottes" + }, + { + "id": "tomates-concassees", + "percent": "7.8", + "text": "tomates concassées" + }, + { + "id": "tomates", + "text": "tomates" + }, + { + "id": "jus-de-tomates", + "text": "jus de tomates" + }, + { + "id": "haricots-verts", + "text": "haricots verts", + "percent": "7" + }, + { + "percent": "4", + "text": "maïs doux", + "id": "mais-doux" + }, + { + "text": "carottes", + "id": "carottes" + }, + { + "id": "poireaux", + "text": "poireaux" + } + ], + "additives_old_tags": [ + "en:e461" + ], + "generic_name": "Spécialité à base de soja, préfrite", + "packaging_debug_tags": [], + "nucleotides_prev_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 1, + "additives_tags": [ + "en:e461" + ], + "countries": "France", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.200.jpg", + "nutrition_data_prepared": "", + "ingredients_hierarchy": [ + "fr:farine-proteique-de-soja-rehydrate", + "fr:legume", + "fr:huile-de-tournesol", + "fr:jus-concentre-de-legumes", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "fr:aneth", + "en:sugar", + "fr:issues-de-traines-de-soja-cultivees-en-france", + "fr:sans-ogm", + "fr:carotte", + "fr:tomate-concassee", + "fr:tomate", + "fr:jus-de-tomate", + "fr:haricot-vert", + "fr:mais-doux", + "fr:carotte", + "fr:poireau" + ], + "last_editor": "luciebnt", + "serving_quantity": 100, + "product_name_debug_tags": [], + "nutrition_data_prepared_per": "100g", + "correctors_tags": [ + "raphael0202", + "phoenix", + "javichu", + "date-limite-app", + "scanparty-franprix-05-2016", + "tacite-mass-editor", + "kiliweb", + "tacite", + "asmoth", + "openfoodfacts-contributors", + "luciebnt" + ], + "selected_images": { + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/ingredients_fr.45.100.jpg" + } + }, + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/nutrition_fr.46.100.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6087/front_fr.50.200.jpg" + } + } + }, + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [ + "farine-proteique-de-soja-rehydrate-64", + "4", + "legumes-27", + "8", + "carottes-9", + "tomates-concassees-7", + "8", + "tomates", + "jus-de-tomates", + "haricots-verts-7", + "mais-doux-4", + "huile-de-tournesol", + "jus-concentre-de-legumes", + "carottes", + "poireaux", + "fibres-de-soja", + "jus-concentre-de-citron", + "sel", + "gelifiant", + "methylcellulose", + "aneth", + "sucre", + "issues-de-traines-de-soja-cultivees-en-france", + "sans-ogm" + ], + "scans_n": 61, + "additives_prev_tags": [ + "en:e461" + ] + }, + { + "allergens": "Soja", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.100.jpg", + "entry_dates_tags": [ + "2014-02-24", + "2014-02", + "2014" + ], + "packaging_tags": [ + "sachets-individuels", + "sous-atmosphere-protectrice", + "plastique", + "sachets-individuels" + ], + "additives_prev_original_tags": [], + "interface_version_modified": "20120622", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "lc": "fr", + "images": { + "1": { + "uploader": "phoenix", + "uploaded_t": 1393247257, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "2": { + "uploader": "phoenix", + "uploaded_t": 1393247285, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "3": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploaded_t": 1393247307, + "uploader": "phoenix" + }, + "4": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploaded_t": "1449436007", + "uploader": "gendy54" + }, + "5": { + "uploader": "phoenix", + "uploaded_t": "1461411925", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 2000, + "h": 3555 + } + } + }, + "6": { + "uploaded_t": "1461411962", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 3555, + "w": 2000 + } + }, + "uploader": "phoenix" + }, + "7": { + "uploader": "phoenix", + "uploaded_t": "1461411997", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 3555, + "w": 2000 + } + } + }, + "8": { + "uploaded_t": "1473946334", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 1125, + "h": 2000 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "9": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 1500, + "h": 2000 + } + }, + "uploaded_t": "1495861390" + }, + "10": { + "uploaded_t": 1531142825, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "11": { + "uploaded_t": 1531142861, + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4032, + "w": 3024 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "nutrition_fr": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "white_magic": "false", + "angle": "0", + "x2": "0", + "rev": "34", + "x1": "0", + "y1": "0", + "imgid": "11", + "y2": "0", + "normalize": "false", + "geometry": "0x0-0-0" + }, + "front": { + "sizes": { + "100": { + "h": 100, + "w": 67 + }, + "200": { + "h": 200, + "w": 135 + }, + "400": { + "h": 400, + "w": 269 + }, + "full": { + "w": 1849, + "h": 2747 + } + }, + "white_magic": "false", + "imgid": "5", + "rev": "19", + "normalize": "false", + "geometry": "1849x2747-35-425" + }, + "front_fr": { + "normalize": "false", + "rev": "19", + "geometry": "1849x2747-35-425", + "sizes": { + "100": { + "w": "67", + "h": "100" + }, + "200": { + "w": 135, + "h": 200 + }, + "400": { + "w": 269, + "h": 400 + }, + "full": { + "h": 2747, + "w": 1849 + } + }, + "imgid": "5", + "white_magic": "false" + }, + "ingredients_fr": { + "imgid": "10", + "y2": "0", + "y1": "0", + "geometry": "0x0-0-0", + "normalize": "false", + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "x1": "0", + "x2": "0", + "rev": "33", + "angle": "0" + } + }, + "amino_acids_prev_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.200.jpg", + "code": "3273220086070", + "serving_size_debug_tags": [], + "languages_hierarchy": [ + "en:french" + ], + "nutrition_grades_tags": [ + "a" + ], + "manufacturing_places": "France,Bretagne", + "nutrition_grades": "a", + "traces": "", + "product_name_fr": "Steaks de Soja Tomates & Basilic", + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 5 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -3 -- fr -3", + "created_t": 1393247178, + "quantity": "200 g (2 x 100 g)", + "countries_debug_tags": [], + "unique_scans_n": 63, + "languages": { + "en:french": 5 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.400.jpg", + "update_key": "20180706-categories", + "nutriments": { + "energy_unit": "kJ", + "monounsaturated-fat_100g": 6.35, + "energy": 695, + "salt_serving": 1.15, + "monounsaturated-fat_unit": "g", + "saturated-fat_100g": 0.8, + "polyunsaturated-fat_value": "1.35", + "fiber": 5, + "sodium_100g": 0.452755905511811, + "monounsaturated-fat": 6.35, + "saturated-fat": 0.8, + "salt_unit": "g", + "salt_value": "1.15", + "polyunsaturated-fat_unit": "g", + "salt_100g": 1.15, + "fiber_100g": 5, + "nutrition-score-fr": -3, + "fat_serving": 8.5, + "fat_value": "8.5", + "sodium_serving": 0.453, + "sodium_value": "0.45275590551181094", + "salt": 1.15, + "carbohydrates_unit": "g", + "sugars": 3.5, + "monounsaturated-fat_serving": 6.35, + "proteins": 16, + "sodium_unit": "g", + "energy_value": "695", + "nutrition-score-uk": -3, + "proteins_100g": 16, + "nutrition-score-uk_100g": -3, + "carbohydrates": 4, + "polyunsaturated-fat_100g": 1.35, + "sugars_value": "3.5", + "sodium": 0.452755905511811, + "fiber_unit": "g", + "carbohydrates_serving": 4, + "energy_serving": 695, + "saturated-fat_unit": "g", + "carbohydrates_100g": 4, + "proteins_value": "16", + "polyunsaturated-fat_serving": 1.35, + "nutrition-score-fr_100g": -3, + "saturated-fat_value": "0.8", + "fiber_value": "5", + "fiber_serving": 5, + "energy_100g": 695, + "saturated-fat_serving": 0.8, + "proteins_unit": "g", + "carbohydrates_value": "4", + "polyunsaturated-fat": 1.35, + "sugars_unit": "g", + "monounsaturated-fat_value": "6.35", + "sugars_serving": 3.5, + "fat": 8.5, + "fat_100g": 8.5, + "fat_unit": "g", + "sugars_100g": 3.5, + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "proteins_serving": 16, + "polyunsaturated-fat_label": "Acides gras polyinsaturés" + }, + "nutrient_levels": { + "saturated-fat": "low", + "salt": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "vitamins_prev_tags": [], + "last_image_t": 1531142863, + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "rennes", + "france" + ], + "url": "https://world.openfoodfacts.org/product/3273220086070/steaks-de-soja-tomates-basilic-sojasun", + "amino_acids_tags": [], + "pnns_groups_1_tags": [ + "unknown" + ], + "product_quantity": 200, + "ingredients_text": "", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.200.jpg", + "minerals_prev_tags": [], + "stores": "Carrefour", + "categories_debug_tags": [], + "link_debug_tags": [], + "generic_name_fr": "Spécialités à base de soja préfrite", + "ingredients_debug": [], + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-to-be-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun", + "traces_hierarchy": [], + "labels_prev_tags": [ + "en:high-proteins", + "en:no-gmos" + ], + "emb_codes_tags": [ + "emb-35069c" + ], + "additives_old_tags": [], + "ingredients": [], + "pnns_groups_2": "unknown", + "packaging_debug_tags": [], + "generic_name": "Spécialités à base de soja préfrite", + "nucleotides_prev_tags": [], + "fruits-vegetables-nuts_100g_estimate": 0, + "countries": "France", + "additives_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.200.jpg", + "nutrition_data_prepared": "", + "last_editor": "luciebnt", + "ingredients_hierarchy": [], + "serving_quantity": 100, + "product_name_debug_tags": [], + "correctors_tags": [ + "phoenix", + "javichu", + "date-limite-app", + "kiliweb", + "luciebnt" + ], + "nutrition_data_prepared_per": "100g", + "selected_images": { + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.200.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.400.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.400.jpg" + } + } + }, + "ingredients_ids_debug": [], + "nutrition_grade_fr": "a", + "scans_n": 77, + "additives_prev_tags": [], + "origins_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.100.jpg", + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "fr:Steaks végétales pour hamburgers" + ], + "last_modified_t": 1531142995, + "unknown_nutrients_tags": [], + "labels": "Riche en protéines,Sans OGM", + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.400.jpg", + "manufacturing_places_tags": [ + "france", + "bretagne" + ], + "last_edit_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "unknown_ingredients_n": 0, + "expiration_date_debug_tags": [], + "creator": "phoenix", + "origins": "", + "nutrition_data": "on", + "origins_tags": [], + "countries_tags": [ + "en:france" + ], + "traces_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 531142995, + "ingredients_text_debug": "", + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "fr:steaks-vegetales-pour-hamburgers" + ], + "_keywords": [ + "steak", + "boisson", + "ogm", + "base", + "prefrite", + "et", + "vegetale", + "de", + "hamburger", + "pour", + "substitut", + "en", + "tomate", + "aliment", + "basilic", + "sojasun", + "vegetaux", + "viande", + "origine", + "san", + "soja", + "specialite", + "proteine", + "riche" + ], + "last_image_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "nutrition_data_per": "100g", + "editors": [ + "phoenix", + "javichu", + "gendy54" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "emb_codes_orig": "EMB 35069C", + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "brands_tags": [ + "sojasun" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-to-be-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "lang": "fr", + "max_imgid": "11", + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "fr:steaks-vegetales-pour-hamburgers" + ], + "brands_debug_tags": [], + "quality_tags": [], + "checkers_tags": [], + "photographers_tags": [ + "phoenix", + "gendy54", + "openfoodfacts-contributors" + ], + "nutrition_data_per_debug_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "pnns_groups_2_tags": [ + "unknown" + ], + "traces_debug_tags": [], + "product_name": "Steaks de Soja Tomates & Basilic", + "countries_hierarchy": [ + "en:france" + ], + "last_modified_by": "luciebnt", + "ingredients_tags": [], + "ingredients_text_fr": "", + "minerals_tags": [], + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "purchase_places": "Rennes,France", + "new_additives_n": 2, + "codes_tags": [ + "code-13", + 3273220086070, + "327322008607x", + "32732200860xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "quantity_debug_tags": [], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.100.jpg", + "emb_codes_debug_tags": [], + "labels_tags": [ + "de:proteinreich", + "en:no-gmos" + ], + "nucleotides_tags": [], + "lang_debug_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Substituts de viande,Steaks végétales pour hamburgers", + "ingredients_text_with_allergens": "", + "languages_codes": { + "fr": 5 + }, + "expiration_date": "29/05/2016", + "editors_tags": [ + "kiliweb", + "phoenix", + "gendy54", + "luciebnt", + "openfoodfacts-contributors", + "date-limite-app", + "javichu" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "emb_codes": "EMB 35069C", + "_id": "3273220086070", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.200.jpg", + "stores_tags": [ + "carrefour" + ], + "ingredients_text_with_allergens_fr": "", + "rev": 35, + "product_name_fr_debug_tags": [], + "serving_size": "100 g - 1 Steak", + "allergens_debug_tags": [], + "id": "3273220086070", + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meat-analogues", + "fr:Steaks végétales pour hamburgers" + ], + "emb_codes_20141016": "EMB 35069C", + "pnns_groups_1": "unknown", + "generic_name_fr_debug_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/front_fr.19.400.jpg", + "stores_debug_tags": [], + "additives_debug_tags": [], + "vitamins_tags": [], + "link": "", + "additives_original_tags": [], + "labels_debug_tags": [ + "added-de-proteinreich", + "removed-en-high-proteins" + ], + "complete": 0, + "labels_prev_hierarchy": [ + "en:high-proteins", + "en:no-gmos" + ], + "no_nutrition_data": "", + "manufacturing_places_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/nutrition_fr.34.400.jpg", + "allergens_tags": [ + "en:soybeans" + ], + "purchase_places_debug_tags": [], + "packaging": "Sachets individuels,Sous atmosphère protectrice,Plastique,sachets individuels", + "ingredients_from_palm_oil_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6070/ingredients_fr.33.100.jpg", + "labels_hierarchy": [ + "de:proteinreich", + "en:no-gmos" + ], + "informers_tags": [ + "phoenix", + "luciebnt" + ] + }, + { + "nutrition_data_prepared": "", + "serving_quantity": 100, + "last_editor": "openfoodfacts-contributors", + "ingredients_hierarchy": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:tomate-concassee", + "fr:huile-de-tournesol", + "fr:oignon", + "fr:fines-herbes", + "fr:echalotes-tradition", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "en:sugar", + "fr:jus-concentre-d-oignons", + "fr:poivre", + "fr:tomate", + "fr:jus-de-tomate", + "fr:persil", + "fr:ciboulette", + "fr:thym-citron" + ], + "product_name_debug_tags": [], + "correctors_tags": [ + "cdmad", + "javichu", + "date-limite-app", + "mp31", + "tacite", + "kiliweb", + "luciebnt" + ], + "nutrition_data_prepared_per": "100g", + "selected_images": { + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.200.jpg" + } + }, + "front": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.200.jpg" + } + } + }, + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [ + "farine-proteique-de-soja-rehydratee-63", + "6", + "tomates-concassees-17", + "tomates", + "jus-de-tomates", + "huile-de-tournesol", + "oignons", + "fines-herbes-4", + "5", + "persil-2", + "4", + "ciboulette-2", + "thym-citron-0", + "1", + "echalotes-tradition", + "fibres-de-soja", + "jus-concentre-de-citron", + "sel", + "gelifiant", + "methylcellulose", + "sucre", + "jus-concentre-d-oignons", + "poivre" + ], + "scans_n": 58, + "additives_prev_tags": [ + "en:e461" + ], + "brands": "Sojasun", + "states": "en:to-be-completed, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-to-be-validated, en:photos-uploaded", + "ingredients_debug": [ + "Farine protéique de _soja_ * réhydratée 63", + ",", + null, + null, + null, + "6 %", + ",", + null, + null, + null, + " tomates concassées 17 % ", + "(", + "(", + null, + null, + "tomates", + ",", + null, + null, + null, + " jus de tomates)", + ",", + null, + null, + null, + " huile de tournesol", + ",", + null, + null, + null, + " oignons", + ",", + null, + null, + null, + " fines herbes 4", + ",", + null, + null, + null, + "5 % ", + "(", + "(", + null, + null, + "persil 2", + ",", + null, + null, + null, + "4 %", + ",", + null, + null, + null, + " ciboulette 2 %", + ",", + null, + null, + null, + " thym citron 0", + ",", + null, + null, + null, + "1 %)", + ",", + null, + null, + null, + " ", + ",", + null, + null, + null, + " échalotes tradition", + ",", + null, + null, + null, + " fibres de soja *", + ",", + null, + null, + null, + " jus concentré de citron", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " gélifiant ", + ":", + ":", + null, + null, + " méthylcellulose", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " jus concentré d’oignons", + ",", + null, + null, + null, + " poivre." + ], + "generic_name_fr": "Spécialité à base de soja, préfrite", + "labels_prev_tags": [ + "en:no-gmos" + ], + "traces_hierarchy": [], + "emb_codes_tags": [ + "emb-35069c" + ], + "pnns_groups_2": "One-dish meals", + "ingredients": [ + { + "text": "Farine protéique de _soja_ * réhydratée", + "percent": "63.6", + "rank": 1, + "id": "farine-proteique-de-soja-rehydratee" + }, + { + "percent": "17", + "text": "tomates concassées", + "rank": 2, + "id": "tomates-concassees" + }, + { + "rank": 3, + "id": "huile-de-tournesol", + "text": "huile de tournesol" + }, + { + "text": "oignons", + "id": "oignons", + "rank": 4 + }, + { + "percent": "4.5", + "text": "fines herbes", + "id": "fines-herbes", + "rank": 5 + }, + { + "rank": 6, + "id": "echalotes-tradition", + "text": "échalotes tradition" + }, + { + "text": "fibres de soja", + "rank": 7, + "id": "fibres-de-soja" + }, + { + "id": "jus-concentre-de-citron", + "rank": 8, + "text": "jus concentré de citron" + }, + { + "rank": 9, + "id": "sel", + "text": "sel" + }, + { + "text": "gélifiant", + "id": "gelifiant", + "rank": 10 + }, + { + "text": "méthylcellulose", + "id": "methylcellulose", + "rank": 11 + }, + { + "id": "sucre", + "rank": 12, + "text": "sucre" + }, + { + "text": "jus concentré d’oignons", + "id": "jus-concentre-d-oignons", + "rank": 13 + }, + { + "text": "poivre", + "id": "poivre", + "rank": 14 + }, + { + "text": "tomates", + "id": "tomates" + }, + { + "text": "jus de tomates", + "id": "jus-de-tomates" + }, + { + "id": "persil", + "percent": "2.4", + "text": "persil" + }, + { + "percent": "2", + "text": "ciboulette", + "id": "ciboulette" + }, + { + "id": "thym-citron", + "percent": "0.1", + "text": "thym citron" + } + ], + "additives_old_tags": [ + "en:e461" + ], + "generic_name": "Spécialité à base de soja, préfrite", + "packaging_debug_tags": [], + "nucleotides_prev_tags": [], + "fruits-vegetables-nuts_100g_estimate": 17, + "additives_prev_n": 1, + "additives_tags": [ + "en:e461" + ], + "countries": "France", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.200.jpg", + "ingredients_from_palm_oil_n": 0, + "creator": "cdmad", + "expiration_date_debug_tags": [], + "origins_tags": [ + "france" + ], + "origins": "France", + "nutrition_data": "on", + "additives_old_n": 1, + "countries_tags": [ + "en:france" + ], + "traces_tags": [], + "languages_tags": [ + "en:french", + "en:1" + ], + "sortkey": 531140795, + "ingredients_text_debug": "Farine protéique de _soja_ * réhydratée 63,6 %, tomates concassées 17 % (tomates, jus de tomates), huile de tournesol, oignons, fines herbes 4,5 % (persil 2,4 %, ciboulette 2 %, thym citron 0,1 %), , échalotes tradition, fibres de soja *, jus concentré de citron, sel, gélifiant : méthylcellulose, sucre, jus concentré d’oignons, poivre.", + "origins_debug_tags": [], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.100.jpg", + "last_modified_t": 1531140795, + "categories_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "en:veggie-burger-patties", + "fr:Spécialité à base de soja" + ], + "unknown_nutrients_tags": [], + "labels": "Sans OGM", + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.400.jpg", + "unknown_ingredients_n": 5, + "manufacturing_places_tags": [ + "france" + ], + "last_edit_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "serving_size_debug_tags": [], + "code": "3273220086032", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "manufacturing_places": "France", + "product_name_fr": "Steaks de soja fines herbes", + "traces": "", + "nutrition_grades": "a", + "allergens": "Soja, soja", + "entry_dates_tags": [ + "2014-02-19", + "2014-02", + "2014" + ], + "packaging_tags": [ + "carton", + "carton" + ], + "interface_version_modified": "20120622", + "additives_prev_original_tags": [ + "en:e461" + ], + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "amino_acids_prev_tags": [], + "images": { + "1": { + "uploader": "cdmad", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 4128, + "h": 3096 + } + }, + "uploaded_t": 1392832475 + }, + "2": { + "uploaded_t": 1392832512, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 4128, + "h": 3096 + } + }, + "uploader": "cdmad" + }, + "3": { + "uploaded_t": 1392832556, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 4128, + "h": 3096 + } + }, + "uploader": "cdmad" + }, + "4": { + "uploaded_t": "1460828072", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploader": "picart" + }, + "5": { + "uploader": "picart", + "uploaded_t": "1460828162", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + } + }, + "6": { + "uploaded_t": "1461219760", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "7": { + "uploaded_t": "1477306113", + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1456 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "8": { + "sizes": { + "100": { + "w": 100, + "h": 56 + }, + "400": { + "h": 225, + "w": 400 + }, + "full": { + "h": 1456, + "w": 2592 + } + }, + "uploaded_t": "1477306155", + "uploader": "openfoodfacts-contributors" + }, + "9": { + "uploader": "mp31", + "uploaded_t": "1477381927", + "sizes": { + "100": { + "w": 58, + "h": 100 + }, + "400": { + "h": 400, + "w": 231 + }, + "full": { + "w": 1154, + "h": 2000 + } + } + }, + "10": { + "uploader": "mp31", + "sizes": { + "100": { + "h": 100, + "w": 45 + }, + "400": { + "h": 400, + "w": 181 + }, + "full": { + "h": 965, + "w": 437 + } + }, + "uploaded_t": "1477382081" + }, + "11": { + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "uploaded_t": 1531140793 + }, + "front": { + "imgid": "1", + "white_magic": null, + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "200": { + "w": 150, + "h": 200 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 4128, + "w": 3096 + } + }, + "geometry": "0x0-0-0", + "normalize": null, + "rev": "7" + }, + "front_fr": { + "imgid": "9", + "y2": "0", + "y1": "0", + "geometry": "0x0-0-0", + "normalize": "true", + "white_magic": "false", + "sizes": { + "100": { + "h": "100", + "w": "58" + }, + "200": { + "h": 200, + "w": 115 + }, + "400": { + "h": 400, + "w": 231 + }, + "full": { + "w": 1154, + "h": 2000 + } + }, + "x1": "0", + "rev": "19", + "x2": "0", + "angle": "0" + }, + "ingredients_fr": { + "white_magic": "false", + "sizes": { + "100": { + "h": 100, + "w": 45 + }, + "200": { + "w": 91, + "h": 200 + }, + "400": { + "h": 400, + "w": 181 + }, + "full": { + "w": 437, + "h": 965 + } + }, + "x1": "0", + "x2": "0", + "rev": "21", + "angle": "0", + "y2": "0", + "imgid": "10", + "y1": "0", + "geometry": "0x0-0-0", + "normalize": "true" + }, + "ingredients": { + "white_magic": null, + "imgid": "2", + "sizes": { + "100": { + "h": 27, + "w": 100 + }, + "200": { + "w": 200, + "h": 54 + }, + "400": { + "w": 400, + "h": 108 + }, + "full": { + "h": 949, + "w": 3508 + } + }, + "geometry": "3508x949-258-1589", + "rev": "8", + "normalize": null + } + }, + "url": "https://world.openfoodfacts.org/product/3273220086032/steaks-de-soja-fines-herbes-sojasun", + "pnns_groups_1_tags": [ + "composite-foods" + ], + "amino_acids_tags": [], + "ingredients_text": "Farine protéique de _soja_ * réhydratée 63,6 %, tomates concassées 17 % (tomates, jus de tomates), huile de tournesol, oignons, fines herbes 4,5 % (persil 2,4 %, ciboulette 2 %, thym citron 0,1 %), , échalotes tradition, fibres de soja *, jus concentré de citron, sel, gélifiant : méthylcellulose, sucre, jus concentré d’oignons, poivre.", + "product_quantity": 200, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.200.jpg", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "stores": "Monoprix,Carrefour", + "categories_debug_tags": [], + "minerals_prev_tags": [], + "link_debug_tags": [], + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -4 -- fr -4", + "countries_debug_tags": [], + "unique_scans_n": 43, + "quantity": "200 g", + "created_t": 1392832473, + "languages": { + "en:french": 5 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.400.jpg", + "nutriments": { + "proteins_unit": "g", + "energy_100g": "686", + "nutrition-score-fr_100g": "-4", + "proteins_value": "16", + "cholesterol_100g": "0", + "monounsaturated-fat_value": "6.50", + "sugars_unit": "g", + "polyunsaturated-fat": 1.2, + "monounsaturated-fat_label": "Acides gras monoinsaturés", + "polyunsaturated-fat_label": "Acides gras polyinsaturés", + "fat_unit": "g", + "fat": 8.5, + "carbohydrates": 3.5, + "nutrition-score-uk_100g": "-4", + "proteins_100g": "16", + "cholesterol": "0", + "energy_serving": "686", + "cholesterol_value": "0", + "fiber_unit": "g", + "sodium": 0.433070866141732, + "sodium_value": "0.433070866141732", + "salt": 1.1, + "fat_serving": 8.5, + "nutrition-score-fr": "-4", + "cholesterol_unit": "g", + "fiber_100g": "5", + "nutrition-score-uk": "-4", + "carbohydrates_unit": "g", + "proteins": "16", + "energy": "686", + "salt_serving": 1.1, + "polyunsaturated-fat_value": "1.20", + "energy_unit": "kJ", + "monounsaturated-fat_100g": 6.5, + "fiber": "5", + "sodium_100g": 0.433070866141732, + "fiber_serving": "5", + "saturated-fat_serving": 0.8, + "saturated-fat_value": "0.8", + "polyunsaturated-fat_serving": 1.2, + "carbohydrates_100g": 3.5, + "fiber_value": "5", + "sugars_100g": 2.5, + "proteins_serving": "16", + "sugars_serving": 2.5, + "fat_100g": 8.5, + "carbohydrates_value": "3.5", + "sugars_value": "2.5", + "cholesterol_label": "Cholestérol", + "polyunsaturated-fat_100g": 1.2, + "carbohydrates_serving": 3.5, + "saturated-fat_unit": "g", + "sodium_serving": 0.433, + "fat_value": "8.5", + "energy_value": "686", + "monounsaturated-fat_serving": 6.5, + "sugars": 2.5, + "sodium_unit": "g", + "monounsaturated-fat_unit": "g", + "saturated-fat_100g": 0.8, + "saturated-fat": 0.8, + "monounsaturated-fat": 6.5, + "polyunsaturated-fat_unit": "g", + "salt_100g": 1.1, + "salt_unit": "g", + "salt_value": "1.1", + "cholesterol_serving": "0" + }, + "nutrient_levels": { + "saturated-fat": "low", + "salt": "moderate", + "fat": "moderate", + "sugars": "low" + }, + "update_key": "20180706-categories", + "last_image_t": 1531140795, + "vitamins_prev_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "france" + ], + "categories_prev_hierarchy": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "en:veggie-burger-patties", + "fr:Spécialité à base de soja" + ], + "nutrition_data_prepared_per_debug_tags": [], + "pnns_groups_1": "Composite foods", + "generic_name_fr_debug_tags": [], + "emb_codes_20141016": "", + "additives_n": 1, + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.400.jpg", + "ingredients_text_fr_debug_tags": [], + "additives_debug_tags": [], + "stores_debug_tags": [], + "link": "", + "vitamins_tags": [], + "additives_original_tags": [ + "en:e461" + ], + "emb_codes": "EMB 35069C", + "stores_tags": [ + "monoprix", + "carrefour" + ], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.200.jpg", + "_id": "3273220086032", + "ingredients_text_with_allergens_fr": "Farine protéique de soja * réhydratée 63,6 %, tomates concassées 17 % (tomates, jus de tomates), huile de tournesol, oignons, fines herbes 4,5 % (persil 2,4 %, ciboulette 2 %, thym citron 0,1 %), , échalotes tradition, fibres de soja *, jus concentré de citron, sel, gélifiant : méthylcellulose, sucre, jus concentré d’oignons, poivre.", + "rev": 28, + "product_name_fr_debug_tags": [], + "allergens_debug_tags": [], + "serving_size": "1 steak de 100 g", + "id": "3273220086032", + "purchase_places_debug_tags": [], + "packaging": "Carton,carton", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/ingredients_fr.21.100.jpg", + "ingredients_from_palm_oil_tags": [], + "labels_hierarchy": [ + "en:no-gmos" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "informers_tags": [ + "cdmad", + "mp31", + "tacite" + ], + "complete": 0, + "labels_debug_tags": [], + "labels_prev_hierarchy": [ + "en:no-gmos" + ], + "no_nutrition_data": "", + "manufacturing_places_debug_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "allergens_tags": [ + "en:soybeans" + ], + "max_imgid": 11, + "quality_tags": [], + "brands_debug_tags": [], + "categories_prev_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "en:veggie-burger-patties", + "fr:specialite-a-base-de-soja" + ], + "checkers_tags": [], + "photographers_tags": [ + "cdmad", + "picart", + "openfoodfacts-contributors", + "mp31" + ], + "allergens_hierarchy": [ + "en:soybeans" + ], + "nutrition_data_per_debug_tags": [], + "categories_tags": [ + "en:plant-based-foods-and-beverages", + "en:plant-based-foods", + "en:meals", + "en:meat-analogues", + "en:plant-based-meals", + "en:veggie-burger-patties", + "fr:specialite-a-base-de-soja" + ], + "_keywords": [ + "sojasun", + "soja", + "vegetale", + "plat", + "boisson", + "origine", + "france", + "hamburger", + "fine", + "aliment", + "base", + "et", + "steak", + "substitut", + "prepare", + "viande", + "prefrite", + "san", + "specialite", + "ogm", + "vegetaux", + "herbe", + "de", + "pour" + ], + "ingredients_n": "19", + "last_image_dates_tags": [ + "2018-07-09", + "2018-07", + "2018" + ], + "editors": [ + "cdmad", + "javichu" + ], + "nutrition_data_per": "100g", + "emb_codes_orig": "EMB 35069 C", + "debug_param_sorted_langs": [ + "fr" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "states_hierarchy": [ + "en:to-be-completed", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-to-be-validated", + "en:photos-uploaded" + ], + "lang": "fr", + "new_additives_n": 1, + "codes_tags": [ + "code-13", + "3273220086032", + "327322008603x", + "32732200860xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6032/front_fr.19.100.jpg", + "quantity_debug_tags": [], + "nucleotides_tags": [], + "emb_codes_debug_tags": [], + "labels_tags": [ + "en:no-gmos" + ], + "languages_codes": { + "fr": 5 + }, + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Plats préparés,Substituts de viande,Plats préparés d'origine végétale,Steaks végétaux pour hamburgers,Spécialité à base de soja", + "lang_debug_tags": [], + "ingredients_text_with_allergens": "Farine protéique de soja * réhydratée 63,6 %, tomates concassées 17 % (tomates, jus de tomates), huile de tournesol, oignons, fines herbes 4,5 % (persil 2,4 %, ciboulette 2 %, thym citron 0,1 %), , échalotes tradition, fibres de soja *, jus concentré de citron, sel, gélifiant : méthylcellulose, sucre, jus concentré d’oignons, poivre.", + "expiration_date": "09 11 16", + "editors_tags": [ + "openfoodfacts-contributors", + "kiliweb", + "mp31", + "javichu", + "date-limite-app", + "luciebnt", + "picart", + "cdmad", + "tacite" + ], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "product_name": "Steaks de soja fines herbes", + "countries_hierarchy": [ + "en:france" + ], + "pnns_groups_2_tags": [ + "one-dish-meals" + ], + "traces_debug_tags": [], + "last_modified_by": null, + "ingredients_n_tags": [ + "19", + "11-20" + ], + "ingredients_tags": [ + "fr:farine-proteique-de-soja-rehydratee", + "fr:tomate-concassee", + "fr:huile-de-tournesol", + "fr:oignon", + "fr:fines-herbes", + "fr:echalotes-tradition", + "fr:fibres-de-soja", + "fr:jus-concentre-de-citron", + "en:salt", + "fr:gelifiant", + "fr:methylcellulose", + "en:sugar", + "fr:jus-concentre-d-oignons", + "fr:poivre", + "fr:tomate", + "fr:jus-de-tomate", + "fr:persil", + "fr:ciboulette", + "fr:thym-citron" + ], + "minerals_tags": [], + "ingredients_text_fr": "Farine protéique de _soja_ * réhydratée 63,6 %, tomates concassées 17 % (tomates, jus de tomates), huile de tournesol, oignons, fines herbes 4,5 % (persil 2,4 %, ciboulette 2 %, thym citron 0,1 %), , échalotes tradition, fibres de soja *, jus concentré de citron, sel, gélifiant : méthylcellulose, sucre, jus concentré d’oignons, poivre.", + "purchase_places": "France", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ] + }, + { + "ingredients_text": "Agua, bebida de _soja_ 23% (agua, habas de _soja_ 10%), proteínas de _soja_ 20%, concentrado de tomates, aceite de girasol, cebollas ,azúcar, curry, sal, fibras de trigo (garantizadas sin gluten), gelificante: metilcelulosa (E-461).", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.200.jpg", + "url": "https://world.openfoodfacts.org/product/3273228086058/hamburguesas-vegetales-indiana-sojasun", + "amino_acids_tags": [], + "pnns_groups_1_tags": [ + "unknown" + ], + "link_debug_tags": [], + "minerals_prev_tags": [], + "categories_debug_tags": [], + "stores": "Alcampo,Supermercados Gigante", + "languages": { + "en:spanish": 6 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.400.jpg", + "nutrition_score_debug": " -- energy 2 + sat-fat 0 + fr-sat-fat-for-fats 0 + sugars 1 + sodium 8 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa 6 -- fr 6", + "quantity": "200 g (2 x 100 g)", + "created_t": 1353369415, + "unique_scans_n": 4, + "countries_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "madrid", + "espana" + ], + "update_key": "20180706-categories", + "nutrient_levels": { + "sugars": "moderate", + "saturated-fat": "low", + "salt": "high", + "fat": "moderate" + }, + "nutriments": { + "sodium_serving": "", + "fat_value": "6.70", + "energy_value": "692", + "sugars": 5.2, + "monounsaturated-fat_serving": "", + "sodium_unit": "g", + "monounsaturated-fat_unit": "g", + "saturated-fat_100g": 0.5, + "saturated-fat": 0.5, + "monounsaturated-fat": 4.3, + "salt_100g": 1.905, + "polyunsaturated-fat_unit": "g", + "salt_unit": "g", + "salt_value": "1.905", + "cholesterol_serving": "", + "fiber_serving": "", + "saturated-fat_serving": "", + "saturated-fat_value": "0.5", + "carbohydrates_100g": 6.5, + "polyunsaturated-fat_serving": "", + "fiber_value": "7.6", + "sugars_100g": 5.2, + "proteins_serving": "", + "sugars_serving": "", + "fat_100g": 6.7, + "carbohydrates_value": "6.5", + "sugars_value": "5.2", + "polyunsaturated-fat_100g": 1.5, + "cholesterol_label": "Cholesterol", + "carbohydrates_serving": "", + "saturated-fat_unit": "g", + "sodium_value": "0.75", + "salt": 1.905, + "fat_serving": "", + "nutrition-score-fr": "6", + "fiber_100g": 7.6, + "cholesterol_unit": "mg", + "nutrition-score-uk": "6", + "carbohydrates_unit": "g", + "proteins": 16.5, + "salt_serving": "", + "energy": "692", + "polyunsaturated-fat_value": "1.50", + "energy_unit": "kJ", + "monounsaturated-fat_100g": 4.3, + "fiber": 7.6, + "sodium_100g": 0.75, + "proteins_unit": "g", + "energy_100g": "692", + "nutrition-score-fr_100g": "6", + "proteins_value": "16.5", + "cholesterol_100g": "0", + "monounsaturated-fat_value": "4.30", + "sugars_unit": "g", + "polyunsaturated-fat": 1.5, + "fat_unit": "g", + "fat": 6.7, + "carbohydrates": 6.5, + "nutrition-score-uk_100g": "6", + "proteins_100g": 16.5, + "cholesterol": "0", + "energy_serving": "", + "cholesterol_value": "0", + "sodium": 0.75, + "fiber_unit": "g" + }, + "vitamins_prev_tags": [], + "last_image_t": 1529502454, + "code": "3273228086058", + "serving_size_debug_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.200.jpg", + "manufacturing_places": "Châteaugiron,Rennes (distrito),Ille y Vilaine,Bretaña,Francia", + "nutrition_grades": "c", + "traces": "Moutarde", + "languages_hierarchy": [ + "en:spanish" + ], + "nutrition_grades_tags": [ + "c" + ], + "entry_dates_tags": [ + "2012-11-20", + "2012-11", + "2012" + ], + "packaging_tags": [ + "caja-de-carton", + "bolsa-de-plastico", + "envasado-en-atmosfera-protectora", + "refrigerado" + ], + "allergens": "soja, soja, soja", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.100.jpg", + "images": { + "1": { + "uploaded_t": 1353369438, + "sizes": { + "100": { + "h": 50, + "w": 100 + }, + "400": { + "w": 400, + "h": 202 + }, + "full": { + "h": 630, + "w": 1248 + } + }, + "uploader": "javichu" + }, + "2": { + "uploaded_t": 1353369439, + "sizes": { + "100": { + "h": 43, + "w": 100 + }, + "400": { + "h": 170, + "w": 400 + }, + "full": { + "w": 821, + "h": 349 + } + }, + "uploader": "javichu" + }, + "3": { + "uploader": "javichu", + "uploaded_t": 1353369454, + "sizes": { + "100": { + "w": 70, + "h": 100 + }, + "400": { + "h": 400, + "w": 280 + }, + "full": { + "w": 1399, + "h": 2000 + } + } + }, + "4": { + "uploaded_t": 1415225360, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 302 + }, + "full": { + "h": 372, + "w": 493 + } + }, + "uploader": "javichu" + }, + "5": { + "uploader": "javichu", + "uploaded_t": 1415225366, + "sizes": { + "100": { + "h": 23, + "w": 100 + }, + "400": { + "w": 400, + "h": 91 + }, + "full": { + "h": 430, + "w": 1893 + } + } + }, + "6": { + "uploader": "javichu", + "uploaded_t": 1415225367, + "sizes": { + "100": { + "h": 42, + "w": 100 + }, + "400": { + "w": 400, + "h": 167 + }, + "full": { + "h": 169, + "w": 406 + } + } + }, + "7": { + "uploaded_t": 1415225378, + "sizes": { + "100": { + "h": 100, + "w": 69 + }, + "400": { + "h": 400, + "w": 277 + }, + "full": { + "h": 2000, + "w": 1387 + } + }, + "uploader": "javichu" + }, + "8": { + "uploader": "anticultist", + "sizes": { + "100": { + "h": 100, + "w": 68 + }, + "400": { + "h": 400, + "w": 271 + }, + "full": { + "w": 3259, + "h": 4807 + } + }, + "uploaded_t": "1529502452" + }, + "ingredients_es": { + "white_magic": null, + "imgid": "6", + "sizes": { + "100": { + "w": 100, + "h": 42 + }, + "200": { + "h": 83, + "w": 200 + }, + "400": { + "w": 400, + "h": 167 + }, + "full": { + "h": 169, + "w": 406 + } + }, + "geometry": "0x0--1--1", + "rev": "18", + "normalize": null + }, + "nutrition_es": { + "rev": "19", + "normalize": null, + "geometry": "0x0--1--1", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "h": 151, + "w": 200 + }, + "400": { + "w": 400, + "h": 302 + }, + "full": { + "h": 372, + "w": 493 + } + }, + "white_magic": null, + "imgid": "4" + }, + "front": { + "geometry": "0x0--5--5", + "rev": "17", + "normalize": null, + "white_magic": null, + "imgid": "7", + "sizes": { + "100": { + "h": 100, + "w": 69 + }, + "200": { + "h": 200, + "w": 139 + }, + "400": { + "w": 277, + "h": 400 + }, + "full": { + "w": 1387, + "h": 2000 + } + } + }, + "front_es": { + "white_magic": null, + "imgid": "7", + "sizes": { + "100": { + "w": "69", + "h": "100" + }, + "200": { + "w": 139, + "h": 200 + }, + "400": { + "w": 277, + "h": 400 + }, + "full": { + "h": 2000, + "w": 1387 + } + }, + "geometry": "0x0--5--5", + "rev": "17", + "normalize": null + }, + "nutrition": { + "geometry": "0x0--1--1", + "normalize": null, + "rev": "19", + "imgid": "4", + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "200": { + "w": 200, + "h": 151 + }, + "400": { + "h": 302, + "w": 400 + }, + "full": { + "w": 493, + "h": 372 + } + } + }, + "ingredients": { + "geometry": "0x0--1--1", + "rev": "18", + "normalize": null, + "white_magic": null, + "imgid": "6", + "sizes": { + "100": { + "h": 42, + "w": 100 + }, + "200": { + "h": 83, + "w": 200 + }, + "400": { + "w": 400, + "h": 167 + }, + "full": { + "w": 406, + "h": 169 + } + } + } + }, + "amino_acids_prev_tags": [], + "additives_prev_original_tags": [ + "en:e461" + ], + "interface_version_modified": "20120622", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-moderate-quantity", + "en:salt-in-high-quantity" + ], + "lc": "es", + "countries_tags": [ + "en:france", + "en:spain" + ], + "traces_tags": [ + "en:mustard" + ], + "expiration_date_debug_tags": [], + "creator": "javichu", + "ingredients_from_palm_oil_n": 0, + "additives_old_n": 1, + "origins": "", + "origins_tags": [], + "ingredients_text_debug": "Agua, bebida de _soja_ 23% (agua, habas de _soja_ 10%), proteínas de _soja_ 20%, concentrado de tomates, aceite de girasol, cebollas ,azúcar, curry, sal, fibras de trigo (garantizadas sin gluten), gelificante: metilcelulosa ( - e461 - ).", + "languages_tags": [ + "en:spanish", + "en:1" + ], + "sortkey": 1529502454, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.100.jpg", + "categories_hierarchy": [ + "es:Aliments d'origine végétale", + "es:Aliments et boissons à base de végétaux", + "es:Steaks végétaux pour hamburgers", + "es:Substituts de viande" + ], + "informers": [ + "javichu" + ], + "last_modified_t": 1529502454, + "ingredients_text_es_debug_tags": [], + "origins_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.400.jpg", + "last_edit_dates_tags": [ + "2018-06-20", + "2018-06", + "2018" + ], + "manufacturing_places_tags": [ + "chateaugiron", + "rennes-distrito", + "ille-y-vilaine", + "bretana", + "francia" + ], + "unknown_ingredients_n": 17, + "unknown_nutrients_tags": [], + "labels": "Sans gluten,Sans OGM", + "correctors_tags": [ + "javichu", + "scanbot", + "tacite" + ], + "photographers": [ + "javichu" + ], + "ingredients_hierarchy": [ + "es:agua", + "es:bebida-de-soja", + "es:proteinas-de-soja", + "es:concentrado-de-tomates", + "es:aceite-de-girasol", + "es:cebollas", + "es:azucar", + "es:curry", + "es:sal", + "es:fibras-de-trigo", + "es:garantizadas-sin-gluten", + "es:gelificante", + "es:461", + "es:agua", + "es:habas-de-soja", + "es:metilcelulosa", + "es:e" + ], + "last_editor": "anticultist", + "serving_quantity": 0, + "nutrition_grade_fr": "c", + "ingredients_ids_debug": [ + "agua", + "bebida-de-soja-23", + "agua", + "habas-de-soja-10", + "proteinas-de-soja-20", + "concentrado-de-tomates", + "aceite-de-girasol", + "cebollas", + "azucar", + "curry", + "sal", + "fibras-de-trigo", + "garantizadas-sin-gluten", + "gelificante", + "metilcelulosa", + "e461" + ], + "scans_n": 5, + "additives_prev_tags": [ + "en:e461" + ], + "selected_images": { + "front": { + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.400.jpg" + }, + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.100.jpg" + }, + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.200.jpg" + } + }, + "ingredients": { + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.200.jpg" + }, + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.400.jpg" + }, + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.100.jpg" + } + }, + "nutrition": { + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.100.jpg" + }, + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.400.jpg" + }, + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.200.jpg" + } + } + }, + "additives_old_tags": [ + "en:e461" + ], + "ingredients": [ + { + "text": "Agua", + "rank": 1, + "id": "agua" + }, + { + "percent": "23", + "text": "bebida de _soja_", + "rank": 2, + "id": "bebida-de-soja" + }, + { + "rank": 3, + "id": "proteinas-de-soja", + "text": "proteínas de _soja_", + "percent": "20" + }, + { + "text": "concentrado de tomates", + "rank": 4, + "id": "concentrado-de-tomates" + }, + { + "rank": 5, + "id": "aceite-de-girasol", + "text": "aceite de girasol" + }, + { + "rank": 6, + "id": "cebollas", + "text": "cebollas" + }, + { + "text": "azúcar", + "id": "azucar", + "rank": 7 + }, + { + "id": "curry", + "rank": 8, + "text": "curry" + }, + { + "text": "sal", + "rank": 9, + "id": "sal" + }, + { + "id": "fibras-de-trigo", + "rank": 10, + "text": "fibras de trigo" + }, + { + "rank": 11, + "id": "garantizadas-sin-gluten", + "text": "garantizadas sin gluten" + }, + { + "id": "gelificante", + "rank": 12, + "text": "gelificante" + }, + { + "rank": 13, + "id": "461", + "text": "461" + }, + { + "id": "agua", + "text": "agua" + }, + { + "text": "habas de _soja_", + "percent": "10", + "id": "habas-de-soja" + }, + { + "id": "metilcelulosa", + "text": "metilcelulosa" + }, + { + "id": "e", + "text": "E" + } + ], + "pnns_groups_2": "unknown", + "generic_name": "Hamburguesas vegetales de soja", + "packaging_debug_tags": [], + "ingredients_debug": [ + "Agua", + ",", + null, + null, + " bebida de _soja_ 23% ", + "(", + null, + null, + "agua", + ",", + null, + null, + " habas de _soja_ 10%)", + ",", + null, + null, + " proteínas de _soja_ 20%", + ",", + null, + null, + " concentrado de tomates", + ",", + null, + null, + " aceite de girasol", + ",", + null, + null, + " cebollas ", + ",", + null, + null, + "azúcar", + ",", + null, + null, + " curry", + ",", + null, + null, + " sal", + ",", + null, + null, + " fibras de trigo ", + "(", + null, + null, + "garantizadas sin gluten)", + ",", + null, + null, + " gelificante", + ":", + null, + null, + " metilcelulosa ", + "(", + null, + null, + "", + " - ", + " - ", + null, + "e461", + " - ", + " - ", + null, + ")." + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun,//Propiedad de://,Triballat Noyal S.A.S.", + "traces_hierarchy": [ + "en:mustard" + ], + "completed_t": 1353370189, + "labels_prev_tags": [ + "es:sans-ogm", + "es:sans-gluten" + ], + "emb_codes_tags": [ + "emb-35069c", + "fabricante-y-envasador", + "triballat-noyal-s-a-s" + ], + "countries": "France,Espagne", + "additives_tags": [ + "en:e461" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.200.jpg", + "nucleotides_prev_tags": [], + "additives_prev_n": 1, + "fruits-vegetables-nuts_100g_estimate": 0, + "labels_tags": [ + "es:sans-ogm", + "es:sans-gluten" + ], + "emb_codes_debug_tags": [], + "nucleotides_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Substituts de viande,Steaks végétaux pour hamburgers", + "lang_debug_tags": [], + "ingredients_text_with_allergens": "Agua, bebida de soja 23% (agua, habas de soja 10%), proteínas de soja 20%, concentrado de tomates, aceite de girasol, cebollas ,azúcar, curry, sal, fibras de trigo (garantizadas sin gluten), gelificante: metilcelulosa (E-461).", + "languages_codes": { + "es": 6 + }, + "additives_tags_n": null, + "codes_tags": [ + "code-13", + "3273228086058", + "327322808605x", + "32732280860xx", + "3273228086xxx", + "327322808xxxx", + "32732280xxxxx", + "3273228xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 1, + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.100.jpg", + "quantity_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "ingredients_text_es": "Agua, bebida de _soja_ 23% (agua, habas de _soja_ 10%), proteínas de _soja_ 20%, concentrado de tomates, aceite de girasol, cebollas ,azúcar, curry, sal, fibras de trigo (garantizadas sin gluten), gelificante: metilcelulosa (E-461).", + "expiration_date": "01-12-2014", + "editors_tags": [ + "date-limite-app", + "anticultist", + "scanbot", + "javichu", + "tacite" + ], + "checkers": [], + "ingredients_n_tags": [ + "17", + "11-20" + ], + "pnns_groups_2_tags": [ + "unknown" + ], + "traces_debug_tags": [], + "product_name": "Hamburguesas vegetales Indiana", + "countries_hierarchy": [ + "en:france", + "en:spain" + ], + "last_modified_by": "anticultist", + "purchase_places": "Madrid,España", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "ingredients_tags": [ + "es:agua", + "es:bebida-de-soja", + "es:proteinas-de-soja", + "es:concentrado-de-tomates", + "es:aceite-de-girasol", + "es:cebollas", + "es:azucar", + "es:curry", + "es:sal", + "es:fibras-de-trigo", + "es:garantizadas-sin-gluten", + "es:gelificante", + "es:461", + "es:agua", + "es:habas-de-soja", + "es:metilcelulosa", + "es:e" + ], + "minerals_tags": [], + "categories_prev_tags": [ + "es:aliments-d-origine-vegetale", + "es:aliments-et-boissons-a-base-de-vegetaux", + "es:steaks-vegetaux-pour-hamburgers", + "es:substituts-de-viande" + ], + "brands_debug_tags": [], + "quality_tags": [ + "ingredients-unknown-score-above-10", + "ingredients-100-percent-unknown", + "quantity-not-recognized" + ], + "max_imgid": "8", + "photographers_tags": [ + "javichu", + "anticultist" + ], + "allergens_hierarchy": [ + "en:soybeans" + ], + "nutrition_data_per_debug_tags": [], + "checkers_tags": [], + "last_image_dates_tags": [ + "2018-06-20", + "2018-06", + "2018" + ], + "nutrition_data_per": "100g", + "editors": [ + "javichu" + ], + "ingredients_n": "17", + "_keywords": [ + "gluten", + "origine", + "base", + "noyal", + "soja", + "hamburger", + "san", + "boisson", + "vegetale", + "substitut", + "sojasun", + "de", + "et", + "steak", + "viande", + "propiedad", + "triballat", + "s-a-", + "aliment", + "indiana", + "hamburguesa", + "ogm", + "pour", + "vegetaux" + ], + "categories_tags": [ + "es:aliments-d-origine-vegetale", + "es:aliments-et-boissons-a-base-de-vegetaux", + "es:steaks-vegetaux-pour-hamburgers", + "es:substituts-de-viande" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "product_name_es_debug_tags": [], + "lang": "es", + "debug_param_sorted_langs": [ + "es" + ], + "emb_codes_orig": "EMB 35069C,FABRICANTE Y ENVASADOR:,TRIBALLAT NOYAL S.A.S.", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "brands_tags": [ + "sojasun", + "propiedad-de", + "triballat-noyal-s-a-s" + ], + "product_name_es": "Hamburguesas vegetales Indiana", + "ingredients_from_palm_oil_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/ingredients_es.18.100.jpg", + "labels_hierarchy": [ + "es:Sans OGM", + "es:Sans gluten" + ], + "purchase_places_debug_tags": [], + "packaging": "Caja de cartón,Bolsa de plástico,Envasado en atmósfera protectora,Refrigerado", + "informers_tags": [ + "javichu" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "no_nutrition_data": "", + "labels_debug_tags": [], + "complete": 1, + "labels_prev_hierarchy": [ + "es:Sans OGM", + "es:Sans gluten" + ], + "countries_beforescanbot": "España", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/nutrition_es.19.400.jpg", + "allergens_tags": [ + "en:soybeans" + ], + "manufacturing_places_debug_tags": [], + "additives_n": 1, + "image_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.400.jpg", + "categories_prev_hierarchy": [ + "es:Aliments d'origine végétale", + "es:Aliments et boissons à base de végétaux", + "es:Steaks végétaux pour hamburgers", + "es:Substituts de viande" + ], + "ingredients_text_with_allergens_es": "Agua, bebida de soja 23% (agua, habas de soja 10%), proteínas de soja 20%, concentrado de tomates, aceite de girasol, cebollas ,azúcar, curry, sal, fibras de trigo (garantizadas sin gluten), gelificante: metilcelulosa (E-461).", + "pnns_groups_1": "unknown", + "emb_codes_20141016": "//CODE EMB: 35069 C//,//FABRICANTE Y ENVASADOR://,TRIBALLAT NOYAL S.A.S.", + "link": "http://www.sojasun.es/nuestros-productos/los-platos/hamburguesas-de-soja-sojasun/product/hamburguesas-de-soja-indiana.html", + "vitamins_tags": [], + "additives_original_tags": [ + "en:e461" + ], + "stores_debug_tags": [], + "additives_debug_tags": [], + "generic_name_es_debug_tags": [], + "rev": 26, + "emb_codes": "EMB 35069C,FABRICANTE Y ENVASADOR:,TRIBALLAT NOYAL S.A.S.", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6058/front_es.17.200.jpg", + "_id": "3273228086058", + "stores_tags": [ + "alcampo", + "supermercados-gigante" + ], + "serving_size": "", + "generic_name_es": "Hamburguesas vegetales de soja", + "correctors": [ + "javichu" + ], + "id": "3273228086058" + }, + { + "rev": 19, + "emb_codes": "EMB 35069C,FABRICANTE Y ENVASADOR:,TRIBALLAT NOYAL S.A.S.", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.200.jpg", + "_id": "3273228086003", + "stores_tags": [ + "hipercor" + ], + "serving_size": "", + "generic_name_es": "Hamburguesas vegetales de soja", + "id": "3273228086003", + "correctors": [ + "javichu" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.400.jpg", + "additives_n": 1, + "categories_prev_hierarchy": [ + "es:Aliments d'origine végétale", + "es:Aliments et boissons à base de végétaux", + "es:Steaks végétaux pour hamburgers", + "es:Substituts de viande" + ], + "ingredients_text_with_allergens_es": "Bebida de soja (agua, habas de soja), proteínas de soja, cebollas, concentrado de tomates, aceite de girasol, sal, azúcar, fibras de trigo (garantizadas sin gluten), zumo concentrado de cebollas, gelificante: metilcelulosa (E-461).", + "pnns_groups_1": "unknown", + "emb_codes_20141016": "//CODE EMB: 35069 C//,//FABRICANTE Y ENVASADOR://,TRIBALLAT NOYAL S.A.S.", + "link": "http://www.sojasun.es/nuestros-productos/los-platos/hamburguesas-de-soja-sojasun/product/hamburguesas-de-soja-natural.html", + "vitamins_tags": [], + "additives_original_tags": [ + "en:e461" + ], + "stores_debug_tags": [], + "additives_debug_tags": [], + "generic_name_es_debug_tags": [], + "no_nutrition_data": "", + "labels_debug_tags": [], + "complete": 1, + "labels_prev_hierarchy": [ + "es:Sans OGM", + "es:Sans gluten" + ], + "misc_tags": [ + "en:nutriscore-not-computed", + "en:nutrition-not-enough-data-to-compute-nutrition-score" + ], + "countries_beforescanbot": "España", + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.400.jpg", + "allergens_tags": [ + "en:soybeans" + ], + "manufacturing_places_debug_tags": [], + "ingredients_from_palm_oil_tags": [], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.100.jpg", + "labels_hierarchy": [ + "es:Sans OGM", + "es:Sans gluten" + ], + "purchase_places_debug_tags": [], + "packaging": "Caja de cartón,Bolsa de plástico,Envasado en atmósfera protectora,Refrigerado", + "informers_tags": [ + "javichu" + ], + "ingredients_that_may_be_from_palm_oil_n": 0, + "last_image_dates_tags": [ + "2012-09-10", + "2012-09", + "2012" + ], + "nutrition_data_per": "100g", + "editors": [ + "javichu" + ], + "ingredients_n": "16", + "_keywords": [ + "boisson", + "noyal", + "pour", + "propiedad", + "hamburger", + "et", + "hamburguesa", + "sojasun", + "natural", + "gluten", + "ogm", + "vegetale", + "s-a-", + "san", + "origine", + "substitut", + "vegetaux", + "steak", + "de", + "viande", + "aliment", + "base", + "soja", + "triballat" + ], + "categories_tags": [ + "es:aliments-d-origine-vegetale", + "es:aliments-et-boissons-a-base-de-vegetaux", + "es:steaks-vegetaux-pour-hamburgers", + "es:substituts-de-viande" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "product_name_es_debug_tags": [], + "lang": "es", + "debug_param_sorted_langs": [ + "es" + ], + "emb_codes_orig": "EMB 35069C,FABRICANTE Y ENVASADOR:,TRIBALLAT NOYAL S.A.S.", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "product_name_es": "Hamburguesas vegetales Natural", + "brands_tags": [ + "sojasun", + "propiedad-de", + "triballat-noyal-s-a-s" + ], + "brands_debug_tags": [], + "categories_prev_tags": [ + "es:aliments-d-origine-vegetale", + "es:aliments-et-boissons-a-base-de-vegetaux", + "es:steaks-vegetaux-pour-hamburgers", + "es:substituts-de-viande" + ], + "quality_tags": [ + "ingredients-unknown-score-above-10", + "ingredients-100-percent-unknown", + "quantity-not-recognized" + ], + "max_imgid": "3", + "photographers_tags": [ + "javichu" + ], + "nutrition_data_per_debug_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "checkers_tags": [], + "ingredients_n_tags": [ + "16", + "11-20" + ], + "pnns_groups_2_tags": [ + "unknown" + ], + "traces_debug_tags": [], + "countries_hierarchy": [ + "en:france", + "en:spain" + ], + "product_name": "Hamburguesas vegetales Natural", + "last_modified_by": "tacite", + "purchase_places": "Madrid,España", + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "ingredients_tags": [ + "es:bebida-de-soja", + "es:proteinas-de-soja", + "es:cebollas", + "es:concentrado-de-tomates", + "es:aceite-de-girasol", + "es:sal", + "es:azucar", + "es:fibras-de-trigo", + "es:garantizadas-sin-gluten", + "es:zumo-concentrado-de-cebollas", + "es:gelificante", + "es:461", + "es:agua", + "es:habas-de-soja", + "es:metilcelulosa", + "es:e" + ], + "minerals_tags": [], + "labels_tags": [ + "es:sans-ogm", + "es:sans-gluten" + ], + "emb_codes_debug_tags": [], + "nucleotides_tags": [], + "categories": "Aliments et boissons à base de végétaux,Aliments d'origine végétale,Substituts de viande,Steaks végétaux pour hamburgers", + "ingredients_text_with_allergens": "Bebida de soja (agua, habas de soja), proteínas de soja, cebollas, concentrado de tomates, aceite de girasol, sal, azúcar, fibras de trigo (garantizadas sin gluten), zumo concentrado de cebollas, gelificante: metilcelulosa (E-461).", + "lang_debug_tags": [], + "languages_codes": { + "es": 6 + }, + "codes_tags": [ + "code-13", + "3273228086003", + "327322808600x", + "32732280860xx", + "3273228086xxx", + "327322808xxxx", + "32732280xxxxx", + "3273228xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 1, + "additives_tags_n": null, + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.100.jpg", + "quantity_debug_tags": [], + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "interface_version_created": "20120622", + "ingredients_text_es": "Bebida de _soja_ (agua, habas de _soja_), proteínas de _soja_, cebollas, concentrado de tomates, aceite de girasol, sal, azúcar, fibras de trigo (garantizadas sin gluten), zumo concentrado de cebollas, gelificante: metilcelulosa (E-461).", + "expiration_date": "06-10-2012", + "editors_tags": [ + "tacite", + "scanbot", + "javichu" + ], + "checkers": [], + "ingredients": [ + { + "text": "Bebida de _soja_", + "id": "bebida-de-soja", + "rank": 1 + }, + { + "id": "proteinas-de-soja", + "rank": 2, + "text": "proteínas de _soja_" + }, + { + "text": "cebollas", + "id": "cebollas", + "rank": 3 + }, + { + "text": "concentrado de tomates", + "rank": 4, + "id": "concentrado-de-tomates" + }, + { + "id": "aceite-de-girasol", + "rank": 5, + "text": "aceite de girasol" + }, + { + "text": "sal", + "rank": 6, + "id": "sal" + }, + { + "rank": 7, + "id": "azucar", + "text": "azúcar" + }, + { + "text": "fibras de trigo", + "rank": 8, + "id": "fibras-de-trigo" + }, + { + "text": "garantizadas sin gluten", + "id": "garantizadas-sin-gluten", + "rank": 9 + }, + { + "id": "zumo-concentrado-de-cebollas", + "rank": 10, + "text": "zumo concentrado de cebollas" + }, + { + "text": "gelificante", + "id": "gelificante", + "rank": 11 + }, + { + "text": "461", + "rank": 12, + "id": "461" + }, + { + "text": "agua", + "id": "agua" + }, + { + "text": "habas de _soja_", + "id": "habas-de-soja" + }, + { + "text": "metilcelulosa", + "id": "metilcelulosa" + }, + { + "text": "E", + "id": "e" + } + ], + "additives_old_tags": [ + "en:e461" + ], + "pnns_groups_2": "unknown", + "generic_name": "Hamburguesas vegetales de soja", + "packaging_debug_tags": [], + "ingredients_debug": [ + "Bebida de _soja_ ", + "(", + null, + null, + "agua", + ",", + null, + null, + " habas de _soja_)", + ",", + null, + null, + " proteínas de _soja_", + ",", + null, + null, + " cebollas", + ",", + null, + null, + " concentrado de tomates", + ",", + null, + null, + " aceite de girasol", + ",", + null, + null, + " sal", + ",", + null, + null, + " azúcar", + ",", + null, + null, + " fibras de trigo ", + "(", + null, + null, + "garantizadas sin gluten)", + ",", + null, + null, + " zumo concentrado de cebollas", + ",", + null, + null, + " gelificante", + ":", + null, + null, + " metilcelulosa ", + "(", + null, + null, + "", + " - ", + " - ", + null, + "e461", + " - ", + " - ", + null, + ")." + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun,//Propiedad de://,Triballat Noyal S.A.S.", + "completed_t": 1347232383, + "emb_codes_tags": [ + "emb-35069c", + "fabricante-y-envasador", + "triballat-noyal-s-a-s" + ], + "traces_hierarchy": [], + "labels_prev_tags": [ + "es:sans-ogm", + "es:sans-gluten" + ], + "countries": "France,Espagne", + "additives_tags": [ + "en:e461" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.200.jpg", + "nucleotides_prev_tags": [], + "additives_prev_n": 1, + "correctors_tags": [ + "javichu", + "scanbot", + "tacite" + ], + "photographers": [ + "javichu" + ], + "ingredients_hierarchy": [ + "es:bebida-de-soja", + "es:proteinas-de-soja", + "es:cebollas", + "es:concentrado-de-tomates", + "es:aceite-de-girasol", + "es:sal", + "es:azucar", + "es:fibras-de-trigo", + "es:garantizadas-sin-gluten", + "es:zumo-concentrado-de-cebollas", + "es:gelificante", + "es:461", + "es:agua", + "es:habas-de-soja", + "es:metilcelulosa", + "es:e" + ], + "serving_quantity": 0, + "last_editor": "tacite", + "ingredients_ids_debug": [ + "bebida-de-soja", + "agua", + "habas-de-soja", + "proteinas-de-soja", + "cebollas", + "concentrado-de-tomates", + "aceite-de-girasol", + "sal", + "azucar", + "fibras-de-trigo", + "garantizadas-sin-gluten", + "zumo-concentrado-de-cebollas", + "gelificante", + "metilcelulosa", + "e461" + ], + "scans_n": 3, + "additives_prev_tags": [ + "en:e461" + ], + "selected_images": { + "front": { + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.100.jpg" + }, + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.400.jpg" + }, + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.200.jpg" + } + }, + "nutrition": { + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.200.jpg" + }, + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.100.jpg" + }, + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.400.jpg" + } + }, + "ingredients": { + "small": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.200.jpg" + }, + "thumb": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.100.jpg" + }, + "display": { + "es": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.400.jpg" + } + } + }, + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.100.jpg", + "categories_hierarchy": [ + "es:Aliments d'origine végétale", + "es:Aliments et boissons à base de végétaux", + "es:Steaks végétaux pour hamburgers", + "es:Substituts de viande" + ], + "informers": [ + "javichu" + ], + "last_modified_t": 1499949129, + "ingredients_text_es_debug_tags": [], + "origins_debug_tags": [], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.400.jpg", + "manufacturing_places_tags": [ + "chateaugiron", + "rennes-distrito", + "ille-y-vilaine", + "bretana", + "francia" + ], + "last_edit_dates_tags": [ + "2017-07-13", + "2017-07", + "2017" + ], + "unknown_ingredients_n": 16, + "unknown_nutrients_tags": [], + "labels": "Sans gluten,Sans OGM", + "countries_tags": [ + "en:france", + "en:spain" + ], + "traces_tags": [], + "creator": "javichu", + "expiration_date_debug_tags": [], + "ingredients_from_palm_oil_n": 0, + "additives_old_n": 1, + "origins_tags": [], + "origins": "", + "ingredients_text_debug": "Bebida de _soja_ (agua, habas de _soja_), proteínas de _soja_, cebollas, concentrado de tomates, aceite de girasol, sal, azúcar, fibras de trigo (garantizadas sin gluten), zumo concentrado de cebollas, gelificante: metilcelulosa ( - e461 - ).", + "languages_tags": [ + "en:spanish", + "en:1" + ], + "sortkey": 1499949129, + "entry_dates_tags": [ + "2012-09-10", + "2012-09", + "2012" + ], + "packaging_tags": [ + "caja-de-carton", + "bolsa-de-plastico", + "envasado-en-atmosfera-protectora", + "refrigerado" + ], + "allergens": "soja, soja, soja", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.100.jpg", + "images": { + "1": { + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "400": { + "h": 203, + "w": 400 + }, + "full": { + "h": 317, + "w": 626 + } + }, + "uploaded_t": 1347231641, + "uploader": "javichu" + }, + "2": { + "uploaded_t": 1347231653, + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "400": { + "w": 400, + "h": 177 + }, + "full": { + "w": 407, + "h": 180 + } + }, + "uploader": "javichu" + }, + "3": { + "uploaded_t": 1347231660, + "sizes": { + "100": { + "h": 100, + "w": 70 + }, + "400": { + "h": 400, + "w": 281 + }, + "full": { + "w": 1404, + "h": 2000 + } + }, + "uploader": "javichu" + }, + "nutrition": { + "white_magic": null, + "imgid": "1", + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "200": { + "w": 200, + "h": 101 + }, + "400": { + "w": 400, + "h": 203 + }, + "full": { + "w": 626, + "h": 317 + } + }, + "geometry": "0x0--1--1", + "rev": "6", + "normalize": null + }, + "ingredients": { + "rev": "5", + "normalize": null, + "geometry": "0x0--1--1", + "sizes": { + "100": { + "w": 100, + "h": 44 + }, + "200": { + "h": 88, + "w": 200 + }, + "400": { + "w": 400, + "h": 177 + }, + "full": { + "h": 180, + "w": 407 + } + }, + "white_magic": null, + "imgid": "2" + }, + "front_es": { + "normalize": null, + "rev": "7", + "geometry": "0x0--4--5", + "sizes": { + "100": { + "h": "100", + "w": "70" + }, + "200": { + "w": 140, + "h": 200 + }, + "400": { + "h": 400, + "w": 281 + }, + "full": { + "w": 1404, + "h": 2000 + } + }, + "imgid": "3", + "white_magic": null + }, + "front": { + "geometry": "0x0--4--5", + "rev": "7", + "normalize": null, + "white_magic": null, + "imgid": "3", + "sizes": { + "100": { + "w": 70, + "h": 100 + }, + "200": { + "h": 200, + "w": 140 + }, + "400": { + "w": 281, + "h": 400 + }, + "full": { + "w": 1404, + "h": 2000 + } + } + }, + "nutrition_es": { + "white_magic": null, + "imgid": "1", + "sizes": { + "100": { + "h": 51, + "w": 100 + }, + "200": { + "h": 101, + "w": 200 + }, + "400": { + "h": 203, + "w": 400 + }, + "full": { + "w": 626, + "h": 317 + } + }, + "geometry": "0x0--1--1", + "rev": "6", + "normalize": null + }, + "ingredients_es": { + "geometry": "0x0--1--1", + "normalize": null, + "rev": "5", + "imgid": "2", + "white_magic": null, + "sizes": { + "100": { + "h": 44, + "w": 100 + }, + "200": { + "w": 200, + "h": 88 + }, + "400": { + "h": 177, + "w": 400 + }, + "full": { + "h": 180, + "w": 407 + } + } + } + }, + "amino_acids_prev_tags": [], + "additives_prev_original_tags": [ + "en:e461" + ], + "interface_version_modified": "20120622", + "lc": "es", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:salt-in-high-quantity" + ], + "code": "3273228086003", + "serving_size_debug_tags": [], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/nutrition_es.6.200.jpg", + "manufacturing_places": "Châteaugiron,Rennes (distrito),Ille y Vilaine,Bretaña,Francia", + "traces": "", + "languages_hierarchy": [ + "en:spanish" + ], + "nutrition_grades_tags": [ + "unknown" + ], + "languages": { + "en:spanish": 6 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/ingredients_es.5.400.jpg", + "nutrition_score_debug": "missing sugars", + "created_t": 1347231623, + "quantity": "200 g (2 x 100 g)", + "countries_debug_tags": [], + "unique_scans_n": 3, + "ingredients_that_may_be_from_palm_oil_tags": [], + "purchase_places_tags": [ + "madrid", + "espana" + ], + "update_key": "20180706-categories", + "nutriments": { + "monounsaturated-fat_100g": 4.2, + "energy_unit": "kJ", + "saturated-fat_100g": 0.65, + "polyunsaturated-fat_value": "1.15", + "salt_serving": "", + "energy": "588", + "monounsaturated-fat_unit": "g", + "sodium_100g": 0.7, + "cholesterol_serving": "", + "fiber": 7.5, + "salt_value": "1.778", + "salt_unit": "g", + "salt_100g": 1.778, + "polyunsaturated-fat_unit": "g", + "monounsaturated-fat": 4.2, + "saturated-fat": 0.65, + "fat_value": "6", + "fiber_100g": 7.5, + "cholesterol_unit": "mg", + "fat_serving": "", + "salt": 1.778, + "sodium_serving": "", + "sodium_value": "0.7", + "proteins": "18", + "sodium_unit": "g", + "carbohydrates_unit": "g", + "monounsaturated-fat_serving": "", + "energy_value": "588", + "proteins_100g": "18", + "cholesterol_label": "Cholesterol", + "polyunsaturated-fat_100g": 1.15, + "carbohydrates": 3.5, + "sodium": 0.7, + "fiber_unit": "g", + "cholesterol_value": "0", + "energy_serving": "", + "saturated-fat_unit": "g", + "carbohydrates_serving": "", + "cholesterol": 0, + "cholesterol_100g": "0", + "fiber_value": "7.5", + "proteins_value": "18", + "carbohydrates_100g": 3.5, + "polyunsaturated-fat_serving": "", + "saturated-fat_value": "0.65", + "energy_100g": "588", + "saturated-fat_serving": "", + "proteins_unit": "g", + "fiber_serving": "", + "carbohydrates_value": "3.5", + "fat": "6", + "fat_100g": "6", + "fat_unit": "g", + "proteins_serving": "", + "polyunsaturated-fat": 1.15, + "monounsaturated-fat_value": "4.2" + }, + "nutrient_levels": { + "saturated-fat": "low", + "fat": "moderate", + "salt": "high" + }, + "vitamins_prev_tags": [], + "last_image_t": 1347231660, + "ingredients_text": "Bebida de _soja_ (agua, habas de _soja_), proteínas de _soja_, cebollas, concentrado de tomates, aceite de girasol, sal, azúcar, fibras de trigo (garantizadas sin gluten), zumo concentrado de cebollas, gelificante: metilcelulosa (E-461).", + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/808/6003/front_es.7.200.jpg", + "url": "https://world.openfoodfacts.org/product/3273228086003/hamburguesas-vegetales-natural-sojasun", + "amino_acids_tags": [], + "pnns_groups_1_tags": [ + "unknown" + ], + "link_debug_tags": [], + "minerals_prev_tags": [], + "stores": "Hipercor", + "categories_debug_tags": [] + }, + { + "pnns_groups_1": "Composite foods", + "emb_codes_20141016": "EMB 35069C", + "categories_prev_hierarchy": [ + "en:meals", + "en:prepared-vegetables" + ], + "image_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.400.jpg", + "additives_n": 1, + "additives_debug_tags": [], + "additives_original_tags": [ + "en:e407" + ], + "link": "", + "vitamins_tags": [], + "stores_tags": [], + "image_front_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.200.jpg", + "_id": "3273220086971", + "emb_codes": "EMB 35069C", + "rev": 13, + "ingredients_text_with_allergens_fr": "Jus de soja 33 % (eau, graines de soja 10 %), protéines de soja 26 %, eau, concentré de tomates, oignons, huile d'olive vierge extra, sel, ail, persil, fibres végétales, jus concentré de citron, origan, arôme naturel, gélifiant : carraghénane, thym de Provence, amidon, poivre blanc.", + "id": "3273220086971", + "serving_size": "", + "packaging": "Barquette,plastique", + "labels_hierarchy": [ + "en:gluten-free", + "en:no-gmos" + ], + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.100.jpg", + "ingredients_from_palm_oil_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "informers_tags": [ + "openfoodfacts-contributors", + "sebleouf", + "tacite" + ], + "labels_prev_hierarchy": [ + "en:gluten-free", + "en:no-gmos" + ], + "complete": 1, + "labels_debug_tags": [], + "no_nutrition_data": null, + "allergens_tags": [ + "en:soybeans" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.400.jpg", + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "max_imgid": "3", + "quality_tags": [ + "quantity-not-recognized" + ], + "categories_prev_tags": [ + "en:meals", + "en:prepared-vegetables" + ], + "checkers_tags": [], + "allergens_hierarchy": [ + "en:soybeans" + ], + "photographers_tags": [ + "openfoodfacts-contributors" + ], + "_keywords": [ + "aux", + "herbe", + "de", + "aromatisee", + "vegetale", + "provence", + "precuite", + "preparation", + "boulette", + "sojasun", + "gluten", + "san", + "base", + "legume", + "soja", + "ogm", + "prepare" + ], + "categories_tags": [ + "en:meals", + "en:prepared-vegetables" + ], + "ingredients_n": "20", + "editors": [ + "", + "sebleouf", + "tacite" + ], + "nutrition_data_per": "100g", + "last_image_dates_tags": [ + "2017-05-06", + "2017-05", + "2017" + ], + "brands_tags": [ + "sojasun" + ], + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "emb_codes_orig": "EMB 35069C", + "lang": "fr", + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-to-be-completed", + "en:packaging-code-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.100.jpg", + "codes_tags": [ + "code-13", + "3273220086971", + "327322008697x", + "32732200869xx", + "3273220086xxx", + "327322008xxxx", + "32732200xxxxx", + "3273220xxxxxx", + "327322xxxxxxx", + "32732xxxxxxxx", + "3273xxxxxxxxx", + "327xxxxxxxxxx", + "32xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "new_additives_n": 1, + "languages_codes": { + "fr": 6 + }, + "ingredients_text_with_allergens": "Jus de soja 33 % (eau, graines de soja 10 %), protéines de soja 26 %, eau, concentré de tomates, oignons, huile d'olive vierge extra, sel, ail, persil, fibres végétales, jus concentré de citron, origan, arôme naturel, gélifiant : carraghénane, thym de Provence, amidon, poivre blanc.", + "categories": "Légumes préparés", + "nucleotides_tags": [], + "labels_tags": [ + "en:gluten-free", + "en:no-gmos" + ], + "editors_tags": [ + "tacite", + "openfoodfacts-contributors", + "sebleouf" + ], + "expiration_date": "", + "interface_version_created": "20120622", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "last_modified_by": null, + "product_name": "Boulettes végétales aux herbes", + "countries_hierarchy": [ + "en:france" + ], + "pnns_groups_2_tags": [ + "one-dish-meals" + ], + "ingredients_n_tags": [ + "20", + "11-20" + ], + "minerals_tags": [], + "ingredients_text_fr": "Jus de _soja_ 33 % (eau, graines de _soja_ 10 %), protéines de _soja_ 26 %, eau, concentré de tomates, oignons, huile d'olive vierge extra, sel, ail, persil, fibres végétales, jus concentré de citron, origan, arôme naturel, gélifiant : carraghénane, thym de Provence, amidon, poivre blanc.", + "ingredients_tags": [ + "fr:jus-de-soja", + "fr:proteine-de-soja", + "en:water", + "fr:concentre-de-tomate", + "fr:oignon", + "fr:huile-d-olive-vierge-extra", + "en:salt", + "fr:ail", + "fr:persil", + "fr:fibres-vegetales", + "fr:jus-concentre-de-citron", + "fr:origan", + "fr:arome-naturel", + "fr:gelifiant", + "fr:carraghenane", + "fr:thym-de-provence", + "fr:amidon", + "fr:poivre-blanc", + "en:water", + "fr:graines-de-soja" + ], + "cities_tags": [ + "chateaugiron-ille-et-vilaine-france" + ], + "purchase_places": "", + "serving_quantity": 0, + "ingredients_hierarchy": [ + "fr:jus-de-soja", + "fr:proteine-de-soja", + "en:water", + "fr:concentre-de-tomate", + "fr:oignon", + "fr:huile-d-olive-vierge-extra", + "en:salt", + "fr:ail", + "fr:persil", + "fr:fibres-vegetales", + "fr:jus-concentre-de-citron", + "fr:origan", + "fr:arome-naturel", + "fr:gelifiant", + "fr:carraghenane", + "fr:thym-de-provence", + "fr:amidon", + "fr:poivre-blanc", + "en:water", + "fr:graines-de-soja" + ], + "last_editor": "openfoodfacts-contributors", + "correctors_tags": [ + "sebleouf", + "tacite" + ], + "selected_images": { + "nutrition": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.400.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.400.jpg" + } + } + }, + "scans_n": 2, + "additives_prev_tags": [ + "en:e407" + ], + "nutrition_grade_fr": "a", + "ingredients_ids_debug": [ + "jus-de-soja-33", + "eau", + "graines-de-soja-10", + "proteines-de-soja-26", + "eau", + "concentre-de-tomates", + "oignons", + "huile-d-olive-vierge-extra", + "sel", + "ail", + "persil", + "fibres-vegetales", + "jus-concentre-de-citron", + "origan", + "arome-naturel", + "gelifiant", + "carraghenane", + "thym-de-provence", + "amidon", + "poivre-blanc" + ], + "traces_hierarchy": [], + "labels_prev_tags": [ + "en:gluten-free", + "en:no-gmos" + ], + "completed_t": 1437854154, + "emb_codes_tags": [ + "emb-35069c" + ], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-to-be-completed, en:packaging-code-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "brands": "Sojasun", + "generic_name_fr": "Préparation à base de soja précuite aromatisée aux herbes de Provence", + "ingredients_debug": [ + "Jus de _soja_ 33 % ", + "(", + null, + null, + "eau", + ",", + null, + null, + " graines de _soja_ 10 %)", + ",", + null, + null, + " protéines de _soja_ 26 %", + ",", + null, + null, + " eau", + ",", + null, + null, + " concentré de tomates", + ",", + null, + null, + " oignons", + ",", + null, + null, + " huile d'olive vierge extra", + ",", + null, + null, + " sel", + ",", + null, + null, + " ail", + ",", + null, + null, + " persil", + ",", + null, + null, + " fibres végétales", + ",", + null, + null, + " jus concentré de citron", + ",", + null, + null, + " origan", + ",", + null, + null, + " arôme naturel", + ",", + null, + null, + " gélifiant ", + ":", + null, + null, + " carraghénane", + ",", + null, + null, + " thym de Provence", + ",", + null, + null, + " amidon", + ",", + null, + null, + " poivre blanc." + ], + "generic_name": "Préparation à base de soja précuite aromatisée aux herbes de Provence", + "pnns_groups_2": "One-dish meals", + "ingredients": [ + { + "id": "jus-de-soja", + "rank": 1, + "text": "Jus de _soja_", + "percent": "33" + }, + { + "text": "protéines de _soja_", + "percent": "26", + "rank": 2, + "id": "proteines-de-soja" + }, + { + "id": "eau", + "rank": 3, + "text": "eau" + }, + { + "rank": 4, + "id": "concentre-de-tomates", + "text": "concentré de tomates" + }, + { + "rank": 5, + "id": "oignons", + "text": "oignons" + }, + { + "text": "huile d'olive vierge extra", + "id": "huile-d-olive-vierge-extra", + "rank": 6 + }, + { + "id": "sel", + "rank": 7, + "text": "sel" + }, + { + "text": "ail", + "id": "ail", + "rank": 8 + }, + { + "text": "persil", + "id": "persil", + "rank": 9 + }, + { + "text": "fibres végétales", + "id": "fibres-vegetales", + "rank": 10 + }, + { + "text": "jus concentré de citron", + "rank": 11, + "id": "jus-concentre-de-citron" + }, + { + "text": "origan", + "rank": 12, + "id": "origan" + }, + { + "text": "arôme naturel", + "id": "arome-naturel", + "rank": 13 + }, + { + "rank": 14, + "id": "gelifiant", + "text": "gélifiant" + }, + { + "id": "carraghenane", + "rank": 15, + "text": "carraghénane" + }, + { + "rank": 16, + "id": "thym-de-provence", + "text": "thym de Provence" + }, + { + "text": "amidon", + "rank": 17, + "id": "amidon" + }, + { + "text": "poivre blanc", + "id": "poivre-blanc", + "rank": 18 + }, + { + "text": "eau", + "id": "eau" + }, + { + "text": "graines de _soja_", + "percent": "10", + "id": "graines-de-soja" + } + ], + "additives_old_tags": [ + "en:e407" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "additives_prev_n": 1, + "nucleotides_prev_tags": [], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.200.jpg", + "additives_tags": [ + "en:e407" + ], + "countries": "France", + "origins_tags": [], + "origins": "", + "additives_old_n": 1, + "creator": "openfoodfacts-contributors", + "ingredients_from_palm_oil_n": 0, + "traces_tags": [], + "countries_tags": [ + "en:france" + ], + "sortkey": 1494092872, + "languages_tags": [ + "en:french", + "en:1" + ], + "ingredients_text_debug": "Jus de _soja_ 33 % (eau, graines de _soja_ 10 %), protéines de _soja_ 26 %, eau, concentré de tomates, oignons, huile d'olive vierge extra, sel, ail, persil, fibres végétales, jus concentré de citron, origan, arôme naturel, gélifiant : carraghénane, thym de Provence, amidon, poivre blanc.", + "last_modified_t": 1494092872, + "categories_hierarchy": [ + "en:meals", + "en:prepared-vegetables" + ], + "image_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.100.jpg", + "labels": "Sans gluten,Sans OGM", + "unknown_nutrients_tags": [], + "unknown_ingredients_n": 1, + "last_edit_dates_tags": [ + "2017-05-06", + "2017-05", + "2017" + ], + "manufacturing_places_tags": [ + "france" + ], + "image_front_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.400.jpg", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.200.jpg", + "code": "3273220086971", + "nutrition_grades_tags": [ + "a" + ], + "languages_hierarchy": [ + "en:french" + ], + "traces": "", + "product_name_fr": "Boulettes végétales aux herbes", + "nutrition_grades": "a", + "manufacturing_places": "France", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/nutrition_fr.9.100.jpg", + "allergens": "soja, soja, soja", + "packaging_tags": [ + "barquette", + "plastique" + ], + "entry_dates_tags": [ + "2015-07-20", + "2015-07", + "2015" + ], + "lc": "fr", + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-low-quantity", + "en:sugars-in-low-quantity", + "en:salt-in-moderate-quantity" + ], + "interface_version_modified": "20120622", + "additives_prev_original_tags": [ + "en:e407" + ], + "amino_acids_prev_tags": [], + "images": { + "1": { + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploaded_t": 1437371245, + "uploader": "openfoodfacts-contributors" + }, + "2": { + "uploaded_t": 1437371279, + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + }, + "uploader": "openfoodfacts-contributors" + }, + "3": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1494092871", + "sizes": { + "100": { + "h": 56, + "w": 100 + }, + "400": { + "w": 400, + "h": 225 + }, + "full": { + "w": 2000, + "h": 1125 + } + } + }, + "ingredients": { + "geometry": "1145x185-529-268", + "normalize": "false", + "rev": "8", + "imgid": "2", + "white_magic": "false", + "sizes": { + "100": { + "w": 100, + "h": 16 + }, + "200": { + "w": 200, + "h": 32 + }, + "400": { + "w": 400, + "h": 65 + }, + "full": { + "h": 185, + "w": 1145 + } + } + }, + "ingredients_fr": { + "sizes": { + "100": { + "w": 100, + "h": 16 + }, + "200": { + "w": 200, + "h": 32 + }, + "400": { + "w": 400, + "h": 65 + }, + "full": { + "w": 1145, + "h": 185 + } + }, + "white_magic": "false", + "imgid": "2", + "rev": "8", + "normalize": "false", + "geometry": "1145x185-529-268" + }, + "nutrition": { + "geometry": "575x470-624-444", + "rev": "9", + "normalize": "false", + "white_magic": "false", + "imgid": "2", + "sizes": { + "100": { + "h": 82, + "w": 100 + }, + "200": { + "h": 163, + "w": 200 + }, + "400": { + "h": 327, + "w": 400 + }, + "full": { + "h": 470, + "w": 575 + } + } + }, + "front": { + "white_magic": null, + "imgid": "1", + "sizes": { + "100": { + "w": 56, + "h": 100 + }, + "200": { + "w": 113, + "h": 200 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "geometry": "0x0--5--5", + "rev": "3", + "normalize": null + }, + "front_fr": { + "sizes": { + "100": { + "h": "100", + "w": "56" + }, + "200": { + "h": 200, + "w": 113 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "w": 1125, + "h": 2000 + } + }, + "imgid": "1", + "white_magic": null, + "normalize": null, + "rev": "3", + "geometry": "0x0--5--5" + }, + "nutrition_fr": { + "rev": "9", + "normalize": "false", + "geometry": "575x470-624-444", + "sizes": { + "100": { + "w": 100, + "h": 82 + }, + "200": { + "w": 200, + "h": 163 + }, + "400": { + "h": 327, + "w": 400 + }, + "full": { + "w": 575, + "h": 470 + } + }, + "white_magic": "false", + "imgid": "2" + } + }, + "pnns_groups_1_tags": [ + "composite-foods" + ], + "amino_acids_tags": [], + "url": "https://world.openfoodfacts.org/product/3273220086971/boulettes-vegetales-aux-herbes-sojasun", + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "image_small_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/front_fr.3.200.jpg", + "ingredients_text": "Jus de _soja_ 33 % (eau, graines de _soja_ 10 %), protéines de _soja_ 26 %, eau, concentré de tomates, oignons, huile d'olive vierge extra, sel, ail, persil, fibres végétales, jus concentré de citron, origan, arôme naturel, gélifiant : carraghénane, thym de Provence, amidon, poivre blanc.", + "stores": "", + "categories_debug_tags": [], + "minerals_prev_tags": [], + "unique_scans_n": 2, + "quantity": "200 g", + "created_t": 1437371245, + "nutrition_score_debug": " -- energy 1 + sat-fat 0 + fr-sat-fat-for-fats 2 + sugars 0 + sodium 4 - fruits 0% 0 - fiber 5 - proteins 5 -- fsa -5 -- fr -5", + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/327/322/008/6971/ingredients_fr.8.400.jpg", + "languages": { + "en:french": 6 + }, + "last_image_t": 1494092872, + "vitamins_prev_tags": [], + "nutrient_levels": { + "sugars": "low", + "saturated-fat": "low", + "fat": "moderate", + "salt": "moderate" + }, + "nutriments": { + "fiber_unit": "g", + "sodium": "0.393700787401575", + "iron_label": "Fer", + "energy_serving": "", + "saturated-fat_unit": "g", + "carbohydrates_serving": "", + "nutrition-score-uk_100g": -5, + "proteins_100g": "15", + "sugars_value": "3.3", + "carbohydrates": "8.4", + "iron_unit": "mg", + "carbohydrates_value": "8.4", + "fat": "4.5", + "sugars_serving": "", + "fat_100g": "4.5", + "fat_unit": "g", + "sugars_100g": "3.3", + "proteins_serving": "", + "sugars_unit": "g", + "fiber_value": "5.6", + "carbohydrates_100g": "8.4", + "proteins_value": "15", + "nutrition-score-fr_100g": -5, + "saturated-fat_value": "0.8", + "energy_100g": "609", + "proteins_unit": "g", + "saturated-fat_serving": "", + "fiber_serving": "", + "sodium_100g": "0.393700787401575", + "fiber": "5.6", + "iron_serving": "", + "iron": "0.0025", + "salt_unit": "g", + "salt_value": "1", + "salt_100g": "1", + "saturated-fat": "0.8", + "iron_100g": "0.0025", + "energy_unit": "kJ", + "saturated-fat_100g": "0.8", + "salt_serving": "", + "energy": "609", + "proteins": "15", + "sodium_unit": "g", + "carbohydrates_unit": "g", + "iron_value": "2.5", + "sugars": "3.3", + "nutrition-score-uk": -5, + "energy_value": "609", + "fat_value": "4.5", + "fiber_100g": "5.6", + "nutrition-score-fr": -5, + "fat_serving": "", + "salt": "1", + "sodium_serving": "", + "sodium_value": "0.39370078740157477" + }, + "update_key": "20180706-categories", + "purchase_places_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [] + } + ], + "count": 11 +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/sample/product-3017760000109.json b/openclassrooms-trainings/pytestdiscovering/sample/product-3017760000109.json new file mode 100644 index 0000000..ad86696 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/product-3017760000109.json @@ -0,0 +1,973 @@ +{ + "status": 1, + "status_verbose": "product found", + "product": { + "ingredients_text_with_allergens": "Farine de blé 73,5 %, sucre, beurre 13,6 %, lait écrémé en poudre 1,3 % (équivalent lait écrémé 13 %), sel, poudre à lever (carbonate acide de sodium, carbonate acide d'ammonium), correcteur d'acidité (acide citrique), arôme, sucre glace (sucre, amidon de maïs)", + "interface_version_created": "20120622", + "images": { + "1": { + "uploaded_t": 1423992885, + "uploader": "nissen", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "2": { + "uploaded_t": 1423992900, + "uploader": "nissen", + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 2448, + "h": 3264 + } + } + }, + "3": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "w": 2448, + "h": 3264 + } + }, + "uploader": "nissen", + "uploaded_t": 1423992913 + }, + "4": { + "uploaded_t": "1452804800", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "h": 3264, + "w": 2448 + } + } + }, + "ingredients": { + "normalize": null, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "h": 150, + "w": 200 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "imgid": "3", + "white_magic": null, + "geometry": "0x0-0-0", + "rev": "10" + }, + "nutrition": { + "rev": "11", + "geometry": "0x0-0-0", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "200": { + "w": 200, + "h": 150 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 3264, + "h": 2448 + } + }, + "imgid": "2", + "white_magic": null, + "normalize": null + }, + "nutrition_fr": { + "x1": "0.4210205078125", + "normalize": "false", + "x2": "400", + "y2": "215.24267578125", + "y1": "51.8046875", + "geometry": "3261x1334-3-422", + "angle": "270", + "imgid": "2", + "sizes": { + "100": { + "w": 100, + "h": 41 + }, + "200": { + "h": 82, + "w": 200 + }, + "400": { + "w": 400, + "h": 164 + }, + "full": { + "h": 1334, + "w": 3261 + } + }, + "rev": "23", + "white_magic": "false" + }, + "ingredients_fr": { + "normalize": "false", + "x1": "0", + "imgid": "3", + "sizes": { + "100": { + "h": 9, + "w": 100 + }, + "200": { + "h": 19, + "w": 200 + }, + "400": { + "w": 400, + "h": 38 + }, + "full": { + "h": 301, + "w": 3184 + } + }, + "y2": "125.1796875", + "y1": "88.3046875", + "x2": "390.218994140625", + "geometry": "3184x301-0-720", + "angle": "270", + "white_magic": "false", + "rev": "22" + }, + "front_fr": { + "rev": "13", + "geometry": "3264x1264-0-612", + "imgid": "1", + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 39 + }, + "200": { + "w": 200, + "h": 77 + }, + "400": { + "h": 155, + "w": 400 + }, + "full": { + "w": 3264, + "h": 1264 + } + }, + "normalize": null + }, + "front": { + "rev": "13", + "geometry": "3264x1264-0-612", + "imgid": "1", + "white_magic": null, + "sizes": { + "100": { + "w": 100, + "h": 39 + }, + "200": { + "w": 200, + "h": 77 + }, + "400": { + "h": 155, + "w": 400 + }, + "full": { + "w": 3264, + "h": 1264 + } + }, + "normalize": null + } + }, + "additives_original_tags": [ + "en:e500ii", + "en:e503ii", + "en:e330" + ], + "categories": "Snacks sucrés,Biscuits et gâteaux,Biscuits,Petits beurres", + "languages_hierarchy": [ + "en:french" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.400.jpg", + "additives": " [ farine-de-ble-73 -> fr:farine-de-ble-73 ] [ farine-de-ble -> fr:farine-de-ble ] [ farine-de -> fr:farine-de ] [ farine -> fr:farine ] [ 5 -> en:fd-c ] [ sucre -> fr:sucre ] [ beurre-13 -> fr:beurre-13 ] [ beurre -> fr:beurre ] [ 6 -> en:fd-c ] [ lait-ecreme-en-poudre-1 -> fr:lait-ecreme-en-poudre-1 ] [ lait-ecreme-en-poudre -> fr:lait-ecreme-en-poudre ] [ lait-ecreme-en -> fr:lait-ecreme-en ] [ lait-ecreme -> fr:lait-ecreme ] [ lait -> fr:lait ] [ 3 -> en:fd-c ] [ equivalent-lait-ecreme-13 -> fr:equivalent-lait-ecreme-13 ] [ equivalent-lait-ecreme -> fr:equivalent-lait-ecreme ] [ equivalent-lait -> fr:equivalent-lait ] [ equivalent -> fr:equivalent ] [ sel -> fr:sel ] [ poudre-a-lever -> fr:poudre-a-lever ] [ poudre-a -> fr:poudre-a ] [ poudre -> fr:poudre ] [ carbonate-acide-de-sodium -> en:e500ii -> exists -- ok ] [ carbonate-acide-d-ammonium -> en:e503ii -> exists -- ok ] [ correcteur-d-acidite -> fr:correcteur-d-acidite ] [ correcteur-d -> fr:correcteur-d ] [ correcteur -> fr:correcteur ] [ acide-citrique -> en:e330 -> exists -- ok ] [ arome -> fr:arome ] [ sucre-glace -> fr:sucre-glace ] [ sucre -> fr:sucre ] [ sucre -> fr:sucre ] [ amidon-de-mais -> fr:amidon-de-mais ] [ amidon-de -> fr:amidon-de ] [ amidon -> fr:amidon ] ", + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:petits-beurres" + ], + "nova_groups_tags": [ + "en:4-ultra-processed-food-and-drink-products" + ], + "additives_n": 3, + "update_key": "nova1", + "nutrition_data_per": "100g", + "link": "", + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.200.jpg", + "image_front_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.400.jpg", + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "manufacturing_places_debug_tags": [], + "brands_debug_tags": [], + "stores_tags": [ + "super-u" + ], + "labels_tags": [ + "en:green-dot" + ], + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:petits-beurres" + ], + "last_editor": "beniben", + "generic_name_fr": "Petits beurre", + "additives_prev_n": 3, + "traces": "Œufs,Fruits à coque,Graines de sésame", + "purchase_places": "Eure-et-Loir,France,Nantes", + "ingredients_n": "15", + "ingredients_hierarchy": [ + "en:wheat-flour", + "en:sugar", + "en:butter", + "fr:lait-ecreme-en-poudre", + "en:milk", + "fr:équivalent _lait_ écrémé", + "en:salt", + "en:raising-agent", + "en:acidity-regulator", + "en:citric-acid", + "en:flavourings", + "en:icing-sugar", + "en:sugar", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium", + "en:sugar", + "fr:amidon-de-mais", + "en:starch" + ], + "emb_codes_20141016": "", + "countries_hierarchy": [ + "en:belgium", + "en:france", + "en:switzerland" + ], + "editors_tags": [ + "date-limite-app", + "openfoodfacts-contributors", + "nissen", + "beniben", + "tacite-mass-editor", + "manu1400", + "sebleouf", + "scanbot" + ], + "labels_prev_hierarchy": [ + "en:green-dot" + ], + "nutrition_grades_tags": [ + "e" + ], + "id": "3017760000109", + "checkers": [], + "_keywords": [ + "lu", + "le", + "veritable", + "et", + "biscuit", + "beurre", + "petit", + "gateaux", + "snack", + "sucre", + "point", + "vert" + ], + "nucleotides_prev_tags": [], + "nova_group_debug": " -- ingredients/en:butter : 3 -- categories/en:sugary-snacks : 4", + "last_edit_dates_tags": [ + "2018-04-10", + "2018-04", + "2018" + ], + "minerals_tags": [], + "allergens": "blé, beurre, lait, lait", + "amino_acids_tags": [], + "emb_codes_tags": [], + "languages_codes": { + "fr": 6 + }, + "generic_name": "Petits beurre", + "no_nutrition_data": "", + "allergens_tags": [ + "en:gluten", + "en:milk" + ], + "complete": 1, + "traces_hierarchy": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds" + ], + "purchase_places_debug_tags": [], + "countries_debug_tags": [], + "allergens_hierarchy": [ + "en:gluten", + "en:milk" + ], + "nutriments": { + "sodium_value": "0.5511811023622046", + "carbohydrates": "73", + "nova-group_100g": "4", + "fiber_value": "3", + "carbohydrates_100g": "73", + "carbohydrates_value": "73", + "saturated-fat_value": "7.6", + "fat_serving": 0.996, + "saturated-fat_100g": 7.6, + "proteins_value": "8", + "proteins": "8", + "sodium": 0.551181102362205, + "salt_value": "1.4", + "salt_serving": 0.116, + "sugars": "23", + "nova-group_serving": "4", + "fiber": "3", + "fiber_serving": 0.249, + "nutrition-score-fr_100g": 20, + "proteins_unit": "g", + "energy_serving": "154", + "sugars_unit": "g", + "sodium_unit": "g", + "nutrition-score-uk_100g": 20, + "energy_value": "1850", + "nova-group": "4", + "carbohydrates_unit": "g", + "nutrition-score-uk": 20, + "energy_unit": "kJ", + "saturated-fat_serving": 0.631, + "saturated-fat": 7.6, + "fiber_unit": "g", + "salt_unit": "g", + "proteins_100g": "8", + "salt": 1.4, + "sugars_100g": "23", + "saturated-fat_unit": "g", + "salt_100g": 1.4, + "fat_unit": "g", + "fat_value": "12", + "sugars_value": "23", + "carbohydrates_serving": 6.06, + "proteins_serving": 0.664, + "fat": "12", + "sodium_100g": 0.551181102362205, + "sodium_serving": 0.0457, + "nutrition-score-fr": 20, + "energy_100g": "1850", + "fat_100g": "12", + "energy": "1850", + "fiber_100g": "3", + "sugars_serving": 1.91 + }, + "labels": "Point Vert", + "scans_n": 303, + "ingredients_ids_debug": [ + "farine-de-ble-73", + "5", + "sucre", + "beurre-13", + "6", + "lait-ecreme-en-poudre-1", + "3", + "equivalent-lait-ecreme-13", + "sel", + "poudre-a-lever", + "carbonate-acide-de-sodium", + "carbonate-acide-d-ammonium", + "correcteur-d-acidite", + "acide-citrique", + "arome", + "sucre-glace", + "sucre", + "amidon-de-mais" + ], + "vitamins_prev_tags": [], + "packaging": "Carton,Plastique", + "serving_size_debug_tags": [], + "creator": "manu1400", + "correctors_tags": [ + "manu1400", + "nissen", + "sebleouf", + "date-limite-app", + "scanbot", + "tacite-mass-editor", + "beniben" + ], + "debug_tags": [ + "43" + ], + "last_modified_by": "beniben", + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:petits-beurres" + ], + "stores": "Super U", + "ingredients": [ + { + "id": "en:wheat-flour", + "text": "Farine de _blé_", + "percent": "73.5", + "rank": 1 + }, + { + "id": "en:sugar", + "rank": 2, + "text": "sucre" + }, + { + "rank": 3, + "percent": "13.6", + "text": "_beurre_", + "id": "en:butter" + }, + { + "percent": "1.3", + "text": "_lait_ écrémé en poudre", + "rank": 4, + "id": "fr:lait-ecreme-en-poudre" + }, + { + "id": "fr:équivalent _lait_ écrémé", + "text": "équivalent _lait_ écrémé", + "percent": "13", + "rank": 5 + }, + { + "text": "sel", + "rank": 6, + "id": "en:salt" + }, + { + "text": "poudre à lever", + "rank": 7, + "id": "en:raising-agent" + }, + { + "id": "en:acidity-regulator", + "text": "correcteur d'acidité", + "rank": 8 + }, + { + "id": "en:citric-acid", + "rank": 9, + "text": "acide citrique" + }, + { + "text": "arôme", + "rank": 10, + "id": "en:flavourings" + }, + { + "text": "sucre glace", + "rank": 11, + "id": "en:icing-sugar" + }, + { + "id": "fr:carbonate-acide-de-sodium", + "text": "carbonate acide de sodium" + }, + { + "id": "fr:carbonate-acide-d-ammonium", + "text": "carbonate acide d'ammonium" + }, + { + "id": "en:sugar", + "text": "sucre" + }, + { + "id": "fr:amidon-de-mais", + "text": "amidon de maïs" + } + ], + "minerals_prev_tags": [], + "emb_codes_orig": "", + "additives_old_n": 3, + "traces_debug_tags": [], + "serving_quantity": 8.3, + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "amino_acids_prev_tags": [], + "countries_beforescanbot": "France", + "ingredients_tags": [ + "en:wheat-flour", + "en:sugar", + "en:butter", + "fr:lait-ecreme-en-poudre", + "en:milk", + "fr:equivalent-lait-ecreme", + "en:salt", + "en:raising-agent", + "en:acidity-regulator", + "en:citric-acid", + "en:flavourings", + "en:icing-sugar", + "en:sugar", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium", + "en:sugar", + "fr:amidon-de-mais", + "en:starch" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.100.jpg", + "quantity_debug_tags": [], + "nutrition_grades": "e", + "emb_codes_debug_tags": [], + "additives_debug_tags": [ + "en-e500ii-added", + "en-e503ii-added" + ], + "additives_tags": [ + "en:e330", + "en:e500", + "en:e500ii", + "en:e503", + "en:e503ii" + ], + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.200.jpg", + "code": "3017760000109", + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.100.jpg", + "informers": [ + "manu1400" + ], + "photographers": [], + "checkers_tags": [], + "ingredients_debug": [ + "Farine de _blé_ 73", + ",", + null, + null, + "5 %", + ",", + null, + null, + " sucre", + ",", + null, + null, + " _beurre_ 13", + ",", + null, + null, + "6 %", + ",", + null, + null, + " _lait_ écrémé en poudre 1", + ",", + null, + null, + "3 % ", + "(", + null, + null, + "équivalent _lait_ écrémé 13 %)", + ",", + null, + null, + " sel", + ",", + null, + null, + " poudre à lever ", + ":", + null, + null, + " ", + "(", + null, + null, + "carbonate acide de sodium", + ",", + null, + null, + " carbonate acide d'ammonium)", + ",", + null, + null, + " correcteur d'acidité ", + ":", + null, + null, + " ", + "(", + null, + null, + "acide citrique)", + ",", + null, + null, + " arôme", + ",", + null, + null, + " sucre glace ", + "(", + null, + null, + "sucre", + ",", + null, + null, + " amidon de maïs)" + ], + "quantity": "200 g e", + "image_small_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.200.jpg", + "languages": { + "en:french": 6 + }, + "emb_codes": "", + "countries_tags": [ + "en:belgium", + "en:france", + "en:switzerland" + ], + "nutrition_data_prepared_per": "100g", + "origins_tags": [], + "stores_debug_tags": [], + "unknown_ingredients_n": 1, + "cities_tags": [], + "pnns_groups_2": "Biscuits and cakes", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.100.jpg", + "origins": "", + "labels_prev_tags": [ + "en:green-dot" + ], + "traces_tags": [ + "en:eggs", + "en:nuts", + "en:sesame-seeds" + ], + "fruits-vegetables-nuts_100g_estimate": 0, + "rev": 24, + "correctors": [ + "manu1400" + ], + "manufacturing_places_tags": [], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "ingredients_from_palm_oil_n": 0, + "last_image_t": 1457686800, + "manufacturing_places": "", + "photographers_tags": [ + "nissen", + "openfoodfacts-contributors" + ], + "additives_prev": " [ farine-de-ble-73 -> fr:farine-de-ble-73 ] [ farine-de-ble -> fr:farine-de-ble ] [ farine-de -> fr:farine-de ] [ farine -> fr:farine ] [ 5 -> en:fd-c ] [ sucre -> fr:sucre ] [ beurre-13 -> fr:beurre-13 ] [ beurre -> fr:beurre ] [ 6 -> en:fd-c ] [ lait-ecreme-en-poudre-1 -> fr:lait-ecreme-en-poudre-1 ] [ lait-ecreme-en-poudre -> fr:lait-ecreme-en-poudre ] [ lait-ecreme-en -> fr:lait-ecreme-en ] [ lait-ecreme -> fr:lait-ecreme ] [ lait -> fr:lait ] [ 3 -> en:fd-c ] [ equivalent-lait-ecreme-13 -> fr:equivalent-lait-ecreme-13 ] [ equivalent-lait-ecreme -> fr:equivalent-lait-ecreme ] [ equivalent-lait -> fr:equivalent-lait ] [ equivalent -> fr:equivalent ] [ sel -> fr:sel ] [ poudre-a-lever -> fr:poudre-a-lever ] [ poudre-a -> fr:poudre-a ] [ poudre -> fr:poudre ] [ carbonate-acide-de-sodium -> en:e500 -> exists -- ok ] [ carbonate-acide-d-ammonium -> en:e503 -> exists -- ok ] [ correcteur-d-acidite -> fr:correcteur-d-acidite ] [ correcteur-d -> fr:correcteur-d ] [ correcteur -> fr:correcteur ] [ acide-citrique -> en:e330 -> exists -- ok ] [ arome -> fr:arome ] [ sucre-glace -> fr:sucre-glace ] [ sucre -> fr:sucre ] [ sucre -> fr:sucre ] [ amidon-de-mais -> fr:amidon-de-mais ] [ amidon-de -> fr:amidon-de ] [ amidon -> fr:amidon ] ", + "languages_tags": [ + "en:french", + "en:1" + ], + "product_name_fr": "Le Véritable Petit Beurre", + "ingredients_original_tags": [ + "en:wheat-flour", + "en:sugar", + "en:butter", + "fr:lait-ecreme-en-poudre", + "fr:équivalent _lait_ écrémé", + "en:salt", + "en:raising-agent", + "en:acidity-regulator", + "en:citric-acid", + "en:flavourings", + "en:icing-sugar", + "fr:carbonate-acide-de-sodium", + "fr:carbonate-acide-d-ammonium", + "en:sugar", + "fr:amidon-de-mais" + ], + "last_image_dates_tags": [ + "2016-03-11", + "2016-03", + "2016" + ], + "brands_tags": [ + "lu" + ], + "link_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "selected_images": { + "front": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.400.jpg" + } + }, + "nutrition": { + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.100.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/nutrition_fr.23.200.jpg" + } + }, + "ingredients": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.400.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.200.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.100.jpg" + } + } + }, + "new_additives_n": 3, + "additives_prev_tags": [ + "en:e330", + "en:e500", + "en:e503" + ], + "nutrient_levels": { + "sugars": "high", + "fat": "moderate", + "salt": "moderate", + "saturated-fat": "high" + }, + "additives_old_tags": [ + "en:e500", + "en:e503", + "en:e330" + ], + "debug_param_sorted_langs": [ + "fr" + ], + "ingredients_text_fr": "Farine de _blé_ 73,5 %, sucre, _beurre_ 13,6 %, _lait_ écrémé en poudre 1,3 % (équivalent _lait_ écrémé 13 %), sel, poudre à lever (carbonate acide de sodium, carbonate acide d'ammonium), correcteur d'acidité (acide citrique), arôme, sucre glace (sucre, amidon de maïs)", + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "pnns_groups_1": "Sugary snacks", + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "countries": "Belgique,France,Suisse", + "generic_name_fr_debug_tags": [], + "ingredients_that_may_be_from_palm_oil_tags": [], + "_id": "3017760000109", + "last_modified_t": 1523339117, + "editors": [ + "sebleouf", + "nissen", + "manu1400" + ], + "completed_t": 1426072606, + "codes_tags": [ + "code-13", + "3017760000109", + "301776000010x", + "30177600001xx", + "3017760000xxx", + "301776000xxxx", + "30177600xxxxx", + "3017760xxxxxx", + "301776xxxxxxx", + "30177xxxxxxxx", + "3017xxxxxxxxx", + "301xxxxxxxxxx", + "30xxxxxxxxxxx", + "3xxxxxxxxxxxx" + ], + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.400.jpg", + "ingredients_from_or_that_may_be_from_palm_oil_n": 0, + "image_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.400.jpg", + "product_name": "Le Véritable Petit Beurre", + "unknown_nutrients_tags": [], + "expiration_date_debug_tags": [], + "labels_debug_tags": [], + "lang_debug_tags": [], + "ingredients_n_tags": [ + "15", + "11-20" + ], + "nucleotides_tags": [], + "created_t": 1341146799, + "sortkey": 1523339117, + "categories_debug_tags": [], + "packaging_debug_tags": [], + "ingredients_text_fr_debug_tags": [], + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "fr:petits-beurres" + ], + "ingredients_from_palm_oil_tags": [], + "entry_dates_tags": [ + "2012-07-01", + "2012-07", + "2012" + ], + "serving_size": "8,3 g", + "lang": "fr", + "product_name_fr_debug_tags": [], + "origins_debug_tags": [], + "informers_tags": [ + "manu1400", + "nissen", + "sebleouf" + ], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "nutrition_data_per_debug_tags": [], + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "ingredients_text_with_allergens_fr": "Farine de blé 73,5 %, sucre, beurre 13,6 %, lait écrémé en poudre 1,3 % (équivalent lait écrémé 13 %), sel, poudre à lever (carbonate acide de sodium, carbonate acide d'ammonium), correcteur d'acidité (acide citrique), arôme, sucre glace (sucre, amidon de maïs)", + "lc": "fr", + "additives_prev_original_tags": [ + "en:e500", + "en:e503", + "en:e330" + ], + "nutrition_score_debug": " -- energy 5 + sat-fat 7 + fr-sat-fat-for-fats 9 + sugars 5 + sodium 6 - fruits 0% 0 - fiber 3 - proteins 4 -- fsa 20 -- fr 20", + "nutrition_data": "on", + "max_imgid": "5", + "nova_groups": "4", + "labels_hierarchy": [ + "en:green-dot" + ], + "ingredients_text_debug": "Farine de _blé_ 73,5 %, sucre, _beurre_ 13,6 %, _lait_ écrémé en poudre 1,3 % (équivalent _lait_ écrémé 13 %), sel, poudre à lever : (carbonate acide de sodium, carbonate acide d'ammonium), correcteur d'acidité : (acide citrique), arôme, sucre glace (sucre, amidon de maïs)", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/front_fr.13.200.jpg", + "vitamins_tags": [], + "nutrition_data_prepared": "", + "packaging_tags": [ + "carton", + "plastique" + ], + "nutrition_grade_fr": "e", + "brands": "LU", + "expiration_date": "07/2015", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/301/776/000/0109/ingredients_fr.22.100.jpg", + "quality_tags": [ + "quantity-contains-e", + "quantity-not-recognized" + ], + "purchase_places_tags": [ + "eure-et-loir", + "france", + "nantes" + ], + "ingredients_text": "Farine de _blé_ 73,5 %, sucre, _beurre_ 13,6 %, _lait_ écrémé en poudre 1,3 % (équivalent _lait_ écrémé 13 %), sel, poudre à lever (carbonate acide de sodium, carbonate acide d'ammonium), correcteur d'acidité (acide citrique), arôme, sucre glace (sucre, amidon de maïs)", + "unique_scans_n": 265, + "nova_group": "4", + "nutrition_data_prepared_per_debug_tags": [], + "interface_version_modified": "20120622" + }, + "code": "3017760000109" +} diff --git a/openclassrooms-trainings/pytestdiscovering/sample/product-8410000810004.json b/openclassrooms-trainings/pytestdiscovering/sample/product-8410000810004.json new file mode 100644 index 0000000..7291e40 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/sample/product-8410000810004.json @@ -0,0 +1,1573 @@ +{ + "status": 1, + "status_verbose": "product found", + "product": { + "image_small_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.200.jpg", + "product_name_debug_tags": [], + "creator": "minouche", + "categories_prev_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "es:sandwich-cookies" + ], + "complete": 1, + "nucleotides_tags": [], + "traces": "Leche", + "categories_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "es:Sandwich cookies" + ], + "misc_tags": [ + "en:nutrition-no-fruits-vegetables-nuts", + "en:nutrition-no-fiber-or-fruits-vegetables-nuts", + "en:nutriscore-computed" + ], + "categories_tags": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "es:sandwich-cookies" + ], + "additives_prev_n": 4, + "sortkey": 1531912348, + "pnns_groups_2_tags": [ + "biscuits-and-cakes" + ], + "last_image_t": 1530451407, + "allergens_tags": [ + "en:gluten", + "en:soybeans" + ], + "serving_size": "11 g", + "image_front_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.400.jpg", + "ingredients_text_en": "", + "additives_n": 4, + "traces_tags": [ + "fr:leche" + ], + "countries_tags": [ + "en:belgium", + "en:canada", + "en:denmark", + "en:france", + "en:germany", + "en:morocco", + "en:spain", + "en:switzerland" + ], + "ingredients_text_debug": "Farine de _blé_, sucre, huiles végétales (palme, palmiste), cacao maigre en poudre 4.6%, amidon de _blé_, sirop de glucose-fructose, poudre à lever : (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants : (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "sources": [ + { + "fields": [ + "ingredients_text_de" + ], + "import_t": 1486496598, + "images": [ + "16", + "17", + "18" + ], + "url": "https://www.openfood.ch/en/products/3554", + "id": "openfood-ch" + } + ], + "completed_t": 1337034374, + "last_editor": "neptuno", + "additives_original_tags": [ + "en:e501ii", + "en:e503ii", + "en:e500ii", + "en:e322i" + ], + "packaging": "Carton,Plastique,Étui carton,Sachet plastique,PAP 21,Boite", + "additives_prev_tags": [ + "en:e322", + "en:e500", + "en:e501", + "en:e503" + ], + "additives_tags": [ + "en:e322", + "en:e322i", + "en:e500", + "en:e500ii", + "en:e501", + "en:e501ii", + "en:e503", + "en:e503ii" + ], + "purchase_places_debug_tags": [], + "brands_debug_tags": [], + "last_modified_t": 1531912348, + "informers": [ + "manu1400" + ], + "ingredients_n_tags": [ + "17", + "11-20" + ], + "lang_debug_tags": [], + "last_edit_dates_tags": [ + "2018-07-18", + "2018-07", + "2018" + ], + "labels_hierarchy": [ + "en:green-dot", + "es:Tidy man" + ], + "nucleotides_prev_tags": [], + "ingredients_that_may_be_from_palm_oil_n": 0, + "product_name_es": "Oreo original", + "ingredients_text_with_allergens_en": "", + "ingredients": [ + { + "text": "Farine de _blé_", + "rank": 1, + "id": "farine-de-ble" + }, + { + "id": "sucre", + "text": "sucre", + "rank": 2 + }, + { + "rank": 3, + "text": "huiles végétales", + "id": "huiles-vegetales" + }, + { + "id": "cacao-maigre-en-poudre", + "rank": 4, + "percent": "4.6", + "text": "cacao maigre en poudre" + }, + { + "text": "amidon de _blé_", + "rank": 5, + "id": "amidon-de-ble" + }, + { + "id": "sirop-de-glucose-fructose", + "text": "sirop de glucose-fructose", + "rank": 6 + }, + { + "id": "poudre-a-lever", + "text": "poudre à lever", + "rank": 7 + }, + { + "rank": 8, + "text": "sel", + "id": "sel" + }, + { + "id": "emulsifiants", + "rank": 9, + "text": "émulsifiants" + }, + { + "id": "arome-vanille", + "rank": 10, + "text": "arôme vanille" + }, + { + "text": "palme", + "id": "palme" + }, + { + "id": "palmiste", + "text": "palmiste" + }, + { + "text": "carbonate acide de potassium", + "id": "carbonate-acide-de-potassium" + }, + { + "text": "carbonate acide d'ammonium", + "id": "carbonate-acide-d-ammonium" + }, + { + "text": "carbonate acide de sodium", + "id": "carbonate-acide-de-sodium" + }, + { + "id": "lecithine-de-soja", + "text": "lécithine de _soja_" + }, + { + "id": "lecithine-de-tournesol", + "text": "lécithine de tournesol" + } + ], + "stores_debug_tags": [], + "nutrition_data_per": "100g", + "ingredients_text_fr_debug_tags": [], + "correctors": [ + "manu1400" + ], + "nutrition_data_per_debug_tags": [], + "expiration_date": "12/2016", + "brands_tags": [ + "oreo", + "mondelez" + ], + "ingredients_debug": [ + "Farine de _blé_", + ",", + null, + null, + null, + " sucre", + ",", + null, + null, + null, + " huiles végétales ", + "(", + "(", + null, + null, + "palme", + ",", + null, + null, + null, + " palmiste)", + ",", + null, + null, + null, + " cacao maigre en poudre 4.6%", + ",", + null, + null, + null, + " amidon de _blé_", + ",", + null, + null, + null, + " sirop de glucose-fructose", + ",", + null, + null, + null, + " poudre à lever ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "carbonate acide de potassium", + ",", + null, + null, + null, + " carbonate acide d'ammonium", + ",", + null, + null, + null, + " carbonate acide de sodium)", + ",", + null, + null, + null, + " sel", + ",", + null, + null, + null, + " émulsifiants ", + ":", + ":", + null, + null, + " ", + "(", + "(", + null, + null, + "lécithine de _soja_", + ",", + null, + null, + null, + " lécithine de tournesol)", + ",", + null, + null, + null, + " arôme vanille." + ], + "pnns_groups_1_tags": [ + "sugary-snacks" + ], + "lc": "fr", + "informers_tags": [ + "minouche", + "smias", + "tacite", + "aleene", + "openfood-ch-import", + "tacite-mass-editor", + "neptuno" + ], + "image_front_thumb_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.100.jpg", + "product_name_de_debug_tags": [], + "debug_tags": [ + "43" + ], + "countries": "Bélgica,Canadá,Dinamarca,Francia,Alemania,Marruecos,España,Suiza", + "photographers": [ + "manu1400" + ], + "ingredients_text_with_allergens_fr": "Farine de blé, sucre, huiles végétales (palme, palmiste), cacao maigre en poudre 4.6%, amidon de blé, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de soja, lécithine de tournesol), arôme vanille.", + "ingredients_text_de_debug_tags": [], + "countries_hierarchy": [ + "en:belgium", + "en:canada", + "en:denmark", + "en:france", + "en:germany", + "en:morocco", + "en:spain", + "en:switzerland" + ], + "languages_tags": [ + "en:french", + "en:german", + "en:spanish", + "en:english", + "en:4", + "en:multilingual" + ], + "generic_name": "Biscuits cacaotés, fourrés goût vanille 29 %", + "amino_acids_tags": [], + "no_nutrition_data": "", + "nutrition_score_debug": " -- energy 5 + sat-fat 9 + fr-sat-fat-for-fats 7 + sugars 8 + sodium 3 - fruits 0% 0 - fiber 2 - proteins 3 -- fsa 23 -- fr 23", + "nutrition_grades_tags": [ + "e" + ], + "created_t": 1337033518, + "minerals_prev_tags": [], + "nutrition_score_warning_no_fruits_vegetables_nuts": 1, + "labels_tags": [ + "en:green-dot", + "es:tidy-man" + ], + "selected_images": { + "nutrition": { + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.100.jpg" + }, + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.200.jpg" + } + }, + "ingredients": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.200.jpg", + "es": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_es.75.200.jpg", + "de": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_de.74.200.jpg" + }, + "display": { + "de": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_de.74.400.jpg", + "es": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_es.75.400.jpg", + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.400.jpg" + }, + "thumb": { + "de": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_de.74.100.jpg", + "es": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_es.75.100.jpg", + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.100.jpg" + } + }, + "front": { + "small": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.200.jpg" + }, + "display": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.400.jpg" + }, + "thumb": { + "fr": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.100.jpg" + } + } + }, + "serving_quantity": 11, + "interface_version_modified": "20120622", + "image_front_small_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.200.jpg", + "additives_debug_tags": [ + "en-e322i-added", + "en-e500ii-added", + "en-e501ii-added", + "en-e503ii-added" + ], + "allergens_from_ingredients": "blé, blé, soja", + "ingredients_text_es": "Harina de _trigo_, azúcar, grasas vegetales (palma, palmiste), cacao desgrasado en polvo 4,6%, almidón de _trigo_, jarabe de glucosa-fructosa, gasificantes (carbonato ácido de potasio, carbonato ácido de amonio, carbonato ácido de sodio), sal, emulgentes (lecitina de _soja_, lecitina de girasol), aromas (vainillina).", + "product_name_fr": "Biscuit Oreo", + "ingredients_text_with_allergens_es": "Harina de trigo, azúcar, grasas vegetales (palma, palmiste), cacao desgrasado en polvo 4,6%, almidón de trigo, jarabe de glucosa-fructosa, gasificantes (carbonato ácido de potasio, carbonato ácido de amonio, carbonato ácido de sodio), sal, emulgentes (lecitina de soja, lecitina de girasol), aromas (vainillina).", + "allergens_hierarchy": [ + "en:gluten", + "en:soybeans" + ], + "ingredients_text_es_debug_tags": [], + "additives_prev_original_tags": [ + "en:e501", + "en:e503", + "en:e500", + "en:e322" + ], + "allergens_debug_tags": [], + "new_additives_n": 3, + "ingredients_text_with_allergens": "Farine de blé, sucre, huiles végétales (palme, palmiste), cacao maigre en poudre 4.6%, amidon de blé, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de soja, lécithine de tournesol), arôme vanille.", + "code": "8410000810004", + "product_name_fr_debug_tags": [], + "nutriments": { + "saturated-fat": 9.8, + "nutrition-score-fr_100g": "23", + "proteins_100g": "5", + "nutrition-score-fr": "23", + "energy_100g": "2008", + "sodium_serving": 0.039, + "fat_serving": 2.2, + "proteins": "5", + "salt_100g": 0.9, + "fiber_serving": 0.275, + "proteins_unit": "g", + "sodium_unit": "g", + "sodium_value": "0.354330708661417", + "carbohydrates_serving": 7.59, + "sodium_100g": 0.354330708661417, + "carbohydrates_value": "69", + "fiber_unit": "g", + "sugars_unit": "g", + "carbohydrates": "69", + "energy_value": "480", + "saturated-fat_100g": 9.8, + "sugars_100g": "38", + "sugars_value": "38", + "fiber": 2.5, + "fat_value": "20", + "saturated-fat_serving": 1.08, + "energy_unit": "kcal", + "fat": "20", + "salt_unit": "g", + "sugars_serving": 4.18, + "carbohydrates_100g": "69", + "carbohydrates_unit": "g", + "energy_serving": "221", + "proteins_value": "5", + "fiber_value": "2.5", + "saturated-fat_value": "9.8", + "salt_value": "0.9", + "energy": "2008", + "salt": 0.9, + "saturated-fat_unit": "g", + "sodium": 0.354330708661417, + "fat_unit": "g", + "fat_100g": "20", + "nutrition-score-uk_100g": "23", + "salt_serving": 0.099, + "nutrition-score-uk": "23", + "sugars": "38", + "proteins_serving": 0.55, + "fiber_100g": 2.5 + }, + "image_ingredients_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.400.jpg", + "nutrition_data": "on", + "additives_old_n": 4, + "image_nutrition_thumb_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.100.jpg", + "max_imgid": "27", + "ingredients_from_or_that_may_be_from_palm_oil_n": 1, + "_keywords": [ + "tidy", + "snack", + "29", + "biscuit", + "punto", + "dulce", + "pastele", + "sandwich", + "fourre", + "cookie", + "verde", + "cacaote", + "galleta", + "vanille", + "chocolate", + "mondelez", + "man", + "oreo", + "gout" + ], + "languages_codes": { + "fr": 6, + "de": 2, + "es": 4, + "en": 1 + }, + "product_name_de": "", + "purchase_places_tags": [ + "france", + "gap", + "05000" + ], + "traces_debug_tags": [], + "product_name_en_debug_tags": [], + "image_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.400.jpg", + "emb_codes": "", + "generic_name_es_debug_tags": [], + "traces_from_ingredients": "", + "ingredients_text": "Farine de _blé_, sucre, huiles végétales (palme, palmiste), cacao maigre en poudre 4.6%, amidon de _blé_, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "quantity": "176 g", + "photographers_tags": [ + "minouche", + "smias", + "tacite", + "openfoodfacts-contributors", + "aleene", + "lepetitkorrigan", + "openfood-ch-import", + "kiliweb" + ], + "images": { + "1": { + "uploaded_t": 1337033518, + "uploader": "minouche", + "sizes": { + "100": { + "w": 100, + "h": 65 + }, + "400": { + "w": 344, + "h": 224 + }, + "full": { + "w": 344, + "h": 224 + } + } + }, + "2": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "h": 1500, + "w": 2000 + } + }, + "uploader": "minouche", + "uploaded_t": 1337033534 + }, + "3": { + "uploader": "minouche", + "uploaded_t": 1337034006, + "sizes": { + "100": { + "w": 100, + "h": 16 + }, + "400": { + "h": 63, + "w": 400 + }, + "full": { + "w": 1007, + "h": 159 + } + } + }, + "4": { + "uploader": "minouche", + "uploaded_t": 1337034266, + "sizes": { + "100": { + "w": 100, + "h": 35 + }, + "400": { + "w": 400, + "h": 140 + }, + "full": { + "h": 315, + "w": 897 + } + } + }, + "5": { + "uploader": "smias", + "uploaded_t": 1383766113, + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1944 + } + } + }, + "6": { + "sizes": { + "100": { + "h": 28, + "w": 100 + }, + "400": { + "h": 111, + "w": 400 + }, + "full": { + "h": 410, + "w": 1472 + } + }, + "uploader": "tacite", + "uploaded_t": 1410022156 + }, + "7": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 1632, + "h": 1224 + } + }, + "uploaded_t": 1410022266, + "uploader": "tacite" + }, + "8": { + "sizes": { + "100": { + "w": 100, + "h": 30 + }, + "400": { + "w": 400, + "h": 121 + }, + "full": { + "w": 4032, + "h": 1221 + } + }, + "uploaded_t": "1451764732", + "uploader": "tacite" + }, + "9": { + "uploaded_t": "1451764732", + "uploader": "tacite", + "sizes": { + "100": { + "w": 100, + "h": 57 + }, + "400": { + "h": 229, + "w": 400 + }, + "full": { + "h": 2188, + "w": 3828 + } + } + }, + "10": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 4032, + "h": 3024 + } + }, + "uploaded_t": "1451764734", + "uploader": "tacite" + }, + "11": { + "sizes": { + "100": { + "w": 75, + "h": 100 + }, + "400": { + "w": 300, + "h": 400 + }, + "full": { + "h": 4032, + "w": 3024 + } + }, + "uploader": "tacite", + "uploaded_t": "1451764735" + }, + "12": { + "uploaded_t": "1457633322", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "h": 1936, + "w": 2592 + } + } + }, + "13": { + "uploader": "aleene", + "uploaded_t": "1459346853", + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "w": 3264, + "h": 2448 + } + } + }, + "14": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "w": 225, + "h": 400 + }, + "full": { + "h": 2000, + "w": 1125 + } + }, + "uploaded_t": "1474787089", + "uploader": "openfoodfacts-contributors" + }, + "15": { + "sizes": { + "100": { + "w": 100, + "h": 75 + }, + "400": { + "h": 300, + "w": 400 + }, + "full": { + "w": 2000, + "h": 1500 + } + }, + "uploader": "lepetitkorrigan", + "uploaded_t": "1484827224" + }, + "16": { + "uploaded_t": 1486496597, + "uploader": "openfood-ch-import", + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 1000, + "w": 563 + } + } + }, + "17": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "h": 1000, + "w": 563 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486496598 + }, + "18": { + "sizes": { + "100": { + "h": 100, + "w": 56 + }, + "400": { + "h": 400, + "w": 225 + }, + "full": { + "w": 563, + "h": 1000 + } + }, + "uploader": "openfood-ch-import", + "uploaded_t": 1486496598 + }, + "19": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 300 + }, + "full": { + "h": 2448, + "w": 3264 + } + }, + "uploaded_t": "1502250882", + "uploader": "openfoodfacts-contributors" + }, + "20": { + "sizes": { + "100": { + "h": 100, + "w": 75 + }, + "400": { + "h": 400, + "w": 300 + }, + "full": { + "w": 3024, + "h": 4032 + } + }, + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1516801919" + }, + "21": { + "uploaded_t": "1470822522", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1936 + } + } + }, + "22": { + "uploader": "openfoodfacts-contributors", + "uploaded_t": "1470822593", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1936 + } + } + }, + "23": { + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "w": 400, + "h": 299 + }, + "full": { + "w": 2592, + "h": 1936 + } + }, + "uploaded_t": "1470822615", + "uploader": "openfoodfacts-contributors" + }, + "24": { + "uploaded_t": "1470822626", + "uploader": "openfoodfacts-contributors", + "sizes": { + "100": { + "h": 75, + "w": 100 + }, + "400": { + "h": 299, + "w": 400 + }, + "full": { + "w": 2592, + "h": 1936 + } + } + }, + "25": { + "uploader": "kiliweb", + "uploaded_t": "1527591233", + "sizes": { + "100": { + "w": 51, + "h": 100 + }, + "400": { + "h": 400, + "w": 205 + }, + "full": { + "h": 1200, + "w": 616 + } + } + }, + "26": { + "sizes": { + "100": { + "w": 93, + "h": 100 + }, + "400": { + "w": 373, + "h": 400 + }, + "full": { + "w": 1118, + "h": 1200 + } + }, + "uploaded_t": "1527591234", + "uploader": "kiliweb" + }, + "27": { + "uploader": "kiliweb", + "uploaded_t": 1530451405, + "sizes": { + "100": { + "w": 52, + "h": 100 + }, + "400": { + "h": 400, + "w": 206 + }, + "full": { + "h": 1200, + "w": 619 + } + } + }, + "nutrition": { + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 37 + }, + "200": { + "h": 75, + "w": 200 + }, + "400": { + "w": 400, + "h": 149 + }, + "full": { + "h": 1219, + "w": 3265 + } + }, + "geometry": "3265x1219-504-1006", + "white_magic": "false", + "rev": "34", + "imgid": "10" + }, + "ingredients_fr": { + "rev": "73", + "white_magic": "false", + "angle": "90", + "sizes": { + "100": { + "h": 13, + "w": 100 + }, + "200": { + "h": 25, + "w": 200 + }, + "400": { + "h": 50, + "w": 400 + }, + "full": { + "h": 147, + "w": 1173 + } + }, + "x1": "3.25", + "imgid": "26", + "geometry": "1173x147-9-629", + "y2": "259.0500030517578", + "y1": "210.0500030517578", + "x2": "394.25", + "normalize": "false" + }, + "front": { + "geometry": "3068x1656-130-243", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 54 + }, + "200": { + "h": 108, + "w": 200 + }, + "400": { + "h": 216, + "w": 400 + }, + "full": { + "h": 1656, + "w": 3068 + } + }, + "imgid": "13", + "rev": "41", + "white_magic": "false" + }, + "ingredients": { + "geometry": "2722x413-110-2336", + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 15 + }, + "200": { + "w": 200, + "h": 30 + }, + "400": { + "h": 61, + "w": 400 + }, + "full": { + "w": 2722, + "h": 413 + } + }, + "imgid": "11", + "rev": "35", + "white_magic": "false" + }, + "ingredients_es": { + "imgid": "26", + "x1": "10", + "y2": "97.04998779296875", + "y1": "40.04998779296875", + "geometry": "1134x170-30-120", + "x2": "388", + "normalize": "false", + "angle": "90", + "rev": "75", + "white_magic": "false", + "sizes": { + "100": { + "h": 15, + "w": 100 + }, + "200": { + "w": 200, + "h": 30 + }, + "400": { + "w": 400, + "h": 60 + }, + "full": { + "w": 1134, + "h": 170 + } + } + }, + "front_fr": { + "sizes": { + "100": { + "w": 100, + "h": 52 + }, + "200": { + "h": 103, + "w": 200 + }, + "400": { + "h": 206, + "w": 400 + }, + "full": { + "w": 1200, + "h": 619 + } + }, + "rev": "77", + "white_magic": "false", + "angle": "270", + "x2": "0", + "normalize": "false", + "geometry": "0x0-0-0", + "y2": "0", + "y1": "0", + "x1": "0", + "imgid": "27" + }, + "ingredients_de": { + "x2": "398", + "normalize": "false", + "y2": "215.0500030517578", + "y1": "162.0500030517578", + "geometry": "1167x159-27-485", + "imgid": "26", + "x1": "9", + "sizes": { + "100": { + "h": 14, + "w": 100 + }, + "200": { + "h": 27, + "w": 200 + }, + "400": { + "h": 54, + "w": 400 + }, + "full": { + "h": 159, + "w": 1167 + } + }, + "angle": "90", + "rev": "74", + "white_magic": "false" + }, + "nutrition_fr": { + "normalize": "false", + "sizes": { + "100": { + "w": 100, + "h": 37 + }, + "200": { + "h": 75, + "w": 200 + }, + "400": { + "w": 400, + "h": 149 + }, + "full": { + "h": 1219, + "w": 3265 + } + }, + "geometry": "3265x1219-504-1006", + "white_magic": "false", + "rev": "34", + "imgid": "10" + } + }, + "states_tags": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "unknown_nutrients_tags": [], + "languages": { + "en:english": 1, + "en:french": 6, + "en:german": 2, + "en:spanish": 4 + }, + "serving_size_debug_tags": [], + "emb_codes_debug_tags": [], + "rev": 79, + "unique_scans_n": 309, + "quality_tags": [ + "ingredients-de-4-consonants" + ], + "generic_name_en": "", + "update_key": "20180706-categories", + "entry_dates_tags": [ + "2012-05-15", + "2012-05", + "2012" + ], + "nutrient_levels_tags": [ + "en:fat-in-moderate-quantity", + "en:saturated-fat-in-high-quantity", + "en:sugars-in-high-quantity", + "en:salt-in-moderate-quantity" + ], + "image_ingredients_small_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.200.jpg", + "link_debug_tags": [], + "brands": "Oreo,Mondelez", + "origins_debug_tags": [], + "states_hierarchy": [ + "en:to-be-checked", + "en:complete", + "en:nutrition-facts-completed", + "en:ingredients-completed", + "en:expiration-date-completed", + "en:packaging-code-to-be-completed", + "en:characteristics-completed", + "en:categories-completed", + "en:brands-completed", + "en:packaging-completed", + "en:quantity-completed", + "en:product-name-completed", + "en:photos-validated", + "en:photos-uploaded" + ], + "origins_tags": [], + "additives": " [ farine-de-ble -> fr:farine-de-ble ] [ farine-de -> fr:farine-de ] [ farine -> fr:farine ] [ sucre -> fr:sucre ] [ huiles-vegetales -> fr:huiles-vegetales ] [ huiles -> fr:huiles ] [ palme -> fr:palme ] [ palmiste -> fr:palmiste ] [ cacao-maigre-en-poudre-4-6 -> fr:cacao-maigre-en-poudre-4-6 ] [ cacao-maigre-en-poudre-4 -> fr:cacao-maigre-en-poudre-4 ] [ cacao-maigre-en-poudre -> fr:cacao-maigre-en-poudre ] [ cacao-maigre-en -> fr:cacao-maigre-en ] [ cacao-maigre -> fr:cacao-maigre ] [ cacao -> fr:cacao ] [ amidon-de-ble -> fr:amidon-de-ble ] [ amidon-de -> fr:amidon-de ] [ amidon -> fr:amidon ] [ sirop-de-glucose-fructose -> fr:sirop-de-glucose-fructose ] [ sirop-de-glucose -> fr:sirop-de-glucose ] [ sirop-de -> fr:sirop-de ] [ sirop -> fr:sirop ] [ poudre-a-lever -> fr:poudre-a-lever ] [ poudre-a -> fr:poudre-a ] [ poudre -> fr:poudre ] [ carbonate-acide-de-potassium -> en:e501ii -> exists -- ok ] [ carbonate-acide-d-ammonium -> en:e503ii -> exists -- ok ] [ carbonate-acide-de-sodium -> en:e500ii -> exists -- ok ] [ sel -> fr:sel ] [ emulsifiants -> fr:emulsifiants ] [ lecithine-de-soja -> fr:lecithine-de-soja ] [ lecithine-de -> fr:lecithine-de ] [ lecithine -> en:e322i -> exists -- ok ] [ lecithine-de-tournesol -> fr:lecithine-de-tournesol ] [ lecithine-de -> fr:lecithine-de ] [ lecithine -> en:e322i -- already seen ] [ arome-vanille -> fr:arome-vanille ] [ arome -> fr:arome ] ", + "nutrition_grades": "e", + "ingredients_n": "17", + "generic_name_fr_debug_tags": [], + "additives_old_tags": [ + "en:e501", + "en:e503", + "en:e500", + "en:e322" + ], + "nutrition_data_prepared_per": "100g", + "fruits-vegetables-nuts_100g_estimate": 0, + "manufacturing_places_tags": [ + "republique-tcheque" + ], + "emb_code": "", + "ingredients_from_palm_oil_n": 1, + "manufacturing_places": "République Tchèque", + "image_ingredients_thumb_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/ingredients_fr.73.100.jpg", + "ingredients_text_fr": "Farine de _blé_, sucre, huiles végétales (palme, palmiste), cacao maigre en poudre 4.6%, amidon de _blé_, sirop de glucose-fructose, poudre à lever (carbonate acide de potassium, carbonate acide d'ammonium, carbonate acide de sodium), sel, émulsifiants (lécithine de _soja_, lécithine de tournesol), arôme vanille.", + "ingredients_hierarchy": [ + "fr:farine-de-ble", + "en:sugar", + "fr:huile-vegetale", + "fr:cacao-maigre-en-poudre", + "fr:amidon-de-ble", + "fr:sirop-de-glucose-fructose", + "fr:poudre-a-lever", + "en:salt", + "fr:emulsifiant", + "fr:arome-vanille", + "fr:palme", + "fr:palmiste", + "fr:carbonate-acide-de-potassium", + "fr:carbonate-acide-d-ammonium", + "fr:carbonate-acide-de-sodium", + "fr:lecithine-de-soja", + "fr:lecithine-de-tournesol" + ], + "nutrition_grade_fr": "e", + "product_name": "Biscuit Oreo", + "labels_prev_hierarchy": [ + "en:green-dot", + "es:Tidy man" + ], + "nutrient_levels": { + "saturated-fat": "high", + "salt": "moderate", + "fat": "moderate", + "sugars": "high" + }, + "ingredients_from_palm_oil_tags": [ + "huile-de-palme" + ], + "last_image_dates_tags": [ + "2018-07-01", + "2018-07", + "2018" + ], + "manufacturing_places_debug_tags": [], + "packaging_debug_tags": [], + "scans_n": 350, + "debug_param_sorted_langs": [ + "fr", + "de", + "en", + "es" + ], + "generic_name_fr": "Biscuits cacaotés, fourrés goût vanille 29 %", + "cities_tags": [], + "allergens": "Gluten,Soja", + "quantity_debug_tags": [], + "labels_debug_tags": [], + "amino_acids_prev_tags": [], + "countries_beforescanbot": "Danemark,France", + "image_nutrition_small_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.200.jpg", + "product_name_es_debug_tags": [], + "states": "en:to-be-checked, en:complete, en:nutrition-facts-completed, en:ingredients-completed, en:expiration-date-completed, en:packaging-code-to-be-completed, en:characteristics-completed, en:categories-completed, en:brands-completed, en:packaging-completed, en:quantity-completed, en:product-name-completed, en:photos-validated, en:photos-uploaded", + "emb_codes_20141016": "", + "emb_codes_tags": [], + "nutrition_data_prepared_per_debug_tags": [], + "additives_prev": " [ farine-de-ble -> fr:farine-de-ble ] [ farine-de -> fr:farine-de ] [ farine -> fr:farine ] [ sucre -> fr:sucre ] [ huiles-vegetales -> fr:huiles-vegetales ] [ huiles -> fr:huiles ] [ palme -> fr:palme ] [ palmiste -> fr:palmiste ] [ cacao-maigre-en-poudre-4-6 -> fr:cacao-maigre-en-poudre-4-6 ] [ cacao-maigre-en-poudre-4 -> fr:cacao-maigre-en-poudre-4 ] [ cacao-maigre-en-poudre -> fr:cacao-maigre-en-poudre ] [ cacao-maigre-en -> fr:cacao-maigre-en ] [ cacao-maigre -> fr:cacao-maigre ] [ cacao -> fr:cacao ] [ amidon-de-ble -> fr:amidon-de-ble ] [ amidon-de -> fr:amidon-de ] [ amidon -> fr:amidon ] [ sirop-de-glucose-fructose -> fr:sirop-de-glucose-fructose ] [ sirop-de-glucose -> fr:sirop-de-glucose ] [ sirop-de -> fr:sirop-de ] [ sirop -> fr:sirop ] [ poudre-a-lever -> fr:poudre-a-lever ] [ poudre-a -> fr:poudre-a ] [ poudre -> fr:poudre ] [ carbonate-acide-de-potassium -> en:e501 -> exists -- ok ] [ carbonate-acide-d-ammonium -> en:e503 -> exists -- ok ] [ carbonate-acide-de-sodium -> en:e500 -> exists -- ok ] [ sel -> fr:sel ] [ emulsifiants -> fr:emulsifiants ] [ lecithine-de-soja -> fr:lecithine-de-soja ] [ lecithine-de -> fr:lecithine-de ] [ lecithine -> en:e322 -> exists -- ok ] [ lecithine-de-tournesol -> fr:lecithine-de-tournesol ] [ lecithine-de -> fr:lecithine-de ] [ lecithine -> en:e322 -- already seen ] [ arome-vanille -> fr:arome-vanille ] [ arome -> fr:arome ] ", + "languages_hierarchy": [ + "en:french", + "en:german", + "en:spanish", + "en:english" + ], + "ingredients_tags": [ + "fr:farine-de-ble", + "en:sugar", + "fr:huile-vegetale", + "fr:cacao-maigre-en-poudre", + "fr:amidon-de-ble", + "fr:sirop-de-glucose-fructose", + "fr:poudre-a-lever", + "en:salt", + "fr:emulsifiant", + "fr:arome-vanille", + "fr:palme", + "fr:palmiste", + "fr:carbonate-acide-de-potassium", + "fr:carbonate-acide-d-ammonium", + "fr:carbonate-acide-de-sodium", + "fr:lecithine-de-soja", + "fr:lecithine-de-tournesol" + ], + "generic_name_de": "", + "editors": [ + "aleene", + "mathias", + "tacite", + "manu1400", + "adrien", + "smias", + "minouche" + ], + "expiration_date_debug_tags": [], + "ingredients_text_de": "Weizenmehl, Zucker, Palmöl, fettarmes Kakaopulver 4.6 %, Weizenstärke, Glukose-Fruktose-Sirup, Backtriebmittel ( Kaliumhydrogencarbonat, Ammoniumhydrogencarbonat, Natriumhydrogencarbonat ), Speisesalz, Palmkernöl, Emulgatoren ( Sojalecithine, Sonnenblumenlecithin), Aroma ( Vanillin)", + "categories_prev_hierarchy": [ + "en:sugary-snacks", + "en:biscuits-and-cakes", + "en:biscuits", + "en:chocolate-biscuits", + "es:Sandwich cookies" + ], + "ingredients_that_may_be_from_palm_oil_tags": [], + "_id": "8410000810004", + "pnns_groups_1": "Sugary snacks", + "generic_name_es": "Galletas de cacao rellenas de crema sabor vainilla", + "traces_hierarchy": [ + "fr:Leche" + ], + "pnns_groups_2": "Biscuits and cakes", + "product_name_en": "Original", + "codes_tags": [ + "code-13", + "8410000810004", + "841000081000x", + "84100008100xx", + "8410000810xxx", + "841000081xxxx", + "84100008xxxxx", + "8410000xxxxxx", + "841000xxxxxxx", + "84100xxxxxxxx", + "8410xxxxxxxxx", + "841xxxxxxxxxx", + "84xxxxxxxxxxx", + "8xxxxxxxxxxxx" + ], + "packaging_tags": [ + "carton", + "plastique", + "etui-carton", + "sachet-plastique", + "pap-21", + "boite" + ], + "labels_prev_tags": [ + "en:green-dot", + "es:tidy-man" + ], + "product_quantity": 176, + "editors_tags": [ + "openfood-ch-import", + "aleene", + "foodviewer", + "tacite", + "mathias", + "lepetitkorrigan", + "adrien", + "neptuno", + "manu1400", + "yukafix", + "smias", + "kiliweb", + "tacite-mass-editor", + "date-limite-app", + "openfoodfacts-contributors", + "beniben", + "minouche", + "scanbot" + ], + "nutrition_data_prepared": "", + "image_thumb_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/front_fr.77.100.jpg", + "labels": "Punto Verde,Tidy man", + "origins": "", + "checkers": [], + "link": "http://www.oreo.eu/", + "last_modified_by": "neptuno", + "ingredients_ids_debug": [ + "farine-de-ble", + "sucre", + "huiles-vegetales", + "palme", + "palmiste", + "cacao-maigre-en-poudre-4-6", + "amidon-de-ble", + "sirop-de-glucose-fructose", + "poudre-a-lever", + "carbonate-acide-de-potassium", + "carbonate-acide-d-ammonium", + "carbonate-acide-de-sodium", + "sel", + "emulsifiants", + "lecithine-de-soja", + "lecithine-de-tournesol", + "arome-vanille" + ], + "image_nutrition_url": "https://static.openfoodfacts.org/images/products/841/000/081/0004/nutrition_fr.34.400.jpg", + "purchase_places": "France,Gap,05000", + "minerals_tags": [], + "generic_name_de_debug_tags": [], + "ingredients_text_with_allergens_de": "Weizenmehl, Zucker, Palmöl, fettarmes Kakaopulver 4.6 %, Weizenstärke, Glukose-Fruktose-Sirup, Backtriebmittel ( Kaliumhydrogencarbonat, Ammoniumhydrogencarbonat, Natriumhydrogencarbonat ), Speisesalz, Palmkernöl, Emulgatoren ( Sojalecithine, Sonnenblumenlecithin), Aroma ( Vanillin)", + "categories_debug_tags": [], + "stores": "Cora,Irma.dk,Leader Price", + "stores_tags": [ + "cora", + "irma-dk", + "leader-price" + ], + "lang": "fr", + "vitamins_prev_tags": [], + "countries_debug_tags": [], + "unknown_ingredients_n": 1, + "checkers_tags": [], + "vitamins_tags": [], + "categories": "Snacks dulces,Galletas y pasteles,Galletas,Chocolate biscuits,Sandwich cookies", + "correctors_tags": [ + "minouche", + "adrien", + "manu1400", + "tacite", + "mathias", + "aleene", + "scanbot", + "openfood-ch-import", + "date-limite-app", + "neptuno", + "tacite-mass-editor", + "foodviewer", + "openfoodfacts-contributors", + "kiliweb", + "yukafix", + "beniben" + ], + "ingredients_text_en_debug_tags": [], + "emb_codes_orig": "", + "generic_name_en_debug_tags": [] + }, + "code": "8410000810004" +} \ No newline at end of file diff --git a/openclassrooms-trainings/pytestdiscovering/test_function.py b/openclassrooms-trainings/pytestdiscovering/test_function.py new file mode 100644 index 0000000..3219d13 --- /dev/null +++ b/openclassrooms-trainings/pytestdiscovering/test_function.py @@ -0,0 +1,57 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import pytest +import function as target + +@pytest.fixture() +def product_offline(): + prod_beurre = target.get_product('3017760000109', True) + prod_oreo = target.get_product('8410000810004', True) + prod_false = target.get_product('1664', True) + prod_string = target.get_product('string', True) + + return (prod_beurre, prod_oreo, prod_false, prod_string) + +@pytest.fixture() +def product_online(): + prod_beurre = target.get_product('3017760000109') + prod_oreo = target.get_product('8410000810004') + return (prod_beurre, prod_oreo) + +def test_get_product_stdout(capsys): + target.get_product('1664', True) + captured = capsys.readouterr() + assert captured.out == "File load error : sample/product-1664.json\n" + + target.get_product('string', True) + captured = capsys.readouterr() + assert captured.out == "File load error : sample/product-string.json\n" + +def test_get_product(product_offline): + # :Tests OFFLINE: + prod_beurre, prod_oreo, prod_false, prod_string = product_offline + assert prod_beurre['product_name'] == 'Le Véritable Petit Beurre' + assert prod_beurre['nutrition_grades'] == 'e' + assert prod_beurre['categories_tags'] == [ + 'en:sugary-snacks', + 'en:biscuits-and-cakes', + 'en:biscuits', + 'fr:petits-beurres' + ] + + # better use the file in sample directory + assert prod_oreo == {'categories_tags': [ + 'en:sugary-snacks', + 'en:biscuits-and-cakes', + 'en:biscuits', + 'en:chocolate-biscuits', + 'es:sandwich-cookies' + ], + 'code': '8410000810004', + 'nutrition_grades': 'e', + 'product_name': 'Biscuit Oreo', + 'url':'https://fr.openfoodfacts.org/product/8410000810004/'} + + assert not prod_false + assert not prod_string diff --git a/openclassrooms-trainings/roboc/README.md b/openclassrooms-trainings/roboc/README.md new file mode 100644 index 0000000..50d5ad0 --- /dev/null +++ b/openclassrooms-trainings/roboc/README.md @@ -0,0 +1,49 @@ +# Roboc + +_I am pausing the devel here, I have to prioritise another project._ +_I'll be back with Pytest!_ + +## Objective of the exercise + +Multiplayer maze game over network + +All instructions avaiable in the course +_[Apprenez à programmer en Python](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/exercises/181)_ +, from **Open Classrooms**. + +## Gameplay / roadmap + +1. [x] run server +2. [x] choose a map +3. [x] accept client connection +4. [x] when number of connected client is reached, any clients can start the +game with the command 'PLAY' +5. [x] each robot is randomly placed on the map +6. play turn by turn +7. no new client during the game + +## Files + + - `server.py`: server script + - `client.py`: client script + - `configuration.py`: constants, variables and function + - `map.py`: object providing a navigable map + - `connectsocket.py`: socket object providing network + - `readme.md`: you are reading it! + - `cartes`: place for map files (ext. `.txt`) + +## Commands + +The robot is controllable by keyboard commands. The following commands +must exist: + - Q: Quit game + - N: move north (up) + - E: move east (right) + - S: move south (down) + - O: move west (left) + - Each of the above directions followed by a number allows you to + advance several squares (e. g. E3:3 squares to the east) + +## Remarques + +## Bonus diff --git a/openclassrooms-trainings/roboc/cartes/facile.txt b/openclassrooms-trainings/roboc/cartes/facile.txt new file mode 100644 index 0000000..34ea5e6 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/facile.txt @@ -0,0 +1,11 @@ +OOOOOOOOOO +O O O O +O . OO O +O O O O +O OOOO O.O +O O O U +O OOOOOO.O +O O O +O O OOOOOO +O . O O +OOOOOOOOOO diff --git a/openclassrooms-trainings/roboc/cartes/haute.txt b/openclassrooms-trainings/roboc/cartes/haute.txt new file mode 100644 index 0000000..4991485 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/haute.txt @@ -0,0 +1,21 @@ +OOOOOOOOOO +O O O O +O . OO O +O O O O +O . OO O +O O O O +O . OO O +O O O O +O . OO O +O O O O +O OOOO O.O +O O O U +O OOOOOO.O +O O O +O OOOOOO.O +O O O +O OOOOOO.O +O O O +O O OOOOOO +O . O O +OOOOOOOOOO diff --git a/openclassrooms-trainings/roboc/cartes/ma_carte.txt b/openclassrooms-trainings/roboc/cartes/ma_carte.txt new file mode 100644 index 0000000..6a2230e --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/ma_carte.txt @@ -0,0 +1,11 @@ +OOOOOOOOOOOOOOOOO +O O O O O +O . O OOO OO O O +O O O . O O O O +O O O O O O OO.O +O O OOOO O O U +O . . O OOO OO.O +O O O O OO OO O +O O OO OO O OO O +O O O O +OOOOOOOOOOOOOOOOO diff --git a/openclassrooms-trainings/roboc/cartes/ma_carte_complexe.txt b/openclassrooms-trainings/roboc/cartes/ma_carte_complexe.txt new file mode 100644 index 0000000..4363d42 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/ma_carte_complexe.txt @@ -0,0 +1,13 @@ +OOOOOOOOOOOOOOOOOOOOO +O O O O O +O . O OOO OO OO.OO.O +O O O . O O O O +O O O O O O OO.OOOOO +O O OOOO O O U +O . . O OOO OO.OOOOOOOOOO +O O O O OO OO O +O O OO OO O OOOOOO.OOOO O +O O O O +OOO O OOOOOOOOOOOOOOOOOOOO + O O + OOOOO diff --git a/openclassrooms-trainings/roboc/cartes/mini.txt b/openclassrooms-trainings/roboc/cartes/mini.txt new file mode 100644 index 0000000..cc2e69e --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/mini.txt @@ -0,0 +1,3 @@ +OOO +O U +OOO diff --git a/openclassrooms-trainings/roboc/cartes/non_conforme.map b/openclassrooms-trainings/roboc/cartes/non_conforme.map new file mode 100644 index 0000000..e69de29 diff --git a/openclassrooms-trainings/roboc/cartes/prison.txt b/openclassrooms-trainings/roboc/cartes/prison.txt new file mode 100644 index 0000000..df77cf8 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/prison.txt @@ -0,0 +1,20 @@ +OOOOOOOOOOOOOOOOOOOO +O O . O O . O +O.O O O O O O +O O O O O O O +O.O O . O O O +O O O OOOOOO O O +O O O O O +O O OOOOOOOOOO O +O.O . O O +O O O O O +O O O O O +O O.O O O +O.O . O O +O O O O O +O O O O O +O O O O O +O O O O O +O.O O O O +O O O U +OOOOOOOOOOOOOOOOOOOO diff --git a/openclassrooms-trainings/roboc/cartes/prison_xl.txt b/openclassrooms-trainings/roboc/cartes/prison_xl.txt new file mode 100644 index 0000000..d6b5c62 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/prison_xl.txt @@ -0,0 +1,26 @@ +OOOOOOOOOOOOOOOOOOOO +O O . O O . O +O.O O O O O O +O O O O O O O +O.O O . O O O +O O O OOOOOO O O +O O O O O +O O OOOOOOOOOO O +O.O . O O +O O O O O +O O O O O +O O.O O O +O.O . O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O O O O O +O.O O O O +O O O U +OOOOOOOOOOOOOOOOOOOO diff --git a/openclassrooms-trainings/roboc/cartes/trop_petite.txt b/openclassrooms-trainings/roboc/cartes/trop_petite.txt new file mode 100644 index 0000000..2878b45 --- /dev/null +++ b/openclassrooms-trainings/roboc/cartes/trop_petite.txt @@ -0,0 +1,2 @@ +12 +34 \ No newline at end of file diff --git a/openclassrooms-trainings/roboc/cartes/vide.txt b/openclassrooms-trainings/roboc/cartes/vide.txt new file mode 100644 index 0000000..e69de29 diff --git a/openclassrooms-trainings/roboc/configuration.py b/openclassrooms-trainings/roboc/configuration.py new file mode 100644 index 0000000..367085b --- /dev/null +++ b/openclassrooms-trainings/roboc/configuration.py @@ -0,0 +1,154 @@ +""" +Author: freezed 2018-02-11 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Ce fichier fait partie du projet `roboc` + +""" + +# CONFIGURATION +# Commandes +# Le code utilise l'index des listes `COMMANDS` & `COMMANDS_LABEL` +# pour faire le lien entre les 2. +# Ici vous pouvez ajouter de nouvelles commandes de jeu, elle seront +# ajoutees a l'aide automatiquement. Mais il faudra ajouter le code +# leur correspondant dans la condition de traitement du mouvement. +COMMANDS = ['Q', 'H'] +# Libelle des commandes d'interuption, conserver l'ordre +COMMANDS_LABEL = ['Quitter', 'Aide'] +# Commandes clavier de deplacement +DIRECTIONS = ['N', 'S', 'E', 'O'] +# Étiquette des commandes clavier des de deplacements pour l'affichage +# de l'aide. Garder la correspondance +DIRECTIONS_LABEL = ['nord', + 'sud', + 'est', + 'ouest'] + +# Pepertoire des fichiers carte +MAP_DIRECTORY = 'cartes/' +# Extention des fichiers carte +MAP_EXTENTION = '.txt' +# Elements dispo dans le labyrinthe +MAZE_ELEMENTS = {'wall': 'O', + 'door': '.', + 'exit': 'U', + 'robo': 'X', + 'void': ' '} +# Issue possible d'un mouvement, garder le OK toujours en fin de liste +MOVE_STATUS = ['bad', 'wall', 'exit', 'door', 'ok'] +MOVE_STATUS_MSG = { + 'bad': "Le déplacement «{}» n'est pas autorisé.", + 'wall': "Le déplacement est stoppé par un mur.", + 'exit': "Vous êtes sortit du labyrinte", + 'door': "Vous passez une porte", + 'ok': "Jusqu'ici, tout va bien…" +} + +# Messages d'erreurs +ERR_ = "#!@?# Oups… " +ERR_MAP_FILE = ERR_ + "carte «{}» inaccessible!" +ERR_MAP_SIZE = ERR_ + "carte «{}», dimensions incorrecte: «{} x {}»" +ERR_MAP_ROBO = ERR_ + "robo est introuvable sur la carte «{}»!" +ERR_PLAGE = ERR_ + "saisir un nombre dans la plage indiquée! " +ERR_SAISIE = ERR_ + "saisir un nombre! " +ERR_UNKNOW = ERR_ + "personne n'est censé arriver ici…" + +MIN_MAP_SIDE = 3 +MIN_CLIENT_NB = 2 + +MSG_DISCLAMER = "Bienvenue dans Roboc." +MSG_AVAIBLE_MAP = "Cartes disponible: " +MSG_CHOOSE_MAP = "Choississez un numéro de carte: " +MSG_CHOOSE_MOVE = "Votre deplacement ({}:{}): " +MSG_START_GAME = "Votre partie commence" +MSG_REQUEST_START = "Entrez «PLAY» pour démarrer la partie: " +MSG_END_GAME = "Fin du jeu." +MSG_QUIT_GAME = "Vous quittez la partie" +# Recapitulatif des commandes +MSG_HELP = "Voici les commandes disponibles:\n" +MSG_SELECTED_MAP = "Vous avez fait le choix #{}, la carte «{}»." +MSG_CONNECTED_CLIENT = "Nb client connecté: {}: {}" +MSG_MINIMUM_CLIENT = "Nb client minimum: {}" +MAPS_NAME_LIST = list() # liste des maps proposees a l'utilisateur + +# FONCTIONS + + +def cls(): + """ Efface l'historique de la console """ + import os + os.system('clear') + return + + +def choose_maps_menu(): + """ + Affiche le menu de selection des cartes + + Recupere les cartes dans un repertoire, demande a l'utilisateur, + de choisir et effectue quelques tests sur la carte jouee avant de + creer + + :return str: nom de fichier de la carte choisi + """ + # VARIABLES + user_select_map_id = -1 # choix utilisateur: une carte + + print(MSG_AVAIBLE_MAP) + i = 0 + for maps_name in MAPS_NAME_LIST: + print("\t[{}] - {}".format(i, maps_name)) + i += 1 + + # Choix de la carte par l'utilisateur + while user_select_map_id > len(MAPS_NAME_LIST) or user_select_map_id < 0: + user_select_map_id = input(MSG_CHOOSE_MAP) + try: + user_select_map_id = int(user_select_map_id) + # ? if user_select_map_id is int(): ? + except ValueError: + user_select_map_id = -1 + continue + + if user_select_map_id > len(MAPS_NAME_LIST) or \ + user_select_map_id < 0: + print(ERR_PLAGE) + + cls() # vide l'ecran de la console + print(MSG_SELECTED_MAP.format( + user_select_map_id, + MAPS_NAME_LIST[user_select_map_id] + )) + + # Fichier carte a recuperer + map_file = MAP_DIRECTORY + \ + MAPS_NAME_LIST[user_select_map_id] + \ + MAP_EXTENTION + + return map_file + + +def get_msg_list(command, label): + """ + Formate une chaine pour afficher les commandes et leurs descriptifs + + :type key: lst() + :param key: liste de commande + :type label: lst() + :param label: Texte descriptif des commande associee + :rtype: str() + :return: Chaine formatee assemblant les elements en parametres + """ + + # Modele de mise en forme de la liste de chaque element + TEMPLATE = "\t- «{}»: {}\n" + + # Variable de setour + result = str() + + for key, value in enumerate(command): + result += TEMPLATE.format(value, label[key]) + + return result diff --git a/openclassrooms-trainings/roboc/connectsocket.py b/openclassrooms-trainings/roboc/connectsocket.py new file mode 100644 index 0000000..f250a51 --- /dev/null +++ b/openclassrooms-trainings/roboc/connectsocket.py @@ -0,0 +1,340 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-03-06 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +This file is part or roboc project. View `readme.md` +""" +import socket +import select + + +class ConnectSocket: + """ + ConnectSocket + ======= + + Provide network connection and management methods + + :Example: + >>> c0 = ConnectSocket() + Server is running, listening on port 5555 + + >>> c0.list_sockets(False, False) + [] + + >>> c0.list_sockets() + '' + + >>> c0.count_clients() + 0 + + >>> c0.close() + Server stop + """ + # default connection parameters + _HOST = 'localhost' + _PORT = 5555 + _BUFFER = 1024 + _MAIN_CONNECT = "MAIN_CONNECT" + + # Template messages + _BROADCAST_MSG = "{}~ {}\n" + _MSG_DISCONNECTED = "" + _MSG_SALUTE = "Hi, {}, wait for other players\n" + _MSG_SERVER_STOP = "Server stop" + _MSG_START_SERVER = "Server is running, listening on port {}" + _MSG_USER_IN = "" + _MSG_WELCOME = "Welcome. First do something usefull and type your name: " + _MSG_UNWELCOME = "Sorry, no more place here.\n" + _MSG_UNSUPPORTED = "Unsupported data:«{}»{}" + _SERVER_LOG = "{}:{}|{name}|{msg}" + + # Others const + _MAX_CLIENT_NAME_LEN = 8 + _MIN_CLIENT_NAME_LEN = 3 + _MAX_CLIENT_NB = 5 + + def __init__(self, host=_HOST, port=_PORT): + """ + Set up the server connection using a socket object + + :param str _HOST: domain or IPV4 address + :param int _PORT: port number + :return obj: socket + """ + + # Setting up the connection + self._main_sckt = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self._main_sckt.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + self._main_sckt.bind((host, port)) + self._main_sckt.listen(5) + + # Init connection list + self._inputs = [] + self._inputs.append(self._main_sckt) + + # Init username list, to keep match between inputs & name lists + self._user_name = [] + self._user_name.append(self._MAIN_CONNECT) + + # Logging server's activity + self.server_log(self._MSG_START_SERVER.format(port)) + + def broadcast(self, sender, message): + """ + Send a message to all named-clients but the sender + + TODO should replace sckt.send() too + + :param obj sender: sender socket (or 'server' str() for server) + :param str message: message to send + """ + # Define senders name + if sender == 'server': + name = 'server'.upper() + else: + idx = self._inputs.index(sender) + name = self._user_name[idx].upper() + + message = self._BROADCAST_MSG.format(name, message) + recipients = self.list_sockets(False, False) + + for sckt in recipients: + if sckt != sender: + sckt.send(message.encode()) + # NOTE I remove a `try/except` here because I do not + # encountered any Error, I cannot choose the correct + # exception type + # sckt.close() \ self._inputs.remove(sckt) + + def close(self): + """ Cleanly closes each socket (clients) of the network """ + self._main_sckt = self._inputs.pop(0) + i = 1 + for sckt in self._inputs: + self.server_log(self._SERVER_LOG.format( + *sckt.getpeername(), + name=self._user_name[i], + msg="closed client socket") + ) + sckt.close() + i += 1 + self._inputs.clear() + self._main_sckt.close() + self.server_log(self._MSG_SERVER_STOP) + + def count_clients(self): + """ + Count connected and named clients + + (to avoid playing with a unamed player) + """ + return len(self.list_sockets(False, False)) + + def data_filter(self, data, s_idx): + """ + Filters the data basically: + + - Alphanumeric char only + - non-alphanum char replaced by 'x' + - 'xxx' for string < MIN + - Troncated after the MAX char + - trailed with index number if same name exists + """ + # alphanumeric + if str(data).isalnum() is False: + f_data = '' + for char in data: + if char.isalnum(): + f_data += char + else: + f_data += 'x' + data = f_data + + # minimum length + if len(data) < self._MIN_CLIENT_NAME_LEN: + data += 'xxx' + + # maximum length + data = data[0:self._MAX_CLIENT_NAME_LEN] + + # name already used + if data in self._user_name: + data += str(s_idx) + + return data + + def list_sockets(self, print_string=True, user_name=True): + """ + List connected sockets + + :param bool print_string: return txt formated socket list + :param bool user_name: return user_name + """ + if user_name: + client_list = [ + name for name in self._user_name + if name != self._MAIN_CONNECT and name is not False + ] + else: + client_list = [ + sckt for (idx, sckt) in enumerate(self._inputs) + if sckt != self._main_sckt + and self._user_name[idx] is not False + ] + + # NOTE maybe there is a better way for the next condition: when + # client connects it has not yet his name filled in the + # _user_name attribut, then this method returns only clients + # with a filled name + if print_string and len(client_list) == 0: + client_list = "" + elif print_string: + client_list = ", ".join(client_list) + + return client_list + + def listen(self): + """ + Listen sockets activity + + Get the list of sockets which are ready to be read and apply: + - connect a new client + - return data sended by client + + This object only processes data specific to network connections, + other data (username and message sent) are stored in `u_name` & + `message` attributes to be used by parent script + + :return str, str: user_name, data + """ + self.u_name = "" + self.message = "" + + # listennig… + rlist, [], [] = select.select(self._inputs, [], [], 0.05) + for sckt in rlist: + + # logging, broadcasting & sending (LBS) params + logging = True + broadcasting = True + sending = True + + # Listen for new client connection + if sckt == self._main_sckt: + sckt_object, sckt_addr = sckt.accept() + + # Maximum connection number is not reached: accepting + if len(self._inputs) <= self._MAX_CLIENT_NB: + self._inputs.append(sckt_object) + self._user_name.append(False) + + # LBS params override + log_msg = self._SERVER_LOG.format( + *sckt_addr, name="unknown", msg="connected" + ) + + sckt_object.send(self._MSG_WELCOME.encode()) + broadcasting = False + sending = False + + # Refusing + else: + sckt_object.send(self._MSG_UNWELCOME.encode()) + self.server_log(self._SERVER_LOG.format( + *sckt_addr, name="unknow", msg="rejected" + )) + sckt_object.close() + break + + else: # receiving data + data = sckt.recv(self._BUFFER).decode().strip() + s_idx = self._inputs.index(sckt) + + if self._user_name[s_idx] is False: # setting username + + # saving name + self._user_name[s_idx] = self.data_filter(data, s_idx) + + # LBS params override + log_msg = self._SERVER_LOG.format( + *sckt.getpeername(), + name=self._user_name[s_idx], + msg="set user name" + ) + + bdcst_msg = self._MSG_USER_IN + + send_msg = self._MSG_SALUTE.format(self._user_name[s_idx]) + + elif data.upper() == "QUIT": # client quit network + + # LBS params override + log_msg = self._SERVER_LOG.format( + *sckt.getpeername(), + name=self._user_name[s_idx], + msg="disconnected" + ) + + # broadcasting params + bdcst_msg = self._MSG_DISCONNECTED + self.broadcast(sckt, bdcst_msg) + + broadcasting = False + sending = False + + self._inputs.remove(sckt) + self._user_name.pop(s_idx) + sckt.close() + + elif data: + self.u_name, self.message = self._user_name[s_idx], data + + # LBS params override + log_msg = self._SERVER_LOG.format( + *sckt.getpeername(), + name=self._user_name[s_idx], + msg=data + ) + broadcasting = False + sending = False + + else: + + # LBS params override + log_msg = self._SERVER_LOG.format( + *sckt.getpeername(), + name=self._user_name[s_idx], + msg=self._MSG_UNSUPPORTED.format(data) + ) + + send_msg = self._MSG_UNSUPPORTED.format(data, "\n") + + broadcasting = False + + if logging: + self.server_log(log_msg) + + if broadcasting: + self.broadcast(sckt, bdcst_msg) + + if sending: + sckt.send(send_msg.encode()) + + @staticmethod + def server_log(msg): + """ Log activity on server-side""" + print(msg) + # writes in a logfile here TODO19 + # adds a timestamp TODO20 + + +if __name__ == "__main__": + """ Starting doctests """ + + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/roboc/map.py b/openclassrooms-trainings/roboc/map.py new file mode 100644 index 0000000..14f2b43 --- /dev/null +++ b/openclassrooms-trainings/roboc/map.py @@ -0,0 +1,233 @@ +""" +Author: freezed 2018-02-06 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Ce fichier fait partie du projet `roboc` +""" +import os +import random +from configuration import DIRECTIONS, ERR_MAP_FILE, ERR_MAP_ROBO, \ + MIN_MAP_SIDE, ERR_MAP_SIZE, ERR_UNKNOW, MAZE_ELEMENTS, MSG_START_GAME, MSG_CHOOSE_MOVE, COMMANDS_LABEL, COMMANDS + + +class Map: + """ + Fourni les moyens necessaire a l'utilisation d'un fichier carte. + + Controle de coherance sur la carte choise, deplace le robo en + fonction des commandes du joueur jusqu'en fin de partie. + + Cette docstring contient des + [DocTests](http://sametmax.com/les-docstrings/), ça ne fait pas + partie du cours, mais c'est un outils facile de test/debug que + j'utilise et qui reste transparent. + + Doctests + ======== + + :Example: + >>> EasyMap = Map("cartes/facile.txt", 3) + + >>> print(EmptyMap.status_message) + #!@?# Oups… carte «cartes/vide.txt», dimensions incorrecte: «0 x 0» + >>> print(TooSmallMap.status_message) + #!@?# Oups… carte «cartes/trop_petite.txt», dimensions incorrecte: «3 x 2» + + >>> print("_column_nb: {}".format(EasyMap._column_nb)) + _column_nb: 11 + >>> print("_line_nb: {}".format(EasyMap._line_nb)) + _line_nb: 11 + + >>> EasyMap.move_to("O") + 1 + + """ + + def __init__(self, map_file, nb_player): + """ + Initialisation de la carte utilise + + Instancie un objet Map avec les attributs suivant: + + :var int status: Etat de l'objet apres le deplacement + :var str status_message: Message relatif au deplacement + :var int _column_nb: Nbre de colonne du labyrinte (1ere ligne) + :var str _data_text: Contenu du labyrinte + :var str _element_under_robo: Element sous le robot + :var int _line_nb: Nbre de ligne du labyrinte + :var int _robo_position: position du robo dans _data_text + + :param str map_file: fichier «carte» avec chemin relatif + :param int nb_player: nombre de joueurs (max 9) + :rtype map: str() + """ + # Chargement du fichier carte choisi + if os.path.isfile(map_file) is True: + with open(map_file, "r") as map_data: + + # contenu de la carte en texte + self._data_text = map_data.read() + + # contenu de la carte ligne a ligne + map_data_list = self._data_text.splitlines() + + # nbre de colonne de la 1ere ligne de la carte + try: + self._column_nb = len(map_data_list[0]) + 1 + except IndexError: + self._column_nb = 0 + + # nbre de ligne de la carte + try: + self._line_nb = len(map_data_list) + except IndexError: + self._line_nb = 0 + + self._robo_position = {} + self._element_under_robo = {} + + for player in range(1, nb_player + 1): + # placement des n robots + self._robo_position[player] = random.choice([idx for (idx, value) in enumerate(self._data_text) if value == MAZE_ELEMENTS['void']]) + + # element «sous» le robo, au depart + self._element_under_robo[player] = MAZE_ELEMENTS['void'] + + # place le robot sur la carte + self.place_element(player, player) + + # Quelques controle sur la carte chargee: + # dimensions assez grande pour deplacer un robo? + if (self._line_nb, self._column_nb) < (MIN_MAP_SIDE, MIN_MAP_SIDE): + self.status = False + self.status_message = ERR_MAP_SIZE.format( + map_file, self._column_nb, self._line_nb + ) + + # on peu ajouter plein d'autres controles ici + + # carte consideree utilisable + else: + self.status = True + self.status_message = MSG_START_GAME + + # Erreur de chargement du fichier + else: + self.status = False + self.status_message = ERR_MAP_FILE.format(map_file) + + def map_print(self, game_network): + """ Affiche la carte avec la position de jeu courante """ + + game_network.broadcast( + 'server', + '\n'.join(['', + self._data_text, + self.status_message, + MSG_CHOOSE_MOVE.format(COMMANDS[1],COMMANDS_LABEL[1])] + ) + ) + + def move_to(self, move): + """ + Deplace le robo sur la carte + + :param str move: mouvement souhaite + :return int: une cle de la constante MOVE_STATUS + """ + # decompose le mouvement + try: # on recupere le 1er caractere (la direction) + direction = move[0] + except IndexError: + return 0 + except TypeError: + return 0 + + if len(move[1:]) > 0: # on recupere les caractere suivants (dist) + try: + goal = int(move[1:]) + except ValueError: + return 0 + else: # si pas de chiffre, on avance d'une seule unite + goal = 1 + + steps = 0 + + # direction non conforme + if direction not in DIRECTIONS: + move_status = 0 + + # supprime le robo de son emplacement actuel et on replace + # l'elements «dessous» + else: + self._data_text = self._data_text.replace( + MAZE_ELEMENTS['robo'], + self._element_under_robo + ) + + # pour chaque pas on recupere la position suivante + while steps < goal: + steps += 1 + if direction == DIRECTIONS[0]: # nord + next_position = self._robo_position - self._column_nb + + elif direction == DIRECTIONS[1]: # sud + next_position = self._robo_position + self._column_nb + + elif direction == DIRECTIONS[2]: # est + next_position = self._robo_position + 1 + + elif direction == DIRECTIONS[3]: # ouest + next_position = self._robo_position - 1 + + else: # juste au cas ou + raise NotImplementedError(ERR_UNKNOW) + + self._element_under_robo = MAZE_ELEMENTS['void'] + + # Traitement en fonction de la case du prochain pas + next_char = self._data_text[next_position] + if next_char == MAZE_ELEMENTS['wall']: + move_status = 1 + steps = goal + + elif next_char == MAZE_ELEMENTS['exit']: + self._robo_position = next_position + move_status = 2 + steps = goal + + elif next_char == MAZE_ELEMENTS['door']: + self._robo_position = next_position + self._element_under_robo = MAZE_ELEMENTS['door'] + move_status = 3 + steps = goal + + else: + self._robo_position = next_position + move_status = 4 + + # place le robo sur sa nouvelle position + self.place_element(MAZE_ELEMENTS['robo']) + + return move_status + + def place_element(self, element, player): + """ + Place l'element sur la carte. + + La position est celle de l'attribut self._robo_position au + moment de l'appel. + + Utilise pour place le robot et remettre les portes. + + :param str element: element a placer sur la carte + """ + pos = self._robo_position[player] + txt = self._data_text + self._data_text = txt[:pos] + str(element) + txt[pos + 1:] + + +if __name__ == "__main__": + import doctest + doctest.testmod() diff --git a/openclassrooms-trainings/roboc/roboc.py b/openclassrooms-trainings/roboc/roboc.py new file mode 100644 index 0000000..2b4c720 --- /dev/null +++ b/openclassrooms-trainings/roboc/roboc.py @@ -0,0 +1,122 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-02-06 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +roboc +===== + +Jeu permettant de controler un robot dans un labyrinthe. + +Voir readme.md +""" + +import os +import pickle +from configuration import BACKUP_FILE, choose_maps_menu, cls, COMMANDS, \ + COMMANDS_LABEL, DIRECTIONS, DIRECTIONS_LABEL, get_msg_list, \ + MAP_DIRECTORY, MAP_EXTENTION, MAPS_NAME_LIST, MOVE_STATUS, \ + MOVE_STATUS_MSG, MSG_AVAIBLE_BACKUP, MSG_BACKUP_DONE, MSG_BACKUP_GAME, \ + MSG_CHOOSE_MOVE, MSG_DISCLAMER, MSG_END_GAME, MSG_HELP, MSG_NO_YES, \ + MSG_START_GAME, USER_SELECT_BACKUP + +# DEBUT DU JEU + +# Recuperation de la liste des cartes +try: + MAPS_AVAIBLE = os.listdir(MAP_DIRECTORY) +except FileNotFoundError as except_detail: + print("FileNotFoundError: «{}»".format(except_detail)) +else: + for map_file in MAPS_AVAIBLE: + filename_len = len(map_file) - len(MAP_EXTENTION) + + # garde les fichiers avec la bonne extention + if map_file[filename_len:] == MAP_EXTENTION: + MAPS_NAME_LIST.append(map_file[: filename_len]) + +# Affichage du debut de partie +cls() # vide l'ecran de la console +print(MSG_DISCLAMER) + +# Verif si un fichier de sauvegarde est dispo +if os.path.isfile(BACKUP_FILE) is True: + with open(BACKUP_FILE, 'rb') as backup_file: + BACKUP_MAP = pickle.Unpickler(backup_file).load() + + # On demande si l'utilisateur veut charger la sauvegarde + while USER_SELECT_BACKUP not in MSG_NO_YES: + USER_SELECT_BACKUP = input( + MSG_AVAIBLE_BACKUP.format(*MSG_NO_YES) + ).lower() + + # utilisateur veut la sauvegarde + if USER_SELECT_BACKUP == MSG_NO_YES[1]: + CURRENT_MAP = BACKUP_MAP + else: + CURRENT_MAP = choose_maps_menu() +else: + CURRENT_MAP = choose_maps_menu() + + +# DEBUT DE BOUCLE DE TOUR DE JEU + +# Affichage de la carte tant que status == True +while CURRENT_MAP.status: + # Affiche la carte et le message + CURRENT_MAP.map_print() + print(CURRENT_MAP.status_message) + + # Demande a l'utilisateur son choix du deplacement + user_move = input(MSG_CHOOSE_MOVE.format( + COMMANDS[1], COMMANDS_LABEL[1]) + ).upper() + cls() # vide l'ecran de la console + + # Traitement de la commande utilisateur + if user_move == COMMANDS[0]: # quitter + CURRENT_MAP.status = False + + # Le premier tour n'a pas ete joue, pas de sauvegarde faite + if CURRENT_MAP.status_message != MSG_START_GAME: + CURRENT_MAP.status_message = MSG_BACKUP_DONE + + else: + CURRENT_MAP.status_message = "" + + elif user_move == COMMANDS[1]: # Affiche l'aide + CURRENT_MAP.status_message = MSG_HELP + # liste les directions + CURRENT_MAP.status_message += get_msg_list( + DIRECTIONS, DIRECTIONS_LABEL + ) + # liste les commandes + CURRENT_MAP.status_message += get_msg_list(COMMANDS, COMMANDS_LABEL) + + else: # Traitement du deplacement + status = CURRENT_MAP.move_to(user_move) + message = MOVE_STATUS_MSG[MOVE_STATUS[status]].format(user_move) + + # La sortie est atteinte, fin de la boucle + if MOVE_STATUS[status] == 'exit': + CURRENT_MAP.status = False + CURRENT_MAP.status_message = message + + else: # sinon on sauvegarde la partie avant de refaire un tour + CURRENT_MAP.status_message = MSG_BACKUP_GAME + with open(BACKUP_FILE, 'wb') as backup_file: + pickle.Pickler(backup_file).dump(CURRENT_MAP) + + CURRENT_MAP.status_message = message + +# fin de la boucle de tour + +if CURRENT_MAP.status is False: + print(CURRENT_MAP.status_message) + +# Fin de partie +print(MSG_END_GAME) +CURRENT_MAP.map_print() diff --git a/openclassrooms-trainings/roboc/robocclient.py b/openclassrooms-trainings/roboc/robocclient.py new file mode 100755 index 0000000..31b4e2b --- /dev/null +++ b/openclassrooms-trainings/roboc/robocclient.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-02-06 +Version: 0.2 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +roboc +===== + +A multiplayer maze game over network + +This is the client script, see readme.md for more details +""" +import socket, signal, select, sys + +MSG_ARG_ERROR = "Usage: client.py hostname port" + +if len(sys.argv) < 3: + print(MSG_ARG_ERROR) + sys.exit(1) + +HOST = sys.argv[1] +PORT = int(sys.argv[2]) + +BUFFER = 1024 + +MSG_SERVER_CONNECTED = "Serveur connecté @{}:{}" +MSG_CLOSE_CONNECTION = "Connexion vers [{}:{}] fermée" + +def prompt(): + sys.stdout.write('~') + sys.stdout.flush() + +def handler(signum, frame): + """ Catch signal for clean stop""" + print() + print(MSG_CLOSE_CONNECTION.format(*(SERVER_CONNECTION.getpeername()))) + SERVER_CONNECTION.send(b"QUIT") + SERVER_CONNECTION.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +SERVER_CONNECTION = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +try: + SERVER_CONNECTION.connect((HOST, PORT)) +except ConnectionRefusedError as except_detail: + print("ConnectionRefusedError: «{}». Unable to connect".format(except_detail)) + sys.exit() + +print(MSG_SERVER_CONNECTED.format(HOST, PORT)) + +while 1: + inputs = [sys.stdin, SERVER_CONNECTION] + rlist, wlist, elist = select.select(inputs, [], []) + + for socket in rlist: + if socket == SERVER_CONNECTION: # incomming message + data = socket.recv(BUFFER).decode() + if not data: + print(MSG_CLOSE_CONNECTION.format(HOST, PORT)) + sys.exit() + else: + #print data + sys.stdout.write(data) + + prompt() + + else: # sending message + msg = sys.stdin.readline().encode() + SERVER_CONNECTION.send(msg) + prompt() + +SERVER_CONNECTION.close() diff --git a/openclassrooms-trainings/roboc/robocserver.py b/openclassrooms-trainings/roboc/robocserver.py new file mode 100755 index 0000000..2e663e0 --- /dev/null +++ b/openclassrooms-trainings/roboc/robocserver.py @@ -0,0 +1,135 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-02-06 +Version: 0.2 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +roboc +===== + +A multiplayer maze game over network + +This is the server script, see readme.md for more details +""" + +import os +from configuration import choose_maps_menu, cls, COMMANDS, \ + COMMANDS_LABEL, DIRECTIONS, DIRECTIONS_LABEL, get_msg_list, \ + MAP_DIRECTORY, MAP_EXTENTION, MAPS_NAME_LIST, MIN_CLIENT_NB, MOVE_STATUS, \ + MOVE_STATUS_MSG, MSG_CHOOSE_MOVE, MSG_CONNECTED_CLIENT, MSG_DISCLAMER, MSG_END_GAME, \ + MSG_HELP, MSG_MINIMUM_CLIENT, MSG_QUIT_GAME, MSG_REQUEST_START, MSG_START_GAME +from connectsocket import ConnectSocket +from map import Map + +enough_clients = False +old_count_clients = int(0) + +# DEBUT DU JEU + +# Recuperation de la liste des cartes +try: + MAPS_AVAIBLE = os.listdir(MAP_DIRECTORY) +except FileNotFoundError as except_detail: + print("FileNotFoundError: «{}»".format(except_detail)) +else: + for map_file in MAPS_AVAIBLE: + filename_len = len(map_file) - len(MAP_EXTENTION) + + # garde les fichiers avec la bonne extention + if map_file[filename_len:] == MAP_EXTENTION: + MAPS_NAME_LIST.append(map_file[: filename_len]) + +# Affichage du debut de partie +cls() # vide l'ecran de la console +print(MSG_DISCLAMER) + +# Affiche le menu de selection de la carte +MAP_FILENAME = choose_maps_menu() + +# Démarre le réseau +GAME_NETWORK = ConnectSocket() + +# Attend les connections clients et la commande de départ du jeu +while 1: + GAME_NETWORK.listen() + count_clients = GAME_NETWORK.count_clients() + + # attend le nombre mini de client + if old_count_clients != count_clients: + + if count_clients > MIN_CLIENT_NB: + broadcast_msg = [ + MSG_CONNECTED_CLIENT.format( + count_clients, + GAME_NETWORK.list_sockets() + ), + MSG_REQUEST_START, + ] + enough_clients = True + + else: + # envoie le nbre de client aux clients + broadcast_msg = [ + MSG_MINIMUM_CLIENT.format(MIN_CLIENT_NB), + MSG_CONNECTED_CLIENT.format( + count_clients, + GAME_NETWORK.list_sockets() + ) + ] + enough_clients = False + + # envoi les messages + for msg in broadcast_msg: + GAME_NETWORK.broadcast("server", msg) + + # attend le go d'un des clients + if GAME_NETWORK.message.upper() == "PLAY" and enough_clients: + broadcast_msg = [MSG_START_GAME.format(GAME_NETWORK.u_name)] + break + + old_count_clients = count_clients + +# Genere la carte +GAME_MAP = Map(MAP_FILENAME, count_clients) + +# DEBUT DE BOUCLE DE TOUR DE JEU + +# Affichage de la carte tant que status == True +while GAME_MAP.status: + + # Affiche la carte et le message + GAME_MAP.map_print(GAME_NETWORK) + + # Traitement de la commande utilisateur + if user_move == COMMANDS[0]: # quitter + GAME_MAP.status = False + GAME_MAP.status_message = MSG_QUIT_GAME + + elif user_move == COMMANDS[1]: # Affiche l'aide + GAME_MAP.status_message = MSG_HELP + # liste les directions + GAME_MAP.status_message += get_msg_list( + DIRECTIONS, DIRECTIONS_LABEL + ) + # liste les commandes + GAME_MAP.status_message += get_msg_list(COMMANDS, COMMANDS_LABEL) + + else: # Traitement du deplacement + status = GAME_MAP.move_to(user_move) + message = MOVE_STATUS_MSG[MOVE_STATUS[status]].format(user_move) + GAME_MAP.status_message = message + + # La sortie est atteinte, fin de la boucle + if MOVE_STATUS[status] == 'exit': + GAME_MAP.status = False + +# fin de la boucle de tour + +if GAME_MAP.status is False: + print(GAME_MAP.status_message) + +# Fin de partie +print(MSG_END_GAME) +GAME_MAP.map_print() diff --git a/openclassrooms-trainings/roboc/todo.md b/openclassrooms-trainings/roboc/todo.md new file mode 100644 index 0000000..9b2f652 --- /dev/null +++ b/openclassrooms-trainings/roboc/todo.md @@ -0,0 +1,30 @@ +# TODO list + +## Roadmap to v0.2 [exercice 4](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/exercises/181) + +- [x] ~~remove the backup feature TODO01~~ +- [x] ~~conversion to client/server mode: server creation TODO02~~ +- [x] ~~conversion to client/server mode: client creation TODO03~~ +- [x] ~~verify if user name is already used TODO17~~ +- [x] ~~add max player number TODO19~~ +- [x] ~~each player has a differant robot TODO05~~ +- [x] ~~starting position has to be random TODO06~~ +- [ ] multiplayer turn-by-turn TODO04 +- [ ] one movement unit per tour: ex «e3» = 3 turns TODO07 +- [ ] add new game command: 'm' (walling door) TODO11 +- [ ] add new game command: 'p' (drilling door) TODO12 +- [ ] reject (or standby) clients connections when a game is playing TODO13 +- [ ] unit tests: map conformity TODO08 +- [ ] unit tests: converting map to labyrinthe TODO09 +- [ ] unit tests: game functions TODO10 +- [ ] unit tests: game functions (client-side) TODO14 +- [ ] chat commands: listing players TODO15 +- [ ] chat commands: chating with other players TODO16 +- [ ] rename ConnectSocket._user_name to ConnectSocket._user_name TODO18 +- [ ] writes server logs in a file TODO19 +- [ ] adds a timestamp to server logs TODO20 +- [ ] … TODO + +Ideas after correcting [exercice 3](https://openclassrooms.com/courses/apprenez-a-programmer-en-python/exercises/180): + +- [] go further in oriented object logic TODO17 diff --git a/openclassrooms-trainings/zpendu/dicolight.txt b/openclassrooms-trainings/zpendu/dicolight.txt new file mode 100644 index 0000000..5e2d329 --- /dev/null +++ b/openclassrooms-trainings/zpendu/dicolight.txt @@ -0,0 +1,55794 @@ +ABAISSA +ABAISSAI +ABAISSAT +ABAISSE +ABAISSEE +ABAISSER +ABAJOUE +ABANDON +ABAQUE +ABAT +ABATAGE +ABATARDI +ABATEE +ABATTAGE +ABATTAIT +ABATTANT +ABATTE +ABATTEE +ABATTENT +ABATTEUR +ABATTEZ +ABATTIEZ +ABATTIT +ABATTOIR +ABATTRA +ABATTRAI +ABATTRE +ABATTREZ +ABATTU +ABATTUE +ABBATIAL +ABBAYE +ABBE +ABBESSE +ABDIQUA +ABDIQUAI +ABDIQUAT +ABDIQUE +ABDIQUEE +ABDIQUER +ABDIQUEZ +ABDOMEN +ABEILLE +ABERRA +ABERRAI +ABERRAIT +ABERRANT +ABERRAT +ABERRE +ABERRENT +ABERRER +ABERRERA +ABERREZ +ABERRIEZ +ABETI +ABETIE +ABETIR +ABETIRA +ABETIRAI +ABETIREZ +ABETISSE +ABETIT +ABHORRA +ABHORRAI +ABHORRAT +ABHORRE +ABHORREE +ABHORRER +ABHORREZ +ABIMA +ABIMAI +ABIMAIT +ABIMANT +ABIMASSE +ABIMAT +ABIME +ABIMEE +ABIMENT +ABIMER +ABIMERA +ABIMERAI +ABIMEREZ +ABIMEZ +ABIMIEZ +ABJECT +ABJECTE +ABJURA +ABJURAI +ABJURAIT +ABJURANT +ABJURAT +ABJURE +ABJUREE +ABJURENT +ABJURER +ABJURERA +ABJUREZ +ABJURIEZ +ABLATIF +ABLATION +ABLATIVE +ABLEGAT +ABLETTE +ABLOQUA +ABLOQUAI +ABLOQUAT +ABLOQUE +ABLOQUEE +ABLOQUER +ABLOQUEZ +ABLUTION +ABOI +ABOIE +ABOIENT +ABOIERA +ABOIERAI +ABOIEREZ +ABOLI +ABOLIE +ABOLIR +ABOLIRA +ABOLIRAI +ABOLIREZ +ABOLISSE +ABOLIT +ABOMINA +ABOMINAI +ABOMINAT +ABOMINE +ABOMINEE +ABOMINER +ABOMINEZ +ABONDA +ABONDAI +ABONDAIT +ABONDANT +ABONDAT +ABONDE +ABONDENT +ABONDER +ABONDERA +ABONDEZ +ABONDIEZ +ABONNA +ABONNAI +ABONNAIT +ABONNANT +ABONNAT +ABONNE +ABONNEE +ABONNENT +ABONNER +ABONNERA +ABONNEZ +ABONNI +ABONNIE +ABONNIEZ +ABONNIR +ABONNIRA +ABONNIT +ABORD +ABORDA +ABORDAGE +ABORDAI +ABORDAIT +ABORDANT +ABORDAT +ABORDE +ABORDEE +ABORDENT +ABORDER +ABORDERA +ABORDEZ +ABORDIEZ +ABORTIF +ABORTIVE +ABOT +ABOUCHA +ABOUCHAI +ABOUCHAT +ABOUCHE +ABOUCHEE +ABOUCHER +ABOUCHEZ +ABOULA +ABOULAI +ABOULAIT +ABOULANT +ABOULAT +ABOULE +ABOULEE +ABOULENT +ABOULER +ABOULERA +ABOULEZ +ABOULIE +ABOULIEZ +ABOUT +ABOUTA +ABOUTAI +ABOUTAIT +ABOUTANT +ABOUTAT +ABOUTE +ABOUTEE +ABOUTENT +ABOUTER +ABOUTERA +ABOUTEZ +ABOUTI +ABOUTIEZ +ABOUTIR +ABOUTIRA +ABOUTIT +ABOYA +ABOYAI +ABOYAIT +ABOYANT +ABOYASSE +ABOYAT +ABOYE +ABOYER +ABOYEUR +ABOYEUSE +ABOYEZ +ABOYIEZ +ABRASA +ABRASAI +ABRASAIT +ABRASANT +ABRASAT +ABRASE +ABRASEE +ABRASENT +ABRASER +ABRASERA +ABRASEZ +ABRASIEZ +ABRASIF +ABRASION +ABRASIVE +ABREGE +ABREGEA +ABREGEAI +ABREGEAT +ABREGEE +ABREGENT +ABREGER +ABREGERA +ABREGEZ +ABREGIEZ +ABREUVA +ABREUVAI +ABREUVAT +ABREUVE +ABREUVEE +ABREUVER +ABREUVEZ +ABRI +ABRICOT +ABRICOTA +ABRICOTE +ABRITA +ABRITAI +ABRITAIT +ABRITANT +ABRITAT +ABRITE +ABRITEE +ABRITENT +ABRITER +ABRITERA +ABRITEZ +ABRITIEZ +ABRIVENT +ABROGE +ABROGEA +ABROGEAI +ABROGEAT +ABROGEE +ABROGENT +ABROGER +ABROGERA +ABROGEZ +ABROGIEZ +ABRUPT +ABRUPTE +ABRUTI +ABRUTIE +ABRUTIR +ABRUTIRA +ABRUTIT +ABSCISSE +ABSCONSE +ABSENCE +ABSENT +ABSENTE +ABSENTEE +ABSENTER +ABSENTEZ +ABSIDE +ABSINTHE +ABSOLU +ABSOLUE +ABSOLVE +ABSOLVEZ +ABSORBA +ABSORBAI +ABSORBAT +ABSORBE +ABSORBEE +ABSORBER +ABSORBEZ +ABSOUDRA +ABSOUDRE +ABSOUT +ABSOUTE +ABSTEME +ABSTENEZ +ABSTENIR +ABSTENU +ABSTENUE +ABSTRAIE +ABSTRAIT +ABSTRUSE +ABSURDE +ABUSA +ABUSAI +ABUSAIT +ABUSANT +ABUSASSE +ABUSAT +ABUSE +ABUSEE +ABUSENT +ABUSER +ABUSERA +ABUSERAI +ABUSEREZ +ABUSEZ +ABUSIEZ +ABUSIF +ABUSIVE +ABYSSAL +ABYSSALE +ABYSSE +ABYSSIN +ABYSSINE +ACABIT +ACACIA +ACADEMIE +ACADIEN +ACAJOU +ACALEPHE +ACANTHE +ACARIEN +ACAULE +ACCABLA +ACCABLAI +ACCABLAT +ACCABLE +ACCABLEE +ACCABLER +ACCABLEZ +ACCALMIE +ACCAPARA +ACCAPARE +ACCEDA +ACCEDAI +ACCEDAIT +ACCEDANT +ACCEDAT +ACCEDE +ACCEDENT +ACCEDER +ACCEDERA +ACCEDEZ +ACCEDIEZ +ACCELERA +ACCELERE +ACCENT +ACCENTUA +ACCENTUE +ACCEPTA +ACCEPTAI +ACCEPTAT +ACCEPTE +ACCEPTEE +ACCEPTER +ACCEPTEZ +ACCESSIT +ACCIDENT +ACCISE +ACCLAMA +ACCLAMAI +ACCLAMAT +ACCLAME +ACCLAMEE +ACCLAMER +ACCLAMEZ +ACCOINTE +ACCOLA +ACCOLADE +ACCOLAI +ACCOLAIT +ACCOLANT +ACCOLAT +ACCOLE +ACCOLEE +ACCOLENT +ACCOLER +ACCOLERA +ACCOLEZ +ACCOLIEZ +ACCOMPLI +ACCORA +ACCORAI +ACCORAIT +ACCORANT +ACCORAT +ACCORD +ACCORDA +ACCORDAI +ACCORDAT +ACCORDE +ACCORDEE +ACCORDER +ACCORDEZ +ACCORE +ACCOREE +ACCORENT +ACCORER +ACCORERA +ACCOREZ +ACCORIEZ +ACCORT +ACCORTE +ACCOSTA +ACCOSTAI +ACCOSTAT +ACCOSTE +ACCOSTEE +ACCOSTER +ACCOSTEZ +ACCOT +ACCOTA +ACCOTAI +ACCOTAIT +ACCOTANT +ACCOTAT +ACCOTE +ACCOTEE +ACCOTENT +ACCOTER +ACCOTERA +ACCOTEZ +ACCOTIEZ +ACCOTOIR +ACCOUA +ACCOUAI +ACCOUAIT +ACCOUANT +ACCOUAT +ACCOUCHA +ACCOUCHE +ACCOUDE +ACCOUDEE +ACCOUDER +ACCOUDEZ +ACCOUE +ACCOUEE +ACCOUENT +ACCOUER +ACCOUERA +ACCOUEZ +ACCOUIEZ +ACCOUPLA +ACCOUPLE +ACCOURCI +ACCOURE +ACCOUREZ +ACCOURIR +ACCOURRA +ACCOURT +ACCOURU +ACCOURUE +ACCOURUT +ACCOUTRA +ACCOUTRE +ACCROC +ACCROCHA +ACCROCHE +ACCROIRE +ACCROIT +ACCROUPI +ACCRU +ACCRUE +ACCRUSSE +ACCRUT +ACCU +ACCUEIL +ACCULA +ACCULAI +ACCULAIT +ACCULANT +ACCULAT +ACCULE +ACCULEE +ACCULENT +ACCULER +ACCULERA +ACCULEZ +ACCULIEZ +ACCUMULA +ACCUMULE +ACCUSA +ACCUSAI +ACCUSAIT +ACCUSANT +ACCUSAT +ACCUSE +ACCUSEE +ACCUSENT +ACCUSER +ACCUSERA +ACCUSEZ +ACCUSIEZ +ACEPHALE +ACERA +ACERAI +ACERAIT +ACERANT +ACERASSE +ACERAT +ACERBE +ACERBITE +ACERE +ACEREE +ACERENT +ACERER +ACERERA +ACERERAI +ACEREREZ +ACEREZ +ACERIEZ +ACESCENT +ACETATE +ACETIFIA +ACETIFIE +ACETIQUE +ACETONE +ACETYLA +ACETYLAI +ACETYLAT +ACETYLE +ACETYLEE +ACETYLER +ACETYLEZ +ACHARNA +ACHARNAI +ACHARNAT +ACHARNE +ACHARNEE +ACHARNER +ACHARNEZ +ACHAT +ACHEEN +ACHEENNE +ACHEMINA +ACHEMINE +ACHETA +ACHETAI +ACHETAIT +ACHETANT +ACHETAT +ACHETE +ACHETEE +ACHETENT +ACHETER +ACHETERA +ACHETEUR +ACHETEZ +ACHETIEZ +ACHEVA +ACHEVAI +ACHEVAIT +ACHEVANT +ACHEVAT +ACHEVE +ACHEVEE +ACHEVENT +ACHEVER +ACHEVERA +ACHEVEZ +ACHEVIEZ +ACHIGAN +ACHILLEE +ACHOLIE +ACHOPPE +ACHOPPEE +ACHOPPER +ACHOPPEZ +ACHROMAT +ACHROME +ACHROMIE +ACHYLIE +ACIDALIE +ACIDE +ACIDIFIA +ACIDIFIE +ACIDITE +ACIDOSE +ACIDULA +ACIDULAI +ACIDULAT +ACIDULE +ACIDULEE +ACIDULER +ACIDULEZ +ACIER +ACIERA +ACIERAGE +ACIERAI +ACIERAIT +ACIERANT +ACIERAT +ACIERE +ACIEREE +ACIERENT +ACIERER +ACIERERA +ACIEREZ +ACIERIE +ACIERIEZ +ACINI +ACISELA +ACISELAI +ACISELAT +ACISELE +ACISELEE +ACISELER +ACISELEZ +ACME +ACNE +ACNEIQUE +ACOLYTE +ACOMPTE +ACON +ACONAGE +ACONIER +ACONIT +ACOQUINE +ACORE +ACQUEREZ +ACQUERIR +ACQUERRA +ACQUET +ACQUIERE +ACQUIERT +ACQUISE +ACQUISSE +ACQUIT +ACQUITTA +ACQUITTE +ACRE +ACRETE +ACROBATE +ACROMION +ACRONYME +ACROPOLE +ACROTERE +ACTA +ACTAI +ACTAIT +ACTANT +ACTASSE +ACTAT +ACTE +ACTEE +ACTENT +ACTER +ACTERA +ACTERAI +ACTERAIT +ACTERENT +ACTEREZ +ACTERIEZ +ACTEUR +ACTEZ +ACTIEZ +ACTIF +ACTINIE +ACTINITE +ACTINIUM +ACTINOTE +ACTION +ACTIONNA +ACTIONNE +ACTIVA +ACTIVAI +ACTIVAIT +ACTIVANT +ACTIVAT +ACTIVE +ACTIVEE +ACTIVENT +ACTIVER +ACTIVERA +ACTIVEUR +ACTIVEZ +ACTIVIEZ +ACTIVITE +ACTRICE +ACTUAIRE +ACTUEL +ACTUELLE +ACUITE +ACUMINE +ACUMINEE +ADAGE +ADAGIO +ADAMISME +ADAPTA +ADAPTAI +ADAPTAIT +ADAPTANT +ADAPTAT +ADAPTE +ADAPTEE +ADAPTENT +ADAPTER +ADAPTERA +ADAPTEZ +ADAPTIEZ +ADDENDA +ADDITIF +ADDITION +ADDITIVE +ADENITE +ADENOIDE +ADENOME +ADENT +ADEPTE +ADEQUAT +ADEQUATE +ADEXTRE +ADEXTREE +ADHERA +ADHERAI +ADHERAIT +ADHERANT +ADHERAT +ADHERE +ADHERENT +ADHERER +ADHERERA +ADHEREZ +ADHERIEZ +ADHESIF +ADHESION +ADHESIVE +ADIEU +ADIEUX +ADIPEUSE +ADIPEUX +ADIPIQUE +ADIPOSE +ADIPSIE +ADJACENT +ADJECTIF +ADJOIGNE +ADJOINT +ADJOINTE +ADJUDANT +ADJUGE +ADJUGEA +ADJUGEAI +ADJUGEAT +ADJUGEE +ADJUGENT +ADJUGER +ADJUGERA +ADJUGEZ +ADJUGIEZ +ADJURA +ADJURAI +ADJURAIT +ADJURANT +ADJURAT +ADJURE +ADJUREE +ADJURENT +ADJURER +ADJURERA +ADJUREZ +ADJURIEZ +ADJUVANT +ADJUVAT +ADMET +ADMETTE +ADMETTEZ +ADMETTRA +ADMETTRE +ADMIRA +ADMIRAI +ADMIRAIT +ADMIRANT +ADMIRAT +ADMIRE +ADMIREE +ADMIRENT +ADMIRER +ADMIRERA +ADMIREZ +ADMIRIEZ +ADMISE +ADMISSE +ADMIT +ADNE +ADNEE +ADONISE +ADONISEE +ADONISER +ADONISEZ +ADONNE +ADONNEE +ADONNER +ADONNEZ +ADONNIEZ +ADOPTA +ADOPTAI +ADOPTAIT +ADOPTANT +ADOPTAT +ADOPTE +ADOPTEE +ADOPTENT +ADOPTER +ADOPTERA +ADOPTEZ +ADOPTIEZ +ADOPTIF +ADOPTION +ADOPTIVE +ADORA +ADORABLE +ADORAI +ADORAIT +ADORANT +ADORASSE +ADORAT +ADORE +ADOREE +ADORENT +ADORER +ADORERA +ADORERAI +ADOREREZ +ADOREZ +ADORIEZ +ADOSSA +ADOSSAI +ADOSSAIT +ADOSSANT +ADOSSAT +ADOSSE +ADOSSEE +ADOSSER +ADOSSERA +ADOUBA +ADOUBAI +ADOUBAIT +ADOUBANT +ADOUBAT +ADOUBE +ADOUBEE +ADOUBENT +ADOUBER +ADOUBERA +ADOUBEZ +ADOUBIEZ +ADOUCI +ADOUCIE +ADOUCIR +ADOUCIRA +ADOUCIT +ADRESSA +ADRESSAI +ADRESSAT +ADRESSE +ADRESSEE +ADRESSER +ADRET +ADROIT +ADROITE +ADSTRAT +ADULA +ADULAI +ADULAIT +ADULANT +ADULASSE +ADULAT +ADULE +ADULEE +ADULENT +ADULER +ADULERA +ADULERAI +ADULEREZ +ADULEZ +ADULIEZ +ADULTE +ADULTERA +ADULTERE +ADVENAIT +ADVENIR +ADVENTIF +ADVENU +ADVENUE +ADVERBE +ADVERSE +ADVIENNE +ADVIENT +ADVINT +ADYNAMIE +AEDE +AEGOSOME +AEQUO +AERA +AERAI +AERAIT +AERANT +AERASSE +AERAT +AERATEUR +AERATION +AERE +AEREE +AERENT +AERER +AERERA +AERERAI +AERERAIT +AERERENT +AEREREZ +AERERIEZ +AEREZ +AERIEN +AERIENNE +AERIEZ +AEROBIE +AEROGARE +AEROLITE +AERONEF +AEROPORT +AEROSOL +AEROSTAT +AESCHNE +AFFABLE +AFFABULA +AFFABULE +AFFADI +AFFADIE +AFFADIR +AFFADIRA +AFFADIT +AFFAIBLI +AFFAIRE +AFFAIREE +AFFAIRER +AFFAIREZ +AFFAISSA +AFFAISSE +AFFALA +AFFALAI +AFFALAIT +AFFALANT +AFFALAT +AFFALE +AFFALEE +AFFALENT +AFFALER +AFFALERA +AFFALEZ +AFFALIEZ +AFFAMA +AFFAMAI +AFFAMAIT +AFFAMANT +AFFAMAT +AFFAME +AFFAMEE +AFFAMENT +AFFAMER +AFFAMERA +AFFAMEUR +AFFAMEZ +AFFAMIEZ +AFFEAGE +AFFEAGEA +AFFEAGEE +AFFEAGER +AFFEAGEZ +AFFECT +AFFECTA +AFFECTAI +AFFECTAT +AFFECTE +AFFECTEE +AFFECTER +AFFECTEZ +AFFECTIF +AFFENAGE +AFFERA +AFFERAI +AFFERAIT +AFFERANT +AFFERAT +AFFERE +AFFERENT +AFFERER +AFFERERA +AFFEREZ +AFFERIEZ +AFFERMA +AFFERMAI +AFFERMAT +AFFERME +AFFERMEE +AFFERMER +AFFERMEZ +AFFERMI +AFFERMIE +AFFERMIR +AFFERMIT +AFFETE +AFFETEE +AFFICHA +AFFICHAI +AFFICHAT +AFFICHE +AFFICHEE +AFFICHER +AFFICHEZ +AFFIDE +AFFIDEE +AFFILA +AFFILAGE +AFFILAI +AFFILAIT +AFFILANT +AFFILAT +AFFILE +AFFILEE +AFFILENT +AFFILER +AFFILERA +AFFILEZ +AFFILIA +AFFILIAI +AFFILIAT +AFFILIE +AFFILIEE +AFFILIER +AFFILIEZ +AFFILOIR +AFFIN +AFFINA +AFFINAGE +AFFINAI +AFFINAIT +AFFINANT +AFFINAT +AFFINE +AFFINEE +AFFINENT +AFFINER +AFFINERA +AFFINEUR +AFFINEZ +AFFINIEZ +AFFINITE +AFFIQUET +AFFIRMA +AFFIRMAI +AFFIRMAT +AFFIRME +AFFIRMEE +AFFIRMER +AFFIRMEZ +AFFIXAL +AFFIXALE +AFFIXE +AFFLEURA +AFFLEURE +AFFLIGE +AFFLIGEA +AFFLIGEE +AFFLIGER +AFFLIGEZ +AFFLOUA +AFFLOUAI +AFFLOUAT +AFFLOUE +AFFLOUEE +AFFLOUER +AFFLOUEZ +AFFLUA +AFFLUAI +AFFLUAIT +AFFLUANT +AFFLUAT +AFFLUE +AFFLUENT +AFFLUER +AFFLUERA +AFFLUEZ +AFFLUIEZ +AFFLUX +AFFOLA +AFFOLAI +AFFOLAIT +AFFOLANT +AFFOLAT +AFFOLE +AFFOLEE +AFFOLENT +AFFOLER +AFFOLERA +AFFOLEZ +AFFOLIEZ +AFFOUAGE +AFFRETA +AFFRETAI +AFFRETAT +AFFRETE +AFFRETEE +AFFRETER +AFFRETEZ +AFFREUSE +AFFREUX +AFFRICHA +AFFRICHE +AFFRIOLA +AFFRIOLE +AFFRITA +AFFRITAI +AFFRITAT +AFFRITE +AFFRITEE +AFFRITER +AFFRITEZ +AFFRONT +AFFRONTA +AFFRONTE +AFFRUITA +AFFRUITE +AFFUBLA +AFFUBLAI +AFFUBLAT +AFFUBLE +AFFUBLEE +AFFUBLER +AFFUBLEZ +AFFURA +AFFURAI +AFFURAIT +AFFURANT +AFFURAT +AFFURE +AFFUREE +AFFURENT +AFFURER +AFFURERA +AFFUREZ +AFFURIEZ +AFFUSION +AFFUT +AFFUTA +AFFUTAGE +AFFUTAI +AFFUTAIT +AFFUTANT +AFFUTAT +AFFUTE +AFFUTEE +AFFUTENT +AFFUTER +AFFUTERA +AFFUTEUR +AFFUTEZ +AFFUTIEZ +AFGHAN +AFGHANE +AFIN +AFOCAL +AFOCALE +AFRICAIN +AFRO +AGACA +AGACAI +AGACAIT +AGACANT +AGACASSE +AGACAT +AGACE +AGACEE +AGACENT +AGACER +AGACERA +AGACERAI +AGACEREZ +AGACERIE +AGACEZ +AGACIEZ +AGAMI +AGAPE +AGARIC +AGATE +AGATISE +AGATISEE +AGAVE +AGEE +AGENCA +AGENCAI +AGENCAIT +AGENCANT +AGENCAT +AGENCE +AGENCEE +AGENCENT +AGENCER +AGENCERA +AGENCEZ +AGENCIEZ +AGENDA +AGENESIE +AGENT +AGERATE +AGGRAVA +AGGRAVAI +AGGRAVAT +AGGRAVE +AGGRAVEE +AGGRAVER +AGGRAVEZ +AGHA +AGILE +AGILITE +AGIO +AGIOTA +AGIOTAGE +AGIOTAI +AGIOTAIT +AGIOTANT +AGIOTAT +AGIOTE +AGIOTENT +AGIOTER +AGIOTERA +AGIOTEUR +AGIOTEZ +AGIOTIEZ +AGIR +AGIRA +AGIRAI +AGIRAIT +AGIRENT +AGIREZ +AGIRIEZ +AGIRONT +AGISSAIT +AGISSANT +AGISSE +AGIT +AGITA +AGITAI +AGITAIT +AGITANT +AGITASSE +AGITAT +AGITATO +AGITE +AGITEE +AGITENT +AGITER +AGITERA +AGITERAI +AGITEREZ +AGITEZ +AGITIEZ +AGLYPHE +AGNAT +AGNATHE +AGNEAU +AGNELA +AGNELAGE +AGNELAI +AGNELAIT +AGNELANT +AGNELAT +AGNELE +AGNELER +AGNELET +AGNELEZ +AGNELIEZ +AGNELIN +AGNELINE +AGNELLE +AGNOSIE +AGONIE +AGONIR +AGONIRA +AGONIRAI +AGONIREZ +AGONISA +AGONISAI +AGONISAT +AGONISE +AGONISER +AGONISEZ +AGONISSE +AGONIT +AGORA +AGOUTI +AGRAFA +AGRAFAGE +AGRAFAI +AGRAFAIT +AGRAFANT +AGRAFAT +AGRAFE +AGRAFEE +AGRAFENT +AGRAFER +AGRAFERA +AGRAFEZ +AGRAFIEZ +AGRAIRE +AGRANDI +AGRANDIE +AGRANDIR +AGRANDIT +AGRAPHIE +AGRARIEN +AGREA +AGREABLE +AGREAI +AGREAIT +AGREANT +AGREASSE +AGREAT +AGREE +AGREEE +AGREENT +AGREER +AGREERA +AGREERAI +AGREEREZ +AGREEZ +AGREGAT +AGREGE +AGREGEA +AGREGEAI +AGREGEAT +AGREGEE +AGREGENT +AGREGER +AGREGERA +AGREGEZ +AGREGIEZ +AGREIEZ +AGREMENT +AGRESSA +AGRESSAI +AGRESSAT +AGRESSE +AGRESSEE +AGRESSER +AGRESSIF +AGRESTE +AGRICHA +AGRICHAI +AGRICHAT +AGRICHE +AGRICHEE +AGRICHER +AGRICHEZ +AGRICOLE +AGRIFFE +AGRIFFEE +AGRIFFER +AGRIFFEZ +AGRILE +AGRION +AGRIOTE +AGRIPPA +AGRIPPAI +AGRIPPAT +AGRIPPE +AGRIPPEE +AGRIPPER +AGRIPPEZ +AGRONOME +AGRUME +AGUERRI +AGUERRIE +AGUERRIR +AGUERRIT +AGUEUSIE +AGUI +AGUICHA +AGUICHAI +AGUICHAT +AGUICHE +AGUICHEE +AGUICHER +AGUICHEZ +AHAN +AHANA +AHANAI +AHANAIT +AHANANT +AHANASSE +AHANAT +AHANE +AHANENT +AHANER +AHANERA +AHANERAI +AHANEREZ +AHANEZ +AHANIEZ +AHEURTE +AHEURTEE +AHEURTER +AHEURTEZ +AHURI +AHURIE +AHURIR +AHURIRA +AHURIRAI +AHURIREZ +AHURISSE +AHURIT +AICHE +AIDA +AIDAI +AIDAIT +AIDANT +AIDASSE +AIDAT +AIDE +AIDEE +AIDENT +AIDER +AIDERA +AIDERAI +AIDERAIT +AIDERENT +AIDEREZ +AIDERIEZ +AIDEZ +AIDIEZ +AIEUL +AIEULE +AIEUX +AIGLE +AIGLEFIN +AIGLON +AIGLONNE +AIGRE +AIGREFIN +AIGRELET +AIGRETTE +AIGREUR +AIGRI +AIGRIE +AIGRIR +AIGRIRA +AIGRIRAI +AIGRIREZ +AIGRISSE +AIGRIT +AIGU +AIGUE +AIGUIERE +AIGUILLA +AIGUILLE +AIGUISA +AIGUISAI +AIGUISAT +AIGUISE +AIGUISEE +AIGUISER +AIGUISEZ +AIKIDO +AILE +AILEE +AILERON +AILETTE +AILIER +AILLA +AILLAI +AILLAIT +AILLANT +AILLASSE +AILLAT +AILLE +AILLEE +AILLENT +AILLER +AILLERA +AILLERAI +AILLEREZ +AILLEZ +AILLIEZ +AILLOLI +AIMA +AIMABLE +AIMAI +AIMAIT +AIMANT +AIMANTA +AIMANTAI +AIMANTAT +AIMANTEE +AIMANTER +AIMANTEZ +AIMASSE +AIMAT +AIME +AIMEE +AIMENT +AIMER +AIMERA +AIMERAI +AIMERAIT +AIMERENT +AIMEREZ +AIMERIEZ +AIMEZ +AIMIEZ +AINE +AINEE +AINESSE +AINSI +AIOLI +AIRA +AIRAI +AIRAIN +AIRAIT +AIRANT +AIRASSE +AIRAT +AIRE +AIREDALE +AIRELLE +AIRENT +AIRER +AIRERA +AIRERAI +AIRERAIT +AIRERENT +AIREREZ +AIRERIEZ +AIREZ +AIRIEZ +AISANCE +AISE +AISEE +AISEMENT +AISSELLE +AISY +AJOINTA +AJOINTAI +AJOINTAT +AJOINTE +AJOINTEE +AJOINTER +AJOINTEZ +AJONC +AJOUR +AJOURA +AJOURAI +AJOURAIT +AJOURANT +AJOURAT +AJOURE +AJOUREE +AJOURENT +AJOURER +AJOURERA +AJOUREZ +AJOURIEZ +AJOURNA +AJOURNAI +AJOURNAT +AJOURNE +AJOURNEE +AJOURNER +AJOURNEZ +AJOUT +AJOUTA +AJOUTAI +AJOUTAIT +AJOUTANT +AJOUTAT +AJOUTE +AJOUTEE +AJOUTENT +AJOUTER +AJOUTERA +AJOUTEZ +AJOUTIEZ +AJUSTA +AJUSTAGE +AJUSTAI +AJUSTAIT +AJUSTANT +AJUSTAT +AJUSTE +AJUSTEE +AJUSTENT +AJUSTER +AJUSTERA +AJUSTEUR +AJUSTEZ +AJUSTIEZ +AKINESIE +AKKADIEN +AKVAVIT +ALAIRE +ALAISE +ALAMBIC +ALANDIER +ALANGUI +ALANGUIE +ALANGUIR +ALANGUIT +ALANINE +ALARMA +ALARMAI +ALARMAIT +ALARMANT +ALARMAT +ALARME +ALARMEE +ALARMENT +ALARMER +ALARMERA +ALARMEZ +ALARMIEZ +ALASTRIM +ALATERNE +ALBATRE +ALBEDO +ALBERGE +ALBITE +ALBUGINE +ALBUGO +ALBUM +ALBUMEN +ALBUMINE +ALBUMOSE +ALCADE +ALCAIQUE +ALCALI +ALCALIN +ALCALINE +ALCALISA +ALCALISE +ALCALOSE +ALCENE +ALCHIMIE +ALCOOL +ALCOOLAT +ALCOOLE +ALCOVE +ALCOYLE +ALCYNE +ALCYON +ALDEHYDE +ALDIN +ALDINE +ALDOL +ALEA +ALENE +ALENTI +ALENTIE +ALENTIR +ALENTIRA +ALENTIT +ALENTOUR +ALEPH +ALEPINE +ALERION +ALERTA +ALERTAI +ALERTAIT +ALERTANT +ALERTAT +ALERTE +ALERTEE +ALERTENT +ALERTER +ALERTERA +ALERTEZ +ALERTIEZ +ALESA +ALESAGE +ALESAI +ALESAIT +ALESANT +ALESASSE +ALESAT +ALESE +ALESEE +ALESENT +ALESER +ALESERA +ALESERAI +ALESEREZ +ALESEUR +ALESEUSE +ALESEZ +ALESIEZ +ALESOIR +ALEURITE +ALEURODE +ALEURONE +ALEVIN +ALEVINA +ALEVINAI +ALEVINAT +ALEVINE +ALEVINEE +ALEVINER +ALEVINEZ +ALEZAN +ALFA +ALFATIER +ALFENIDE +ALGARADE +ALGEBRE +ALGERIEN +ALGIDE +ALGIDITE +ALGIE +ALGINATE +ALGINE +ALGIQUE +ALGOL +ALGUE +ALIBI +ALICANT +ALIDADE +ALIENA +ALIENAI +ALIENAIT +ALIENANT +ALIENAT +ALIENE +ALIENEE +ALIENENT +ALIENER +ALIENERA +ALIENEZ +ALIENIEZ +ALIFERE +ALIGNA +ALIGNAI +ALIGNAIT +ALIGNANT +ALIGNAT +ALIGNE +ALIGNEE +ALIGNENT +ALIGNER +ALIGNERA +ALIGNEZ +ALIGNIEZ +ALIGOTE +ALIMENT +ALIMENTA +ALIMENTE +ALINEA +ALIQUOTE +ALISE +ALISIER +ALISME +ALITA +ALITAI +ALITAIT +ALITANT +ALITASSE +ALITAT +ALITE +ALITEE +ALITENT +ALITER +ALITERA +ALITERAI +ALITEREZ +ALITEZ +ALITIEZ +ALIZE +ALLA +ALLAI +ALLAIT +ALLAITA +ALLAITAI +ALLAITAT +ALLAITE +ALLAITEE +ALLAITER +ALLAITEZ +ALLANT +ALLASSE +ALLAT +ALLE +ALLECHA +ALLECHAI +ALLECHAT +ALLECHE +ALLECHEE +ALLECHER +ALLECHEZ +ALLEE +ALLEGE +ALLEGEA +ALLEGEAI +ALLEGEAT +ALLEGEE +ALLEGENT +ALLEGER +ALLEGERA +ALLEGEZ +ALLEGI +ALLEGIE +ALLEGIEZ +ALLEGIR +ALLEGIRA +ALLEGIT +ALLEGRE +ALLEGRO +ALLEGUA +ALLEGUAI +ALLEGUAT +ALLEGUE +ALLEGUEE +ALLEGUER +ALLEGUEZ +ALLELUIA +ALLEMAND +ALLENE +ALLER +ALLERENT +ALLERGIE +ALLEZ +ALLIA +ALLIACE +ALLIACEE +ALLIAGE +ALLIAI +ALLIAIT +ALLIANCE +ALLIANT +ALLIASSE +ALLIAT +ALLIE +ALLIEE +ALLIENT +ALLIER +ALLIERA +ALLIERAI +ALLIEREZ +ALLIEZ +ALLIIEZ +ALLO +ALLODIAL +ALLOGENE +ALLONGE +ALLONGEA +ALLONGEE +ALLONGER +ALLONGEZ +ALLOUA +ALLOUAI +ALLOUAIT +ALLOUANT +ALLOUAT +ALLOUE +ALLOUEE +ALLOUENT +ALLOUER +ALLOUERA +ALLOUEZ +ALLOUIEZ +ALLUCHON +ALLUMA +ALLUMAGE +ALLUMAI +ALLUMAIT +ALLUMANT +ALLUMAT +ALLUME +ALLUMEE +ALLUMENT +ALLUMER +ALLUMERA +ALLUMEUR +ALLUMEZ +ALLUMIEZ +ALLURE +ALLUREE +ALLUSIF +ALLUSION +ALLUSIVE +ALLUVIAL +ALLUVION +ALLYLE +ALMANACH +ALMANDIN +ALMEE +ALOGIE +ALOGIQUE +ALOI +ALOPECIE +ALOSE +ALOUATE +ALOUETTE +ALOURDI +ALOURDIE +ALOURDIR +ALOURDIT +ALOYAU +ALPAGA +ALPAGE +ALPAGUA +ALPAGUAI +ALPAGUAT +ALPAGUE +ALPAGUEE +ALPAGUER +ALPAGUEZ +ALPAX +ALPE +ALPESTRE +ALPHA +ALPHABET +ALPIN +ALPINE +ALPISTE +ALSACIEN +ALTERA +ALTERAI +ALTERAIT +ALTERANT +ALTERAT +ALTERE +ALTEREE +ALTERENT +ALTERER +ALTERERA +ALTEREZ +ALTERIEZ +ALTERITE +ALTERNA +ALTERNAI +ALTERNAT +ALTERNE +ALTERNEE +ALTERNER +ALTERNEZ +ALTESSE +ALTIER +ALTIERE +ALTIPORT +ALTISE +ALTISTE +ALTITUDE +ALTO +ALUCITE +ALUMINA +ALUMINAI +ALUMINAT +ALUMINE +ALUMINEE +ALUMINER +ALUMINEZ +ALUN +ALUNA +ALUNAI +ALUNAIT +ALUNANT +ALUNASSE +ALUNAT +ALUNE +ALUNEE +ALUNENT +ALUNER +ALUNERA +ALUNERAI +ALUNEREZ +ALUNEZ +ALUNI +ALUNIEZ +ALUNIR +ALUNIRA +ALUNIRAI +ALUNIREZ +ALUNISSE +ALUNIT +ALUNITE +ALVEOLE +ALVEOLEE +ALVIN +ALVINE +ALYTE +AMADOU +AMADOUA +AMADOUAI +AMADOUAT +AMADOUE +AMADOUEE +AMADOUER +AMADOUEZ +AMAIGRI +AMAIGRIE +AMAIGRIR +AMAIGRIT +AMALGAMA +AMALGAME +AMANDAIE +AMANDE +AMANDIER +AMANITE +AMANT +AMARIL +AMARILE +AMARINA +AMARINAI +AMARINAT +AMARINE +AMARINEE +AMARINER +AMARINEZ +AMARRA +AMARRAGE +AMARRAI +AMARRAIT +AMARRANT +AMARRAT +AMARRE +AMARREE +AMARRENT +AMARRER +AMARRERA +AMARREZ +AMARRIEZ +AMASSA +AMASSAI +AMASSAIT +AMASSANT +AMASSAT +AMASSE +AMASSEE +AMASSER +AMASSERA +AMATEUR +AMATI +AMATIE +AMATIR +AMATIRA +AMATIRAI +AMATIREZ +AMATISSE +AMATIT +AMAUROSE +AMAZONE +AMBIANCE +AMBIANT +AMBIGU +AMBIGUE +AMBITION +AMBLA +AMBLAI +AMBLAIT +AMBLANT +AMBLASSE +AMBLAT +AMBLE +AMBLENT +AMBLER +AMBLERA +AMBLERAI +AMBLEREZ +AMBLEUR +AMBLEUSE +AMBLEZ +AMBLIEZ +AMBLYOPE +AMBON +AMBRA +AMBRAI +AMBRAIT +AMBRANT +AMBRASSE +AMBRAT +AMBRE +AMBREE +AMBRENT +AMBRER +AMBRERA +AMBRERAI +AMBREREZ +AMBREZ +AMBRIEZ +AMBULANT +AMELIORA +AMELIORE +AMEN +AMENA +AMENAGE +AMENAGEA +AMENAGEE +AMENAGER +AMENAGEZ +AMENAI +AMENAIT +AMENANT +AMENASSE +AMENAT +AMENDA +AMENDAI +AMENDAIT +AMENDANT +AMENDAT +AMENDE +AMENDEE +AMENDENT +AMENDER +AMENDERA +AMENDEZ +AMENDIEZ +AMENE +AMENEE +AMENENT +AMENER +AMENERA +AMENERAI +AMENEREZ +AMENEZ +AMENIEZ +AMENITE +AMENUISA +AMENUISE +AMER +AMERE +AMERRI +AMERRIR +AMERRIRA +AMERRIT +AMERTUME +AMETROPE +AMEUBLI +AMEUBLIE +AMEUBLIR +AMEUBLIT +AMEUTA +AMEUTAI +AMEUTAIT +AMEUTANT +AMEUTAT +AMEUTE +AMEUTEE +AMEUTENT +AMEUTER +AMEUTERA +AMEUTEZ +AMEUTIEZ +AMIABLE +AMIBE +AMIBIASE +AMIBIEN +AMIBOIDE +AMICAL +AMICALE +AMICT +AMIDE +AMIDON +AMIDONNA +AMIDONNE +AMIE +AMINCI +AMINCIE +AMINCIR +AMINCIRA +AMINCIT +AMINE +AMINEE +AMIRAL +AMIRALE +AMIRAUTE +AMITIE +AMITOSE +AMMODYTE +AMMONIAC +AMMONITE +AMMONIUM +AMNESIE +AMNISTIA +AMNISTIE +AMOCHA +AMOCHAI +AMOCHAIT +AMOCHANT +AMOCHAT +AMOCHE +AMOCHEE +AMOCHENT +AMOCHER +AMOCHERA +AMOCHEZ +AMOCHIEZ +AMODIA +AMODIAI +AMODIAIT +AMODIANT +AMODIAT +AMODIE +AMODIEE +AMODIENT +AMODIER +AMODIERA +AMODIEZ +AMODIIEZ +AMOINDRI +AMOLLI +AMOLLIE +AMOLLIR +AMOLLIRA +AMOLLIT +AMONCELA +AMONCELE +AMONT +AMORAL +AMORALE +AMORCA +AMORCAGE +AMORCAI +AMORCAIT +AMORCANT +AMORCAT +AMORCE +AMORCEE +AMORCENT +AMORCER +AMORCERA +AMORCEZ +AMORCIEZ +AMOROSO +AMORPHE +AMORTI +AMORTIE +AMORTIR +AMORTIRA +AMORTIT +AMOUR +AMOUREUX +AMOVIBLE +AMPERE +AMPHI +AMPHIBIE +AMPHORE +AMPLE +AMPLEUR +AMPLI +AMPLIFIA +AMPLIFIE +AMPOULE +AMPOULEE +AMPUTA +AMPUTAI +AMPUTAIT +AMPUTANT +AMPUTAT +AMPUTE +AMPUTEE +AMPUTENT +AMPUTER +AMPUTERA +AMPUTEZ +AMPUTIEZ +AMUI +AMUIE +AMUIRENT +AMUIREZ +AMUIRIEZ +AMULETTE +AMURA +AMURAI +AMURAIT +AMURANT +AMURASSE +AMURAT +AMURE +AMUREE +AMURENT +AMURER +AMURERA +AMURERAI +AMUREREZ +AMUREZ +AMURIEZ +AMUSA +AMUSAI +AMUSAIT +AMUSANT +AMUSASSE +AMUSAT +AMUSE +AMUSEE +AMUSENT +AMUSER +AMUSERA +AMUSERAI +AMUSEREZ +AMUSETTE +AMUSEUR +AMUSEUSE +AMUSEZ +AMUSIE +AMUSIEZ +AMYGDALE +AMYLACE +AMYLACEE +AMYLASE +AMYLE +AMYLENE +AMYLIQUE +ANACONDA +ANAGOGIE +ANAL +ANALE +ANALECTA +ANALITE +ANALOGIE +ANALOGON +ANALOGUE +ANALYSA +ANALYSAI +ANALYSAT +ANALYSE +ANALYSEE +ANALYSER +ANALYSEZ +ANALYSTE +ANAMNESE +ANAPESTE +ANAPHASE +ANAPHORE +ANARCHIE +ANATHEME +ANATIFE +ANATOMIE +ANAVENIN +ANCETRE +ANCHE +ANCIEN +ANCIENNE +ANCOLIE +ANCRA +ANCRAGE +ANCRAI +ANCRAIT +ANCRANT +ANCRASSE +ANCRAT +ANCRE +ANCREE +ANCRENT +ANCRER +ANCRERA +ANCRERAI +ANCREREZ +ANCREZ +ANCRIEZ +ANDAIN +ANDALOU +ANDESITE +ANDIN +ANDINE +ANDRENE +ANDROCEE +ANDROIDE +ANEANTI +ANEANTIE +ANEANTIR +ANEANTIT +ANECDOTE +ANEMIA +ANEMIAI +ANEMIAIT +ANEMIANT +ANEMIAT +ANEMIE +ANEMIEE +ANEMIENT +ANEMIER +ANEMIERA +ANEMIEZ +ANEMIIEZ +ANEMIQUE +ANEMONE +ANERIE +ANEROIDE +ANESSE +ANETH +ANGARIE +ANGE +ANGEITE +ANGELOT +ANGEVIN +ANGEVINE +ANGINE +ANGINEUX +ANGIOME +ANGLAISA +ANGLAISE +ANGLE +ANGLET +ANGLICAN +ANGOISSA +ANGOISSE +ANGON +ANGOR +ANGORA +ANGUILLE +ANGULEUX +ANHELA +ANHELAI +ANHELAIT +ANHELANT +ANHELAT +ANHELE +ANHELENT +ANHELER +ANHELERA +ANHELEZ +ANHELIEZ +ANHYDRE +ANIER +ANIERE +ANILINE +ANILISME +ANIMA +ANIMAI +ANIMAIT +ANIMAL +ANIMALE +ANIMANT +ANIMASSE +ANIMAT +ANIME +ANIMEE +ANIMENT +ANIMER +ANIMERA +ANIMERAI +ANIMEREZ +ANIMEZ +ANIMIEZ +ANIMISME +ANIMISTE +ANION +ANISA +ANISAI +ANISAIT +ANISANT +ANISASSE +ANISAT +ANISE +ANISEE +ANISENT +ANISER +ANISERA +ANISERAI +ANISEREZ +ANISETTE +ANISEZ +ANISIEZ +ANKYLOSA +ANKYLOSE +ANNAL +ANNALE +ANNALITE +ANNAMITE +ANNEAU +ANNEE +ANNELA +ANNELAI +ANNELAIT +ANNELANT +ANNELAT +ANNELE +ANNELEE +ANNELER +ANNELEZ +ANNELIEZ +ANNELLE +ANNEXA +ANNEXAI +ANNEXAIT +ANNEXANT +ANNEXAT +ANNEXE +ANNEXEE +ANNEXENT +ANNEXER +ANNEXERA +ANNEXEZ +ANNEXIEZ +ANNEXION +ANNIHILA +ANNIHILE +ANNONCA +ANNONCAI +ANNONCAT +ANNONCE +ANNONCEE +ANNONCER +ANNONCEZ +ANNONE +ANNOTA +ANNOTAI +ANNOTAIT +ANNOTANT +ANNOTAT +ANNOTE +ANNOTEE +ANNOTENT +ANNOTER +ANNOTERA +ANNOTEZ +ANNOTIEZ +ANNUAIRE +ANNUEL +ANNUELLE +ANNUITE +ANNULA +ANNULAI +ANNULAIT +ANNULANT +ANNULAT +ANNULE +ANNULEE +ANNULENT +ANNULER +ANNULERA +ANNULEZ +ANNULIEZ +ANOBLI +ANOBLIE +ANOBLIR +ANOBLIRA +ANOBLIT +ANODE +ANODIN +ANODINE +ANODISA +ANODISAI +ANODISAT +ANODISE +ANODISEE +ANODISER +ANODISEZ +ANODONTE +ANOMAL +ANOMALE +ANOMALIE +ANOMIE +ANON +ANONNA +ANONNAI +ANONNAIT +ANONNANT +ANONNAT +ANONNE +ANONNEE +ANONNENT +ANONNER +ANONNERA +ANONNEZ +ANONNIEZ +ANONYMAT +ANONYME +ANOPHELE +ANORAK +ANORDI +ANORDIR +ANORDIRA +ANORDIT +ANOREXIE +ANORMAL +ANORMALE +ANOSMIE +ANOURE +ANOXEMIE +ANSE +ANSEE +ANSERINE +ANTAN +ANTEFIXE +ANTENNE +ANTEPOSA +ANTEPOSE +ANTHERE +ANTHRAX +ANTHRENE +ANTICHAR +ANTICIPA +ANTICIPE +ANTIDATA +ANTIDATE +ANTIDOTE +ANTIENNE +ANTIGANG +ANTIGEL +ANTIGENE +ANTIHALO +ANTILOPE +ANTIMITE +ANTINAZI +ANTIPAPE +ANTIPODE +ANTIQUE +ANTIVOL +ANTONYME +ANTRE +ANURIE +ANXIETE +ANXIEUSE +ANXIEUX +AORISTE +AORTE +AORTIQUE +AORTITE +AOUT +AOUTA +AOUTAI +AOUTAIT +AOUTANT +AOUTASSE +AOUTAT +AOUTE +AOUTEE +AOUTENT +AOUTER +AOUTERA +AOUTERAI +AOUTEREZ +AOUTEZ +AOUTIEN +AOUTIEZ +APACHE +APAGOGIE +APAISA +APAISAI +APAISAIT +APAISANT +APAISAT +APAISE +APAISEE +APAISENT +APAISER +APAISERA +APAISEZ +APAISIEZ +APANAGE +APANAGEA +APANAGEE +APANAGER +APANAGEZ +APARTE +APATHIE +APATRIDE +APEPSIE +APERCOIT +APERCU +APERCUE +APERCUT +APERITIF +APERTURE +APETALE +APEURA +APEURAI +APEURAIT +APEURANT +APEURAT +APEURE +APEUREE +APEURENT +APEURER +APEURERA +APEUREZ +APEURIEZ +APEX +APHASIE +APHELIE +APHERESE +APHONE +APHONIE +APHTE +APHTEUSE +APHTEUX +APHYLLE +APICAL +APICALE +APIECEUR +APIOL +APION +APIQUA +APIQUAGE +APIQUAI +APIQUAIT +APIQUANT +APIQUAT +APIQUE +APIQUEE +APIQUENT +APIQUER +APIQUERA +APIQUEZ +APIQUIEZ +APITOIE +APITOYA +APITOYAI +APITOYAT +APITOYE +APITOYEE +APITOYER +APITOYEZ +APLANI +APLANIE +APLANIR +APLANIRA +APLANIT +APLASIE +APLAT +APLATI +APLATIE +APLATIR +APLATIRA +APLATIT +APLOMB +APNEE +APOASTRE +APOCOPE +APODE +APOGAMIE +APOGEE +APOLLON +APOLOGIE +APOLOGUE +APOPHYSE +APORIE +APOSTA +APOSTAI +APOSTAIT +APOSTANT +APOSTAT +APOSTATE +APOSTE +APOSTEE +APOSTENT +APOSTER +APOSTERA +APOSTEZ +APOSTIEZ +APOTHEME +APOTRE +APPAIRA +APPAIRAI +APPAIRAT +APPAIRE +APPAIREE +APPAIRER +APPAIREZ +APPARAIT +APPARAT +APPAREIL +APPARENT +APPARIA +APPARIAI +APPARIAT +APPARIE +APPARIEE +APPARIER +APPARIEZ +APPARU +APPARUE +APPARUT +APPAT +APPATA +APPATAI +APPATAIT +APPATANT +APPATAT +APPATE +APPATEE +APPATENT +APPATER +APPATERA +APPATEZ +APPATIEZ +APPAUVRI +APPEAU +APPEL +APPELA +APPELAI +APPELAIT +APPELANT +APPELAT +APPELE +APPELEE +APPELER +APPELEZ +APPELIEZ +APPELLE +APPERT +APPETA +APPETAI +APPETAIT +APPETANT +APPETAT +APPETE +APPETEE +APPETENT +APPETER +APPETERA +APPETEZ +APPETIEZ +APPETIT +APPLAUDI +APPLIQUA +APPLIQUE +APPOINT +APPOINTA +APPOINTE +APPOINTI +APPONTA +APPONTAI +APPONTAT +APPONTE +APPONTER +APPONTEZ +APPORT +APPORTA +APPORTAI +APPORTAT +APPORTE +APPORTEE +APPORTER +APPORTEZ +APPOSA +APPOSAI +APPOSAIT +APPOSANT +APPOSAT +APPOSE +APPOSEE +APPOSENT +APPOSER +APPOSERA +APPOSEZ +APPOSIEZ +APPRECIA +APPRECIE +APPREND +APPRENEZ +APPRENNE +APPRENTI +APPRET +APPRETA +APPRETAI +APPRETAT +APPRETE +APPRETEE +APPRETER +APPRETEZ +APPRISE +APPRISSE +APPRIT +APPROCHA +APPROCHE +APPROUVA +APPROUVE +APPUI +APPUIE +APPUIENT +APPUIERA +APPUYA +APPUYAI +APPUYAIT +APPUYANT +APPUYAT +APPUYE +APPUYEE +APPUYER +APPUYEZ +APPUYIEZ +APRAXIE +APRE +APREMENT +APRETE +APSIDE +APTE +APTERE +APTERYX +APTITUDE +APURA +APURAI +APURAIT +APURANT +APURASSE +APURAT +APURE +APUREE +APURENT +APURER +APURERA +APURERAI +APUREREZ +APUREZ +APURIEZ +AQUARIUM +AQUEDUC +AQUEUSE +AQUEUX +AQUICOLE +AQUILIN +AQUILON +ARABE +ARABICA +ARABIQUE +ARABISA +ARABISAI +ARABISAT +ARABISE +ARABISEE +ARABISER +ARABISEZ +ARABLE +ARACHIDE +ARAIGNEE +ARAIRE +ARAMEEN +ARAMON +ARANEIDE +ARANTELE +ARASA +ARASAI +ARASAIT +ARASANT +ARASASSE +ARASAT +ARASE +ARASEE +ARASENT +ARASER +ARASERA +ARASERAI +ARASEREZ +ARASEZ +ARASIEZ +ARATOIRE +ARBALETE +ARBITRA +ARBITRAI +ARBITRAL +ARBITRAT +ARBITRE +ARBITREE +ARBITRER +ARBITREZ +ARBORA +ARBORAI +ARBORAIT +ARBORANT +ARBORAT +ARBORE +ARBOREE +ARBORENT +ARBORER +ARBORERA +ARBOREZ +ARBORIEZ +ARBORISA +ARBORISE +ARBOUSE +ARBRE +ARBUSTE +ARBUSTIF +ARCADE +ARCANE +ARCANSON +ARCASSE +ARCATURE +ARCEAU +ARCHAISA +ARCHAISE +ARCHAL +ARCHANGE +ARCHE +ARCHEEN +ARCHELLE +ARCHER +ARCHERE +ARCHERIE +ARCHET +ARCHIDUC +ARCHIPEL +ARCHIVA +ARCHIVAI +ARCHIVAT +ARCHIVE +ARCHIVEE +ARCHIVER +ARCHIVEZ +ARCHONTE +ARCON +ARCONNA +ARCONNAI +ARCONNAT +ARCONNE +ARCONNEE +ARCONNER +ARCONNEZ +ARCTIQUE +ARCURE +ARDENT +ARDENTE +ARDEUR +ARDILLON +ARDOISA +ARDOISAI +ARDOISAT +ARDOISE +ARDOISEE +ARDOISER +ARDOISEZ +ARDU +ARDUE +AREC +AREIQUE +ARENACE +ARENACEE +ARENE +AREOLE +AREOPAGE +AREQUIER +ARETE +ARETIERE +ARGENT +ARGENTA +ARGENTAI +ARGENTAN +ARGENTAT +ARGENTE +ARGENTEE +ARGENTER +ARGENTEZ +ARGENTIN +ARGILACE +ARGILE +ARGILEUX +ARGON +ARGOT +ARGOTISA +ARGOTISE +ARGOUSIN +ARGUA +ARGUAI +ARGUAIT +ARGUANT +ARGUASSE +ARGUAT +ARGUE +ARGUEE +ARGUENT +ARGUER +ARGUERA +ARGUERAI +ARGUEREZ +ARGUEZ +ARGUIEZ +ARGUMENT +ARGUTIE +ARGYROSE +ARIA +ARIDE +ARIDITE +ARIEN +ARIENNE +ARIETTE +ARILLE +ARIOSO +ARISA +ARISAI +ARISAIT +ARISANT +ARISASSE +ARISAT +ARISE +ARISENT +ARISER +ARISERA +ARISERAI +ARISEREZ +ARISEZ +ARISIEZ +ARLEQUIN +ARMA +ARMADA +ARMAGNAC +ARMAI +ARMAILLI +ARMAIT +ARMANT +ARMASSE +ARMAT +ARMATEUR +ARMATURE +ARME +ARMEE +ARMEMENT +ARMENIEN +ARMENT +ARMER +ARMERA +ARMERAI +ARMERAIT +ARMERENT +ARMEREZ +ARMERIEZ +ARMET +ARMEUSE +ARMEZ +ARMIEZ +ARMINIEN +ARMOIRE +ARMOISE +ARMON +ARMORIA +ARMORIAI +ARMORIAL +ARMORIAT +ARMORIE +ARMORIEE +ARMORIER +ARMORIEZ +ARMURE +ARMURIER +ARNAQUA +ARNAQUAI +ARNAQUAT +ARNAQUE +ARNAQUEE +ARNAQUER +ARNAQUEZ +ARNICA +AROMATE +AROME +ARONDE +ARPEGE +ARPEGEA +ARPEGEAI +ARPEGEAT +ARPEGEE +ARPEGENT +ARPEGER +ARPEGERA +ARPEGEZ +ARPEGIEZ +ARPENT +ARPENTA +ARPENTAI +ARPENTAT +ARPENTE +ARPENTEE +ARPENTER +ARPENTEZ +ARPETE +ARPETTE +ARPION +ARQUA +ARQUAI +ARQUAIT +ARQUANT +ARQUASSE +ARQUAT +ARQUE +ARQUEE +ARQUENT +ARQUER +ARQUERA +ARQUERAI +ARQUEREZ +ARQUEZ +ARQUIEZ +ARRACHA +ARRACHAI +ARRACHAT +ARRACHE +ARRACHEE +ARRACHER +ARRACHEZ +ARRANGE +ARRANGEA +ARRANGEE +ARRANGER +ARRANGEZ +ARRENTA +ARRENTAI +ARRENTAT +ARRENTE +ARRENTEE +ARRENTER +ARRENTEZ +ARRERAGE +ARRET +ARRETA +ARRETAI +ARRETAIT +ARRETANT +ARRETAT +ARRETE +ARRETEE +ARRETENT +ARRETER +ARRETERA +ARRETEZ +ARRETIEZ +ARRETOIR +ARRIERA +ARRIERAI +ARRIERAT +ARRIERE +ARRIEREE +ARRIERER +ARRIEREZ +ARRIMA +ARRIMAGE +ARRIMAI +ARRIMAIT +ARRIMANT +ARRIMAT +ARRIME +ARRIMEE +ARRIMENT +ARRIMER +ARRIMERA +ARRIMEUR +ARRIMEZ +ARRIMIEZ +ARRISA +ARRISAI +ARRISAIT +ARRISANT +ARRISAT +ARRISE +ARRISENT +ARRISER +ARRISERA +ARRISEZ +ARRISIEZ +ARRIVA +ARRIVAGE +ARRIVAI +ARRIVAIT +ARRIVANT +ARRIVAT +ARRIVE +ARRIVEE +ARRIVENT +ARRIVER +ARRIVERA +ARRIVEZ +ARRIVIEZ +ARROBE +ARROCHE +ARROGANT +ARROGE +ARROGEE +ARROGER +ARROGEZ +ARROGIEZ +ARRONDI +ARRONDIE +ARRONDIR +ARRONDIT +ARROSA +ARROSAGE +ARROSAI +ARROSAIT +ARROSANT +ARROSAT +ARROSE +ARROSEE +ARROSENT +ARROSER +ARROSERA +ARROSEUR +ARROSEZ +ARROSIEZ +ARROSOIR +ARROYO +ARSENAL +ARSENIC +ARSENITE +ARSIN +ARSINE +ARTEFACT +ARTEL +ARTERE +ARTERIEL +ARTERITE +ARTESIEN +ARTHRITE +ARTHROSE +ARTICLE +ARTICULA +ARTICULE +ARTIFICE +ARTIMON +ARTISAN +ARTISTE +ARUM +ARUSPICE +ARYEN +ARYENNE +ARYLE +ARYTHMIE +ASBESTE +ASCARIDE +ASCESE +ASCETE +ASCIDIE +ASCITE +ASEPSIE +ASEPTISA +ASEPTISE +ASEXUE +ASEXUEE +ASEXUEL +ASHRAM +ASIALIE +ASILAIRE +ASILE +ASINIEN +ASOCIAL +ASOCIALE +ASPE +ASPECT +ASPECTA +ASPECTAI +ASPECTAT +ASPECTE +ASPECTEE +ASPECTER +ASPECTEZ +ASPERGE +ASPERGEA +ASPERGEE +ASPERGER +ASPERGEZ +ASPERITE +ASPERME +ASPHALTA +ASPHALTE +ASPHYXIA +ASPHYXIE +ASPIC +ASPIRA +ASPIRAI +ASPIRAIT +ASPIRANT +ASPIRAT +ASPIRE +ASPIREE +ASPIRENT +ASPIRER +ASPIRERA +ASPIREZ +ASPIRIEZ +ASPIRINE +ASQUE +ASSAGI +ASSAGIE +ASSAGIR +ASSAGIRA +ASSAGIT +ASSAI +ASSAILLE +ASSAILLI +ASSAINI +ASSAINIE +ASSAINIR +ASSAINIT +ASSASSIN +ASSAUT +ASSE +ASSECHA +ASSECHAI +ASSECHAT +ASSECHE +ASSECHEE +ASSECHER +ASSECHEZ +ASSEMBLA +ASSEMBLE +ASSENA +ASSENAI +ASSENAIT +ASSENANT +ASSENAT +ASSENE +ASSENEE +ASSENENT +ASSENER +ASSENERA +ASSENEZ +ASSENIEZ +ASSEOIR +ASSERVI +ASSERVIE +ASSERVIR +ASSERVIT +ASSEYAIT +ASSEYANT +ASSEYE +ASSEYENT +ASSEYEZ +ASSEYIEZ +ASSIBILA +ASSIBILE +ASSIDU +ASSIDUE +ASSIED +ASSIEGE +ASSIEGEA +ASSIEGEE +ASSIEGER +ASSIEGEZ +ASSIERA +ASSIERAI +ASSIEREZ +ASSIETTE +ASSIGNA +ASSIGNAI +ASSIGNAT +ASSIGNE +ASSIGNEE +ASSIGNER +ASSIGNEZ +ASSIMILA +ASSIMILE +ASSIRENT +ASSISE +ASSISSE +ASSISTA +ASSISTAI +ASSISTAT +ASSISTE +ASSISTEE +ASSISTER +ASSISTEZ +ASSIT +ASSOCIA +ASSOCIAI +ASSOCIAT +ASSOCIE +ASSOCIEE +ASSOCIER +ASSOCIEZ +ASSOIE +ASSOIENT +ASSOIFFE +ASSOIRA +ASSOIRAI +ASSOIREZ +ASSOIT +ASSOLA +ASSOLAI +ASSOLAIT +ASSOLANT +ASSOLAT +ASSOLE +ASSOLEE +ASSOLENT +ASSOLER +ASSOLERA +ASSOLEZ +ASSOLIEZ +ASSOMBRI +ASSOMMA +ASSOMMAI +ASSOMMAT +ASSOMME +ASSOMMEE +ASSOMMER +ASSOMMEZ +ASSONA +ASSONAI +ASSONAIT +ASSONANT +ASSONAT +ASSONE +ASSONENT +ASSONER +ASSONERA +ASSONEZ +ASSONIEZ +ASSORTI +ASSORTIE +ASSORTIR +ASSORTIT +ASSOUPI +ASSOUPIE +ASSOUPIR +ASSOUPIT +ASSOUPLI +ASSOURDI +ASSOUVI +ASSOUVIE +ASSOUVIR +ASSOUVIT +ASSOYAIT +ASSOYANT +ASSOYEZ +ASSOYIEZ +ASSUMA +ASSUMAI +ASSUMAIT +ASSUMANT +ASSUMAT +ASSUME +ASSUMEE +ASSUMENT +ASSUMER +ASSUMERA +ASSUMEZ +ASSUMIEZ +ASSURA +ASSURAI +ASSURAIT +ASSURANT +ASSURAT +ASSURE +ASSUREE +ASSURENT +ASSURER +ASSURERA +ASSUREUR +ASSUREZ +ASSURIEZ +ASSYRIEN +ASTASIE +ASTATE +ASTER +ASTERIE +ASTHENIE +ASTHME +ASTI +ASTICOT +ASTICOTA +ASTICOTE +ASTIQUA +ASTIQUAI +ASTIQUAT +ASTIQUE +ASTIQUEE +ASTIQUER +ASTIQUEZ +ASTRAKAN +ASTRAL +ASTRALE +ASTRE +ASTREINT +ASTRONEF +ASTUCE +ASYNDETE +ATARAXIE +ATAVIQUE +ATAVISME +ATAXIE +ATAXIQUE +ATELE +ATELIER +ATERMOIE +ATERMOYA +ATERMOYE +ATHANOR +ATHEE +ATHEISME +ATHENEE +ATHEROME +ATHETOSE +ATHLETE +ATHYMIE +ATOLL +ATOME +ATOMIQUE +ATOMISA +ATOMISAI +ATOMISAT +ATOMISE +ATOMISEE +ATOMISER +ATOMISEZ +ATOMISME +ATOMISTE +ATONAL +ATONALE +ATONE +ATONIE +ATONIQUE +ATOUR +ATOUT +ATOXIQUE +ATRABILE +ATRE +ATRIUM +ATROCE +ATROCITE +ATROPHIA +ATROPHIE +ATROPINE +ATTABLA +ATTABLAI +ATTABLAT +ATTABLE +ATTABLEE +ATTABLER +ATTABLEZ +ATTACHA +ATTACHAI +ATTACHAT +ATTACHE +ATTACHEE +ATTACHER +ATTACHEZ +ATTAGENE +ATTAQUA +ATTAQUAI +ATTAQUAT +ATTAQUE +ATTAQUEE +ATTAQUER +ATTAQUEZ +ATTARDA +ATTARDAI +ATTARDAT +ATTARDE +ATTARDEE +ATTARDER +ATTARDEZ +ATTEIGNE +ATTEINT +ATTEINTE +ATTELA +ATTELAGE +ATTELAI +ATTELAIT +ATTELANT +ATTELAT +ATTELE +ATTELEE +ATTELER +ATTELEZ +ATTELIEZ +ATTELLE +ATTENANT +ATTEND +ATTENDE +ATTENDEZ +ATTENDIT +ATTENDRA +ATTENDRE +ATTENDRI +ATTENDU +ATTENDUE +ATTENTA +ATTENTAI +ATTENTAT +ATTENTE +ATTENTER +ATTENTEZ +ATTENTIF +ATTENUA +ATTENUAI +ATTENUAT +ATTENUE +ATTENUEE +ATTENUER +ATTENUEZ +ATTERRA +ATTERRAI +ATTERRAT +ATTERRE +ATTERREE +ATTERRER +ATTERREZ +ATTERRI +ATTERRIR +ATTERRIT +ATTESTA +ATTESTAI +ATTESTAT +ATTESTE +ATTESTEE +ATTESTER +ATTESTEZ +ATTIEDI +ATTIEDIE +ATTIEDIR +ATTIEDIT +ATTIFA +ATTIFAI +ATTIFAIT +ATTIFANT +ATTIFAT +ATTIFE +ATTIFEE +ATTIFENT +ATTIFER +ATTIFERA +ATTIFEZ +ATTIFIEZ +ATTIGE +ATTIGEA +ATTIGEAI +ATTIGEAT +ATTIGENT +ATTIGER +ATTIGERA +ATTIGEZ +ATTIGIEZ +ATTIQUE +ATTIRA +ATTIRAI +ATTIRAIL +ATTIRAIT +ATTIRANT +ATTIRAT +ATTIRE +ATTIREE +ATTIRENT +ATTIRER +ATTIRERA +ATTIREZ +ATTIRIEZ +ATTISA +ATTISAI +ATTISAIT +ATTISANT +ATTISAT +ATTISE +ATTISEE +ATTISENT +ATTISER +ATTISERA +ATTISEZ +ATTISIEZ +ATTITRA +ATTITRAI +ATTITRAT +ATTITRE +ATTITREE +ATTITRER +ATTITREZ +ATTITUDE +ATTORNEY +ATTRAIT +ATTRAPA +ATTRAPAI +ATTRAPAT +ATTRAPE +ATTRAPEE +ATTRAPER +ATTRAPEZ +ATTRIBUA +ATTRIBUE +ATTRIBUT +ATTRIQUA +ATTRIQUE +ATTRISTA +ATTRISTE +ATTROUPA +ATTROUPE +ATYPIQUE +AUBADE +AUBAINE +AUBE +AUBEPINE +AUBERE +AUBERGE +AUBETTE +AUBIER +AUBIN +AUBURN +AUCUBA +AUCUN +AUCUNE +AUDACE +AUDIBLE +AUDIENCE +AUDIO +AUDIT +AUDITEUR +AUDITIF +AUDITION +AUDITIVE +AUGE +AUGET +AUGMENT +AUGMENTA +AUGMENTE +AUGURA +AUGURAI +AUGURAIT +AUGURAL +AUGURALE +AUGURANT +AUGURAT +AUGURE +AUGUREE +AUGURENT +AUGURER +AUGURERA +AUGUREZ +AUGURIEZ +AUGUSTE +AULNE +AUMONE +AUMONIER +AUNE +AUQUEL +AURA +AURAI +AURAIT +AUREOLA +AUREOLAI +AUREOLAT +AUREOLE +AUREOLEE +AUREOLER +AUREOLEZ +AUREZ +AURICULE +AURIEZ +AURIFERE +AURIFIA +AURIFIAI +AURIFIAT +AURIFIE +AURIFIEE +AURIFIER +AURIFIEZ +AURIGE +AURONT +AURORE +AUSCULTA +AUSCULTE +AUSSI +AUSSITOT +AUSTERE +AUSTRAL +AUSTRALE +AUTANT +AUTARCIE +AUTEL +AUTEUR +AUTISME +AUTISTE +AUTO +AUTOCAR +AUTODAFE +AUTOGAME +AUTOGENE +AUTOGERE +AUTOGIRE +AUTOMATE +AUTOMNAL +AUTOMNE +AUTONOME +AUTONYME +AUTOPSIA +AUTOPSIE +AUTORAIL +AUTORISA +AUTORISE +AUTORITE +AUTOUR +AUTRE +AUTRUCHE +AUTRUI +AUVENT +AUXINE +AVACHI +AVACHIE +AVACHIR +AVACHIRA +AVACHIT +AVAIT +AVAL +AVALA +AVALAI +AVALAIT +AVALANT +AVALASSE +AVALAT +AVALE +AVALEE +AVALENT +AVALER +AVALERA +AVALERAI +AVALEREZ +AVALEUR +AVALEZ +AVALIEZ +AVALISA +AVALISAI +AVALISAT +AVALISE +AVALISEE +AVALISER +AVALISEZ +AVALISTE +AVANCA +AVANCAI +AVANCAIT +AVANCANT +AVANCAT +AVANCE +AVANCEE +AVANCENT +AVANCER +AVANCERA +AVANCEZ +AVANCIEZ +AVANIE +AVANT +AVANTAGE +AVARE +AVARIA +AVARIAI +AVARIAIT +AVARIANT +AVARIAT +AVARICE +AVARIE +AVARIEE +AVARIENT +AVARIER +AVARIERA +AVARIEZ +AVARIIEZ +AVATAR +AVEC +AVELINE +AVEN +AVENANT +AVENIR +AVENTURA +AVENTURE +AVENU +AVENUE +AVERA +AVERAI +AVERAIT +AVERANT +AVERASSE +AVERAT +AVERE +AVEREE +AVERENT +AVERER +AVERERA +AVERERAI +AVEREREZ +AVEREZ +AVERIEZ +AVERSE +AVERSION +AVERTI +AVERTIE +AVERTIR +AVERTIRA +AVERTIT +AVEU +AVEUGLA +AVEUGLAI +AVEUGLAT +AVEUGLE +AVEUGLEE +AVEUGLER +AVEUGLEZ +AVEULI +AVEULIE +AVEULIR +AVEULIRA +AVEULIT +AVEUX +AVEZ +AVIAIRE +AVIATEUR +AVIATION +AVICOLE +AVIDE +AVIDITE +AVIEZ +AVILI +AVILIE +AVILIR +AVILIRA +AVILIRAI +AVILIREZ +AVILISSE +AVILIT +AVINA +AVINAI +AVINAIT +AVINANT +AVINASSE +AVINAT +AVINE +AVINEE +AVINENT +AVINER +AVINERA +AVINERAI +AVINEREZ +AVINEZ +AVINIEZ +AVION +AVIRON +AVISA +AVISAI +AVISAIT +AVISANT +AVISASSE +AVISAT +AVISE +AVISEE +AVISENT +AVISER +AVISERA +AVISERAI +AVISEREZ +AVISEZ +AVISIEZ +AVISO +AVIVA +AVIVAGE +AVIVAI +AVIVAIT +AVIVANT +AVIVASSE +AVIVAT +AVIVE +AVIVEE +AVIVENT +AVIVER +AVIVERA +AVIVERAI +AVIVEREZ +AVIVEZ +AVIVIEZ +AVOCAT +AVOCATE +AVOCETTE +AVOINE +AVOIR +AVOISINA +AVOISINE +AVORTA +AVORTAI +AVORTAIT +AVORTANT +AVORTAT +AVORTE +AVORTEE +AVORTENT +AVORTER +AVORTERA +AVORTEUR +AVORTEZ +AVORTIEZ +AVORTON +AVOUA +AVOUABLE +AVOUAI +AVOUAIT +AVOUANT +AVOUASSE +AVOUAT +AVOUE +AVOUEE +AVOUENT +AVOUER +AVOUERA +AVOUERAI +AVOUEREZ +AVOUEZ +AVOUIEZ +AVRIL +AVULSION +AXAI +AXAIT +AXANT +AXASSE +AXAT +AXEE +AXENT +AXER +AXERA +AXERAI +AXERAIT +AXERENT +AXEREZ +AXERIEZ +AXEZ +AXIEZ +AXILE +AXIOME +AXOLOTL +AXONE +AXONGE +AYANT +AYEZ +AZALEE +AZEROLE +AZIMUT +AZIMUTAL +AZIMUTE +AZIMUTEE +AZOIQUE +AZOTATE +AZOTE +AZOTEE +AZOTEMIE +AZOTEUX +AZOTIQUE +AZOTITE +AZOTURIE +AZTEQUE +AZULEJO +AZUR +AZURA +AZURAGE +AZURAI +AZURAIT +AZURANT +AZURASSE +AZURAT +AZURE +AZUREE +AZURENT +AZURER +AZURERA +AZURERAI +AZUREREZ +AZUREZ +AZURIEZ +AZURITE +AZYME +BABA +BABEURRE +BABIL +BABILLA +BABILLAI +BABILLAT +BABILLE +BABILLER +BABILLEZ +BABINE +BABIOLE +BABORD +BABOUCHE +BABOUIN +BABY +BACCARA +BACCARAT +BACHA +BACHAGE +BACHAI +BACHAIT +BACHANT +BACHASSE +BACHAT +BACHE +BACHEE +BACHENT +BACHER +BACHERA +BACHERAI +BACHEREZ +BACHEZ +BACHIEZ +BACHIQUE +BACHOT +BACHOTA +BACHOTAI +BACHOTAT +BACHOTE +BACHOTEE +BACHOTER +BACHOTEZ +BACILLE +BACLA +BACLAGE +BACLAI +BACLAIT +BACLANT +BACLASSE +BACLAT +BACLE +BACLEE +BACLENT +BACLER +BACLERA +BACLERAI +BACLEREZ +BACLEZ +BACLIEZ +BACON +BACTERIE +BACUL +BADAUD +BADAUDE +BADERNE +BADGE +BADIANE +BADIGEON +BADIN +BADINA +BADINAGE +BADINAI +BADINAIT +BADINANT +BADINAT +BADINE +BADINENT +BADINER +BADINERA +BADINEZ +BADINIEZ +BAFFA +BAFFAI +BAFFAIT +BAFFANT +BAFFASSE +BAFFAT +BAFFE +BAFFEE +BAFFENT +BAFFER +BAFFERA +BAFFERAI +BAFFEREZ +BAFFEZ +BAFFIEZ +BAFFLE +BAFOUA +BAFOUAI +BAFOUAIT +BAFOUANT +BAFOUAT +BAFOUE +BAFOUEE +BAFOUENT +BAFOUER +BAFOUERA +BAFOUEZ +BAFOUIEZ +BAFRA +BAFRAI +BAFRAIT +BAFRANT +BAFRASSE +BAFRAT +BAFRE +BAFREE +BAFRENT +BAFRER +BAFRERA +BAFRERAI +BAFREREZ +BAFREUR +BAFREUSE +BAFREZ +BAFRIEZ +BAGAD +BAGAGE +BAGARRA +BAGARRAI +BAGARRAT +BAGARRE +BAGARREE +BAGARRER +BAGARREZ +BAGASSE +BAGNARD +BAGNE +BAGNOLE +BAGOU +BAGOUT +BAGUA +BAGUAGE +BAGUAI +BAGUAIT +BAGUANT +BAGUASSE +BAGUAT +BAGUE +BAGUEE +BAGUENT +BAGUER +BAGUERA +BAGUERAI +BAGUEREZ +BAGUETTE +BAGUEZ +BAGUIER +BAGUIEZ +BAHUT +BAIE +BAIERA +BAIERAI +BAIERAIT +BAIEREZ +BAIERIEZ +BAIGNA +BAIGNADE +BAIGNAI +BAIGNAIT +BAIGNANT +BAIGNAT +BAIGNE +BAIGNEE +BAIGNENT +BAIGNER +BAIGNERA +BAIGNEUR +BAIGNEZ +BAIGNIEZ +BAIL +BAILLA +BAILLAI +BAILLAIT +BAILLANT +BAILLAT +BAILLE +BAILLEE +BAILLENT +BAILLER +BAILLERA +BAILLEUR +BAILLEZ +BAILLI +BAILLIEZ +BAILLON +BAIN +BAIRAM +BAISA +BAISAI +BAISAIT +BAISANT +BAISASSE +BAISAT +BAISE +BAISEE +BAISENT +BAISER +BAISERA +BAISERAI +BAISEREZ +BAISEUR +BAISEUSE +BAISEZ +BAISIEZ +BAISOTA +BAISOTAI +BAISOTAT +BAISOTE +BAISOTEE +BAISOTER +BAISOTEZ +BAISSA +BAISSAI +BAISSAIT +BAISSANT +BAISSAT +BAISSE +BAISSEE +BAISSER +BAISSERA +BAISSIER +BAJOUE +BAJOYER +BAKCHICH +BAKELITE +BAKLAVA +BALADA +BALADAI +BALADAIT +BALADANT +BALADAT +BALADE +BALADEE +BALADENT +BALADER +BALADERA +BALADEUR +BALADEZ +BALADIEZ +BALADIN +BALAFON +BALAFRA +BALAFRAI +BALAFRAT +BALAFRE +BALAFREE +BALAFRER +BALAFREZ +BALAI +BALAIE +BALAIERA +BALANCA +BALANCAI +BALANCAT +BALANCE +BALANCEE +BALANCER +BALANCEZ +BALANE +BALANITE +BALATA +BALAYA +BALAYAGE +BALAYAI +BALAYAIT +BALAYANT +BALAYAT +BALAYE +BALAYEE +BALAYENT +BALAYER +BALAYERA +BALAYEUR +BALAYEZ +BALAYIEZ +BALBUTIA +BALBUTIE +BALCON +BALEINA +BALEINAI +BALEINAT +BALEINE +BALEINEE +BALEINER +BALEINEZ +BALEVRE +BALISA +BALISAGE +BALISAI +BALISAIT +BALISANT +BALISAT +BALISE +BALISEE +BALISENT +BALISER +BALISERA +BALISEUR +BALISEZ +BALISIER +BALISIEZ +BALISTE +BALIVAGE +BALIVEAU +BALLA +BALLADE +BALLAI +BALLAIT +BALLANT +BALLASSE +BALLAST +BALLASTA +BALLASTE +BALLAT +BALLE +BALLENT +BALLER +BALLERA +BALLERAI +BALLEREZ +BALLET +BALLEZ +BALLIEZ +BALLON +BALLONNA +BALLONNE +BALLOT +BALLOTE +BALLOTTA +BALLOTTE +BALOURD +BALOURDE +BALSA +BALTE +BALUCHON +BALUSTRE +BALZAN +BALZANE +BAMBIN +BAMBOCHA +BAMBOCHE +BAMBOU +BAMBOULA +BANAL +BANALE +BANALISA +BANALISE +BANALITE +BANANE +BANANIER +BANC +BANCABLE +BANCAIRE +BANCAL +BANCALE +BANCHE +BANCO +BANDA +BANDAGE +BANDAI +BANDAIT +BANDANT +BANDASSE +BANDAT +BANDE +BANDEAU +BANDEE +BANDENT +BANDER +BANDERA +BANDERAI +BANDEREZ +BANDEZ +BANDIEZ +BANDIT +BANG +BANIAN +BANJO +BANLIEUE +BANLON +BANNA +BANNAI +BANNAIT +BANNANT +BANNASSE +BANNAT +BANNE +BANNEE +BANNENT +BANNER +BANNERA +BANNERAI +BANNERET +BANNEREZ +BANNETON +BANNETTE +BANNEZ +BANNI +BANNIE +BANNIERE +BANNIEZ +BANNIR +BANNIRA +BANNIRAI +BANNIREZ +BANNISSE +BANNIT +BANQUA +BANQUAI +BANQUAIT +BANQUANT +BANQUAT +BANQUE +BANQUEE +BANQUENT +BANQUER +BANQUERA +BANQUET +BANQUETA +BANQUETE +BANQUEZ +BANQUIER +BANQUIEZ +BANQUISE +BANTOU +BANTOUE +BAOBAB +BAPTEME +BAPTISA +BAPTISAI +BAPTISAT +BAPTISE +BAPTISEE +BAPTISER +BAPTISEZ +BAPTISME +BAPTISTE +BAQUET +BAQUETA +BAQUETAI +BAQUETAT +BAQUETE +BAQUETEE +BAQUETER +BAQUETEZ +BAQUETTE +BARAKA +BARAQUA +BARAQUAI +BARAQUAT +BARAQUE +BARAQUER +BARAQUEZ +BARATIN +BARATINA +BARATINE +BARATTA +BARATTAI +BARATTAT +BARATTE +BARATTEE +BARATTER +BARATTEZ +BARBA +BARBAI +BARBAIT +BARBANT +BARBAQUE +BARBARE +BARBARIE +BARBASSE +BARBAT +BARBE +BARBEAU +BARBECUE +BARBEE +BARBELE +BARBELEE +BARBENT +BARBER +BARBERA +BARBERAI +BARBEREZ +BARBET +BARBETTE +BARBEZ +BARBICHE +BARBIER +BARBIEZ +BARBIFIA +BARBIFIE +BARBILLE +BARBITAL +BARBON +BARBOTA +BARBOTAI +BARBOTAT +BARBOTE +BARBOTEE +BARBOTER +BARBOTEZ +BARBOTIN +BARBOUZE +BARBU +BARBUE +BARBULE +BARCASSE +BARD +BARDA +BARDAGE +BARDAI +BARDAIT +BARDANE +BARDANT +BARDASSE +BARDAT +BARDE +BARDEAU +BARDEE +BARDENT +BARDER +BARDERA +BARDERAI +BARDEREZ +BARDEZ +BARDIEZ +BARDOT +BAREME +BARETA +BARETAI +BARETAIT +BARETANT +BARETAT +BARETE +BARETENT +BARETER +BARETERA +BARETEZ +BARETIEZ +BARGE +BARIL +BARILLET +BARIOLA +BARIOLAI +BARIOLAT +BARIOLE +BARIOLEE +BARIOLER +BARIOLEZ +BARLONG +BARMAID +BARMAN +BARMEN +BARN +BARON +BARONNA +BARONNAI +BARONNAT +BARONNE +BARONNEE +BARONNER +BARONNET +BARONNEZ +BARONNIE +BAROQUE +BAROUD +BAROUDA +BAROUDAI +BAROUDAT +BAROUDE +BAROUDER +BAROUDEZ +BAROUF +BAROUFLE +BARQUE +BARRA +BARRAGE +BARRAI +BARRAIT +BARRANT +BARRASSE +BARRAT +BARRE +BARREAU +BARREE +BARRENT +BARRER +BARRERA +BARRERAI +BARREREZ +BARRETTE +BARREUR +BARREUSE +BARREZ +BARRI +BARRIERE +BARRIEZ +BARRIQUE +BARRIR +BARRIRA +BARRIRAI +BARRIREZ +BARRISSE +BARRIT +BARROT +BARYE +BARYON +BARYTE +BARYTINE +BARYTON +BARYUM +BARZOI +BASA +BASAI +BASAIT +BASAL +BASALE +BASALTE +BASANA +BASANAI +BASANAIT +BASANANT +BASANAT +BASANE +BASANEE +BASANENT +BASANER +BASANERA +BASANEZ +BASANIEZ +BASANT +BASASSE +BASAT +BASCULA +BASCULAI +BASCULAT +BASCULE +BASCULEE +BASCULER +BASCULEZ +BASE +BASEE +BASELLE +BASENT +BASER +BASERA +BASERAI +BASERAIT +BASERENT +BASEREZ +BASERIEZ +BASEZ +BASIC +BASICITE +BASIDE +BASIEZ +BASILIC +BASIN +BASIQUE +BASKET +BASOCHE +BASQUE +BASQUINE +BASSE +BASSESSE +BASSET +BASSIN +BASSINA +BASSINAI +BASSINAT +BASSINE +BASSINEE +BASSINER +BASSINET +BASSINEZ +BASSISTE +BASSON +BASTE +BASTERNE +BASTIDE +BASTIDON +BASTILLE +BASTING +BASTION +BATA +BATACLAN +BATAI +BATAILLA +BATAILLE +BATAIT +BATANT +BATARD +BATARDE +BATASSE +BATAT +BATAVIA +BATAYOLE +BATE +BATEAU +BATEE +BATELA +BATELAGE +BATELAI +BATELAIT +BATELANT +BATELAT +BATELE +BATELEE +BATELER +BATELET +BATELEUR +BATELEZ +BATELIER +BATELIEZ +BATELLE +BATENT +BATER +BATERA +BATERAI +BATERAIT +BATERENT +BATEREZ +BATERIEZ +BATEZ +BATH +BATHYAL +BATHYALE +BATI +BATIE +BATIEZ +BATIFOLA +BATIFOLE +BATIK +BATIMENT +BATIR +BATIRA +BATIRAI +BATIRAIT +BATIRENT +BATIREZ +BATIRIEZ +BATIRONT +BATISSE +BATISTE +BATIT +BATON +BATONNA +BATONNAI +BATONNAT +BATONNE +BATONNEE +BATONNER +BATONNET +BATONNEZ +BATOUDE +BATTAGE +BATTAIT +BATTANT +BATTE +BATTEE +BATTENT +BATTERIE +BATTEUR +BATTEUSE +BATTEZ +BATTIEZ +BATTISSE +BATTIT +BATTOIR +BATTRA +BATTRAI +BATTRAIT +BATTRE +BATTREZ +BATTRIEZ +BATTRONT +BATTU +BATTUE +BATTURE +BAUD +BAUDET +BAUDRIER +BAUDROIE +BAUGE +BAUGEA +BAUGEAI +BAUGEAIT +BAUGEANT +BAUGEAT +BAUGEE +BAUGENT +BAUGER +BAUGERA +BAUGERAI +BAUGEREZ +BAUGEZ +BAUGIEZ +BAUME +BAUMIER +BAUXITE +BAVA +BAVAI +BAVAIT +BAVANT +BAVARD +BAVARDA +BAVARDAI +BAVARDAT +BAVARDE +BAVARDER +BAVARDEZ +BAVASSA +BAVASSAI +BAVASSAT +BAVASSE +BAVASSER +BAVAT +BAVE +BAVENT +BAVER +BAVERA +BAVERAI +BAVERAIT +BAVERENT +BAVEREZ +BAVERIEZ +BAVETTE +BAVEUSE +BAVEUX +BAVEZ +BAVIEZ +BAVOCHA +BAVOCHAI +BAVOCHAT +BAVOCHE +BAVOCHER +BAVOCHEZ +BAVOIR +BAVOLET +BAVURE +BAYA +BAYADERE +BAYAI +BAYAIT +BAYANT +BAYASSE +BAYAT +BAYE +BAYENT +BAYER +BAYERA +BAYERAI +BAYERAIT +BAYERENT +BAYEREZ +BAYERIEZ +BAYEZ +BAYIEZ +BAYOU +BAZAR +BAZARDA +BAZARDAI +BAZARDAT +BAZARDE +BAZARDEE +BAZARDER +BAZARDEZ +BAZOOKA +BEAGLE +BEAI +BEAIT +BEANCE +BEANT +BEASSE +BEAT +BEATE +BEATIFIA +BEATIFIE +BEATNIK +BEAU +BEAUCOUP +BEAUF +BEAUPRE +BEAUTE +BEBE +BECANE +BECARRE +BECASSE +BECFIGUE +BECHA +BECHAGE +BECHAI +BECHAIT +BECHAMEL +BECHANT +BECHASSE +BECHAT +BECHE +BECHEE +BECHENT +BECHER +BECHERA +BECHERAI +BECHEREZ +BECHEUR +BECHEUSE +BECHEZ +BECHIEZ +BECHIQUE +BECOT +BECOTA +BECOTAI +BECOTAIT +BECOTANT +BECOTAT +BECOTE +BECOTEE +BECOTENT +BECOTER +BECOTERA +BECOTEZ +BECOTIEZ +BECQUA +BECQUAI +BECQUAIT +BECQUANT +BECQUAT +BECQUE +BECQUEE +BECQUENT +BECQUER +BECQUERA +BECQUETA +BECQUETE +BECQUEZ +BECQUIEZ +BECTA +BECTAI +BECTAIT +BECTANT +BECTASSE +BECTAT +BECTE +BECTEE +BECTENT +BECTER +BECTERA +BECTERAI +BECTEREZ +BECTEZ +BECTIEZ +BEDAINE +BEDANE +BEDEAU +BEDEGAR +BEDON +BEDONNA +BEDONNAI +BEDONNAT +BEDONNE +BEDONNER +BEDONNEZ +BEDOUIN +BEDOUINE +BEENT +BEER +BEERA +BEERAI +BEERAIT +BEERENT +BEEREZ +BEERIEZ +BEEZ +BEFFROI +BEGAIE +BEGAIERA +BEGAYA +BEGAYAI +BEGAYAIT +BEGAYANT +BEGAYAT +BEGAYE +BEGAYEE +BEGAYENT +BEGAYER +BEGAYERA +BEGAYEUR +BEGAYEZ +BEGAYIEZ +BEGONIA +BEGU +BEGUE +BEGUETA +BEGUETAI +BEGUETAT +BEGUETE +BEGUETER +BEGUETEZ +BEGUEULE +BEGUIN +BEGUINE +BEGUM +BEIEZ +BEIGE +BEIGNE +BEIGNET +BEJAUNE +BEKE +BELA +BELAI +BELAIT +BELANDRE +BELANT +BELASSE +BELAT +BELE +BELEE +BELEMENT +BELENT +BELER +BELERA +BELERAI +BELERAIT +BELERENT +BELEREZ +BELERIEZ +BELETTE +BELEZ +BELGE +BELIER +BELIERE +BELIEZ +BELITRE +BELLATRE +BELLE +BELON +BELOTE +BELOUGA +BELUGA +BEMOL +BEMOLISA +BEMOLISE +BENARDE +BENEF +BENEFICE +BENET +BENEVOLE +BENGALI +BENI +BENIE +BENIGNE +BENIN +BENIR +BENIRA +BENIRAI +BENIRAIT +BENIRENT +BENIREZ +BENIRIEZ +BENIRONT +BENISSE +BENIT +BENITE +BENITIER +BENJAMIN +BENJOIN +BENNE +BENOIT +BENOITE +BENZENE +BENZINE +BENZOATE +BENZOL +BEOTIEN +BEOTISME +BEQUA +BEQUAI +BEQUAIT +BEQUANT +BEQUASSE +BEQUAT +BEQUE +BEQUEE +BEQUENT +BEQUER +BEQUERA +BEQUERAI +BEQUEREZ +BEQUETA +BEQUETAI +BEQUETAT +BEQUETE +BEQUETEE +BEQUETER +BEQUETEZ +BEQUETTE +BEQUEZ +BEQUIEZ +BEQUILLA +BEQUILLE +BERBERE +BERCA +BERCAI +BERCAIL +BERCAIT +BERCANT +BERCASSE +BERCAT +BERCE +BERCEAU +BERCEE +BERCENT +BERCER +BERCERA +BERCERAI +BERCEREZ +BERCEUR +BERCEUSE +BERCEZ +BERCIEZ +BERET +BERGE +BERGER +BERGERE +BERGERIE +BERIBERI +BERLINE +BERLUE +BERME +BERMUDA +BERNA +BERNACHE +BERNACLE +BERNAI +BERNAIT +BERNANT +BERNASSE +BERNAT +BERNE +BERNEE +BERNENT +BERNER +BERNERA +BERNERAI +BERNEREZ +BERNEZ +BERNICLE +BERNIEZ +BERNIQUE +BERTHON +BERYL +BESACE +BESAIGUE +BESANT +BESEF +BESIGUE +BESOGNA +BESOGNAI +BESOGNAT +BESOGNE +BESOGNER +BESOGNEZ +BESOIN +BESSEMER +BESTIAL +BESTIALE +BESTIOLE +BETA +BETAIL +BETASSE +BETATRON +BETE +BETEL +BETEMENT +BETIFIA +BETIFIAI +BETIFIAT +BETIFIE +BETIFIER +BETIFIEZ +BETISA +BETISAI +BETISAIT +BETISANT +BETISAT +BETISE +BETISENT +BETISER +BETISERA +BETISEZ +BETISIER +BETISIEZ +BETOINE +BETOIRE +BETON +BETONNA +BETONNAI +BETONNAT +BETONNE +BETONNEE +BETONNER +BETONNEZ +BETTE +BETYLE +BEUGLA +BEUGLAI +BEUGLAIT +BEUGLANT +BEUGLAT +BEUGLE +BEUGLEE +BEUGLENT +BEUGLER +BEUGLERA +BEUGLEZ +BEUGLIEZ +BEUR +BEURRA +BEURRAI +BEURRAIT +BEURRANT +BEURRAT +BEURRE +BEURREE +BEURRENT +BEURRER +BEURRERA +BEURREZ +BEURRIER +BEURRIEZ +BEUVERIE +BEVATRON +BEVUE +BEYLICAL +BEYLICAT +BEYLISME +BEZOARD +BIACIDE +BIAISA +BIAISAI +BIAISAIT +BIAISANT +BIAISAT +BIAISE +BIAISEE +BIAISENT +BIAISER +BIAISERA +BIAISEZ +BIAISIEZ +BIBELOT +BIBELOTA +BIBELOTE +BIBERON +BIBI +BIBINE +BIBLE +BIBLIQUE +BICARRE +BICARREE +BICHA +BICHAI +BICHAIT +BICHANT +BICHASSE +BICHAT +BICHE +BICHENT +BICHER +BICHERA +BICHERAI +BICHEREZ +BICHETTE +BICHEZ +BICHIEZ +BICHOF +BICHON +BICHONNA +BICHONNE +BICHOTA +BICHOTAI +BICHOTAT +BICHOTE +BICHOTER +BICHOTEZ +BICKFORD +BICOLORE +BICOQUE +BICORNE +BICOT +BICYCLE +BIDASSE +BIDE +BIDENT +BIDET +BIDOCHE +BIDON +BIDONNA +BIDONNAI +BIDONNAT +BIDONNE +BIDONNEE +BIDONNER +BIDONNEZ +BIDULE +BIEF +BIELLE +BIEN +BIENFAIT +BIENNAL +BIENNALE +BIENTOT +BIENVENU +BIERE +BIFACE +BIFFA +BIFFAGE +BIFFAI +BIFFAIT +BIFFANT +BIFFASSE +BIFFAT +BIFFE +BIFFEE +BIFFENT +BIFFER +BIFFERA +BIFFERAI +BIFFEREZ +BIFFEZ +BIFFIEZ +BIFFIN +BIFFURE +BIFIDE +BIFOCAL +BIFOCALE +BIFTECK +BIFURQUA +BIFURQUE +BIGAME +BIGAMIE +BIGARADE +BIGARRA +BIGARRAI +BIGARRAT +BIGARRE +BIGARREE +BIGARRER +BIGARREZ +BIGLA +BIGLAI +BIGLAIT +BIGLANT +BIGLASSE +BIGLAT +BIGLE +BIGLEE +BIGLENT +BIGLER +BIGLERA +BIGLERAI +BIGLEREZ +BIGLEUSE +BIGLEUX +BIGLEZ +BIGLIEZ +BIGNONIA +BIGORNA +BIGORNAI +BIGORNAT +BIGORNE +BIGORNEE +BIGORNER +BIGORNEZ +BIGOT +BIGOTE +BIGOUDEN +BIGOUDI +BIGRE +BIGUE +BIGUINE +BIHOREAU +BIJECTIF +BIJOU +BIJOUX +BIKINI +BILA +BILABIE +BILABIEE +BILAI +BILAIT +BILAME +BILAN +BILANT +BILASSE +BILAT +BILE +BILEE +BILENT +BILER +BILERA +BILERAI +BILERAIT +BILERENT +BILEREZ +BILERIEZ +BILEUSE +BILEUX +BILEZ +BILIAIRE +BILIEUSE +BILIEUX +BILIEZ +BILINGUE +BILL +BILLARD +BILLE +BILLET +BILLETE +BILLETEE +BILLETTE +BILLION +BILLON +BILLONNA +BILLONNE +BILLOT +BILOBE +BILOBEE +BILOQUA +BILOQUAI +BILOQUAT +BILOQUE +BILOQUEE +BILOQUER +BILOQUEZ +BIMANE +BIMOTEUR +BINA +BINAGE +BINAI +BINAIRE +BINAIT +BINANT +BINARD +BINASSE +BINAT +BINE +BINEE +BINENT +BINER +BINERA +BINERAI +BINERAIT +BINERENT +BINEREZ +BINERIEZ +BINETTE +BINEUSE +BINEZ +BINGO +BINIEZ +BINIOU +BINOCLE +BIOCIDE +BIOLOGIE +BIOMASSE +BIONIQUE +BIOPSIE +BIOTIQUE +BIOTITE +BIOTOPE +BIOTYPE +BIOXYDE +BIPALE +BIPARTI +BIPARTIE +BIPEDE +BIPENNE +BIPENNEE +BIPHASE +BIPHASEE +BIPIED +BIPLACE +BIPLAN +BIPOUTRE +BIQUE +BIQUET +BIQUETTE +BIRBE +BIREME +BIROUTE +BISA +BISAI +BISAIEUL +BISAIT +BISANT +BISASSE +BISAT +BISBILLE +BISCAIEN +BISCOME +BISCORNU +BISCOTTE +BISCUIT +BISCUITA +BISCUITE +BISE +BISEAU +BISEAUTA +BISEAUTE +BISEE +BISENT +BISER +BISERA +BISERAI +BISERAIT +BISERENT +BISEREZ +BISERIEZ +BISET +BISEXUE +BISEXUEE +BISEXUEL +BISEZ +BISIEZ +BISMUTH +BISON +BISOU +BISQUA +BISQUAI +BISQUAIT +BISQUANT +BISQUAT +BISQUE +BISQUEE +BISQUENT +BISQUER +BISQUERA +BISQUEZ +BISQUIEZ +BISSA +BISSAI +BISSAIT +BISSANT +BISSASSE +BISSAT +BISSE +BISSEE +BISSER +BISSERA +BISSERAI +BISSEREZ +BISSEXTE +BISSEXUE +BISTORTE +BISTOURI +BISTRA +BISTRAI +BISTRAIT +BISTRANT +BISTRAT +BISTRE +BISTREE +BISTRENT +BISTRER +BISTRERA +BISTREZ +BISTRIEZ +BISTRO +BISTROT +BITA +BITAI +BITAIT +BITANT +BITASSE +BITAT +BITE +BITEE +BITENT +BITER +BITERA +BITERAI +BITERAIT +BITERENT +BITEREZ +BITERIEZ +BITEZ +BITIEZ +BITONAL +BITONALE +BITORD +BITTA +BITTAI +BITTAIT +BITTANT +BITTASSE +BITTAT +BITTE +BITTEE +BITTENT +BITTER +BITTERA +BITTERAI +BITTEREZ +BITTEZ +BITTIEZ +BITTURA +BITTURAI +BITTURAT +BITTURE +BITTUREE +BITTURER +BITTUREZ +BITUMA +BITUMAGE +BITUMAI +BITUMAIT +BITUMANT +BITUMAT +BITUME +BITUMEE +BITUMENT +BITUMER +BITUMERA +BITUMEUX +BITUMEZ +BITUMIEZ +BITUMINA +BITUMINE +BITURA +BITURAI +BITURAIT +BITURANT +BITURAT +BITURE +BITUREE +BITURENT +BITURER +BITURERA +BITUREZ +BITURIEZ +BIVALENT +BIVALVE +BIVEAU +BIVOUAC +BIZARRE +BIZUT +BIZUTA +BIZUTAGE +BIZUTAI +BIZUTAIT +BIZUTANT +BIZUTAT +BIZUTE +BIZUTEE +BIZUTENT +BIZUTER +BIZUTERA +BIZUTEZ +BIZUTIEZ +BLABLA +BLABLATA +BLABLATE +BLACK +BLAFARD +BLAFARDE +BLAGUA +BLAGUAI +BLAGUAIT +BLAGUANT +BLAGUAT +BLAGUE +BLAGUEE +BLAGUENT +BLAGUER +BLAGUERA +BLAGUEUR +BLAGUEZ +BLAGUIEZ +BLAIR +BLAIRA +BLAIRAI +BLAIRAIT +BLAIRANT +BLAIRAT +BLAIRE +BLAIREAU +BLAIREE +BLAIRENT +BLAIRER +BLAIRERA +BLAIREZ +BLAIRIEZ +BLAMA +BLAMABLE +BLAMAI +BLAMAIT +BLAMANT +BLAMASSE +BLAMAT +BLAME +BLAMEE +BLAMENT +BLAMER +BLAMERA +BLAMERAI +BLAMEREZ +BLAMEZ +BLAMIEZ +BLANC +BLANCHE +BLANCHET +BLANCHI +BLANCHIE +BLANCHIR +BLANCHIT +BLANDICE +BLASA +BLASAI +BLASAIT +BLASANT +BLASASSE +BLASAT +BLASE +BLASEE +BLASENT +BLASER +BLASERA +BLASERAI +BLASEREZ +BLASEZ +BLASIEZ +BLASON +BLASONNA +BLASONNE +BLASTULA +BLATERA +BLATERAI +BLATERAT +BLATERE +BLATEREE +BLATERER +BLATEREZ +BLATTE +BLAZER +BLECHE +BLED +BLEMAIT +BLEMANT +BLEME +BLEMERA +BLEMERAI +BLEMEREZ +BLEMEZ +BLEMI +BLEMIE +BLEMIEZ +BLEMIR +BLEMISSE +BLEMIT +BLENDE +BLENNIE +BLESA +BLESAI +BLESAIT +BLESANT +BLESASSE +BLESAT +BLESE +BLESEE +BLESENT +BLESER +BLESERA +BLESERAI +BLESEREZ +BLESEZ +BLESIEZ +BLESITE +BLESSA +BLESSAI +BLESSAIT +BLESSANT +BLESSAT +BLESSE +BLESSEE +BLESSER +BLESSERA +BLESSURE +BLET +BLETTE +BLETTI +BLETTIR +BLETTIRA +BLETTIT +BLEU +BLEUATRE +BLEUE +BLEUET +BLEUI +BLEUIE +BLEUIR +BLEUIRA +BLEUIRAI +BLEUIREZ +BLEUISSE +BLEUIT +BLEUTA +BLEUTAI +BLEUTAIT +BLEUTANT +BLEUTAT +BLEUTE +BLEUTEE +BLEUTENT +BLEUTER +BLEUTERA +BLEUTEZ +BLEUTIEZ +BLINDA +BLINDAGE +BLINDAI +BLINDAIT +BLINDANT +BLINDAT +BLINDE +BLINDEE +BLINDENT +BLINDER +BLINDERA +BLINDEZ +BLINDIEZ +BLISTER +BLIZZARD +BLOC +BLOCAGE +BLOND +BLONDE +BLONDEL +BLONDEUR +BLONDI +BLONDIE +BLONDIN +BLONDINE +BLONDIR +BLONDIT +BLONDOIE +BLONDOYA +BLONDOYE +BLOOMER +BLOQUA +BLOQUAI +BLOQUAIT +BLOQUANT +BLOQUAT +BLOQUE +BLOQUEE +BLOQUENT +BLOQUER +BLOQUERA +BLOQUEZ +BLOQUIEZ +BLOTTI +BLOTTIE +BLOTTIR +BLOTTIRA +BLOTTIT +BLOUSA +BLOUSAI +BLOUSAIT +BLOUSANT +BLOUSAT +BLOUSE +BLOUSEE +BLOUSENT +BLOUSER +BLOUSERA +BLOUSEZ +BLOUSIEZ +BLOUSON +BLUET +BLUETTE +BLUFF +BLUFFA +BLUFFAI +BLUFFAIT +BLUFFANT +BLUFFAT +BLUFFE +BLUFFEE +BLUFFENT +BLUFFER +BLUFFERA +BLUFFEUR +BLUFFEZ +BLUFFIEZ +BLUTA +BLUTAGE +BLUTAI +BLUTAIT +BLUTANT +BLUTASSE +BLUTAT +BLUTE +BLUTEE +BLUTENT +BLUTER +BLUTERA +BLUTERAI +BLUTEREZ +BLUTEZ +BLUTIEZ +BLUTOIR +BOBARD +BOBECHE +BOBINA +BOBINAGE +BOBINAI +BOBINAIT +BOBINANT +BOBINAT +BOBINE +BOBINEE +BOBINENT +BOBINER +BOBINERA +BOBINEUR +BOBINEZ +BOBINIER +BOBINIEZ +BOBINOIR +BOBO +BOBONNE +BOCAGE +BOCAGER +BOCAGERE +BOCAL +BOCARD +BOCARDA +BOCARDAI +BOCARDAT +BOCARDE +BOCARDEE +BOCARDER +BOCARDEZ +BOCHE +BOCK +BOESSE +BOETE +BOETTA +BOETTAI +BOETTAIT +BOETTANT +BOETTAT +BOETTE +BOETTEE +BOETTENT +BOETTER +BOETTERA +BOETTEZ +BOETTIEZ +BOEUF +BOGHEI +BOGIE +BOGUE +BOHEME +BOHEMIEN +BOILLE +BOIRA +BOIRAI +BOIRAIT +BOIRE +BOIREZ +BOIRIEZ +BOIRONT +BOISA +BOISAGE +BOISAI +BOISAIT +BOISANT +BOISASSE +BOISAT +BOISE +BOISEE +BOISENT +BOISER +BOISERA +BOISERAI +BOISEREZ +BOISERIE +BOISEUR +BOISEZ +BOISIEZ +BOISSEAU +BOISSON +BOIT +BOITA +BOITAI +BOITAIT +BOITANT +BOITASSE +BOITAT +BOITE +BOITENT +BOITER +BOITERA +BOITERAI +BOITEREZ +BOITERIE +BOITEUSE +BOITEUX +BOITEZ +BOITIER +BOITIEZ +BOITILLA +BOITILLE +BOIVE +BOIVENT +BOLDO +BOLDUC +BOLEE +BOLERO +BOLET +BOLIDE +BOLIER +BOLIVAR +BOLLARD +BOMBA +BOMBAGE +BOMBAI +BOMBAIT +BOMBANCE +BOMBANT +BOMBARDA +BOMBARDE +BOMBASSE +BOMBAT +BOMBE +BOMBEE +BOMBENT +BOMBER +BOMBERA +BOMBERAI +BOMBEREZ +BOMBEZ +BOMBIEZ +BOMBYX +BOME +BONACE +BONASSE +BONBON +BONBONNE +BOND +BONDA +BONDAI +BONDAIT +BONDANT +BONDASSE +BONDAT +BONDE +BONDEE +BONDELLE +BONDENT +BONDER +BONDERA +BONDERAI +BONDEREZ +BONDEZ +BONDI +BONDIEZ +BONDIR +BONDIRA +BONDIRAI +BONDIREZ +BONDISSE +BONDIT +BONDON +BONDONNA +BONDONNE +BONDREE +BONHEUR +BONHOMIE +BONHOMME +BONI +BONICHE +BONICHON +BONIFIA +BONIFIAI +BONIFIAT +BONIFIE +BONIFIEE +BONIFIER +BONIFIEZ +BONIMENT +BONITE +BONJOUR +BONNE +BONNET +BONNETTE +BONSAI +BONSOIR +BONTE +BONZE +BONZERIE +BOOLEEN +BOOM +BOOSTER +BORA +BORATE +BORAX +BORD +BORDA +BORDAGE +BORDAI +BORDAIT +BORDANT +BORDASSE +BORDAT +BORDE +BORDEE +BORDEL +BORDENT +BORDER +BORDERA +BORDERAI +BORDEREZ +BORDERIE +BORDEZ +BORDIER +BORDIERE +BORDIEZ +BORDIGUE +BORDURE +BORE +BOREAL +BOREALE +BORGNE +BORIQUE +BORNA +BORNAGE +BORNAI +BORNAIT +BORNANT +BORNASSE +BORNAT +BORNE +BORNEE +BORNENT +BORNER +BORNERA +BORNERAI +BORNEREZ +BORNEZ +BORNIEZ +BORNOIE +BORNOYA +BORNOYAI +BORNOYAT +BORNOYE +BORNOYEE +BORNOYER +BORNOYEZ +BORT +BORTSCH +BOSCO +BOSCOT +BOSCOTTE +BOSQUET +BOSSA +BOSSAGE +BOSSAI +BOSSAIT +BOSSANT +BOSSASSE +BOSSAT +BOSSE +BOSSEE +BOSSELA +BOSSELAI +BOSSELAT +BOSSELE +BOSSELEE +BOSSELER +BOSSELEZ +BOSSELLE +BOSSER +BOSSERA +BOSSERAI +BOSSEREZ +BOSSETTE +BOSSEUR +BOSSEUSE +BOSSOIR +BOSSU +BOSSUA +BOSSUAI +BOSSUAIT +BOSSUANT +BOSSUAT +BOSSUE +BOSSUEE +BOSSUENT +BOSSUER +BOSSUERA +BOSSUEZ +BOSSUIEZ +BOSTON +BOTANISA +BOTANISE +BOTE +BOTTA +BOTTAI +BOTTAIT +BOTTANT +BOTTASSE +BOTTAT +BOTTE +BOTTEE +BOTTELA +BOTTELAI +BOTTELAT +BOTTELE +BOTTELEE +BOTTELER +BOTTELEZ +BOTTELLE +BOTTENT +BOTTER +BOTTERA +BOTTERAI +BOTTEREZ +BOTTEZ +BOTTIER +BOTTIEZ +BOTTIN +BOTTINE +BOUBOU +BOUC +BOUCAN +BOUCANA +BOUCANAI +BOUCANAT +BOUCANE +BOUCANEE +BOUCANER +BOUCANEZ +BOUCAU +BOUCHA +BOUCHAGE +BOUCHAI +BOUCHAIT +BOUCHANT +BOUCHAT +BOUCHE +BOUCHEE +BOUCHENT +BOUCHER +BOUCHERA +BOUCHEZ +BOUCHIEZ +BOUCHON +BOUCHOT +BOUCLA +BOUCLAGE +BOUCLAI +BOUCLAIT +BOUCLANT +BOUCLAT +BOUCLE +BOUCLEE +BOUCLENT +BOUCLER +BOUCLERA +BOUCLEZ +BOUCLIER +BOUCLIEZ +BOUDA +BOUDAI +BOUDAIT +BOUDANT +BOUDASSE +BOUDAT +BOUDDHA +BOUDE +BOUDEE +BOUDENT +BOUDER +BOUDERA +BOUDERAI +BOUDEREZ +BOUDERIE +BOUDEUR +BOUDEUSE +BOUDEZ +BOUDIEZ +BOUDIN +BOUDINA +BOUDINAI +BOUDINAT +BOUDINE +BOUDINEE +BOUDINER +BOUDINEZ +BOUDOIR +BOUE +BOUEE +BOUEUR +BOUEUSE +BOUEUX +BOUFFA +BOUFFAI +BOUFFAIT +BOUFFANT +BOUFFAT +BOUFFE +BOUFFEE +BOUFFENT +BOUFFER +BOUFFERA +BOUFFEZ +BOUFFI +BOUFFIE +BOUFFIEZ +BOUFFIR +BOUFFIRA +BOUFFIT +BOUFFON +BOUGE +BOUGEA +BOUGEAI +BOUGEAIT +BOUGEANT +BOUGEAT +BOUGEE +BOUGENT +BOUGEOIR +BOUGER +BOUGERA +BOUGERAI +BOUGEREZ +BOUGEZ +BOUGIE +BOUGIEZ +BOUGNAT +BOUGON +BOUGONNA +BOUGONNE +BOUGRAN +BOUGRE +BOUIF +BOUILLE +BOUILLEZ +BOUILLI +BOUILLIE +BOUILLIR +BOUILLIT +BOUILLON +BOULA +BOULAI +BOULAIE +BOULAIT +BOULANGE +BOULANT +BOULASSE +BOULAT +BOULBENE +BOULE +BOULEAU +BOULEE +BOULENT +BOULER +BOULERA +BOULERAI +BOULEREZ +BOULET +BOULETE +BOULETEE +BOULETTE +BOULEZ +BOULIER +BOULIEZ +BOULIMIE +BOULIN +BOULINE +BOULISTE +BOULOIR +BOULON +BOULONNA +BOULONNE +BOULOT +BOULOTTA +BOULOTTE +BOUM +BOUME +BOUMENT +BOUMER +BOUMERA +BOUMERAI +BOUMEREZ +BOUQUET +BOUQUIN +BOUQUINA +BOUQUINE +BOURBE +BOURBEUX +BOURBIER +BOURBON +BOURDA +BOURDAI +BOURDAIT +BOURDANT +BOURDAT +BOURDE +BOURDENT +BOURDER +BOURDERA +BOURDEZ +BOURDIEZ +BOURDON +BOURG +BOURGADE +BOURGEON +BOURRA +BOURRADE +BOURRAGE +BOURRAI +BOURRAIT +BOURRANT +BOURRAT +BOURRE +BOURREAU +BOURREE +BOURRELA +BOURRELE +BOURRENT +BOURRER +BOURRERA +BOURREZ +BOURRIEZ +BOURRIN +BOURROIR +BOURRU +BOURRUE +BOURSE +BOURSIER +BOUSCULA +BOUSCULE +BOUSE +BOUSEUX +BOUSIER +BOUSILLA +BOUSILLE +BOUSIN +BOUSSOLE +BOUT +BOUTA +BOUTADE +BOUTAI +BOUTAIT +BOUTANT +BOUTASSE +BOUTAT +BOUTE +BOUTEE +BOUTEFEU +BOUTENT +BOUTER +BOUTERA +BOUTERAI +BOUTEREZ +BOUTEUR +BOUTEZ +BOUTIEZ +BOUTIQUE +BOUTISSE +BOUTOIR +BOUTON +BOUTONNA +BOUTONNE +BOUTRE +BOUTURA +BOUTURAI +BOUTURAT +BOUTURE +BOUTURER +BOUTUREZ +BOUVERIE +BOUVET +BOUVIER +BOUVIERE +BOUVRIL +BOVIDE +BOVIN +BOWLING +BOXA +BOXAI +BOXAIT +BOXANT +BOXASSE +BOXAT +BOXE +BOXEE +BOXENT +BOXER +BOXERA +BOXERAI +BOXERAIT +BOXERENT +BOXEREZ +BOXERIEZ +BOXEUR +BOXEZ +BOXIEZ +BOYARD +BOYAU +BOYCOTT +BOYCOTTA +BOYCOTTE +BRABANT +BRACELET +BRACHIAL +BRACONNA +BRACONNE +BRACTEAL +BRACTEE +BRADA +BRADAGE +BRADAI +BRADAIT +BRADANT +BRADASSE +BRADAT +BRADE +BRADEE +BRADEL +BRADENT +BRADER +BRADERA +BRADERAI +BRADEREZ +BRADERIE +BRADEUR +BRADEUSE +BRADEZ +BRADIEZ +BRADYPE +BRAHMANE +BRAI +BRAIE +BRAIERA +BRAIERAI +BRAIEREZ +BRAILLA +BRAILLAI +BRAILLAT +BRAILLE +BRAILLEE +BRAILLER +BRAILLEZ +BRAIMENT +BRAIRA +BRAIRAIT +BRAIRE +BRAIRONT +BRAISA +BRAISAI +BRAISAIT +BRAISANT +BRAISAT +BRAISE +BRAISEE +BRAISENT +BRAISER +BRAISERA +BRAISEZ +BRAISIEZ +BRAIT +BRAMA +BRAMAI +BRAMAIT +BRAMANT +BRAMASSE +BRAMAT +BRAME +BRAMEE +BRAMENT +BRAMER +BRAMERA +BRAMERAI +BRAMEREZ +BRAMEZ +BRAMIEZ +BRAN +BRANCARD +BRANCHA +BRANCHAI +BRANCHAT +BRANCHE +BRANCHEE +BRANCHER +BRANCHEZ +BRANCHU +BRANCHUE +BRANDADE +BRANDE +BRANDI +BRANDIE +BRANDIR +BRANDIRA +BRANDIT +BRANDON +BRANDY +BRANLA +BRANLAI +BRANLAIT +BRANLANT +BRANLAT +BRANLE +BRANLEE +BRANLENT +BRANLER +BRANLERA +BRANLEZ +BRANLIEZ +BRAQUA +BRAQUAGE +BRAQUAI +BRAQUAIT +BRAQUANT +BRAQUAT +BRAQUE +BRAQUEE +BRAQUENT +BRAQUER +BRAQUERA +BRAQUET +BRAQUEZ +BRAQUIEZ +BRASA +BRASAGE +BRASAI +BRASAIT +BRASANT +BRASASSE +BRASAT +BRASE +BRASEE +BRASENT +BRASER +BRASERA +BRASERAI +BRASEREZ +BRASERO +BRASEZ +BRASIER +BRASIEZ +BRASILLA +BRASILLE +BRASSA +BRASSAGE +BRASSAI +BRASSAIT +BRASSANT +BRASSARD +BRASSAT +BRASSE +BRASSEE +BRASSER +BRASSERA +BRASSEUR +BRASSIN +BRASURE +BRAVA +BRAVACHE +BRAVADE +BRAVAI +BRAVAIT +BRAVANT +BRAVASSE +BRAVAT +BRAVE +BRAVEE +BRAVENT +BRAVER +BRAVERA +BRAVERAI +BRAVEREZ +BRAVEZ +BRAVIEZ +BRAVO +BRAVOURE +BRAYA +BRAYAI +BRAYAIT +BRAYANT +BRAYASSE +BRAYAT +BRAYE +BRAYEE +BRAYENT +BRAYER +BRAYERA +BRAYERAI +BRAYEREZ +BRAYEZ +BRAYIEZ +BREAK +BRECHE +BRECHET +BREF +BRELA +BRELAI +BRELAIT +BRELAN +BRELANT +BRELASSE +BRELAT +BRELE +BRELEE +BRELENT +BRELER +BRELERA +BRELERAI +BRELEREZ +BRELEZ +BRELIEZ +BRELLA +BRELLAI +BRELLAIT +BRELLANT +BRELLAT +BRELLE +BRELLEE +BRELLENT +BRELLER +BRELLERA +BRELLEZ +BRELLIEZ +BRELOQUE +BREME +BRESIL +BRESILLA +BRESILLE +BRETECHE +BRETELLE +BRETESSE +BRETON +BRETTA +BRETTAI +BRETTAIT +BRETTANT +BRETTAT +BRETTE +BRETTEE +BRETTELA +BRETTELE +BRETTENT +BRETTER +BRETTERA +BRETTEUR +BRETTEZ +BRETTIEZ +BRETZEL +BREUVAGE +BREVE +BREVET +BREVETA +BREVETAI +BREVETAT +BREVETE +BREVETEE +BREVETER +BREVETEZ +BREVETTE +BREVITE +BRIARD +BRIC +BRICK +BRICOLA +BRICOLAI +BRICOLAT +BRICOLE +BRICOLEE +BRICOLER +BRICOLEZ +BRIDA +BRIDAI +BRIDAIT +BRIDANT +BRIDASSE +BRIDAT +BRIDE +BRIDEE +BRIDENT +BRIDER +BRIDERA +BRIDERAI +BRIDEREZ +BRIDEZ +BRIDGE +BRIDGEA +BRIDGEAI +BRIDGEAT +BRIDGENT +BRIDGER +BRIDGERA +BRIDGEUR +BRIDGEZ +BRIDGIEZ +BRIDIEZ +BRIDON +BRIE +BRIEFING +BRIEVETE +BRIFA +BRIFAI +BRIFAIT +BRIFANT +BRIFASSE +BRIFAT +BRIFE +BRIFEE +BRIFENT +BRIFER +BRIFERA +BRIFERAI +BRIFEREZ +BRIFEZ +BRIFFA +BRIFFAI +BRIFFAIT +BRIFFANT +BRIFFAT +BRIFFE +BRIFFEE +BRIFFENT +BRIFFER +BRIFFERA +BRIFFEZ +BRIFFIEZ +BRIFIEZ +BRIGADE +BRIGAND +BRIGANDA +BRIGANDE +BRIGUA +BRIGUAI +BRIGUAIT +BRIGUANT +BRIGUAT +BRIGUE +BRIGUEE +BRIGUENT +BRIGUER +BRIGUERA +BRIGUEZ +BRIGUIEZ +BRILLA +BRILLAI +BRILLAIT +BRILLANT +BRILLAT +BRILLE +BRILLENT +BRILLER +BRILLERA +BRILLEZ +BRILLIEZ +BRIMA +BRIMADE +BRIMAI +BRIMAIT +BRIMANT +BRIMASSE +BRIMAT +BRIMBALA +BRIMBALE +BRIME +BRIMEE +BRIMENT +BRIMER +BRIMERA +BRIMERAI +BRIMEREZ +BRIMEZ +BRIMIEZ +BRIN +BRINGUE +BRIO +BRIOCHE +BRIOCHEE +BRIQUA +BRIQUAI +BRIQUAIT +BRIQUANT +BRIQUAT +BRIQUE +BRIQUEE +BRIQUENT +BRIQUER +BRIQUERA +BRIQUET +BRIQUETA +BRIQUETE +BRIQUEZ +BRIQUIEZ +BRISA +BRISAI +BRISAIT +BRISANT +BRISASSE +BRISAT +BRISCARD +BRISE +BRISEE +BRISENT +BRISER +BRISERA +BRISERAI +BRISEREZ +BRISEUR +BRISEUSE +BRISEZ +BRISIEZ +BRISKA +BRISQUE +BRISTOL +BRISURE +BROC +BROCANTA +BROCARD +BROCARDA +BROCARDE +BROCHA +BROCHAGE +BROCHAI +BROCHAIT +BROCHANT +BROCHAT +BROCHE +BROCHEE +BROCHENT +BROCHER +BROCHERA +BROCHET +BROCHEUR +BROCHEZ +BROCHIEZ +BROCHURE +BROCOLI +BRODA +BRODAI +BRODAIT +BRODANT +BRODASSE +BRODAT +BRODE +BRODEE +BRODENT +BRODER +BRODERA +BRODERAI +BRODEREZ +BRODERIE +BRODEUR +BRODEUSE +BRODEZ +BRODIEZ +BROIE +BROIENT +BROIERA +BROIERAI +BROIEREZ +BROMATE +BROME +BROMIQUE +BROMISME +BROMURE +BRONCHA +BRONCHAI +BRONCHAT +BRONCHE +BRONCHER +BRONCHEZ +BRONCHO +BRONZA +BRONZAGE +BRONZAI +BRONZAIT +BRONZANT +BRONZAT +BRONZE +BRONZEE +BRONZENT +BRONZER +BRONZERA +BRONZEUR +BRONZEZ +BRONZIER +BRONZIEZ +BROOK +BROSSA +BROSSAGE +BROSSAI +BROSSAIT +BROSSANT +BROSSAT +BROSSE +BROSSEE +BROSSER +BROSSERA +BROSSIER +BROU +BROUET +BROUETTA +BROUETTE +BROUHAHA +BROUILLA +BROUILLE +BROUM +BROUSSE +BROUSSIN +BROUT +BROUTA +BROUTAI +BROUTAIT +BROUTANT +BROUTARD +BROUTAT +BROUTE +BROUTEE +BROUTENT +BROUTER +BROUTERA +BROUTEZ +BROUTIEZ +BROWNING +BROYA +BROYAGE +BROYAI +BROYAIT +BROYANT +BROYASSE +BROYAT +BROYE +BROYEE +BROYER +BROYEUR +BROYEUSE +BROYEZ +BROYIEZ +BRRR +BRUANT +BRUCHE +BRUCINE +BRUGNON +BRUI +BRUIE +BRUINA +BRUINAIT +BRUINAT +BRUINE +BRUINER +BRUINERA +BRUINEUX +BRUIR +BRUIRA +BRUIRAI +BRUIRAIT +BRUIRE +BRUIRENT +BRUIREZ +BRUIRIEZ +BRUIRONT +BRUISSE +BRUIT +BRUITA +BRUITAGE +BRUITAI +BRUITAIT +BRUITANT +BRUITAT +BRUITE +BRUITENT +BRUITER +BRUITERA +BRUITEUR +BRUITEZ +BRUITIEZ +BRULA +BRULAGE +BRULAI +BRULAIT +BRULANT +BRULASSE +BRULAT +BRULE +BRULEE +BRULENT +BRULER +BRULERA +BRULERAI +BRULEREZ +BRULERIE +BRULEUR +BRULEZ +BRULIEZ +BRULOIR +BRULOT +BRULURE +BRUMA +BRUMAIRE +BRUMAIT +BRUMASSA +BRUMASSE +BRUMAT +BRUME +BRUMER +BRUMERA +BRUMEUSE +BRUMEUX +BRUN +BRUNATRE +BRUNCH +BRUNE +BRUNET +BRUNETTE +BRUNI +BRUNIE +BRUNIR +BRUNIRA +BRUNIRAI +BRUNIREZ +BRUNISSE +BRUNIT +BRUSHING +BRUSQUA +BRUSQUAI +BRUSQUAT +BRUSQUE +BRUSQUEE +BRUSQUER +BRUSQUEZ +BRUT +BRUTAL +BRUTALE +BRUTE +BRUYANT +BRUYERE +BRYONE +BUANDIER +BUBALE +BUBON +BUCCAL +BUCCALE +BUCCIN +BUCHA +BUCHAI +BUCHAIT +BUCHANT +BUCHASSE +BUCHAT +BUCHE +BUCHEE +BUCHENT +BUCHER +BUCHERA +BUCHERAI +BUCHEREZ +BUCHERON +BUCHETTE +BUCHEUR +BUCHEUSE +BUCHEZ +BUCHIEZ +BUCRANE +BUDGET +BUEE +BUFFET +BUFFLE +BUGGY +BUGLE +BUGLOSSE +BUGRANE +BUILDING +BUIRE +BUISSON +BULBAIRE +BULBE +BULBEUSE +BULBEUX +BULBILLE +BULGARE +BULLAIRE +BULLE +BULLETIN +BULLEUSE +BULLEUX +BUNA +BUNGALOW +BUNKER +BUPRESTE +BURE +BUREAU +BURELE +BURELEE +BURELLE +BURENT +BURETTE +BURGAU +BURIN +BURINA +BURINAGE +BURINAI +BURINAIT +BURINANT +BURINAT +BURINE +BURINEE +BURINENT +BURINER +BURINERA +BURINEUR +BURINEZ +BURINIEZ +BURON +BUSARD +BUSC +BUSE +BUSH +BUSSE +BUSTE +BUSTIER +BUTA +BUTAI +BUTAIT +BUTANE +BUTANIER +BUTANT +BUTASSE +BUTAT +BUTE +BUTEE +BUTENT +BUTER +BUTERA +BUTERAI +BUTERAIT +BUTERENT +BUTEREZ +BUTERIEZ +BUTEUR +BUTEZ +BUTIEZ +BUTIN +BUTINA +BUTINAI +BUTINAIT +BUTINANT +BUTINAT +BUTINE +BUTINEE +BUTINENT +BUTINER +BUTINERA +BUTINEUR +BUTINEZ +BUTINIEZ +BUTOIR +BUTOME +BUTOR +BUTTA +BUTTAGE +BUTTAI +BUTTAIT +BUTTANT +BUTTASSE +BUTTAT +BUTTE +BUTTEE +BUTTENT +BUTTER +BUTTERA +BUTTERAI +BUTTEREZ +BUTTEZ +BUTTIEZ +BUTTOIR +BUTYLENE +BUTYRATE +BUTYREUX +BUTYRINE +BUVABLE +BUVAIT +BUVANT +BUVARD +BUVEE +BUVETIER +BUVETTE +BUVEUR +BUVEUSE +BUVEZ +BUVIEZ +BUVOTA +BUVOTAI +BUVOTAIT +BUVOTANT +BUVOTAT +BUVOTE +BUVOTENT +BUVOTER +BUVOTERA +BUVOTEZ +BUVOTIEZ +BYZANTIN +CABALA +CABALAI +CABALAIT +CABALANT +CABALAT +CABALE +CABALENT +CABALER +CABALERA +CABALEZ +CABALIEZ +CABAN +CABANA +CABANAI +CABANAIT +CABANANT +CABANAT +CABANE +CABANEE +CABANENT +CABANER +CABANERA +CABANEZ +CABANIEZ +CABANON +CABARET +CABASSET +CABERNET +CABESTAN +CABIAI +CABILLOT +CABINE +CABINET +CABLA +CABLAGE +CABLAI +CABLAIT +CABLANT +CABLASSE +CABLAT +CABLE +CABLEE +CABLENT +CABLER +CABLERA +CABLERAI +CABLEREZ +CABLERIE +CABLEUR +CABLEUSE +CABLEZ +CABLIER +CABLIEZ +CABLISTE +CABLOT +CABOCHE +CABOCHON +CABOSSA +CABOSSAI +CABOSSAT +CABOSSE +CABOSSEE +CABOSSER +CABOT +CABOTA +CABOTAGE +CABOTAI +CABOTAIT +CABOTANT +CABOTAT +CABOTE +CABOTENT +CABOTER +CABOTERA +CABOTEUR +CABOTEZ +CABOTIEZ +CABOTIN +CABOTINA +CABOTINE +CABOULOT +CABRA +CABRAI +CABRAIT +CABRANT +CABRASSE +CABRAT +CABRE +CABREE +CABRENT +CABRER +CABRERA +CABRERAI +CABREREZ +CABREZ +CABRI +CABRIEZ +CABRIOLA +CABRIOLE +CACA +CACABA +CACABAI +CACABAIT +CACABANT +CACABAT +CACABE +CACABENT +CACABER +CACABERA +CACABEZ +CACABIEZ +CACAO +CACAOTE +CACAOTEE +CACAOYER +CACARDA +CACARDAI +CACARDAT +CACARDE +CACARDER +CACARDEZ +CACHA +CACHAI +CACHAIT +CACHALOT +CACHANT +CACHASSE +CACHAT +CACHE +CACHEE +CACHENT +CACHER +CACHERA +CACHERAI +CACHEREZ +CACHET +CACHETA +CACHETAI +CACHETAT +CACHETE +CACHETEE +CACHETER +CACHETEZ +CACHETTE +CACHEXIE +CACHEZ +CACHIEZ +CACHOT +CACHOU +CACHUCHA +CACIQUE +CACOLET +CADANCHA +CADANCHE +CADASTRA +CADASTRE +CADAVRE +CADDIE +CADDY +CADE +CADEAU +CADENCA +CADENCAI +CADENCAT +CADENCE +CADENCEE +CADENCER +CADENCEZ +CADET +CADETTE +CADI +CADMIA +CADMIAGE +CADMIAI +CADMIAIT +CADMIANT +CADMIAT +CADMIE +CADMIEE +CADMIENT +CADMIER +CADMIERA +CADMIEZ +CADMIIEZ +CADMIUM +CADOGAN +CADRA +CADRAGE +CADRAI +CADRAIT +CADRAN +CADRANT +CADRASSE +CADRAT +CADRE +CADREE +CADRENT +CADRER +CADRERA +CADRERAI +CADREREZ +CADREUR +CADREUSE +CADREZ +CADRIEZ +CADUC +CADUCEE +CADUCITE +CADUQUE +CAECAL +CAECALE +CAECUM +CAESIUM +CAETERA +CAFARD +CAFARDA +CAFARDAI +CAFARDAT +CAFARDE +CAFARDEE +CAFARDER +CAFARDEZ +CAFE +CAFEIER +CAFEIERE +CAFEINE +CAFEISME +CAFETAN +CAFETIER +CAFRE +CAFTA +CAFTAI +CAFTAIT +CAFTAN +CAFTANT +CAFTASSE +CAFTAT +CAFTE +CAFTEE +CAFTENT +CAFTER +CAFTERA +CAFTERAI +CAFTEREZ +CAFTEZ +CAFTIEZ +CAGE +CAGEOT +CAGET +CAGIBI +CAGNA +CAGNAI +CAGNAIT +CAGNANT +CAGNARD +CAGNARDA +CAGNARDE +CAGNASSE +CAGNAT +CAGNE +CAGNENT +CAGNER +CAGNERA +CAGNERAI +CAGNEREZ +CAGNEUSE +CAGNEUX +CAGNEZ +CAGNIEZ +CAGNOTTE +CAGOT +CAGOTE +CAGOULE +CAHIER +CAHOT +CAHOTA +CAHOTAI +CAHOTAIT +CAHOTANT +CAHOTAT +CAHOTE +CAHOTEE +CAHOTENT +CAHOTER +CAHOTERA +CAHOTEUX +CAHOTEZ +CAHOTIEZ +CAHUTE +CAID +CAIEU +CAIEUX +CAILLA +CAILLAI +CAILLAIT +CAILLANT +CAILLAT +CAILLE +CAILLEE +CAILLENT +CAILLER +CAILLERA +CAILLETA +CAILLETE +CAILLEZ +CAILLIEZ +CAILLOT +CAILLOU +CAILLOUX +CAIMAN +CAIQUE +CAIRN +CAIROTE +CAISSE +CAISSIER +CAISSON +CAJEPUT +CAJOLA +CAJOLAI +CAJOLAIT +CAJOLANT +CAJOLAT +CAJOLE +CAJOLEE +CAJOLENT +CAJOLER +CAJOLERA +CAJOLEUR +CAJOLEZ +CAJOLIEZ +CAJOU +CAJUN +CAKE +CALA +CALADIUM +CALAGE +CALAI +CALAISON +CALAIT +CALAMAR +CALAMBAC +CALAME +CALAMINA +CALAMINE +CALAMITE +CALANCHA +CALANCHE +CALANDRA +CALANDRE +CALANQUE +CALANT +CALAO +CALASSE +CALAT +CALCAIRE +CALCEMIE +CALCIFIE +CALCIN +CALCINA +CALCINAI +CALCINAT +CALCINE +CALCINEE +CALCINER +CALCINEZ +CALCIQUE +CALCITE +CALCIUM +CALCUL +CALCULA +CALCULAI +CALCULAT +CALCULE +CALCULEE +CALCULER +CALCULEZ +CALDEIRA +CALE +CALECHE +CALECON +CALEE +CALENT +CALEPIN +CALER +CALERA +CALERAI +CALERAIT +CALERENT +CALEREZ +CALERIEZ +CALETA +CALETAI +CALETAIT +CALETANT +CALETAT +CALETE +CALETEE +CALETER +CALETEZ +CALETIEZ +CALETTE +CALEZ +CALF +CALFAT +CALFATA +CALFATAI +CALFATAT +CALFATE +CALFATEE +CALFATER +CALFATEZ +CALIBRA +CALIBRAI +CALIBRAT +CALIBRE +CALIBREE +CALIBRER +CALIBREZ +CALICE +CALICOT +CALICULE +CALIER +CALIEZ +CALIFAT +CALIFE +CALIN +CALINA +CALINAI +CALINAIT +CALINANT +CALINAT +CALINE +CALINEE +CALINENT +CALINER +CALINERA +CALINEZ +CALINIEZ +CALIORNE +CALISSON +CALLEUSE +CALLEUX +CALMA +CALMAI +CALMAIT +CALMANT +CALMAR +CALMASSE +CALMAT +CALME +CALMEE +CALMENT +CALMER +CALMERA +CALMERAI +CALMEREZ +CALMEZ +CALMI +CALMIEZ +CALMIR +CALMIRA +CALMIRAI +CALMIREZ +CALMISSE +CALMIT +CALO +CALOMEL +CALOMNIA +CALOMNIE +CALORIE +CALOT +CALOTIN +CALOTTA +CALOTTAI +CALOTTAT +CALOTTE +CALOTTEE +CALOTTER +CALOTTEZ +CALOYER +CALOYERE +CALQUA +CALQUAGE +CALQUAI +CALQUAIT +CALQUANT +CALQUAT +CALQUE +CALQUEE +CALQUENT +CALQUER +CALQUERA +CALQUEZ +CALQUIEZ +CALTA +CALTAI +CALTAIT +CALTANT +CALTASSE +CALTAT +CALTE +CALTEE +CALTENT +CALTER +CALTERA +CALTERAI +CALTEREZ +CALTEZ +CALTIEZ +CALUMET +CALVA +CALVAIRE +CALVILLE +CALVITIE +CALYPSO +CAMAIEU +CAMAIEUX +CAMAIL +CAMARADE +CAMARD +CAMARDE +CAMBIAL +CAMBIALE +CAMBISTE +CAMBIUM +CAMBRA +CAMBRAGE +CAMBRAI +CAMBRAIT +CAMBRANT +CAMBRAT +CAMBRE +CAMBREE +CAMBRENT +CAMBRER +CAMBRERA +CAMBREZ +CAMBRIEN +CAMBRIEZ +CAMBRURE +CAMBUSE +CAMBUTA +CAMBUTAI +CAMBUTAT +CAMBUTE +CAMBUTEE +CAMBUTER +CAMBUTEZ +CAME +CAMEE +CAMELEON +CAMELIA +CAMELINE +CAMELLE +CAMELOT +CAMELOTA +CAMELOTE +CAMERA +CAMERIER +CAMION +CAMIONNA +CAMIONNE +CAMISARD +CAMISOLE +CAMOUFLA +CAMOUFLE +CAMP +CAMPA +CAMPAGNE +CAMPAI +CAMPAIT +CAMPANE +CAMPANT +CAMPASSE +CAMPAT +CAMPE +CAMPECHE +CAMPEE +CAMPENT +CAMPER +CAMPERA +CAMPERAI +CAMPEREZ +CAMPEUR +CAMPEUSE +CAMPEZ +CAMPHRE +CAMPHREE +CAMPIEZ +CAMPING +CANA +CANADA +CANADIEN +CANAI +CANAILLE +CANAIT +CANAL +CANALISA +CANALISE +CANANEEN +CANANT +CANAPE +CANARD +CANARDA +CANARDAI +CANARDAT +CANARDE +CANARDEE +CANARDER +CANARDEZ +CANARI +CANASSE +CANASSON +CANASTA +CANAT +CANCALE +CANCAN +CANCANA +CANCANAI +CANCANAT +CANCANE +CANCANER +CANCANEZ +CANCEL +CANCER +CANCHE +CANCRE +CANDELA +CANDEUR +CANDI +CANDIDAT +CANDIDE +CANDIE +CANDIR +CANDIRA +CANDIRAI +CANDIREZ +CANDISSE +CANDIT +CANE +CANENT +CANER +CANERA +CANERAI +CANERAIT +CANERENT +CANEREZ +CANERIEZ +CANETON +CANETTE +CANEZ +CANGUE +CANICHE +CANICULE +CANIEZ +CANIF +CANIN +CANINE +CANISSE +CANITIE +CANIVEAU +CANNA +CANNAGE +CANNAI +CANNAIT +CANNANT +CANNASSE +CANNAT +CANNE +CANNEE +CANNELA +CANNELAI +CANNELAT +CANNELE +CANNELEE +CANNELER +CANNELEZ +CANNELLE +CANNENT +CANNER +CANNERA +CANNERAI +CANNEREZ +CANNEUR +CANNEUSE +CANNEZ +CANNIEZ +CANNISSE +CANOE +CANON +CANONIAL +CANONISA +CANONISE +CANONNA +CANONNAI +CANONNAT +CANONNE +CANONNEE +CANONNER +CANONNEZ +CANOPE +CANOT +CANOTA +CANOTAGE +CANOTAI +CANOTAIT +CANOTANT +CANOTAT +CANOTE +CANOTENT +CANOTER +CANOTERA +CANOTEUR +CANOTEZ +CANOTIER +CANOTIEZ +CANTAL +CANTATE +CANTER +CANTINE +CANTIQUE +CANTON +CANTONAL +CANTONNA +CANTONNE +CANTRE +CANULA +CANULAI +CANULAIT +CANULANT +CANULAR +CANULAT +CANULE +CANULEE +CANULENT +CANULER +CANULERA +CANULEZ +CANULIEZ +CANUT +CANUTUSE +CANYON +CANZONE +CAOUA +CAPABLE +CAPACITE +CAPE +CAPEA +CAPEAI +CAPEAIT +CAPEANT +CAPEASSE +CAPEAT +CAPEE +CAPEENT +CAPEER +CAPEERA +CAPEERAI +CAPEEREZ +CAPEEZ +CAPEIEZ +CAPELA +CAPELAGE +CAPELAI +CAPELAIT +CAPELAN +CAPELANT +CAPELAT +CAPELE +CAPELEE +CAPELER +CAPELET +CAPELEZ +CAPELIEZ +CAPELINE +CAPELLE +CAPESIEN +CAPETIEN +CAPEYA +CAPEYAI +CAPEYAIT +CAPEYANT +CAPEYAT +CAPEYE +CAPEYENT +CAPEYER +CAPEYERA +CAPEYEZ +CAPEYIEZ +CAPISTON +CAPITAL +CAPITALE +CAPITE +CAPITEE +CAPITEUX +CAPITOLE +CAPITON +CAPITOUL +CAPITULA +CAPITULE +CAPON +CAPONNA +CAPONNAI +CAPONNAT +CAPONNE +CAPONNER +CAPONNEZ +CAPORAL +CAPOT +CAPOTA +CAPOTAGE +CAPOTAI +CAPOTAIT +CAPOTANT +CAPOTAT +CAPOTE +CAPOTEE +CAPOTENT +CAPOTER +CAPOTERA +CAPOTEZ +CAPOTIEZ +CAPPA +CAPRE +CAPRICE +CAPRIER +CAPRIN +CAPRINE +CAPRON +CAPSELLE +CAPSIDE +CAPSULA +CAPSULAI +CAPSULAT +CAPSULE +CAPSULEE +CAPSULER +CAPSULEZ +CAPTA +CAPTAGE +CAPTAI +CAPTAIT +CAPTAL +CAPTANT +CAPTASSE +CAPTAT +CAPTATIF +CAPTE +CAPTEE +CAPTENT +CAPTER +CAPTERA +CAPTERAI +CAPTEREZ +CAPTEUR +CAPTEZ +CAPTIEUX +CAPTIEZ +CAPTIF +CAPTIVA +CAPTIVAI +CAPTIVAT +CAPTIVE +CAPTIVEE +CAPTIVER +CAPTIVEZ +CAPTURA +CAPTURAI +CAPTURAT +CAPTURE +CAPTUREE +CAPTURER +CAPTUREZ +CAPUCE +CAPUCHE +CAPUCHON +CAPUCIN +CAPUCINE +CAPULET +CAQUA +CAQUAI +CAQUAIT +CAQUANT +CAQUASSE +CAQUAT +CAQUE +CAQUEE +CAQUELON +CAQUENT +CAQUER +CAQUERA +CAQUERAI +CAQUEREZ +CAQUET +CAQUETA +CAQUETAI +CAQUETAT +CAQUETE +CAQUETER +CAQUETEZ +CAQUETTE +CAQUEZ +CAQUIEZ +CARABE +CARABIN +CARABINE +CARACAL +CARACO +CARACOLA +CARACOLE +CARACUL +CARAFE +CARAFON +CARAIBE +CARAMEL +CARAMELE +CARAPACE +CARAPATA +CARAPATE +CARAT +CARAVANE +CARBONE +CARBONEE +CARBURA +CARBURAI +CARBURAT +CARBURE +CARBUREE +CARBURER +CARBUREZ +CARCAJOU +CARCAN +CARCASSE +CARCEL +CARCERAL +CARDA +CARDAGE +CARDAI +CARDAIT +CARDAN +CARDANT +CARDASSE +CARDAT +CARDE +CARDEE +CARDENT +CARDER +CARDERA +CARDERAI +CARDERE +CARDEREZ +CARDEUR +CARDEUSE +CARDEZ +CARDIA +CARDIAL +CARDIALE +CARDIEZ +CARDIGAN +CARDINAL +CARDITE +CARDON +CAREME +CARENA +CARENAGE +CARENAI +CARENAIT +CARENANT +CARENAT +CARENCA +CARENCAI +CARENCAT +CARENCE +CARENCEE +CARENCER +CARENCEZ +CARENE +CARENEE +CARENENT +CARENER +CARENERA +CARENEZ +CARENIEZ +CARESSA +CARESSAI +CARESSAT +CARESSE +CARESSEE +CARESSER +CAREX +CARGO +CARGUA +CARGUAI +CARGUAIT +CARGUANT +CARGUAT +CARGUE +CARGUEE +CARGUENT +CARGUER +CARGUERA +CARGUEZ +CARGUIEZ +CARI +CARIA +CARIACOU +CARIAI +CARIAIT +CARIANT +CARIASSE +CARIAT +CARIBOU +CARIE +CARIEE +CARIENT +CARIER +CARIERA +CARIERAI +CARIEREZ +CARIEUSE +CARIEUX +CARIEZ +CARIIEZ +CARILLON +CARISTE +CARLIN +CARLINE +CARLISME +CARLISTE +CARMA +CARMAI +CARMAIT +CARMANT +CARMASSE +CARMAT +CARME +CARMEE +CARMENT +CARMER +CARMERA +CARMERAI +CARMEREZ +CARMEZ +CARMIEZ +CARMIN +CARMINA +CARMINAI +CARMINAT +CARMINE +CARMINEE +CARMINER +CARMINEZ +CARNAGE +CARNAVAL +CARNE +CARNEAU +CARNEE +CARNELE +CARNET +CARNIER +CARNIFIA +CARNIFIE +CARONADE +CAROTENE +CAROTIDE +CAROTTA +CAROTTAI +CAROTTAT +CAROTTE +CAROTTEE +CAROTTER +CAROTTEZ +CAROUBE +CARPE +CARPEAU +CARPELLE +CARPETTE +CARPIEN +CARRA +CARRAI +CARRAIT +CARRANT +CARRARE +CARRASSE +CARRAT +CARRE +CARREAU +CARREE +CARRELA +CARRELAI +CARRELAT +CARRELE +CARRELEE +CARRELER +CARRELET +CARRELEZ +CARRELLE +CARRENT +CARRER +CARRERA +CARRERAI +CARREREZ +CARREZ +CARRICK +CARRIER +CARRIERE +CARRIEZ +CARRIOLE +CARROIE +CARROSSA +CARROSSE +CARROYA +CARROYAI +CARROYAT +CARROYE +CARROYEE +CARROYER +CARROYEZ +CARRURE +CARRY +CARTABLE +CARTE +CARTEL +CARTER +CARTIER +CARTON +CARTONNA +CARTONNE +CARTOON +CARYOPSE +CASA +CASAI +CASAIT +CASANIER +CASANT +CASAQUE +CASAQUIN +CASASSE +CASAT +CASBAH +CASCADA +CASCADAI +CASCADAT +CASCADE +CASCADER +CASCADEZ +CASE +CASEE +CASEFIA +CASEFIAI +CASEFIAT +CASEFIE +CASEFIEE +CASEFIER +CASEFIEZ +CASEINE +CASEMATA +CASEMATE +CASENT +CASER +CASERA +CASERAI +CASERAIT +CASERENT +CASEREZ +CASERIEZ +CASERNA +CASERNAI +CASERNAT +CASERNE +CASERNEE +CASERNER +CASERNEZ +CASEZ +CASH +CASHER +CASHMERE +CASIER +CASIEZ +CASIMIR +CASINO +CASOAR +CASQUA +CASQUAI +CASQUAIT +CASQUANT +CASQUAT +CASQUE +CASQUEE +CASQUENT +CASQUER +CASQUERA +CASQUEZ +CASQUIEZ +CASSA +CASSABLE +CASSAGE +CASSAI +CASSAIT +CASSANT +CASSASSE +CASSAT +CASSATE +CASSE +CASSEAU +CASSEE +CASSER +CASSERA +CASSERAI +CASSEREZ +CASSETIN +CASSETTE +CASSEUR +CASSEUSE +CASSIER +CASSINE +CASSON +CASSURE +CASTAGNA +CASTAGNE +CASTE +CASTEL +CASTINE +CASTOR +CASTRA +CASTRAI +CASTRAIT +CASTRANT +CASTRAT +CASTRE +CASTREE +CASTRENT +CASTRER +CASTRERA +CASTREZ +CASTRIEZ +CASUEL +CASUELLE +CASUISTE +CATAIRE +CATALAN +CATALANE +CATALPA +CATALYSA +CATALYSE +CATARRHE +CATCH +CATCHA +CATCHAI +CATCHAIT +CATCHANT +CATCHAT +CATCHE +CATCHENT +CATCHER +CATCHERA +CATCHEUR +CATCHEZ +CATCHIEZ +CATHARE +CATHETER +CATHODE +CATI +CATIMINI +CATIN +CATION +CATOGAN +CATTLEYA +CAUDAL +CAUDALE +CAUDILLO +CAURI +CAUSA +CAUSAI +CAUSAIT +CAUSAL +CAUSALE +CAUSANT +CAUSASSE +CAUSAT +CAUSATIF +CAUSE +CAUSEE +CAUSENT +CAUSER +CAUSERA +CAUSERAI +CAUSEREZ +CAUSERIE +CAUSETTE +CAUSEUR +CAUSEUSE +CAUSEZ +CAUSIEZ +CAUSSE +CAUTELE +CAUTERE +CAUTION +CAVA +CAVAI +CAVAIT +CAVALA +CAVALAI +CAVALAIT +CAVALANT +CAVALAT +CAVALE +CAVALEE +CAVALENT +CAVALER +CAVALERA +CAVALEUR +CAVALEZ +CAVALIER +CAVALIEZ +CAVANT +CAVASSE +CAVAT +CAVATINE +CAVE +CAVEAU +CAVEE +CAVENT +CAVER +CAVERA +CAVERAI +CAVERAIT +CAVERENT +CAVEREZ +CAVERIEZ +CAVERNE +CAVET +CAVEZ +CAVIAR +CAVIARDA +CAVIARDE +CAVIEZ +CAVISTE +CAVITE +CECI +CECIDIE +CECITE +CEDA +CEDAI +CEDAIT +CEDANT +CEDASSE +CEDAT +CEDE +CEDEE +CEDENT +CEDER +CEDERA +CEDERAI +CEDERAIT +CEDERENT +CEDEREZ +CEDERIEZ +CEDEX +CEDEZ +CEDIEZ +CEDILLE +CEDRAIE +CEDRAT +CEDRE +CEDULE +CEIGNAIT +CEIGNANT +CEIGNE +CEIGNENT +CEIGNEZ +CEIGNIEZ +CEIGNIT +CEINDRA +CEINDRAI +CEINDRE +CEINDREZ +CEINT +CEINTE +CEINTURA +CEINTURE +CELA +CELADON +CELAI +CELAIT +CELANT +CELASSE +CELAT +CELE +CELEBRA +CELEBRAI +CELEBRAT +CELEBRE +CELEBREE +CELEBRER +CELEBRET +CELEBREZ +CELEE +CELENT +CELER +CELERA +CELERAI +CELERAIT +CELERENT +CELEREZ +CELERI +CELERIEZ +CELERITE +CELESTA +CELESTE +CELESTIN +CELEZ +CELIBAT +CELIEZ +CELLA +CELLE +CELLIER +CELLULAR +CELLULE +CELTE +CELTIQUE +CELUI +CEMENT +CEMENTA +CEMENTAI +CEMENTAT +CEMENTE +CEMENTEE +CEMENTER +CEMENTEZ +CENACLE +CENDRA +CENDRAI +CENDRAIT +CENDRANT +CENDRAT +CENDRE +CENDREE +CENDRENT +CENDRER +CENDRERA +CENDREUX +CENDREZ +CENDRIER +CENDRIEZ +CENE +CENELLE +CENOBITE +CENSE +CENSEE +CENSEUR +CENSIER +CENSIERE +CENSORAT +CENSURA +CENSURAI +CENSURAT +CENSURE +CENSUREE +CENSURER +CENSUREZ +CENT +CENTAINE +CENTAURE +CENTAVO +CENTIARE +CENTIBAR +CENTIEME +CENTIME +CENTRA +CENTRAGE +CENTRAI +CENTRAIT +CENTRAL +CENTRALE +CENTRANT +CENTRAT +CENTRE +CENTREE +CENTRENT +CENTRER +CENTRERA +CENTREUR +CENTREZ +CENTRIEZ +CENTUPLA +CENTUPLE +CENTURIE +CENURE +CEPAGE +CEPE +CEPHALEE +CEPHEIDE +CERAMBYX +CERAME +CERASTE +CERAT +CERBERE +CERCE +CERCEAU +CERCLA +CERCLAGE +CERCLAI +CERCLAIT +CERCLANT +CERCLAT +CERCLE +CERCLEE +CERCLENT +CERCLER +CERCLERA +CERCLEZ +CERCLIEZ +CERCUEIL +CEREALE +CEREBRAL +CERF +CERFEUIL +CERISAIE +CERISE +CERISIER +CERITE +CERITHE +CERIUM +CERNA +CERNAI +CERNAIT +CERNANT +CERNASSE +CERNAT +CERNE +CERNEAU +CERNEE +CERNENT +CERNER +CERNERA +CERNERAI +CERNEREZ +CERNEZ +CERNIEZ +CERTAIN +CERTAINE +CERTIFIA +CERTIFIE +CERULEEN +CERUMEN +CERUSE +CERVEAU +CERVELET +CERVELLE +CERVICAL +CERVIER +CERVOISE +CESAR +CESARIEN +CESIUM +CESSA +CESSAI +CESSAIT +CESSANT +CESSASSE +CESSAT +CESSE +CESSEE +CESSER +CESSERA +CESSERAI +CESSEREZ +CESSIBLE +CESSION +CESTE +CESURE +CETACE +CETANE +CETERA +CETERAC +CETOINE +CETONE +CETTE +CEUX +CHABLA +CHABLAI +CHABLAIT +CHABLANT +CHABLAT +CHABLE +CHABLEE +CHABLENT +CHABLER +CHABLERA +CHABLEZ +CHABLIEZ +CHABOT +CHABROL +CHABROT +CHACAL +CHACONE +CHACONNE +CHACUN +CHACUNE +CHADBURN +CHADOUF +CHAFOUIN +CHAGRIN +CHAGRINA +CHAGRINE +CHAH +CHAHUT +CHAHUTA +CHAHUTAI +CHAHUTAT +CHAHUTE +CHAHUTEE +CHAHUTER +CHAHUTEZ +CHAI +CHAINA +CHAINAGE +CHAINAI +CHAINAIT +CHAINANT +CHAINAT +CHAINE +CHAINEE +CHAINENT +CHAINER +CHAINERA +CHAINEUR +CHAINEZ +CHAINIER +CHAINIEZ +CHAINON +CHAIR +CHAIRE +CHAISE +CHAISIER +CHALAND +CHALAZE +CHALDEEN +CHALE +CHALET +CHALEUR +CHALIT +CHALOIR +CHALOUPA +CHALOUPE +CHALUT +CHAMADE +CHAMARRA +CHAMARRE +CHAMBARD +CHAMBRA +CHAMBRAI +CHAMBRAT +CHAMBRE +CHAMBREE +CHAMBRER +CHAMBREZ +CHAMEAU +CHAMELLE +CHAMOISA +CHAMOISE +CHAMP +CHAMPART +CHAMPI +CHAMPION +CHANCARD +CHANCE +CHANCEL +CHANCELA +CHANCELE +CHANCEUX +CHANCI +CHANCIR +CHANCIRA +CHANCIT +CHANCRE +CHANDAIL +CHANGE +CHANGEA +CHANGEAI +CHANGEAT +CHANGEE +CHANGENT +CHANGER +CHANGERA +CHANGEUR +CHANGEZ +CHANGIEZ +CHANOINE +CHANSON +CHANT +CHANTA +CHANTAGE +CHANTAI +CHANTAIT +CHANTANT +CHANTAT +CHANTEAU +CHANTEE +CHANTENT +CHANTER +CHANTERA +CHANTEUR +CHANTEZ +CHANTIER +CHANTIEZ +CHANTRE +CHANVRE +CHAOUCH +CHAPARDA +CHAPARDE +CHAPE +CHAPEAU +CHAPEE +CHAPELA +CHAPELAI +CHAPELAT +CHAPELE +CHAPELEE +CHAPELER +CHAPELET +CHAPELEZ +CHAPELLE +CHAPERON +CHAPITRA +CHAPITRE +CHAPON +CHAPONNA +CHAPONNE +CHAPSKA +CHAQUE +CHAR +CHARABIA +CHARADE +CHARBON +CHARCUTA +CHARCUTE +CHARDON +CHARGE +CHARGEA +CHARGEAI +CHARGEAT +CHARGEE +CHARGENT +CHARGER +CHARGERA +CHARGEUR +CHARGEZ +CHARGIEZ +CHARIOT +CHARISME +CHARITE +CHARMA +CHARMAI +CHARMAIT +CHARMANT +CHARMAT +CHARME +CHARMEE +CHARMENT +CHARMER +CHARMERA +CHARMEUR +CHARMEZ +CHARMIEZ +CHARNEL +CHARNIER +CHARNU +CHARNUE +CHAROGNE +CHARPIE +CHARRIA +CHARRIAI +CHARRIAT +CHARRIE +CHARRIEE +CHARRIER +CHARRIEZ +CHARROI +CHARROIE +CHARRON +CHARROYA +CHARROYE +CHARRUE +CHARTE +CHARTER +CHASSA +CHASSAI +CHASSAIT +CHASSANT +CHASSAT +CHASSE +CHASSEE +CHASSER +CHASSERA +CHASSEUR +CHASSIE +CHASTE +CHASTETE +CHASUBLE +CHAT +CHATAIN +CHATEAU +CHATIA +CHATIAI +CHATIAIT +CHATIANT +CHATIAT +CHATIE +CHATIEE +CHATIENT +CHATIER +CHATIERA +CHATIERE +CHATIEZ +CHATIIEZ +CHATOIE +CHATON +CHATONNA +CHATONNE +CHATOYA +CHATOYAI +CHATOYAT +CHATOYE +CHATOYER +CHATOYEZ +CHATRA +CHATRAI +CHATRAIT +CHATRANT +CHATRAT +CHATRE +CHATREE +CHATRENT +CHATRER +CHATRERA +CHATREZ +CHATRIEZ +CHATTE +CHAUD +CHAUDE +CHAUDEAU +CHAUDRON +CHAUFFA +CHAUFFAI +CHAUFFAT +CHAUFFE +CHAUFFEE +CHAUFFER +CHAUFFEZ +CHAUFOUR +CHAULA +CHAULAGE +CHAULAI +CHAULAIT +CHAULANT +CHAULAT +CHAULE +CHAULEE +CHAULENT +CHAULER +CHAULERA +CHAULEZ +CHAULIEZ +CHAUMA +CHAUMAI +CHAUMAIT +CHAUMANT +CHAUMAT +CHAUME +CHAUMEE +CHAUMENT +CHAUMER +CHAUMERA +CHAUMEZ +CHAUMIEZ +CHAUMINE +CHAUSSA +CHAUSSAI +CHAUSSAT +CHAUSSE +CHAUSSEE +CHAUSSER +CHAUSSON +CHAUT +CHAUVE +CHAUVI +CHAUVIN +CHAUVINE +CHAUVIR +CHAUVIRA +CHAUVIT +CHAVIRA +CHAVIRAI +CHAVIRAT +CHAVIRE +CHAVIREE +CHAVIRER +CHAVIREZ +CHEBEC +CHECHE +CHECHIA +CHEDDITE +CHEF +CHEFFE +CHEIK +CHEIKH +CHEIRE +CHELEM +CHELLEEN +CHEMIN +CHEMINA +CHEMINAI +CHEMINAT +CHEMINE +CHEMINEE +CHEMINER +CHEMINEZ +CHEMINOT +CHEMISA +CHEMISAI +CHEMISAT +CHEMISE +CHEMISEE +CHEMISER +CHEMISEZ +CHENAIE +CHENAL +CHENAPAN +CHENE +CHENET +CHENIL +CHENILLE +CHENU +CHENUE +CHEPTEL +CHEQUE +CHEQUIER +CHER +CHERA +CHERAI +CHERAIT +CHERANT +CHERASSE +CHERAT +CHERCHA +CHERCHAI +CHERCHAT +CHERCHE +CHERCHEE +CHERCHER +CHERCHEZ +CHERE +CHERENT +CHERER +CHERERA +CHERERAI +CHEREREZ +CHEREZ +CHERGUI +CHERI +CHERIE +CHERIEZ +CHERIF +CHERIR +CHERIRA +CHERIRAI +CHERIREZ +CHERISSE +CHERIT +CHEROT +CHERRA +CHERRAI +CHERRAIT +CHERRANT +CHERRAT +CHERRE +CHERRENT +CHERRER +CHERRERA +CHERREZ +CHERRIEZ +CHERTE +CHERUBIN +CHESTER +CHETIF +CHETIVE +CHEVAL +CHEVALA +CHEVALAI +CHEVALAT +CHEVALE +CHEVALEE +CHEVALER +CHEVALET +CHEVALEZ +CHEVALIN +CHEVECHE +CHEVELU +CHEVELUE +CHEVET +CHEVETRE +CHEVEU +CHEVEUX +CHEVILLA +CHEVILLE +CHEVRE +CHEVREAU +CHEVRETA +CHEVRETE +CHEVRIER +CHEVRON +CHEVROTA +CHEVROTE +CHEZ +CHIA +CHIADA +CHIADAI +CHIADAIT +CHIADANT +CHIADAT +CHIADE +CHIADEE +CHIADENT +CHIADER +CHIADERA +CHIADEZ +CHIADIEZ +CHIAI +CHIAIT +CHIALA +CHIALAI +CHIALAIT +CHIALANT +CHIALAT +CHIALE +CHIALENT +CHIALER +CHIALERA +CHIALEZ +CHIALIEZ +CHIANT +CHIANTI +CHIASMA +CHIASME +CHIASSE +CHIAT +CHIC +CHICANA +CHICANAI +CHICANAT +CHICANE +CHICANEE +CHICANER +CHICANEZ +CHICHE +CHICHI +CHICON +CHICOREE +CHICOT +CHICOTA +CHICOTAI +CHICOTAT +CHICOTE +CHICOTER +CHICOTEZ +CHICOTIN +CHIE +CHIEE +CHIEN +CHIENLIT +CHIENNA +CHIENNAI +CHIENNAT +CHIENNE +CHIENNER +CHIENNEZ +CHIENT +CHIER +CHIERA +CHIERAI +CHIERAIT +CHIERENT +CHIEREZ +CHIERIE +CHIERIEZ +CHIEZ +CHIFFE +CHIFFON +CHIFFRA +CHIFFRAI +CHIFFRAT +CHIFFRE +CHIFFREE +CHIFFRER +CHIFFREZ +CHIGNOLE +CHIGNON +CHIIEZ +CHIITE +CHILIEN +CHIMERE +CHIMIE +CHIMIQUE +CHIMISME +CHIMISTE +CHINA +CHINAGE +CHINAI +CHINAIT +CHINANT +CHINASSE +CHINAT +CHINE +CHINEE +CHINENT +CHINER +CHINERA +CHINERAI +CHINEREZ +CHINEUR +CHINEUSE +CHINEZ +CHINIEZ +CHINOISA +CHINOISE +CHINOOK +CHINTZ +CHINURE +CHIOT +CHIOURME +CHIPA +CHIPAI +CHIPAIT +CHIPANT +CHIPASSE +CHIPAT +CHIPE +CHIPEE +CHIPENT +CHIPER +CHIPERA +CHIPERAI +CHIPEREZ +CHIPEZ +CHIPIE +CHIPIEZ +CHIPOTA +CHIPOTAI +CHIPOTAT +CHIPOTE +CHIPOTEE +CHIPOTER +CHIPOTEZ +CHIQUA +CHIQUAI +CHIQUAIT +CHIQUANT +CHIQUAT +CHIQUE +CHIQUEE +CHIQUENT +CHIQUER +CHIQUERA +CHIQUEUR +CHIQUEZ +CHIQUIEZ +CHISTERA +CHITINE +CHITON +CHIURE +CHLAMYDE +CHLEUHE +CHLINGUA +CHLINGUE +CHLORA +CHLORAI +CHLORAIT +CHLORAL +CHLORANT +CHLORAT +CHLORATE +CHLORE +CHLOREE +CHLORENT +CHLORER +CHLORERA +CHLOREZ +CHLORIEZ +CHLOROSE +CHLORURA +CHLORURE +CHOC +CHOCOLAT +CHOEUR +CHOIE +CHOIENT +CHOIERA +CHOIERAI +CHOIEREZ +CHOIR +CHOIRAI +CHOISI +CHOISIE +CHOISIR +CHOISIRA +CHOISIT +CHOIT +CHOIX +CHOLEMIE +CHOLERA +CHOLINE +CHOLURIE +CHOMA +CHOMABLE +CHOMAGE +CHOMAI +CHOMAIT +CHOMANT +CHOMASSE +CHOMAT +CHOME +CHOMEE +CHOMENT +CHOMER +CHOMERA +CHOMERAI +CHOMEREZ +CHOMEUR +CHOMEUSE +CHOMEZ +CHOMIEZ +CHOPA +CHOPAI +CHOPAIT +CHOPANT +CHOPASSE +CHOPAT +CHOPE +CHOPEE +CHOPENT +CHOPER +CHOPERA +CHOPERAI +CHOPEREZ +CHOPEZ +CHOPIEZ +CHOPINA +CHOPINAI +CHOPINAT +CHOPINE +CHOPINER +CHOPINEZ +CHOPPA +CHOPPAI +CHOPPAIT +CHOPPANT +CHOPPAT +CHOPPE +CHOPPENT +CHOPPER +CHOPPERA +CHOPPEZ +CHOPPIEZ +CHOQUA +CHOQUAI +CHOQUAIT +CHOQUANT +CHOQUAT +CHOQUE +CHOQUEE +CHOQUENT +CHOQUER +CHOQUERA +CHOQUEZ +CHOQUIEZ +CHORAL +CHORALE +CHOREE +CHOREGE +CHOREUTE +CHORION +CHORISTE +CHORIZO +CHOROIDE +CHOSE +CHOSIFIA +CHOSIFIE +CHOTT +CHOU +CHOUAN +CHOUCHOU +CHOUETTE +CHOULEUR +CHOURAVA +CHOURAVE +CHOURINA +CHOURINE +CHOUX +CHOYA +CHOYAI +CHOYAIT +CHOYANT +CHOYASSE +CHOYAT +CHOYE +CHOYEE +CHOYER +CHOYEZ +CHOYIEZ +CHREMEAU +CHRETIEN +CHRISME +CHRIST +CHROMA +CHROMAGE +CHROMAI +CHROMAIT +CHROMANT +CHROMAT +CHROMATE +CHROME +CHROMEE +CHROMENT +CHROMER +CHROMERA +CHROMEZ +CHROMIEZ +CHROMO +CHRONO +CHROUMA +CHROUMAI +CHROUMAT +CHROUME +CHROUMEE +CHROUMER +CHROUMEZ +CHUCHOTA +CHUCHOTE +CHUE +CHUINTA +CHUINTAI +CHUINTAT +CHUINTE +CHUINTER +CHUINTEZ +CHUT +CHUTA +CHUTAI +CHUTAIT +CHUTANT +CHUTASSE +CHUTAT +CHUTE +CHUTEE +CHUTENT +CHUTER +CHUTERA +CHUTERAI +CHUTEREZ +CHUTEZ +CHUTIEZ +CHYLE +CHYME +CIAO +CIBICHE +CIBISTE +CIBLE +CIBOIRE +CIBORIUM +CIBOULE +CIBOULOT +CICERO +CICERONE +CICUTINE +CIDRE +CIDRERIE +CIEL +CIERGE +CIEUX +CIGALE +CIGARE +CIGOGNE +CIGUE +CILIAIRE +CILICE +CILIE +CILIEE +CILLA +CILLAI +CILLAIT +CILLANT +CILLASSE +CILLAT +CILLE +CILLEE +CILLENT +CILLER +CILLERA +CILLERAI +CILLEREZ +CILLEZ +CILLIEZ +CIMAISE +CIME +CIMENT +CIMENTA +CIMENTAI +CIMENTAT +CIMENTE +CIMENTEE +CIMENTER +CIMENTEZ +CIMIER +CINABRE +CINCLE +CINE +CINEASTE +CINEMA +CINERAMA +CINERITE +CINETIR +CINGLA +CINGLAI +CINGLAIT +CINGLANT +CINGLAT +CINGLE +CINGLEE +CINGLENT +CINGLER +CINGLERA +CINGLEZ +CINGLIEZ +CINOCHE +CINOQUE +CINQ +CINTRA +CINTRAGE +CINTRAI +CINTRAIT +CINTRANT +CINTRAT +CINTRE +CINTREE +CINTRENT +CINTRER +CINTRERA +CINTREZ +CINTRIEZ +CIPAYE +CIPOLIN +CIPPE +CIRA +CIRAGE +CIRAI +CIRAIT +CIRANT +CIRASSE +CIRAT +CIRCUIT +CIRCULA +CIRCULAI +CIRCULAT +CIRCULE +CIRCULER +CIRCULEZ +CIRE +CIREE +CIRENT +CIRER +CIRERA +CIRERAI +CIRERAIT +CIRERENT +CIREREZ +CIRERIEZ +CIREUR +CIREUSE +CIREUX +CIREZ +CIRIER +CIRIERE +CIRIEZ +CIRON +CIRQUE +CIRRE +CIRRHOSE +CISAILLA +CISAILLE +CISALPIN +CISEAU +CISELA +CISELAI +CISELAIT +CISELANT +CISELAT +CISELE +CISELEE +CISELENT +CISELER +CISELERA +CISELET +CISELEUR +CISELEZ +CISELIEZ +CISELURE +CISTE +CISTRE +CISTRON +CISTUDE +CITA +CITADIN +CITADINE +CITAI +CITAIT +CITANT +CITASSE +CITAT +CITATION +CITE +CITEE +CITENT +CITER +CITERA +CITERAI +CITERAIT +CITERENT +CITEREZ +CITERIEZ +CITERNE +CITEZ +CITHARE +CITIEZ +CITOYEN +CITRATE +CITRIN +CITRINE +CITRIQUE +CITRON +CITRONNE +CIVELLE +CIVET +CIVETTE +CIVIERE +CIVIL +CIVILE +CIVILISA +CIVILISE +CIVILITE +CIVIQUE +CIVISME +CLABAUD +CLABAUDA +CLABAUDE +CLABOT +CLABOTA +CLABOTAI +CLABOTAT +CLABOTE +CLABOTEE +CLABOTER +CLABOTEZ +CLADE +CLAIE +CLAIR +CLAIRE +CLAIRET +CLAIRON +CLAM +CLAMA +CLAMAI +CLAMAIT +CLAMANT +CLAMASSE +CLAMAT +CLAME +CLAMEE +CLAMENT +CLAMER +CLAMERA +CLAMERAI +CLAMEREZ +CLAMEUR +CLAMEZ +CLAMIEZ +CLAMP +CLAMPA +CLAMPAI +CLAMPAIT +CLAMPANT +CLAMPAT +CLAMPE +CLAMPEE +CLAMPENT +CLAMPER +CLAMPERA +CLAMPEZ +CLAMPIEZ +CLAMPSA +CLAMPSAI +CLAMPSAT +CLAMPSE +CLAMPSEE +CLAMPSER +CLAMPSEZ +CLAMSA +CLAMSAI +CLAMSAIT +CLAMSANT +CLAMSAT +CLAMSE +CLAMSENT +CLAMSER +CLAMSERA +CLAMSEZ +CLAMSIEZ +CLAN +CLANDE +CLANIQUE +CLAPA +CLAPAI +CLAPAIT +CLAPANT +CLAPASSE +CLAPAT +CLAPE +CLAPENT +CLAPER +CLAPERA +CLAPERAI +CLAPEREZ +CLAPET +CLAPEZ +CLAPI +CLAPIER +CLAPIEZ +CLAPIR +CLAPIRA +CLAPIRAI +CLAPIREZ +CLAPISSE +CLAPIT +CLAPOTA +CLAPOTAI +CLAPOTAT +CLAPOTE +CLAPOTER +CLAPOTEZ +CLAPPA +CLAPPAI +CLAPPAIT +CLAPPANT +CLAPPAT +CLAPPE +CLAPPENT +CLAPPER +CLAPPERA +CLAPPEZ +CLAPPIEZ +CLAPSA +CLAPSAI +CLAPSAIT +CLAPSANT +CLAPSAT +CLAPSE +CLAPSENT +CLAPSER +CLAPSERA +CLAPSEZ +CLAPSIEZ +CLAQUA +CLAQUAGE +CLAQUAI +CLAQUAIT +CLAQUANT +CLAQUAT +CLAQUE +CLAQUEE +CLAQUENT +CLAQUER +CLAQUERA +CLAQUET +CLAQUETA +CLAQUETE +CLAQUEZ +CLAQUIEZ +CLAQUOIR +CLARIFIA +CLARIFIE +CLARINE +CLARISSE +CLARTE +CLASSA +CLASSAI +CLASSAIT +CLASSANT +CLASSAT +CLASSE +CLASSEE +CLASSER +CLASSERA +CLASSEUR +CLAUSE +CLAUSTRA +CLAUSTRE +CLAUSULE +CLAVA +CLAVAI +CLAVAIRE +CLAVAIT +CLAVANT +CLAVASSE +CLAVAT +CLAVE +CLAVEAU +CLAVECIN +CLAVEE +CLAVELE +CLAVELEE +CLAVENT +CLAVER +CLAVERA +CLAVERAI +CLAVEREZ +CLAVETA +CLAVETAI +CLAVETAT +CLAVETE +CLAVETEE +CLAVETER +CLAVETEZ +CLAVETTA +CLAVETTE +CLAVEZ +CLAVIER +CLAVIEZ +CLAVISTE +CLAYERE +CLAYETTE +CLAYMORE +CLAYON +CLAYONNA +CLAYONNE +CLEARING +CLEF +CLEMENCE +CLEMENT +CLEMENTE +CLENCHE +CLEPHTE +CLERC +CLERGE +CLERGIE +CLERICAL +CLIC +CLICHA +CLICHAGE +CLICHAI +CLICHAIT +CLICHANT +CLICHAT +CLICHE +CLICHEE +CLICHENT +CLICHER +CLICHERA +CLICHEUR +CLICHEZ +CLICHIEZ +CLIENT +CLIENTE +CLIGNA +CLIGNAI +CLIGNAIT +CLIGNANT +CLIGNAT +CLIGNE +CLIGNEE +CLIGNENT +CLIGNER +CLIGNERA +CLIGNEZ +CLIGNIEZ +CLIGNOTA +CLIGNOTE +CLIMAT +CLIN +CLINFOC +CLINICAT +CLINIQUE +CLIP +CLIQUE +CLIQUET +CLIQUETA +CLIQUETE +CLISSA +CLISSAI +CLISSAIT +CLISSANT +CLISSAT +CLISSE +CLISSEE +CLISSER +CLISSERA +CLIVA +CLIVABLE +CLIVAGE +CLIVAI +CLIVAIT +CLIVANT +CLIVASSE +CLIVAT +CLIVE +CLIVEE +CLIVENT +CLIVER +CLIVERA +CLIVERAI +CLIVEREZ +CLIVEZ +CLIVIEZ +CLOAQUE +CLOCHA +CLOCHAI +CLOCHAIT +CLOCHANT +CLOCHARD +CLOCHAT +CLOCHE +CLOCHEE +CLOCHENT +CLOCHER +CLOCHERA +CLOCHEZ +CLOCHIEZ +CLODO +CLOISON +CLOITRA +CLOITRAI +CLOITRAT +CLOITRE +CLOITREE +CLOITRER +CLOITREZ +CLONE +CLOPE +CLOPINA +CLOPINAI +CLOPINAT +CLOPINE +CLOPINER +CLOPINEZ +CLOPORTE +CLOQUA +CLOQUAI +CLOQUAIT +CLOQUANT +CLOQUAT +CLOQUE +CLOQUENT +CLOQUER +CLOQUERA +CLOQUEZ +CLOQUIEZ +CLORA +CLORAI +CLORAIT +CLORE +CLOREZ +CLORIEZ +CLORONT +CLOSE +CLOSENT +CLOSERIE +CLOT +CLOTURA +CLOTURAI +CLOTURAT +CLOTURE +CLOTUREE +CLOTURER +CLOTUREZ +CLOU +CLOUA +CLOUAI +CLOUAIT +CLOUANT +CLOUASSE +CLOUAT +CLOUE +CLOUEE +CLOUENT +CLOUER +CLOUERA +CLOUERAI +CLOUEREZ +CLOUEZ +CLOUIEZ +CLOUTA +CLOUTAGE +CLOUTAI +CLOUTAIT +CLOUTANT +CLOUTARD +CLOUTAT +CLOUTE +CLOUTEE +CLOUTENT +CLOUTER +CLOUTERA +CLOUTEZ +CLOUTIER +CLOUTIEZ +CLOVISSE +CLOWN +CLOYERE +CLUB +CLUBISTE +CLUSE +CLYSTERE +CNEMIDE +COACCUSE +COACH +COAGULA +COAGULAI +COAGULAT +COAGULE +COAGULEE +COAGULER +COAGULEZ +COAGULUM +COALISA +COALISAI +COALISAT +COALISE +COALISEE +COALISER +COALISEZ +COALTAR +COASSA +COASSAI +COASSAIT +COASSANT +COASSAT +COASSE +COASSER +COASSERA +COATI +COAUTEUR +COAXIAL +COAXIALE +COBALT +COBAYE +COBEA +COBOL +COBRA +COCA +COCAGNE +COCAINE +COCARDE +COCASSE +COCCIDIE +COCCYX +COCHA +COCHAI +COCHAIT +COCHANT +COCHASSE +COCHAT +COCHE +COCHEE +COCHENT +COCHER +COCHERA +COCHERAI +COCHERE +COCHEREZ +COCHEZ +COCHIEZ +COCHON +COCHONNA +COCHONNE +COCKER +COCKNEY +COCKPIT +COCKTAIL +COCO +COCON +COCORICO +COCOTIER +COCOTTE +COCTION +COCU +COCUAGE +COCUFIA +COCUFIAI +COCUFIAT +COCUFIE +COCUFIEE +COCUFIER +COCUFIEZ +CODA +CODAGE +CODAI +CODAIT +CODANT +CODASSE +CODAT +CODE +CODEE +CODEINE +CODENT +CODER +CODERA +CODERAI +CODERAIT +CODERENT +CODEREZ +CODERIEZ +CODETENU +CODEUR +CODEUSE +CODEX +CODEZ +CODIEZ +CODIFIA +CODIFIAI +CODIFIAT +CODIFIE +CODIFIEE +CODIFIER +CODIFIEZ +CODON +COENZYME +COEUR +COEXISTA +COEXISTE +COFFIN +COFFRA +COFFRAGE +COFFRAI +COFFRAIT +COFFRANT +COFFRAT +COFFRE +COFFREE +COFFRENT +COFFRER +COFFRERA +COFFRET +COFFREZ +COFFRIEZ +COGERANT +COGITA +COGITAI +COGITAIT +COGITANT +COGITAT +COGITE +COGITEE +COGITENT +COGITER +COGITERA +COGITEZ +COGITIEZ +COGITO +COGNA +COGNAC +COGNAI +COGNAIT +COGNANT +COGNASSE +COGNAT +COGNE +COGNEE +COGNENT +COGNER +COGNERA +COGNERAI +COGNEREZ +COGNEZ +COGNIEZ +COGNITIF +COHABITA +COHABITE +COHERENT +COHEREUR +COHERITA +COHERITE +COHESIF +COHESION +COHESIVE +COHORTE +COHUE +COIFFA +COIFFAI +COIFFAIT +COIFFANT +COIFFAT +COIFFE +COIFFEE +COIFFENT +COIFFER +COIFFERA +COIFFEUR +COIFFEZ +COIFFIEZ +COIFFURE +COIN +COINCA +COINCAI +COINCAIT +COINCANT +COINCAT +COINCE +COINCEE +COINCENT +COINCER +COINCERA +COINCEZ +COINCIDA +COINCIDE +COINCIEZ +COING +COIT +COITA +COITAI +COITAIT +COITANT +COITASSE +COITAT +COITE +COITENT +COITER +COITERA +COITERAI +COITEREZ +COITEZ +COITIEZ +COKE +COKEFIA +COKEFIAI +COKEFIAT +COKEFIE +COKEFIEE +COKEFIER +COKEFIEZ +COKERIE +COLA +COLATURE +COLBACK +COLCOTAR +COLERE +COLEREUX +COLIBRI +COLIN +COLINEAU +COLINOT +COLIQUE +COLITE +COLLA +COLLAGE +COLLAI +COLLAIT +COLLANT +COLLASSE +COLLAT +COLLE +COLLECTA +COLLECTE +COLLEE +COLLEGE +COLLEGUE +COLLENT +COLLER +COLLERA +COLLERAI +COLLEREZ +COLLET +COLLETA +COLLETAI +COLLETAT +COLLETE +COLLETEE +COLLETER +COLLETEZ +COLLETTE +COLLEUR +COLLEUSE +COLLEY +COLLEZ +COLLIER +COLLIEZ +COLLIGE +COLLIGEA +COLLIGEE +COLLIGER +COLLIGEZ +COLLINE +COLLOIDE +COLLOQUA +COLLOQUE +COLLYRE +COLMATA +COLMATAI +COLMATAT +COLMATE +COLMATEE +COLMATER +COLMATEZ +COLOCASE +COLOMBE +COLOMBIN +COLON +COLONAGE +COLONAT +COLONEL +COLONIAL +COLONIE +COLONISA +COLONISE +COLONNE +COLORA +COLORAI +COLORAIT +COLORANT +COLORAT +COLORE +COLOREE +COLORENT +COLORER +COLORERA +COLOREZ +COLORIA +COLORIAI +COLORIAT +COLORIE +COLORIEE +COLORIER +COLORIEZ +COLOSSAL +COLOSSE +COLPORTA +COLPORTE +COLT +COLTINA +COLTINAI +COLTINAT +COLTINE +COLTINEE +COLTINER +COLTINEZ +COLVERT +COLZA +COMA +COMATEUX +COMBAT +COMBATIF +COMBATTE +COMBATTU +COMBE +COMBIEN +COMBINA +COMBINAI +COMBINAT +COMBINE +COMBINEE +COMBINER +COMBINEZ +COMBLA +COMBLAI +COMBLAIT +COMBLANT +COMBLAT +COMBLE +COMBLEE +COMBLENT +COMBLER +COMBLERA +COMBLEZ +COMBLIEZ +COMEDIE +COMEDIEN +COMEDON +COMETE +COMICE +COMIQUE +COMITE +COMMA +COMMANDA +COMMANDE +COMMANDO +COMME +COMMENCA +COMMENCE +COMMENT +COMMENTA +COMMENTE +COMMERA +COMMERAI +COMMERAT +COMMERCA +COMMERCE +COMMERE +COMMERER +COMMEREZ +COMMET +COMMETTE +COMMISE +COMMISSE +COMMIT +COMMODE +COMMUA +COMMUAI +COMMUAIT +COMMUANT +COMMUAT +COMMUE +COMMUEE +COMMUENT +COMMUER +COMMUERA +COMMUEZ +COMMUIEZ +COMMUN +COMMUNAL +COMMUNE +COMMUNIA +COMMUNIE +COMMUTA +COMMUTAI +COMMUTAT +COMMUTE +COMMUTEE +COMMUTER +COMMUTEZ +COMPACT +COMPACTE +COMPAGNE +COMPARA +COMPARAI +COMPARAT +COMPARE +COMPAREE +COMPARER +COMPAREZ +COMPARSE +COMPARU +COMPARUE +COMPARUT +COMPASSA +COMPASSE +COMPATI +COMPATIR +COMPATIT +COMPENSA +COMPENSE +COMPERE +COMPETA +COMPETAI +COMPETAT +COMPETE +COMPETER +COMPETEZ +COMPILA +COMPILAI +COMPILAT +COMPILE +COMPILEE +COMPILER +COMPILEZ +COMPISSA +COMPISSE +COMPLAIT +COMPLET +COMPLETA +COMPLETE +COMPLEXA +COMPLEXE +COMPLICE +COMPLOT +COMPLOTA +COMPLOTE +COMPLU +COMPLUT +COMPONE +COMPONEE +COMPORTA +COMPORTE +COMPOSA +COMPOSAI +COMPOSAT +COMPOSE +COMPOSEE +COMPOSER +COMPOSEZ +COMPOST +COMPOSTA +COMPOSTE +COMPOTE +COMPOUND +COMPREND +COMPRIMA +COMPRIME +COMPRISE +COMPRIT +COMPTA +COMPTAGE +COMPTAI +COMPTAIT +COMPTANT +COMPTAT +COMPTE +COMPTEE +COMPTENT +COMPTER +COMPTERA +COMPTEUR +COMPTEZ +COMPTIEZ +COMPTINE +COMPTOIR +COMPULSA +COMPULSE +COMPUT +COMPUTA +COMPUTAI +COMPUTAT +COMPUTE +COMPUTEE +COMPUTER +COMPUTEZ +COMTAL +COMTALE +COMTE +COMTESSE +CONARD +CONARDE +CONASSE +CONATIF +CONATION +CONATIVE +CONCASSA +CONCASSE +CONCAVE +CONCEDA +CONCEDAI +CONCEDAT +CONCEDE +CONCEDEE +CONCEDER +CONCEDEZ +CONCEPT +CONCERNA +CONCERNE +CONCERT +CONCERTA +CONCERTE +CONCERTO +CONCETTI +CONCEVEZ +CONCEVRA +CONCILE +CONCILIA +CONCILIE +CONCISE +CONCLAVE +CONCLU +CONCLUE +CONCLUEZ +CONCLURA +CONCLURE +CONCLUT +CONCOCTA +CONCOCTE +CONCOIT +CONCOIVE +CONCORDA +CONCORDE +CONCOURE +CONCOURT +CONCOURU +CONCRET +CONCRETA +CONCRETE +CONCU +CONCUBIN +CONCUE +CONCUSSE +CONCUT +CONDAMNA +CONDAMNE +CONDE +CONDENSA +CONDENSE +CONDOM +CONDOR +CONDUIRA +CONDUIRE +CONDUISE +CONDUIT +CONDUITE +CONDYLE +CONE +CONFER +CONFERA +CONFERAI +CONFERAT +CONFERE +CONFEREE +CONFERER +CONFEREZ +CONFERVE +CONFESSA +CONFESSE +CONFETTI +CONFIA +CONFIAI +CONFIAIT +CONFIANT +CONFIAT +CONFIE +CONFIEE +CONFIENT +CONFIER +CONFIERA +CONFIEZ +CONFIIEZ +CONFINA +CONFINAI +CONFINAT +CONFINE +CONFINEE +CONFINER +CONFINEZ +CONFIRA +CONFIRAI +CONFIRE +CONFIREZ +CONFIRMA +CONFIRME +CONFISE +CONFISEZ +CONFISSE +CONFIT +CONFITE +CONFLIT +CONFLUA +CONFLUAI +CONFLUAT +CONFLUE +CONFLUER +CONFLUEZ +CONFOND +CONFONDE +CONFONDU +CONFORMA +CONFORME +CONFORT +CONFORTA +CONFORTE +CONFRERE +CONFUSE +CONGA +CONGAI +CONGAYE +CONGE +CONGEDIA +CONGEDIE +CONGELA +CONGELAI +CONGELAT +CONGELE +CONGELEE +CONGELER +CONGELEZ +CONGERE +CONGRE +CONGREA +CONGREAI +CONGREAT +CONGREE +CONGREEE +CONGREER +CONGREEZ +CONGRU +CONGRUE +CONI +CONICINE +CONICITE +CONIDIE +CONIE +CONIFERE +CONIQUE +CONIR +CONIRA +CONIRAI +CONIRAIT +CONIRENT +CONIREZ +CONIRIEZ +CONIRONT +CONISSE +CONIT +CONJOINT +CONJUGAL +CONJUGUA +CONJUGUE +CONJUNGO +CONJURA +CONJURAI +CONJURAT +CONJURE +CONJUREE +CONJURER +CONJUREZ +CONNAIT +CONNARD +CONNARDE +CONNASSE +CONNECTA +CONNECTE +CONNERIE +CONNEXE +CONNOTA +CONNOTAI +CONNOTAT +CONNOTE +CONNOTEE +CONNOTER +CONNOTEZ +CONNU +CONNUE +CONNUSSE +CONNUT +CONOBRA +CONOBRAI +CONOBRAT +CONOBRE +CONOBREE +CONOBRER +CONOBREZ +CONOIDE +CONOPEE +CONQUE +CONQUERU +CONQUET +CONQUETE +CONQUISE +CONQUIT +CONSACRA +CONSACRE +CONSCRIT +CONSEIL +CONSENT +CONSENTE +CONSENTI +CONSERVA +CONSERVE +CONSIGNA +CONSIGNE +CONSISTA +CONSISTE +CONSOEUR +CONSOLA +CONSOLAI +CONSOLAT +CONSOLE +CONSOLEE +CONSOLER +CONSOLEZ +CONSOMMA +CONSOMME +CONSONA +CONSONAI +CONSONAT +CONSONE +CONSONER +CONSONEZ +CONSONNE +CONSORT +CONSPIRA +CONSPIRE +CONSPUA +CONSPUAI +CONSPUAT +CONSPUE +CONSPUEE +CONSPUER +CONSPUEZ +CONSTANT +CONSTAT +CONSTATA +CONSTATE +CONSTIPA +CONSTIPE +CONSUL +CONSULAT +CONSULTA +CONSULTE +CONSUMA +CONSUMAI +CONSUMAT +CONSUME +CONSUMEE +CONSUMER +CONSUMEZ +CONTA +CONTACT +CONTACTA +CONTACTE +CONTAGE +CONTAI +CONTAIT +CONTANT +CONTASSE +CONTAT +CONTE +CONTEE +CONTENEZ +CONTENIR +CONTENT +CONTENTA +CONTENTE +CONTENU +CONTENUE +CONTER +CONTERA +CONTERAI +CONTEREZ +CONTESTA +CONTESTE +CONTEUR +CONTEUSE +CONTEXTE +CONTEZ +CONTIENT +CONTIEZ +CONTIGU +CONTIGUE +CONTINT +CONTINU +CONTINUA +CONTINUE +CONTINUO +CONTOUR +CONTRA +CONTRAI +CONTRAIT +CONTRANT +CONTRAT +CONTRE +CONTREE +CONTRENT +CONTRER +CONTRERA +CONTREZ +CONTRIEZ +CONTRIT +CONTRITE +CONTROLA +CONTROLE +CONTUMAX +CONVAINC +CONVENEZ +CONVENIR +CONVENU +CONVENUE +CONVERGE +CONVERSA +CONVERSE +CONVERTI +CONVEXE +CONVIA +CONVIAI +CONVIAIT +CONVIANT +CONVIAT +CONVIE +CONVIEE +CONVIENT +CONVIER +CONVIERA +CONVIEZ +CONVIIEZ +CONVINT +CONVIVE +CONVOI +CONVOIE +CONVOITA +CONVOITE +CONVOLA +CONVOLAI +CONVOLAT +CONVOLE +CONVOLER +CONVOLEZ +CONVOQUA +CONVOQUE +CONVOYA +CONVOYAI +CONVOYAT +CONVOYE +CONVOYEE +CONVOYER +CONVOYEZ +CONVULSA +CONVULSE +COOL +COOLIE +COOPERA +COOPERAI +COOPERAT +COOPERE +COOPERER +COOPEREZ +COOPTA +COOPTAI +COOPTAIT +COOPTANT +COOPTAT +COOPTE +COOPTEE +COOPTENT +COOPTER +COOPTERA +COOPTEZ +COOPTIEZ +COPAIER +COPAIN +COPAL +COPEAU +COPIA +COPIAGE +COPIAI +COPIAIT +COPIANT +COPIASSE +COPIAT +COPIE +COPIEE +COPIENT +COPIER +COPIERA +COPIERAI +COPIEREZ +COPIEUR +COPIEUSE +COPIEUX +COPIEZ +COPIIEZ +COPILOTE +COPINA +COPINAGE +COPINAI +COPINAIT +COPINANT +COPINAT +COPINE +COPINENT +COPINER +COPINERA +COPINEZ +COPINIEZ +COPISTE +COPRA +COPRAH +COPTE +COPULA +COPULAI +COPULAIT +COPULANT +COPULAT +COPULE +COPULENT +COPULER +COPULERA +COPULEZ +COPULIEZ +COQUA +COQUAI +COQUAIT +COQUANT +COQUARD +COQUART +COQUASSE +COQUAT +COQUE +COQUEE +COQUELET +COQUENT +COQUER +COQUERA +COQUERAI +COQUEREZ +COQUET +COQUETA +COQUETAI +COQUETAT +COQUETE +COQUETER +COQUETEZ +COQUETTE +COQUEZ +COQUIEZ +COQUILLA +COQUILLE +COQUIN +COQUINE +CORAIL +CORAN +CORBEAU +CORBIN +CORDA +CORDAGE +CORDAI +CORDAIT +CORDANT +CORDASSE +CORDAT +CORDE +CORDEAU +CORDEE +CORDELA +CORDELAI +CORDELAT +CORDELE +CORDELEE +CORDELER +CORDELEZ +CORDELLE +CORDENT +CORDER +CORDERA +CORDERAI +CORDEREZ +CORDEZ +CORDIAL +CORDIALE +CORDIER +CORDIEZ +CORDON +CORDONNA +CORDONNE +COREEN +COREENNE +CORIACE +CORICIDE +CORINDON +CORMIER +CORMORAN +CORNA +CORNAC +CORNAI +CORNAIT +CORNANT +CORNARD +CORNASSE +CORNAT +CORNE +CORNEE +CORNEEN +CORNENT +CORNER +CORNERA +CORNERAI +CORNEREZ +CORNET +CORNETTE +CORNEZ +CORNIAUD +CORNICHE +CORNIER +CORNIERE +CORNIEZ +CORNISTE +CORNU +CORNUE +COROLLE +CORON +CORONER +COROZO +CORPORAL +CORPOREL +CORRAL +CORRECT +CORRECTE +CORRELA +CORRELAI +CORRELAT +CORRELE +CORRELEE +CORRELER +CORRELEZ +CORRIDA +CORRIDOR +CORRIGE +CORRIGEA +CORRIGEE +CORRIGER +CORRIGEZ +CORRODA +CORRODAI +CORRODAT +CORRODE +CORRODEE +CORRODER +CORRODEZ +CORROIE +CORROMPE +CORROMPT +CORROMPU +CORROSIF +CORROYA +CORROYAI +CORROYAT +CORROYE +CORROYEE +CORROYER +CORROYEZ +CORSA +CORSAGE +CORSAI +CORSAIRE +CORSAIT +CORSANT +CORSASSE +CORSAT +CORSE +CORSEE +CORSELET +CORSENT +CORSER +CORSERA +CORSERAI +CORSEREZ +CORSET +CORSETA +CORSETAI +CORSETAT +CORSETE +CORSETEE +CORSETER +CORSETEZ +CORSEZ +CORSIEZ +CORTEGE +CORTEX +CORTICAL +CORVEE +CORVETTE +CORYPHEE +CORYZA +COSAQUE +COSMIQUE +COSSA +COSSAI +COSSAIT +COSSANT +COSSARD +COSSARDE +COSSASSE +COSSAT +COSSE +COSSER +COSSERA +COSSERAI +COSSEREZ +COSSU +COSSUE +COSTAL +COSTALE +COSTARD +COSTAUD +COSTAUDE +COSTUMA +COSTUMAI +COSTUMAT +COSTUME +COSTUMEE +COSTUMER +COSTUMEZ +COSY +COTA +COTAI +COTAIT +COTANT +COTASSE +COTAT +COTATION +COTE +COTEAU +COTEE +COTELE +COTELEE +COTENT +COTER +COTERA +COTERAI +COTERAIT +COTERENT +COTEREZ +COTERIE +COTERIEZ +COTEZ +COTHURNE +COTI +COTIE +COTIER +COTIERE +COTIEZ +COTILLON +COTIR +COTIRA +COTIRAI +COTIRAIT +COTIRENT +COTIREZ +COTIRIEZ +COTIRONT +COTISA +COTISAI +COTISAIT +COTISANT +COTISAT +COTISE +COTISEE +COTISENT +COTISER +COTISERA +COTISEZ +COTISIEZ +COTISSE +COTIT +COTOIE +COTOIENT +COTOIERA +COTON +COTONNA +COTONNAI +COTONNAT +COTONNE +COTONNEE +COTONNER +COTONNEZ +COTOYA +COTOYAI +COTOYAIT +COTOYANT +COTOYAT +COTOYE +COTOYEE +COTOYER +COTOYEZ +COTOYIEZ +COTTAGE +COTTE +COUAC +COUARD +COUARDE +COUCHA +COUCHAGE +COUCHAI +COUCHAIT +COUCHANT +COUCHAT +COUCHE +COUCHEE +COUCHENT +COUCHER +COUCHERA +COUCHEUR +COUCHEZ +COUCHIEZ +COUCOU +COUD +COUDA +COUDAI +COUDAIT +COUDANT +COUDASSE +COUDAT +COUDE +COUDEE +COUDENT +COUDER +COUDERA +COUDERAI +COUDEREZ +COUDEZ +COUDIEZ +COUDOIE +COUDOYA +COUDOYAI +COUDOYAT +COUDOYE +COUDOYEE +COUDOYER +COUDOYEZ +COUDRA +COUDRAI +COUDRAIE +COUDRAIT +COUDRE +COUDREZ +COUDRIER +COUDRIEZ +COUDRONT +COUENNE +COUETTE +COUFFIN +COUFIQUE +COUGOUAR +COUGUAR +COUIC +COUILLE +COUILLON +COUINA +COUINAI +COUINAIT +COUINANT +COUINAT +COUINE +COUINENT +COUINER +COUINERA +COUINEZ +COUINIEZ +COULA +COULAGE +COULAI +COULAIT +COULANT +COULASSE +COULAT +COULE +COULEE +COULENT +COULER +COULERA +COULERAI +COULEREZ +COULEUR +COULEZ +COULIEZ +COULISSA +COULISSE +COULOIR +COULOMB +COULURE +COUNTRY +COUP +COUPA +COUPABLE +COUPAGE +COUPAI +COUPAIT +COUPANT +COUPASSE +COUPAT +COUPE +COUPEE +COUPELLA +COUPELLE +COUPENT +COUPER +COUPERA +COUPERAI +COUPERET +COUPEREZ +COUPEZ +COUPIEZ +COUPLA +COUPLAGE +COUPLAI +COUPLAIT +COUPLANT +COUPLAT +COUPLE +COUPLEE +COUPLENT +COUPLER +COUPLERA +COUPLET +COUPLEUR +COUPLEZ +COUPLIEZ +COUPOLE +COUPON +COUPURE +COUR +COURAGE +COURAIT +COURANT +COURBA +COURBAI +COURBAIT +COURBANT +COURBAT +COURBATU +COURBE +COURBEE +COURBENT +COURBER +COURBERA +COURBEZ +COURBIEZ +COURBURE +COURE +COURENT +COURETTE +COUREUR +COUREUSE +COUREZ +COURGE +COURIEZ +COURIR +COURLIEU +COURONNA +COURONNE +COURRA +COURRAI +COURRAIT +COURREZ +COURRIER +COURRIEZ +COURROIE +COURRONT +COURROUX +COURSA +COURSAI +COURSAIT +COURSANT +COURSAT +COURSE +COURSEE +COURSENT +COURSER +COURSERA +COURSEZ +COURSIER +COURSIEZ +COURSIVE +COURSON +COURT +COURTAGE +COURTAUD +COURTE +COURTIER +COURTINE +COURTISA +COURTISE +COURU +COURUE +COURUSSE +COURUT +COUSAIT +COUSANT +COUSE +COUSENT +COUSEUR +COUSEUSE +COUSEZ +COUSIEZ +COUSIN +COUSINA +COUSINAI +COUSINAT +COUSINE +COUSINEE +COUSINER +COUSINEZ +COUSISSE +COUSIT +COUSSIN +COUSU +COUSUE +COUT +COUTA +COUTAI +COUTAIT +COUTANT +COUTASSE +COUTAT +COUTE +COUTEAU +COUTEE +COUTENT +COUTER +COUTERA +COUTERAI +COUTEREZ +COUTEUSE +COUTEUX +COUTEZ +COUTIEZ +COUTIL +COUTRE +COUTUME +COUTURA +COUTURAI +COUTURAT +COUTURE +COUTUREE +COUTURER +COUTUREZ +COUVA +COUVAI +COUVAIN +COUVAIT +COUVANT +COUVASSE +COUVAT +COUVE +COUVEE +COUVENT +COUVER +COUVERA +COUVERAI +COUVEREZ +COUVERT +COUVERTE +COUVEUSE +COUVEZ +COUVIEZ +COUVRAIT +COUVRANT +COUVRE +COUVRENT +COUVREUR +COUVREZ +COUVRIEZ +COUVRIR +COUVRIRA +COUVRIT +COUVRU +COUVRUE +COXAL +COXALE +COXALGIE +COYAU +COYOTE +CRABE +CRABIER +CRABOT +CRAC +CRACHA +CRACHAI +CRACHAIT +CRACHANT +CRACHAT +CRACHE +CRACHEE +CRACHENT +CRACHER +CRACHERA +CRACHEUR +CRACHEZ +CRACHIEZ +CRACHIN +CRACHINA +CRACHINE +CRACHOIR +CRACHOTA +CRACHOTE +CRACK +CRACKER +CRACKING +CRACRA +CRADO +CRAIE +CRAIGNE +CRAIGNEZ +CRAIGNIT +CRAILLA +CRAILLAI +CRAILLAT +CRAILLE +CRAILLER +CRAILLEZ +CRAINDRA +CRAINDRE +CRAINT +CRAINTE +CRAINTIF +CRAMA +CRAMAI +CRAMAIT +CRAMANT +CRAMASSE +CRAMAT +CRAMBE +CRAME +CRAMEE +CRAMENT +CRAMER +CRAMERA +CRAMERAI +CRAMEREZ +CRAMEZ +CRAMIEZ +CRAMIQUE +CRAMOISI +CRAMPE +CRAMPON +CRAMPSA +CRAMPSAI +CRAMPSAT +CRAMPSE +CRAMPSER +CRAMPSEZ +CRAMSA +CRAMSAI +CRAMSAIT +CRAMSANT +CRAMSAT +CRAMSE +CRAMSENT +CRAMSER +CRAMSERA +CRAMSEZ +CRAMSIEZ +CRAN +CRANA +CRANAI +CRANAIT +CRANANT +CRANASSE +CRANAT +CRANE +CRANEE +CRANENT +CRANER +CRANERA +CRANERAI +CRANEREZ +CRANERIE +CRANEUR +CRANEUSE +CRANEZ +CRANIEN +CRANIEZ +CRANTA +CRANTAI +CRANTAIT +CRANTANT +CRANTAT +CRANTEE +CRANTENT +CRANTER +CRANTERA +CRANTEZ +CRANTIEZ +CRAPAUD +CRAPAUTA +CRAPAUTE +CRAPULA +CRAPULAI +CRAPULAT +CRAPULE +CRAPULER +CRAPULEZ +CRAQUA +CRAQUAGE +CRAQUAI +CRAQUAIT +CRAQUANT +CRAQUAT +CRAQUE +CRAQUEE +CRAQUELA +CRAQUELE +CRAQUENT +CRAQUER +CRAQUERA +CRAQUETA +CRAQUETE +CRAQUEZ +CRAQUIEZ +CRASE +CRASH +CRASSA +CRASSAI +CRASSAIT +CRASSANE +CRASSANT +CRASSAT +CRASSE +CRASSEE +CRASSER +CRASSERA +CRASSEUX +CRASSIER +CRATERE +CRAVACHA +CRAVACHE +CRAVATA +CRAVATAI +CRAVATAT +CRAVATE +CRAVATEE +CRAVATER +CRAVATEZ +CRAVE +CRAWL +CRAWLA +CRAWLAI +CRAWLAIT +CRAWLANT +CRAWLAT +CRAWLE +CRAWLEE +CRAWLENT +CRAWLER +CRAWLERA +CRAWLEUR +CRAWLEZ +CRAWLIEZ +CRAYEUSE +CRAYEUX +CRAYON +CRAYONNA +CRAYONNE +CREA +CREAI +CREAIT +CREANCE +CREANT +CREASSE +CREAT +CREATEUR +CREATIF +CREATINE +CREATION +CREATIVE +CREATURE +CRECELLE +CRECHA +CRECHAI +CRECHAIT +CRECHANT +CRECHAT +CRECHE +CRECHENT +CRECHER +CRECHERA +CRECHEZ +CRECHIEZ +CREDENCE +CREDIBLE +CREDIT +CREDITA +CREDITAI +CREDITAT +CREDITE +CREDITEE +CREDITER +CREDITEZ +CREDO +CREDULE +CREE +CREEE +CREENT +CREER +CREERA +CREERAI +CREERAIT +CREERENT +CREEREZ +CREERIEZ +CREEZ +CREIEZ +CREMA +CREMAI +CREMAIT +CREMANT +CREMASSE +CREMAT +CREME +CREMENT +CREMER +CREMERA +CREMERAI +CREMEREZ +CREMERIE +CREMEUSE +CREMEUX +CREMEZ +CREMIER +CREMIERE +CREMIEZ +CRENA +CRENAI +CRENAIT +CRENANT +CRENASSE +CRENAT +CRENE +CRENEAU +CRENEE +CRENELA +CRENELAI +CRENELAT +CRENELE +CRENELEE +CRENELER +CRENELEZ +CRENELLE +CRENENT +CRENER +CRENERA +CRENERAI +CRENEREZ +CRENEZ +CRENIEZ +CREOLE +CREOLISA +CREOLISE +CREOSOTA +CREOSOTE +CREPA +CREPAGE +CREPAI +CREPAIT +CREPANT +CREPASSE +CREPAT +CREPE +CREPEE +CREPENT +CREPER +CREPERA +CREPERAI +CREPEREZ +CREPERIE +CREPEZ +CREPI +CREPIE +CREPIEZ +CREPINE +CREPIR +CREPIRA +CREPIRAI +CREPIREZ +CREPISSE +CREPIT +CREPITA +CREPITAI +CREPITAT +CREPITE +CREPITER +CREPITEZ +CREPON +CREPU +CREPUE +CRESSON +CRETACE +CRETACEE +CRETE +CRETIN +CRETINE +CRETOISE +CRETONNE +CREUSA +CREUSAGE +CREUSAI +CREUSAIT +CREUSANT +CREUSAT +CREUSE +CREUSEE +CREUSENT +CREUSER +CREUSERA +CREUSET +CREUSEZ +CREUSIEZ +CREUX +CREVA +CREVAI +CREVAIT +CREVANT +CREVASSA +CREVASSE +CREVAT +CREVE +CREVEE +CREVENT +CREVER +CREVERA +CREVERAI +CREVEREZ +CREVETTE +CREVEZ +CREVIEZ +CRIA +CRIAI +CRIAILLA +CRIAILLE +CRIAIT +CRIANT +CRIARD +CRIARDE +CRIASSE +CRIAT +CRIBLA +CRIBLAGE +CRIBLAI +CRIBLAIT +CRIBLANT +CRIBLAT +CRIBLE +CRIBLEE +CRIBLENT +CRIBLER +CRIBLERA +CRIBLEZ +CRIBLIEZ +CRIC +CRICKET +CRICRI +CRIE +CRIEE +CRIENT +CRIER +CRIERA +CRIERAI +CRIERAIT +CRIERENT +CRIEREZ +CRIERIEZ +CRIEUR +CRIEUSE +CRIEZ +CRIIEZ +CRIME +CRIMINEL +CRIN +CRINIERE +CRIQUE +CRIQUET +CRISE +CRISPA +CRISPAI +CRISPAIT +CRISPANT +CRISPAT +CRISPE +CRISPEE +CRISPENT +CRISPER +CRISPERA +CRISPEZ +CRISPIEZ +CRISSA +CRISSAI +CRISSAIT +CRISSANT +CRISSAT +CRISSE +CRISSER +CRISSERA +CRISTAL +CRITERE +CRITIQUA +CRITIQUE +CROASSA +CROASSAI +CROASSAT +CROASSE +CROASSER +CROATE +CROC +CROCHA +CROCHAI +CROCHAIT +CROCHANT +CROCHAT +CROCHE +CROCHEE +CROCHENT +CROCHER +CROCHERA +CROCHET +CROCHETA +CROCHETE +CROCHEZ +CROCHIEZ +CROCHU +CROCHUE +CROIE +CROIENT +CROIRA +CROIRAI +CROIRAIT +CROIRE +CROIREZ +CROIRIEZ +CROIRONT +CROISA +CROISADE +CROISAI +CROISAIT +CROISANT +CROISAT +CROISE +CROISEE +CROISENT +CROISER +CROISERA +CROISEUR +CROISEZ +CROISIEZ +CROISSE +CROIT +CROITRA +CROITRAI +CROITRE +CROITREZ +CROIX +CROQUA +CROQUAI +CROQUAIT +CROQUANT +CROQUAT +CROQUE +CROQUEE +CROQUENT +CROQUER +CROQUERA +CROQUET +CROQUEZ +CROQUIEZ +CROSSA +CROSSAI +CROSSAIT +CROSSANT +CROSSAT +CROSSE +CROSSEE +CROSSER +CROSSERA +CROTALE +CROTTA +CROTTAI +CROTTAIT +CROTTANT +CROTTAT +CROTTE +CROTTEE +CROTTENT +CROTTER +CROTTERA +CROTTEZ +CROTTIEZ +CROTTIN +CROUILLE +CROULA +CROULAI +CROULAIT +CROULANT +CROULAT +CROULE +CROULENT +CROULER +CROULERA +CROULEZ +CROULIEZ +CROUPE +CROUPI +CROUPIER +CROUPION +CROUPIR +CROUPIRA +CROUPIT +CROUTA +CROUTAI +CROUTAIT +CROUTANT +CROUTAT +CROUTE +CROUTEE +CROUTENT +CROUTER +CROUTERA +CROUTEZ +CROUTIEZ +CROUTON +CROYABLE +CROYAIT +CROYANCE +CROYANT +CROYEZ +CROYIEZ +CRUAUTE +CRUCHE +CRUCHON +CRUCIAL +CRUCIALE +CRUCIFIA +CRUCIFIE +CRUCIFIX +CRUDITE +CRUE +CRUEL +CRUELLE +CRUMENT +CRURENT +CRUSSE +CRUSTACE +CRUT +CRUZEIRO +CRYPTA +CRYPTAI +CRYPTAIT +CRYPTANT +CRYPTAT +CRYPTE +CRYPTEE +CRYPTENT +CRYPTER +CRYPTERA +CRYPTEZ +CRYPTIEZ +CUBA +CUBAGE +CUBAI +CUBAIN +CUBAINE +CUBAIT +CUBANT +CUBASSE +CUBAT +CUBE +CUBEE +CUBER +CUBERA +CUBERAI +CUBERAIT +CUBERENT +CUBEREZ +CUBERIEZ +CUBEZ +CUBIEZ +CUBIQUE +CUBISME +CUBISTE +CUEILLE +CUEILLEZ +CUEILLI +CUEILLIE +CUEILLIR +CUEILLIT +CUESTA +CUILLER +CUILLERE +CUIR +CUIRA +CUIRAI +CUIRAIT +CUIRASSA +CUIRASSE +CUIRE +CUIREZ +CUIRIEZ +CUIRONT +CUISAIT +CUISANT +CUISE +CUISENT +CUISEZ +CUISIEZ +CUISINA +CUISINAI +CUISINAT +CUISINE +CUISINEE +CUISINER +CUISINEZ +CUISISSE +CUISIT +CUISSARD +CUISSE +CUISSEAU +CUISSON +CUISSOT +CUISTRE +CUIT +CUITA +CUITAI +CUITAIT +CUITANT +CUITASSE +CUITAT +CUITE +CUITENT +CUITER +CUITERA +CUITERAI +CUITEREZ +CUITEZ +CUITIEZ +CUIVRA +CUIVRAI +CUIVRAIT +CUIVRANT +CUIVRAT +CUIVRE +CUIVREE +CUIVRENT +CUIVRER +CUIVRERA +CUIVREUX +CUIVREZ +CUIVRIEZ +CULA +CULAI +CULAIT +CULANT +CULASSE +CULAT +CULBUTA +CULBUTAI +CULBUTAT +CULBUTE +CULBUTEE +CULBUTER +CULBUTEZ +CULE +CULEE +CULENT +CULER +CULERA +CULERAI +CULERAIT +CULERENT +CULEREZ +CULERIEZ +CULERON +CULEX +CULEZ +CULIEZ +CULMINA +CULMINAI +CULMINAT +CULMINE +CULMINER +CULMINEZ +CULOT +CULOTTA +CULOTTAI +CULOTTAT +CULOTTE +CULOTTEE +CULOTTER +CULOTTEZ +CULTE +CULTISME +CULTIVA +CULTIVAI +CULTIVAT +CULTIVE +CULTIVEE +CULTIVER +CULTIVEZ +CULTUEL +CULTURAL +CULTURE +CULTUREL +CUMIN +CUMUL +CUMULA +CUMULAI +CUMULAIT +CUMULANT +CUMULARD +CUMULAT +CUMULE +CUMULEE +CUMULENT +CUMULER +CUMULERA +CUMULEZ +CUMULIEZ +CUPIDE +CUPIDITE +CUPRIQUE +CUPRITE +CUPULE +CURA +CURABLE +CURACAO +CURAGE +CURAI +CURAIT +CURANT +CURARE +CURASSE +CURAT +CURATEUR +CURATIF +CURATIVE +CURCUMA +CURE +CUREE +CURENT +CURER +CURERA +CURERAI +CURERAIT +CURERENT +CUREREZ +CURERIEZ +CURETA +CURETAGE +CURETAI +CURETAIT +CURETANT +CURETAT +CURETE +CURETEE +CURETER +CURETEZ +CURETIEZ +CURETON +CURETTE +CUREZ +CURIAL +CURIALE +CURIEUSE +CURIEUX +CURIEZ +CURISTE +CURIUM +CURLING +CURRY +CURSEUR +CURSIF +CURSIVE +CURULE +CUSCUTE +CUSTODE +CUTANE +CUTANEE +CUTICULE +CUTINE +CUTTER +CUVA +CUVAGE +CUVAI +CUVAISON +CUVAIT +CUVANT +CUVASSE +CUVAT +CUVE +CUVEAU +CUVEE +CUVELA +CUVELAGE +CUVELAI +CUVELAIT +CUVELANT +CUVELAT +CUVELE +CUVELEE +CUVELER +CUVELEZ +CUVELIEZ +CUVELLE +CUVENT +CUVER +CUVERA +CUVERAI +CUVERAIT +CUVERENT +CUVEREZ +CUVERIEZ +CUVETTE +CUVEZ +CUVIER +CUVIEZ +CYAN +CYANOSA +CYANOSAI +CYANOSAT +CYANOSE +CYANOSEE +CYANOSER +CYANOSEZ +CYANURA +CYANURAI +CYANURAT +CYANURE +CYANUREE +CYANURER +CYANUREZ +CYCLABLE +CYCLAMEN +CYCLANE +CYCLE +CYCLIQUE +CYCLISA +CYCLISAI +CYCLISAT +CYCLISE +CYCLISEE +CYCLISER +CYCLISEZ +CYCLISME +CYCLISTE +CYCLOIDE +CYCLONAL +CYCLONE +CYCLOPE +CYGNE +CYLINDRA +CYLINDRE +CYMAISE +CYMBALE +CYMBALUM +CYNIQUE +CYNISME +CYPHOSE +CYPRIERE +CYPRIN +CYPRIOTE +CYSTINE +CYSTIQUE +CYSTITE +CYTISE +CYTOLYSE +CZAR +DACTYLE +DACTYLO +DADA +DADAISME +DAGUA +DAGUAI +DAGUAIT +DAGUANT +DAGUASSE +DAGUAT +DAGUE +DAGUEE +DAGUENT +DAGUER +DAGUERA +DAGUERAI +DAGUEREZ +DAGUET +DAGUEZ +DAGUIEZ +DAHIR +DAHLIA +DAHOMEEN +DAIGNA +DAIGNAI +DAIGNAIT +DAIGNANT +DAIGNAT +DAIGNE +DAIGNEE +DAIGNENT +DAIGNER +DAIGNERA +DAIGNEZ +DAIGNIEZ +DAIM +DAIMIO +DAINE +DALEAU +DALLA +DALLAGE +DALLAI +DALLAIT +DALLANT +DALLASSE +DALLAT +DALLE +DALLEE +DALLENT +DALLER +DALLERA +DALLERAI +DALLEREZ +DALLEUR +DALLEZ +DALLIEZ +DALMATE +DALOT +DALTON +DAMA +DAMAGE +DAMAI +DAMAIT +DAMAN +DAMANT +DAMASSA +DAMASSAI +DAMASSAT +DAMASSE +DAMASSEE +DAMASSER +DAMAT +DAME +DAMEE +DAMENT +DAMER +DAMERA +DAMERAI +DAMERAIT +DAMERENT +DAMEREZ +DAMERIEZ +DAMEZ +DAMIER +DAMIEZ +DAMNA +DAMNABLE +DAMNAI +DAMNAIT +DAMNANT +DAMNASSE +DAMNAT +DAMNE +DAMNEE +DAMNENT +DAMNER +DAMNERA +DAMNERAI +DAMNEREZ +DAMNEZ +DAMNIEZ +DANAIDE +DANCING +DANDIN +DANDINA +DANDINAI +DANDINAT +DANDINE +DANDINEE +DANDINER +DANDINEZ +DANDY +DANDYSME +DANGER +DANIEN +DANIENNE +DANOISE +DANSA +DANSABLE +DANSAI +DANSAIT +DANSANT +DANSASSE +DANSAT +DANSE +DANSEE +DANSENT +DANSER +DANSERA +DANSERAI +DANSEREZ +DANSEUR +DANSEUSE +DANSEZ +DANSIEZ +DANSOTTA +DANSOTTE +DAPHNE +DAPHNIE +DARAISE +DARBOUKA +DARCE +DARD +DARDA +DARDAI +DARDAIT +DARDANT +DARDASSE +DARDAT +DARDE +DARDEE +DARDENT +DARDER +DARDERA +DARDERAI +DARDEREZ +DARDEZ +DARDIEZ +DARIOLE +DARIQUE +DARNE +DARSE +DARTRE +DARTREUX +DARTROSE +DASYURE +DATA +DATABLE +DATAGE +DATAI +DATAIRE +DATAIT +DATANT +DATASSE +DATAT +DATATION +DATCHA +DATE +DATEE +DATENT +DATER +DATERA +DATERAI +DATERAIT +DATERENT +DATEREZ +DATERIE +DATERIEZ +DATEUR +DATEUSE +DATEZ +DATIEZ +DATIF +DATION +DATIVE +DATTE +DATTIER +DATURA +DAUBA +DAUBAI +DAUBAIT +DAUBANT +DAUBASSE +DAUBAT +DAUBE +DAUBEE +DAUBENT +DAUBER +DAUBERA +DAUBERAI +DAUBEREZ +DAUBEUR +DAUBEUSE +DAUBEZ +DAUBIERE +DAUBIEZ +DAUPHIN +DAUPHINE +DAURADE +DAVIER +DAZIBAO +DEACTIVA +DEACTIVE +DEALER +DEAMBULA +DEAMBULE +DEBACHA +DEBACHAI +DEBACHAT +DEBACHE +DEBACHEE +DEBACHER +DEBACHEZ +DEBACLA +DEBACLAI +DEBACLAT +DEBACLE +DEBACLER +DEBACLEZ +DEBALLA +DEBALLAI +DEBALLAT +DEBALLE +DEBALLEE +DEBALLER +DEBALLEZ +DEBANDA +DEBANDAI +DEBANDAT +DEBANDE +DEBANDEE +DEBANDER +DEBANDEZ +DEBARDA +DEBARDAI +DEBARDAT +DEBARDE +DEBARDEE +DEBARDER +DEBARDEZ +DEBARQUA +DEBARQUE +DEBARRA +DEBARRAI +DEBARRAT +DEBARRE +DEBARREE +DEBARRER +DEBARREZ +DEBAT +DEBATA +DEBATAI +DEBATAIT +DEBATANT +DEBATAT +DEBATE +DEBATEE +DEBATENT +DEBATER +DEBATERA +DEBATEZ +DEBATI +DEBATIE +DEBATIEZ +DEBATIR +DEBATIRA +DEBATIT +DEBATTE +DEBATTEZ +DEBATTIT +DEBATTRA +DEBATTRE +DEBATTU +DEBATTUE +DEBAUCHA +DEBAUCHE +DEBECTA +DEBECTAI +DEBECTAT +DEBECTE +DEBECTEE +DEBECTER +DEBECTEZ +DEBET +DEBILE +DEBILITA +DEBILITE +DEBINA +DEBINAI +DEBINAIT +DEBINANT +DEBINAT +DEBINE +DEBINEE +DEBINENT +DEBINER +DEBINERA +DEBINEZ +DEBINIEZ +DEBIT +DEBITA +DEBITAGE +DEBITAI +DEBITAIT +DEBITANT +DEBITAT +DEBITE +DEBITEE +DEBITENT +DEBITER +DEBITERA +DEBITEUR +DEBITEZ +DEBITIEZ +DEBLAI +DEBLAIE +DEBLAYA +DEBLAYAI +DEBLAYAT +DEBLAYE +DEBLAYEE +DEBLAYER +DEBLAYEZ +DEBLEUI +DEBLEUIE +DEBLEUIR +DEBLEUIT +DEBLOQUA +DEBLOQUE +DEBOBINA +DEBOBINE +DEBOGUA +DEBOGUAI +DEBOGUAT +DEBOGUE +DEBOGUEE +DEBOGUER +DEBOGUEZ +DEBOIRE +DEBOISA +DEBOISAI +DEBOISAT +DEBOISE +DEBOISEE +DEBOISER +DEBOISEZ +DEBOITA +DEBOITAI +DEBOITAT +DEBOITE +DEBOITEE +DEBOITER +DEBOITEZ +DEBONDA +DEBONDAI +DEBONDAT +DEBONDE +DEBONDEE +DEBONDER +DEBONDEZ +DEBORD +DEBORDA +DEBORDAI +DEBORDAT +DEBORDE +DEBORDEE +DEBORDER +DEBORDEZ +DEBOTTA +DEBOTTAI +DEBOTTAT +DEBOTTE +DEBOTTEE +DEBOTTER +DEBOTTEZ +DEBOUCHA +DEBOUCHE +DEBOUCLA +DEBOUCLE +DEBOUDA +DEBOUDAI +DEBOUDAT +DEBOUDE +DEBOUDEE +DEBOUDER +DEBOUDEZ +DEBOULA +DEBOULAI +DEBOULAT +DEBOULE +DEBOULEE +DEBOULER +DEBOULEZ +DEBOUQUA +DEBOUQUE +DEBOURBA +DEBOURBE +DEBOURRA +DEBOURRE +DEBOURSA +DEBOURSE +DEBOUT +DEBOUTA +DEBOUTAI +DEBOUTAT +DEBOUTE +DEBOUTEE +DEBOUTER +DEBOUTEZ +DEBRAIE +DEBRAYA +DEBRAYAI +DEBRAYAT +DEBRAYE +DEBRAYEE +DEBRAYER +DEBRAYEZ +DEBRIDA +DEBRIDAI +DEBRIDAT +DEBRIDE +DEBRIDEE +DEBRIDER +DEBRIDEZ +DEBROCHA +DEBROCHE +DEBUCHA +DEBUCHAI +DEBUCHAT +DEBUCHE +DEBUCHEE +DEBUCHER +DEBUCHEZ +DEBULLA +DEBULLAI +DEBULLAT +DEBULLE +DEBULLEE +DEBULLER +DEBULLEZ +DEBUSQUA +DEBUSQUE +DEBUT +DEBUTA +DEBUTAI +DEBUTAIT +DEBUTANT +DEBUTAT +DEBUTE +DEBUTEE +DEBUTENT +DEBUTER +DEBUTERA +DEBUTEZ +DEBUTIEZ +DECA +DECADE +DECADENT +DECADI +DECAEDRE +DECAGONE +DECAISSA +DECAISSE +DECALA +DECALAGE +DECALAI +DECALAIT +DECALANT +DECALAT +DECALE +DECALEE +DECALENT +DECALER +DECALERA +DECALEZ +DECALIEZ +DECALQUA +DECALQUE +DECAMPA +DECAMPAI +DECAMPAT +DECAMPE +DECAMPER +DECAMPEZ +DECAN +DECANAL +DECANALE +DECANAT +DECANTA +DECANTAI +DECANTAT +DECANTEE +DECANTER +DECANTEZ +DECAPA +DECAPAGE +DECAPAI +DECAPAIT +DECAPANT +DECAPAT +DECAPE +DECAPEE +DECAPELA +DECAPELE +DECAPENT +DECAPER +DECAPERA +DECAPEUR +DECAPEZ +DECAPIEZ +DECAPITA +DECAPITE +DECAPOTA +DECAPOTE +DECARRA +DECARRAI +DECARRAT +DECARRE +DECARRER +DECARREZ +DECATI +DECATIE +DECATIR +DECATIRA +DECATIT +DECAUSA +DECAUSAI +DECAUSAT +DECAUSE +DECAUSEE +DECAUSER +DECAUSEZ +DECAVE +DECAVEE +DECEDA +DECEDAI +DECEDAIT +DECEDANT +DECEDAT +DECEDE +DECEDEE +DECEDENT +DECEDER +DECEDERA +DECEDEZ +DECEDIEZ +DECELA +DECELAI +DECELAIT +DECELANT +DECELAT +DECELE +DECELEE +DECELENT +DECELER +DECELERA +DECELERE +DECELEZ +DECELIEZ +DECEMBRE +DECEMVIR +DECENCE +DECENNAL +DECENNIE +DECENT +DECENTE +DECENTRA +DECENTRE +DECERCLA +DECERCLE +DECERNA +DECERNAI +DECERNAT +DECERNE +DECERNEE +DECERNER +DECERNEZ +DECESSA +DECESSAI +DECESSAT +DECESSE +DECESSEE +DECESSER +DECEVAIT +DECEVANT +DECEVEZ +DECEVIEZ +DECEVOIR +DECEVRA +DECEVRAI +DECEVREZ +DECHAINA +DECHAINE +DECHANTA +DECHAPA +DECHAPAI +DECHAPAT +DECHAPE +DECHAPEE +DECHAPER +DECHAPEZ +DECHARGE +DECHARNA +DECHARNE +DECHAUMA +DECHAUME +DECHE +DECHET +DECHIRA +DECHIRAI +DECHIRAT +DECHIRE +DECHIREE +DECHIRER +DECHIREZ +DECHOIE +DECHOIR +DECHOIRA +DECHOIT +DECHOYEZ +DECHROMA +DECHROME +DECHU +DECHUE +DECHUSSE +DECHUT +DECI +DECIBEL +DECIDA +DECIDAI +DECIDAIT +DECIDANT +DECIDAT +DECIDE +DECIDEE +DECIDENT +DECIDER +DECIDERA +DECIDEUR +DECIDEZ +DECIDIEZ +DECILAGE +DECILE +DECIMA +DECIMAI +DECIMAIT +DECIMAL +DECIMALE +DECIMANT +DECIMAT +DECIME +DECIMEE +DECIMENT +DECIMER +DECIMERA +DECIMEZ +DECIMIEZ +DECINTRA +DECINTRE +DECISIF +DECISION +DECISIVE +DECLAMA +DECLAMAI +DECLAMAT +DECLAME +DECLAMEE +DECLAMER +DECLAMEZ +DECLARA +DECLARAI +DECLARAT +DECLARE +DECLAREE +DECLARER +DECLAREZ +DECLASSA +DECLASSE +DECLIC +DECLIN +DECLINA +DECLINAI +DECLINAT +DECLINE +DECLINEE +DECLINER +DECLINEZ +DECLIVE +DECLORA +DECLORAI +DECLORE +DECLOREZ +DECLOSE +DECLOT +DECLOUA +DECLOUAI +DECLOUAT +DECLOUE +DECLOUEE +DECLOUER +DECLOUEZ +DECOCHA +DECOCHAI +DECOCHAT +DECOCHE +DECOCHEE +DECOCHER +DECOCHEZ +DECODA +DECODAGE +DECODAI +DECODAIT +DECODANT +DECODAT +DECODE +DECODEE +DECODENT +DECODER +DECODERA +DECODEUR +DECODEZ +DECODIEZ +DECOFFRA +DECOFFRE +DECOIFFA +DECOIFFE +DECOINCA +DECOINCE +DECOIT +DECOIVE +DECOLERA +DECOLERE +DECOLLA +DECOLLAI +DECOLLAT +DECOLLE +DECOLLEE +DECOLLER +DECOLLEZ +DECOLORA +DECOLORE +DECOMPTA +DECOMPTE +DECONFIT +DECONNA +DECONNAI +DECONNAT +DECONNE +DECONNER +DECONNEZ +DECOR +DECORA +DECORAI +DECORAIT +DECORANT +DECORAT +DECORDA +DECORDAI +DECORDAT +DECORDE +DECORDEE +DECORDER +DECORDEZ +DECORE +DECOREE +DECORENT +DECORER +DECORERA +DECOREZ +DECORIEZ +DECORNA +DECORNAI +DECORNAT +DECORNE +DECORNEE +DECORNER +DECORNEZ +DECORUM +DECOTE +DECOUCHA +DECOUCHE +DECOUD +DECOUDRA +DECOUDRE +DECOULA +DECOULAI +DECOULAT +DECOULE +DECOULER +DECOULEZ +DECOUPA +DECOUPAI +DECOUPAT +DECOUPE +DECOUPEE +DECOUPER +DECOUPEZ +DECOUPLA +DECOUPLE +DECOUSE +DECOUSEZ +DECOUSIT +DECOUSU +DECOUSUE +DECOUVRE +DECOUVRU +DECRASSA +DECRASSE +DECREPA +DECREPAI +DECREPAT +DECREPE +DECREPEE +DECREPER +DECREPEZ +DECREPI +DECREPIE +DECREPIR +DECREPIT +DECRET +DECRETA +DECRETAI +DECRETAT +DECRETE +DECRETEE +DECRETER +DECRETEZ +DECREUSA +DECREUSE +DECRI +DECRIA +DECRIAI +DECRIAIT +DECRIANT +DECRIAT +DECRIE +DECRIEE +DECRIENT +DECRIER +DECRIERA +DECRIEZ +DECRIIEZ +DECRIRA +DECRIRAI +DECRIRE +DECRIREZ +DECRISPA +DECRISPE +DECRIT +DECRITE +DECRIVE +DECRIVEZ +DECRIVIT +DECROCHA +DECROCHE +DECROISA +DECROISE +DECROIT +DECROTTA +DECROTTE +DECROUTA +DECROUTE +DECRU +DECRUA +DECRUAGE +DECRUAI +DECRUAIT +DECRUANT +DECRUAT +DECRUE +DECRUEE +DECRUENT +DECRUER +DECRUERA +DECRUEZ +DECRUIEZ +DECRUSA +DECRUSAI +DECRUSAT +DECRUSE +DECRUSEE +DECRUSER +DECRUSEZ +DECRUSSE +DECRUT +DECRYPTA +DECRYPTE +DECU +DECUE +DECUIVRA +DECUIVRE +DECUPLA +DECUPLAI +DECUPLAT +DECUPLE +DECUPLEE +DECUPLER +DECUPLEZ +DECURENT +DECURION +DECUSSE +DECUSSEE +DECUT +DECUVA +DECUVAGE +DECUVAI +DECUVAIT +DECUVANT +DECUVAT +DECUVE +DECUVEE +DECUVENT +DECUVER +DECUVERA +DECUVEZ +DECUVIEZ +DEDAIGNA +DEDAIGNE +DEDAIN +DEDALE +DEDALEEN +DEDIA +DEDIAI +DEDIAIT +DEDIANT +DEDIASSE +DEDIAT +DEDICACA +DEDICACE +DEDIE +DEDIEE +DEDIENT +DEDIER +DEDIERA +DEDIERAI +DEDIEREZ +DEDIEZ +DEDIIEZ +DEDIRA +DEDIRAI +DEDIRAIT +DEDIRE +DEDIRENT +DEDIREZ +DEDIRIEZ +DEDIRONT +DEDISAIT +DEDISANT +DEDISE +DEDISENT +DEDISIEZ +DEDISSE +DEDIT +DEDITE +DEDORA +DEDORAGE +DEDORAI +DEDORAIT +DEDORANT +DEDORAT +DEDORE +DEDOREE +DEDORENT +DEDORER +DEDORERA +DEDOREZ +DEDORIEZ +DEDOUANA +DEDOUANE +DEDOUBLA +DEDOUBLE +DEDUCTIF +DEDUIRA +DEDUIRAI +DEDUIRE +DEDUIREZ +DEDUISE +DEDUISEZ +DEDUISIT +DEDUIT +DEDUITE +DEESSE +DEFAILLE +DEFAILLI +DEFAIRE +DEFAIT +DEFAITE +DEFALQUA +DEFALQUE +DEFARDA +DEFARDAI +DEFARDAT +DEFARDE +DEFARDEE +DEFARDER +DEFARDEZ +DEFASSE +DEFAUSSA +DEFAUSSE +DEFAUT +DEFAVEUR +DEFECTIF +DEFEND +DEFENDE +DEFENDEZ +DEFENDIT +DEFENDRA +DEFENDRE +DEFENDU +DEFENDUE +DEFENSE +DEFENSIF +DEFEQUA +DEFEQUAI +DEFEQUAT +DEFEQUE +DEFEQUEE +DEFEQUER +DEFEQUEZ +DEFERA +DEFERAI +DEFERAIT +DEFERANT +DEFERAT +DEFERE +DEFEREE +DEFERENT +DEFERER +DEFERERA +DEFEREZ +DEFERIEZ +DEFERLA +DEFERLAI +DEFERLAT +DEFERLE +DEFERLEE +DEFERLER +DEFERLEZ +DEFERRA +DEFERRAI +DEFERRAT +DEFERRE +DEFERREE +DEFERRER +DEFERREZ +DEFEUTRA +DEFEUTRE +DEFI +DEFIA +DEFIAI +DEFIAIT +DEFIANCE +DEFIANT +DEFIASSE +DEFIAT +DEFIBRA +DEFIBRAI +DEFIBRAT +DEFIBRE +DEFIBREE +DEFIBRER +DEFIBREZ +DEFICELA +DEFICELE +DEFICHA +DEFICHAI +DEFICHAT +DEFICHE +DEFICHEE +DEFICHER +DEFICHEZ +DEFICIT +DEFIE +DEFIEE +DEFIENT +DEFIER +DEFIERA +DEFIERAI +DEFIEREZ +DEFIEZ +DEFIGE +DEFIGEA +DEFIGEAI +DEFIGEAT +DEFIGEE +DEFIGENT +DEFIGER +DEFIGERA +DEFIGEZ +DEFIGIEZ +DEFIGURA +DEFIGURE +DEFIIEZ +DEFILA +DEFILADE +DEFILAGE +DEFILAI +DEFILAIT +DEFILANT +DEFILAT +DEFILE +DEFILEE +DEFILENT +DEFILER +DEFILERA +DEFILEZ +DEFILIEZ +DEFINI +DEFINIE +DEFINIR +DEFINIRA +DEFINIT +DEFIRENT +DEFISSE +DEFIT +DEFLAGRA +DEFLAGRE +DEFLAQUA +DEFLAQUE +DEFLEURI +DEFLORA +DEFLORAI +DEFLORAT +DEFLORE +DEFLOREE +DEFLORER +DEFLOREZ +DEFLUENT +DEFOLIA +DEFOLIAI +DEFOLIAT +DEFOLIE +DEFOLIEE +DEFOLIER +DEFOLIEZ +DEFONCA +DEFONCAI +DEFONCAT +DEFONCE +DEFONCEE +DEFONCER +DEFONCEZ +DEFONT +DEFORCA +DEFORCAI +DEFORCAT +DEFORCE +DEFORCEE +DEFORCER +DEFORCEZ +DEFORMA +DEFORMAI +DEFORMAT +DEFORME +DEFORMEE +DEFORMER +DEFORMEZ +DEFOULA +DEFOULAI +DEFOULAT +DEFOULE +DEFOULEE +DEFOULER +DEFOULEZ +DEFOURNA +DEFOURNE +DEFOURRA +DEFOURRE +DEFRAIE +DEFRAYA +DEFRAYAI +DEFRAYAT +DEFRAYE +DEFRAYEE +DEFRAYER +DEFRAYEZ +DEFRETTA +DEFRETTE +DEFRICHA +DEFRICHE +DEFRIPA +DEFRIPAI +DEFRIPAT +DEFRIPE +DEFRIPEE +DEFRIPER +DEFRIPEZ +DEFRISA +DEFRISAI +DEFRISAT +DEFRISE +DEFRISEE +DEFRISER +DEFRISEZ +DEFRONCA +DEFRONCE +DEFROQUA +DEFROQUE +DEFRUITA +DEFRUITE +DEFUNT +DEFUNTE +DEGAGE +DEGAGEA +DEGAGEAI +DEGAGEAT +DEGAGEE +DEGAGENT +DEGAGER +DEGAGERA +DEGAGEZ +DEGAGIEZ +DEGAINA +DEGAINAI +DEGAINAT +DEGAINE +DEGAINEE +DEGAINER +DEGAINEZ +DEGANTA +DEGANTAI +DEGANTAT +DEGANTEE +DEGANTER +DEGANTEZ +DEGARNI +DEGARNIE +DEGARNIR +DEGARNIT +DEGAT +DEGAUCHI +DEGAZA +DEGAZAGE +DEGAZAI +DEGAZAIT +DEGAZANT +DEGAZAT +DEGAZE +DEGAZEE +DEGAZENT +DEGAZER +DEGAZERA +DEGAZEZ +DEGAZIEZ +DEGEL +DEGELA +DEGELAI +DEGELAIT +DEGELANT +DEGELAT +DEGELE +DEGELEE +DEGELENT +DEGELER +DEGELERA +DEGELEZ +DEGELIEZ +DEGENERA +DEGENERE +DEGERMA +DEGERMAI +DEGERMAT +DEGERME +DEGERMEE +DEGERMER +DEGERMEZ +DEGITA +DEGITAI +DEGITAIT +DEGITANT +DEGITAT +DEGITE +DEGITEE +DEGITENT +DEGITER +DEGITERA +DEGITEZ +DEGITIEZ +DEGIVRA +DEGIVRAI +DEGIVRAT +DEGIVRE +DEGIVREE +DEGIVRER +DEGIVREZ +DEGLACA +DEGLACAI +DEGLACAT +DEGLACE +DEGLACEE +DEGLACER +DEGLACEZ +DEGLUA +DEGLUAI +DEGLUAIT +DEGLUANT +DEGLUAT +DEGLUE +DEGLUEE +DEGLUENT +DEGLUER +DEGLUERA +DEGLUEZ +DEGLUIEZ +DEGLUTI +DEGLUTIE +DEGLUTIR +DEGLUTIT +DEGOISA +DEGOISAI +DEGOISAT +DEGOISE +DEGOISEE +DEGOISER +DEGOISEZ +DEGOMMA +DEGOMMAI +DEGOMMAT +DEGOMME +DEGOMMEE +DEGOMMER +DEGOMMEZ +DEGONDA +DEGONDAI +DEGONDAT +DEGONDE +DEGONDEE +DEGONDER +DEGONDEZ +DEGONFLA +DEGONFLE +DEGORGE +DEGORGEA +DEGORGEE +DEGORGER +DEGORGEZ +DEGOTA +DEGOTAI +DEGOTAIT +DEGOTANT +DEGOTAT +DEGOTE +DEGOTEE +DEGOTENT +DEGOTER +DEGOTERA +DEGOTEZ +DEGOTIEZ +DEGOTTA +DEGOTTAI +DEGOTTAT +DEGOTTE +DEGOTTEE +DEGOTTER +DEGOTTEZ +DEGOURDI +DEGOUT +DEGOUTA +DEGOUTAI +DEGOUTAT +DEGOUTE +DEGOUTEE +DEGOUTER +DEGOUTEZ +DEGOUTTA +DEGOUTTE +DEGRADA +DEGRADAI +DEGRADAT +DEGRADE +DEGRADEE +DEGRADER +DEGRADEZ +DEGRAFA +DEGRAFAI +DEGRAFAT +DEGRAFE +DEGRAFEE +DEGRAFER +DEGRAFEZ +DEGRE +DEGREA +DEGREAI +DEGREAIT +DEGREANT +DEGREAT +DEGREE +DEGREEE +DEGREENT +DEGREER +DEGREERA +DEGREEZ +DEGREIEZ +DEGREVA +DEGREVAI +DEGREVAT +DEGREVE +DEGREVEE +DEGREVER +DEGREVEZ +DEGRIFFE +DEGRIPPA +DEGRIPPE +DEGRISA +DEGRISAI +DEGRISAT +DEGRISE +DEGRISEE +DEGRISER +DEGRISEZ +DEGROSSA +DEGROSSE +DEGROSSI +DEGUERPI +DEGUEULA +DEGUEULE +DEGUISA +DEGUISAI +DEGUISAT +DEGUISE +DEGUISEE +DEGUISER +DEGUISEZ +DEGUSTA +DEGUSTAI +DEGUSTAT +DEGUSTE +DEGUSTEE +DEGUSTER +DEGUSTEZ +DEHALA +DEHALAI +DEHALAIT +DEHALANT +DEHALAT +DEHALE +DEHALEE +DEHALENT +DEHALER +DEHALERA +DEHALEZ +DEHALIEZ +DEHANCHA +DEHANCHE +DEHARDA +DEHARDAI +DEHARDAT +DEHARDE +DEHARDEE +DEHARDER +DEHARDEZ +DEHOTTA +DEHOTTAI +DEHOTTAT +DEHOTTE +DEHOTTEE +DEHOTTER +DEHOTTEZ +DEICIDE +DEIFIA +DEIFIAI +DEIFIAIT +DEIFIANT +DEIFIAT +DEIFIE +DEIFIEE +DEIFIENT +DEIFIER +DEIFIERA +DEIFIEZ +DEIFIIEZ +DEISME +DEISTE +DEITE +DEJA +DEJANTA +DEJANTAI +DEJANTAT +DEJANTEE +DEJANTER +DEJANTEZ +DEJAUGE +DEJAUGEA +DEJAUGER +DEJAUGEZ +DEJAUNIT +DEJETA +DEJETAI +DEJETAIT +DEJETANT +DEJETAT +DEJETE +DEJETEE +DEJETER +DEJETEZ +DEJETIEZ +DEJETTE +DEJEUNA +DEJEUNAI +DEJEUNAT +DEJEUNE +DEJEUNER +DEJEUNEZ +DEJOUA +DEJOUAI +DEJOUAIT +DEJOUANT +DEJOUAT +DEJOUE +DEJOUEE +DEJOUENT +DEJOUER +DEJOUERA +DEJOUEZ +DEJOUIEZ +DEJUCHA +DEJUCHAI +DEJUCHAT +DEJUCHE +DEJUCHEE +DEJUCHER +DEJUCHEZ +DEJUGE +DEJUGEA +DEJUGEAI +DEJUGEAT +DEJUGEE +DEJUGENT +DEJUGER +DEJUGERA +DEJUGEZ +DEJUGIEZ +DELA +DELABRA +DELABRAI +DELABRAT +DELABRE +DELABREE +DELABRER +DELABREZ +DELACA +DELACAI +DELACAIT +DELACANT +DELACAT +DELACE +DELACEE +DELACENT +DELACER +DELACERA +DELACEZ +DELACIEZ +DELAI +DELAIE +DELAIERA +DELAINA +DELAINAI +DELAINAT +DELAINE +DELAINEE +DELAINER +DELAINEZ +DELAISSA +DELAISSE +DELAITA +DELAITAI +DELAITAT +DELAITE +DELAITEE +DELAITER +DELAITEZ +DELARDA +DELARDAI +DELARDAT +DELARDE +DELARDEE +DELARDER +DELARDEZ +DELASSA +DELASSAI +DELASSAT +DELASSE +DELASSEE +DELASSER +DELATEUR +DELATION +DELATTA +DELATTAI +DELATTAT +DELATTE +DELATTEE +DELATTER +DELATTEZ +DELAVA +DELAVAGE +DELAVAI +DELAVAIT +DELAVANT +DELAVAT +DELAVE +DELAVEE +DELAVENT +DELAVER +DELAVERA +DELAVEZ +DELAVIEZ +DELAYA +DELAYAGE +DELAYAI +DELAYAIT +DELAYANT +DELAYAT +DELAYE +DELAYEE +DELAYENT +DELAYER +DELAYERA +DELAYEZ +DELAYIEZ +DELCO +DELEATUR +DELEBILE +DELECTA +DELECTAI +DELECTAT +DELECTE +DELECTEE +DELECTER +DELECTEZ +DELEGANT +DELEGUA +DELEGUAI +DELEGUAT +DELEGUE +DELEGUEE +DELEGUER +DELEGUEZ +DELESTA +DELESTAI +DELESTAT +DELESTE +DELESTEE +DELESTER +DELESTEZ +DELETERE +DELETION +DELIA +DELIAI +DELIAIT +DELIANT +DELIASSE +DELIAT +DELIBERA +DELIBERE +DELICAT +DELICATE +DELICE +DELIE +DELIEE +DELIENT +DELIER +DELIERA +DELIERAI +DELIEREZ +DELIEZ +DELIIEZ +DELIMITA +DELIMITE +DELINEA +DELINEAI +DELINEAT +DELINEE +DELINEEE +DELINEER +DELINEEZ +DELIRA +DELIRAI +DELIRAIT +DELIRANT +DELIRAT +DELIRE +DELIRENT +DELIRER +DELIRERA +DELIREZ +DELIRIEZ +DELISSA +DELISSAI +DELISSAT +DELISSE +DELISSEE +DELISSER +DELIT +DELITA +DELITAGE +DELITAI +DELITAIT +DELITANT +DELITAT +DELITE +DELITEE +DELITENT +DELITER +DELITERA +DELITEZ +DELITIEZ +DELIVRA +DELIVRAI +DELIVRAT +DELIVRE +DELIVREE +DELIVRER +DELIVREZ +DELOGE +DELOGEA +DELOGEAI +DELOGEAT +DELOGEE +DELOGENT +DELOGER +DELOGERA +DELOGEZ +DELOGIEZ +DELOQUA +DELOQUAI +DELOQUAT +DELOQUE +DELOQUEE +DELOQUER +DELOQUEZ +DELOT +DELOVA +DELOVAI +DELOVAIT +DELOVANT +DELOVAT +DELOVE +DELOVEE +DELOVENT +DELOVER +DELOVERA +DELOVEZ +DELOVIEZ +DELOYAL +DELOYALE +DELTA +DELTOIDE +DELUGE +DELURA +DELURAI +DELURAIT +DELURANT +DELURAT +DELURE +DELUREE +DELURENT +DELURER +DELURERA +DELUREZ +DELURIEZ +DELUSTRA +DELUSTRE +DELUTA +DELUTAGE +DELUTAI +DELUTAIT +DELUTANT +DELUTAT +DELUTE +DELUTEE +DELUTENT +DELUTER +DELUTERA +DELUTEZ +DELUTIEZ +DEMAIGRI +DEMAILLA +DEMAILLE +DEMAIN +DEMANCHA +DEMANCHE +DEMANDA +DEMANDAI +DEMANDAT +DEMANDE +DEMANDEE +DEMANDER +DEMANDEZ +DEMANGE +DEMANGEA +DEMANGEE +DEMANGER +DEMANGEZ +DEMARCHA +DEMARCHE +DEMARIA +DEMARIAI +DEMARIAT +DEMARIE +DEMARIEE +DEMARIER +DEMARIEZ +DEMARQUA +DEMARQUE +DEMARRA +DEMARRAI +DEMARRAT +DEMARRE +DEMARREE +DEMARRER +DEMARREZ +DEMASCLA +DEMASCLE +DEMASQUA +DEMASQUE +DEMATA +DEMATAGE +DEMATAI +DEMATAIT +DEMATANT +DEMATAT +DEMATE +DEMATEE +DEMATENT +DEMATER +DEMATERA +DEMATEZ +DEMATIEZ +DEME +DEMELA +DEMELAGE +DEMELAI +DEMELAIT +DEMELANT +DEMELAT +DEMELE +DEMELEE +DEMELENT +DEMELER +DEMELERA +DEMELEZ +DEMELIEZ +DEMELOIR +DEMELURE +DEMEMBRA +DEMEMBRE +DEMENA +DEMENAGE +DEMENAI +DEMENAIT +DEMENANT +DEMENAT +DEMENCE +DEMENE +DEMENEE +DEMENENT +DEMENER +DEMENERA +DEMENEZ +DEMENIEZ +DEMENT +DEMENTE +DEMENTEZ +DEMENTI +DEMENTIE +DEMENTIR +DEMENTIT +DEMERDA +DEMERDAI +DEMERDAT +DEMERDE +DEMERDEE +DEMERDER +DEMERDEZ +DEMERITA +DEMERITE +DEMESURE +DEMET +DEMETTE +DEMETTEZ +DEMETTRA +DEMETTRE +DEMEUBLA +DEMEUBLE +DEMEURA +DEMEURAI +DEMEURAT +DEMEURE +DEMEUREE +DEMEURER +DEMEUREZ +DEMI +DEMIARD +DEMIE +DEMIELLA +DEMIELLE +DEMINA +DEMINAGE +DEMINAI +DEMINAIT +DEMINANT +DEMINAT +DEMINE +DEMINEE +DEMINENT +DEMINER +DEMINERA +DEMINEUR +DEMINEZ +DEMINIEZ +DEMIRENT +DEMISE +DEMISSE +DEMIT +DEMIURGE +DEMODA +DEMODAI +DEMODAIT +DEMODANT +DEMODAT +DEMODE +DEMODEE +DEMODENT +DEMODER +DEMODERA +DEMODEX +DEMODEZ +DEMODIEZ +DEMODULA +DEMODULE +DEMOLI +DEMOLIE +DEMOLIR +DEMOLIRA +DEMOLIT +DEMON +DEMONTA +DEMONTAI +DEMONTAT +DEMONTE +DEMONTEE +DEMONTER +DEMONTEZ +DEMONTRA +DEMONTRE +DEMORD +DEMORDE +DEMORDEZ +DEMORDIT +DEMORDRA +DEMORDRE +DEMORDU +DEMORDUE +DEMOTIVA +DEMOTIVE +DEMOULA +DEMOULAI +DEMOULAT +DEMOULE +DEMOULEE +DEMOULER +DEMOULEZ +DEMUNI +DEMUNIE +DEMUNIR +DEMUNIRA +DEMUNIT +DEMURA +DEMURAI +DEMURAIT +DEMURANT +DEMURAT +DEMURE +DEMUREE +DEMURENT +DEMURER +DEMURERA +DEMUREZ +DEMURGE +DEMURGEA +DEMURGEE +DEMURGER +DEMURGEZ +DEMURIEZ +DEMUSELA +DEMUSELE +DENANTI +DENANTIE +DENANTIR +DENANTIT +DENATTA +DENATTAI +DENATTAT +DENATTE +DENATTEE +DENATTER +DENATTEZ +DENATURA +DENATURE +DENDRITE +DENEIGE +DENEIGEA +DENEIGEE +DENEIGER +DENEIGEZ +DENERVA +DENERVAI +DENERVAT +DENERVE +DENERVEE +DENERVER +DENERVEZ +DENGUE +DENI +DENIA +DENIAI +DENIAISA +DENIAISE +DENIAIT +DENIANT +DENIASSE +DENIAT +DENICHA +DENICHAI +DENICHAT +DENICHE +DENICHEE +DENICHER +DENICHEZ +DENIE +DENIEE +DENIENT +DENIER +DENIERA +DENIERAI +DENIEREZ +DENIEZ +DENIGRA +DENIGRAI +DENIGRAT +DENIGRE +DENIGREE +DENIGRER +DENIGREZ +DENIIEZ +DENITRA +DENITRAI +DENITRAT +DENITRE +DENITREE +DENITRER +DENITREZ +DENIVELA +DENIVELE +DENOIE +DENOIENT +DENOIERA +DENOMBRA +DENOMBRE +DENOMMA +DENOMMAI +DENOMMAT +DENOMME +DENOMMEE +DENOMMER +DENOMMEZ +DENONCA +DENONCAI +DENONCAT +DENONCE +DENONCEE +DENONCER +DENONCEZ +DENOTA +DENOTAI +DENOTAIT +DENOTANT +DENOTAT +DENOTE +DENOTEE +DENOTENT +DENOTER +DENOTERA +DENOTEZ +DENOTIEZ +DENOUA +DENOUAI +DENOUAIT +DENOUANT +DENOUAT +DENOUE +DENOUEE +DENOUENT +DENOUER +DENOUERA +DENOUEZ +DENOUIEZ +DENOYA +DENOYAI +DENOYAIT +DENOYANT +DENOYAT +DENOYE +DENOYEE +DENOYER +DENOYEZ +DENOYIEZ +DENREE +DENSE +DENSITE +DENT +DENTAIRE +DENTAL +DENTALE +DENTE +DENTEE +DENTELA +DENTELAI +DENTELAT +DENTELE +DENTELEE +DENTELER +DENTELEZ +DENTELLE +DENTIER +DENTINE +DENTISTE +DENTURE +DENUA +DENUAI +DENUAIT +DENUANT +DENUASSE +DENUAT +DENUDA +DENUDAI +DENUDAIT +DENUDANT +DENUDAT +DENUDE +DENUDEE +DENUDENT +DENUDER +DENUDERA +DENUDEZ +DENUDIEZ +DENUE +DENUEE +DENUENT +DENUER +DENUERA +DENUERAI +DENUEREZ +DENUEZ +DENUIEZ +DEPAILLA +DEPAILLE +DEPANNA +DEPANNAI +DEPANNAT +DEPANNE +DEPANNEE +DEPANNER +DEPANNEZ +DEPARA +DEPARAI +DEPARAIT +DEPARANT +DEPARAT +DEPARE +DEPAREE +DEPARENT +DEPARER +DEPARERA +DEPAREZ +DEPARIA +DEPARIAI +DEPARIAT +DEPARIE +DEPARIEE +DEPARIER +DEPARIEZ +DEPARLA +DEPARLAI +DEPARLAT +DEPARLE +DEPARLER +DEPARLEZ +DEPART +DEPARTE +DEPARTEZ +DEPARTI +DEPARTIE +DEPARTIR +DEPARTIT +DEPASSA +DEPASSAI +DEPASSAT +DEPASSE +DEPASSEE +DEPASSER +DEPAVA +DEPAVAGE +DEPAVAI +DEPAVAIT +DEPAVANT +DEPAVAT +DEPAVE +DEPAVEE +DEPAVENT +DEPAVER +DEPAVERA +DEPAVEZ +DEPAVIEZ +DEPAYSA +DEPAYSAI +DEPAYSAT +DEPAYSE +DEPAYSEE +DEPAYSER +DEPAYSEZ +DEPECA +DEPECAGE +DEPECAI +DEPECAIT +DEPECANT +DEPECAT +DEPECE +DEPECEE +DEPECENT +DEPECER +DEPECERA +DEPECEUR +DEPECEZ +DEPECHA +DEPECHAI +DEPECHAT +DEPECHE +DEPECHEE +DEPECHER +DEPECHEZ +DEPECIEZ +DEPEIGNA +DEPEIGNE +DEPEINT +DEPEINTE +DEPEND +DEPENDE +DEPENDEZ +DEPENDIT +DEPENDRA +DEPENDRE +DEPENDU +DEPENDUE +DEPENSA +DEPENSAI +DEPENSAT +DEPENSE +DEPENSEE +DEPENSER +DEPENSEZ +DEPERI +DEPERIR +DEPERIRA +DEPERIT +DEPETRA +DEPETRAI +DEPETRAT +DEPETRE +DEPETREE +DEPETRER +DEPETREZ +DEPEUPLA +DEPEUPLE +DEPHASA +DEPHASAI +DEPHASAT +DEPHASE +DEPHASEE +DEPHASER +DEPHASEZ +DEPIAUTA +DEPIAUTE +DEPICAGE +DEPILA +DEPILAGE +DEPILAI +DEPILAIT +DEPILANT +DEPILAT +DEPILE +DEPILEE +DEPILENT +DEPILER +DEPILERA +DEPILEZ +DEPILIEZ +DEPINGLA +DEPINGLE +DEPIQUA +DEPIQUAI +DEPIQUAT +DEPIQUE +DEPIQUEE +DEPIQUER +DEPIQUEZ +DEPISTA +DEPISTAI +DEPISTAT +DEPISTE +DEPISTEE +DEPISTER +DEPISTEZ +DEPIT +DEPITA +DEPITAI +DEPITAIT +DEPITANT +DEPITAT +DEPITE +DEPITEE +DEPITENT +DEPITER +DEPITERA +DEPITEZ +DEPITIEZ +DEPLACA +DEPLACAI +DEPLACAT +DEPLACE +DEPLACEE +DEPLACER +DEPLACEZ +DEPLAIRA +DEPLAIRE +DEPLAISE +DEPLAIT +DEPLANTA +DEPLATRA +DEPLATRE +DEPLIA +DEPLIAGE +DEPLIAI +DEPLIAIT +DEPLIANT +DEPLIAT +DEPLIE +DEPLIEE +DEPLIENT +DEPLIER +DEPLIERA +DEPLIEZ +DEPLIIEZ +DEPLISSA +DEPLISSE +DEPLOIE +DEPLOMBA +DEPLOMBE +DEPLORA +DEPLORAI +DEPLORAT +DEPLORE +DEPLOREE +DEPLORER +DEPLOREZ +DEPLOYA +DEPLOYAI +DEPLOYAT +DEPLOYE +DEPLOYEE +DEPLOYER +DEPLOYEZ +DEPLU +DEPLUMA +DEPLUMAI +DEPLUMAT +DEPLUME +DEPLUMEE +DEPLUMER +DEPLUMEZ +DEPLUSSE +DEPLUT +DEPOINTA +DEPOINTE +DEPOLI +DEPOLIE +DEPOLIR +DEPOLIRA +DEPOLIT +DEPOLLUA +DEPOLLUE +DEPONENT +DEPORT +DEPORTA +DEPORTAI +DEPORTAT +DEPORTE +DEPORTEE +DEPORTER +DEPORTEZ +DEPOSA +DEPOSAI +DEPOSAIT +DEPOSANT +DEPOSAT +DEPOSE +DEPOSEE +DEPOSENT +DEPOSER +DEPOSERA +DEPOSEZ +DEPOSIEZ +DEPOT +DEPOTA +DEPOTAGE +DEPOTAI +DEPOTAIT +DEPOTANT +DEPOTAT +DEPOTE +DEPOTEE +DEPOTENT +DEPOTER +DEPOTERA +DEPOTEZ +DEPOTIEZ +DEPOTOIR +DEPOUDRA +DEPOUDRE +DEPOURVU +DEPRAVA +DEPRAVAI +DEPRAVAT +DEPRAVE +DEPRAVEE +DEPRAVER +DEPRAVEZ +DEPRECIA +DEPRECIE +DEPREND +DEPRENEZ +DEPRENNE +DEPRIMA +DEPRIMAI +DEPRIMAT +DEPRIME +DEPRIMEE +DEPRIMER +DEPRIMEZ +DEPRISA +DEPRISAI +DEPRISAT +DEPRISE +DEPRISEE +DEPRISER +DEPRISEZ +DEPRISSE +DEPRIT +DEPUCELA +DEPUCELE +DEPULPA +DEPULPAI +DEPULPAT +DEPULPE +DEPULPEE +DEPULPER +DEPULPEZ +DEPURA +DEPURAI +DEPURAIT +DEPURANT +DEPURAT +DEPURE +DEPUREE +DEPURENT +DEPURER +DEPURERA +DEPUREZ +DEPURIEZ +DEPUTA +DEPUTAI +DEPUTAIT +DEPUTANT +DEPUTAT +DEPUTE +DEPUTEE +DEPUTENT +DEPUTER +DEPUTERA +DEPUTEZ +DEPUTIEZ +DEQUILLA +DEQUILLE +DERACINA +DERACINE +DERADA +DERADAI +DERADAIT +DERADANT +DERADAT +DERADE +DERADENT +DERADER +DERADERA +DERADEZ +DERADIEZ +DERAGE +DERAGEA +DERAGEAI +DERAGEAT +DERAGENT +DERAGER +DERAGERA +DERAGEZ +DERAGIEZ +DERAIDI +DERAIDIE +DERAIDIR +DERAIDIT +DERAIE +DERAIERA +DERAILLA +DERAILLE +DERAISON +DERANGE +DERANGEA +DERANGEE +DERANGER +DERANGEZ +DERAPA +DERAPAGE +DERAPAI +DERAPAIT +DERAPANT +DERAPAT +DERAPE +DERAPENT +DERAPER +DERAPERA +DERAPEZ +DERAPIEZ +DERASA +DERASAI +DERASAIT +DERASANT +DERASAT +DERASE +DERASEE +DERASENT +DERASER +DERASERA +DERASEZ +DERASIEZ +DERATA +DERATAI +DERATAIT +DERATANT +DERATAT +DERATE +DERATEE +DERATENT +DERATER +DERATERA +DERATEZ +DERATIEZ +DERATISA +DERATISE +DERAYA +DERAYAI +DERAYAIT +DERAYANT +DERAYAT +DERAYE +DERAYEE +DERAYENT +DERAYER +DERAYERA +DERAYEZ +DERAYIEZ +DERAYURE +DERBY +DERECHEF +DEREGLA +DEREGLAI +DEREGLAT +DEREGLE +DEREGLEE +DEREGLER +DEREGLEZ +DEREGULA +DEREGULE +DERIDA +DERIDAI +DERIDAIT +DERIDANT +DERIDAT +DERIDE +DERIDEE +DERIDENT +DERIDER +DERIDERA +DERIDEZ +DERIDIEZ +DERISION +DERIVA +DERIVAI +DERIVAIT +DERIVANT +DERIVAT +DERIVE +DERIVEE +DERIVENT +DERIVER +DERIVERA +DERIVEUR +DERIVEZ +DERIVIEZ +DERME +DERMESTE +DERMIQUE +DERMITE +DERNIER +DERNIERE +DERNY +DEROBA +DEROBADE +DEROBAI +DEROBAIT +DEROBANT +DEROBAT +DEROBE +DEROBEE +DEROBENT +DEROBER +DEROBERA +DEROBEZ +DEROBIEZ +DEROCHA +DEROCHAI +DEROCHAT +DEROCHE +DEROCHEE +DEROCHER +DEROCHEZ +DERODA +DERODAI +DERODAIT +DERODANT +DERODAT +DERODE +DERODEE +DERODENT +DERODER +DERODERA +DERODEZ +DERODIEZ +DEROGE +DEROGEA +DEROGEAI +DEROGEAT +DEROGENT +DEROGER +DEROGERA +DEROGEZ +DEROGIEZ +DEROULA +DEROULAI +DEROULAT +DEROULE +DEROULEE +DEROULER +DEROULEZ +DEROUTA +DEROUTAI +DEROUTAT +DEROUTE +DEROUTEE +DEROUTER +DEROUTEZ +DERRICK +DERRIERE +DERVICHE +DESABUSA +DESABUSE +DESARMA +DESARMAI +DESARMAT +DESARME +DESARMEE +DESARMER +DESARMEZ +DESARROI +DESASTRE +DESAVEU +DESAVEUX +DESAVOUA +DESAVOUE +DESAXA +DESAXAI +DESAXAIT +DESAXANT +DESAXAT +DESAXE +DESAXEE +DESAXENT +DESAXER +DESAXERA +DESAXEZ +DESAXIEZ +DESCELLA +DESCELLE +DESCEND +DESCENDE +DESCENDU +DESCENTE +DESEMBUA +DESEMBUE +DESEMPLI +DESENFLA +DESENFLE +DESERT +DESERTA +DESERTAI +DESERTAT +DESERTE +DESERTEE +DESERTER +DESERTEZ +DESETAMA +DESETAME +DESHERBA +DESHERBE +DESHUILA +DESHUILE +DESIGN +DESIGNA +DESIGNAI +DESIGNAT +DESIGNE +DESIGNEE +DESIGNER +DESIGNEZ +DESIR +DESIRA +DESIRAI +DESIRAIT +DESIRANT +DESIRAT +DESIRE +DESIREE +DESIRENT +DESIRER +DESIRERA +DESIREUX +DESIREZ +DESIRIEZ +DESISTA +DESISTAI +DESISTAT +DESISTE +DESISTEE +DESISTER +DESISTEZ +DESMAN +DESOBEI +DESOBEIE +DESOBEIR +DESOBEIT +DESOLA +DESOLAI +DESOLAIT +DESOLANT +DESOLAT +DESOLE +DESOLEE +DESOLENT +DESOLER +DESOLERA +DESOLEZ +DESOLIEZ +DESOPILA +DESOPILE +DESORBA +DESORBAI +DESORBAT +DESORBE +DESORBEE +DESORBER +DESORBEZ +DESORDRE +DESOSSA +DESOSSAI +DESOSSAT +DESOSSE +DESOSSEE +DESOSSER +DESOXYDA +DESOXYDE +DESPOTE +DESQUAMA +DESQUAME +DESSABLA +DESSABLE +DESSAISI +DESSALA +DESSALAI +DESSALAT +DESSALE +DESSALEE +DESSALER +DESSALEZ +DESSECHA +DESSECHE +DESSEIN +DESSELLA +DESSELLE +DESSERRA +DESSERRE +DESSERT +DESSERTE +DESSERTI +DESSERVE +DESSERVI +DESSILLA +DESSILLE +DESSIN +DESSINA +DESSINAI +DESSINAT +DESSINE +DESSINEE +DESSINER +DESSINEZ +DESSOLA +DESSOLAI +DESSOLAT +DESSOLE +DESSOLEE +DESSOLER +DESSOLEZ +DESSOUDA +DESSOUDE +DESSOULA +DESSOULE +DESSUITA +DESSUITE +DESTIN +DESTINA +DESTINAI +DESTINAT +DESTINE +DESTINEE +DESTINER +DESTINEZ +DESTITUE +DESTOCKA +DESTOCKE +DESTRIER +DESUET +DESUETE +DESUNI +DESUNIE +DESUNION +DESUNIR +DESUNIRA +DESUNIT +DETACHA +DETACHAI +DETACHAT +DETACHE +DETACHEE +DETACHER +DETACHEZ +DETAIL +DETAILLA +DETAILLE +DETALA +DETALAI +DETALAIT +DETALANT +DETALAT +DETALE +DETALENT +DETALER +DETALERA +DETALEZ +DETALIEZ +DETALLA +DETALLAI +DETALLAT +DETALLE +DETALLEE +DETALLER +DETALLEZ +DETARTRA +DETARTRE +DETAXA +DETAXAI +DETAXAIT +DETAXANT +DETAXAT +DETAXE +DETAXEE +DETAXENT +DETAXER +DETAXERA +DETAXEZ +DETAXIEZ +DETECTA +DETECTAI +DETECTAT +DETECTE +DETECTEE +DETECTER +DETECTEZ +DETEIGNE +DETEINT +DETEINTE +DETELA +DETELAGE +DETELAI +DETELAIT +DETELANT +DETELAT +DETELE +DETELEE +DETELER +DETELEZ +DETELIEZ +DETELLE +DETENAIT +DETENANT +DETEND +DETENDE +DETENDEZ +DETENDIT +DETENDRA +DETENDRE +DETENDU +DETENDUE +DETENEZ +DETENIEZ +DETENIR +DETENTE +DETENU +DETENUE +DETERGE +DETERGEA +DETERGEE +DETERGER +DETERGEZ +DETERRA +DETERRAI +DETERRAT +DETERRE +DETERREE +DETERRER +DETERREZ +DETERSIF +DETESTA +DETESTAI +DETESTAT +DETESTE +DETESTEE +DETESTER +DETESTEZ +DETIENNE +DETIENT +DETINSSE +DETINT +DETIRA +DETIRAI +DETIRAIT +DETIRANT +DETIRAT +DETIRE +DETIREE +DETIRENT +DETIRER +DETIRERA +DETIREZ +DETIRIEZ +DETISSA +DETISSAI +DETISSAT +DETISSE +DETISSEE +DETISSER +DETONA +DETONAI +DETONAIT +DETONANT +DETONAT +DETONE +DETONENT +DETONER +DETONERA +DETONEZ +DETONIEZ +DETONNA +DETONNAI +DETONNAT +DETONNE +DETONNER +DETONNEZ +DETORD +DETORDE +DETORDEZ +DETORDIT +DETORDRA +DETORDRE +DETORDU +DETORDUE +DETOUR +DETOURA +DETOURAI +DETOURAT +DETOURE +DETOUREE +DETOURER +DETOUREZ +DETOURNA +DETOURNE +DETRACTA +DETRACTE +DETRAQUA +DETRAQUE +DETREMPA +DETREMPE +DETRESSA +DETRESSE +DETROIT +DETROMPA +DETROMPE +DETRONA +DETRONAI +DETRONAT +DETRONE +DETRONEE +DETRONER +DETRONEZ +DETROQUA +DETROQUE +DETRUIRA +DETRUIRE +DETRUISE +DETRUIT +DETRUITE +DETTE +DEUIL +DEUTERON +DEUX +DEUXIEME +DEVAIT +DEVALA +DEVALAI +DEVALAIT +DEVALANT +DEVALAT +DEVALE +DEVALEE +DEVALENT +DEVALER +DEVALERA +DEVALEZ +DEVALIEZ +DEVALISA +DEVALISE +DEVALUA +DEVALUAI +DEVALUAT +DEVALUE +DEVALUEE +DEVALUER +DEVALUEZ +DEVANCA +DEVANCAI +DEVANCAT +DEVANCE +DEVANCEE +DEVANCER +DEVANCEZ +DEVANT +DEVASA +DEVASAI +DEVASAIT +DEVASANT +DEVASAT +DEVASE +DEVASEE +DEVASENT +DEVASER +DEVASERA +DEVASEZ +DEVASIEZ +DEVASTA +DEVASTAI +DEVASTAT +DEVASTE +DEVASTEE +DEVASTER +DEVASTEZ +DEVEINE +DEVENAIT +DEVENANT +DEVENEZ +DEVENIEZ +DEVENIR +DEVENTA +DEVENTAI +DEVENTAT +DEVENTE +DEVENTEE +DEVENTER +DEVENTEZ +DEVENU +DEVENUE +DEVERBAL +DEVERDI +DEVERDIR +DEVERDIT +DEVERGUA +DEVERGUE +DEVERNI +DEVERNIE +DEVERNIR +DEVERNIT +DEVERSA +DEVERSAI +DEVERSAT +DEVERSE +DEVERSEE +DEVERSER +DEVERSEZ +DEVET +DEVETAIT +DEVETANT +DEVETE +DEVETENT +DEVETEZ +DEVETIEZ +DEVETIR +DEVETIRA +DEVETIT +DEVETU +DEVETUE +DEVEZ +DEVIA +DEVIAI +DEVIAIT +DEVIANT +DEVIASSE +DEVIAT +DEVIDA +DEVIDAGE +DEVIDAI +DEVIDAIT +DEVIDANT +DEVIDAT +DEVIDE +DEVIDEE +DEVIDENT +DEVIDER +DEVIDERA +DEVIDEUR +DEVIDEZ +DEVIDIEZ +DEVIDOIR +DEVIE +DEVIEE +DEVIENNE +DEVIENT +DEVIER +DEVIERA +DEVIERAI +DEVIEREZ +DEVIEZ +DEVIIEZ +DEVIN +DEVINA +DEVINAI +DEVINAIT +DEVINANT +DEVINAT +DEVINE +DEVINEE +DEVINENT +DEVINER +DEVINERA +DEVINEZ +DEVINIEZ +DEVINSSE +DEVINT +DEVIROLA +DEVIROLE +DEVISA +DEVISAGE +DEVISAI +DEVISAIT +DEVISANT +DEVISAT +DEVISE +DEVISENT +DEVISER +DEVISERA +DEVISEZ +DEVISIEZ +DEVISSA +DEVISSAI +DEVISSAT +DEVISSE +DEVISSEE +DEVISSER +DEVOIE +DEVOIENT +DEVOIERA +DEVOILA +DEVOILAI +DEVOILAT +DEVOILE +DEVOILEE +DEVOILER +DEVOILEZ +DEVOIR +DEVOLTA +DEVOLTAI +DEVOLTAT +DEVOLTE +DEVOLTEE +DEVOLTER +DEVOLTEZ +DEVOLU +DEVOLUE +DEVONIEN +DEVORA +DEVORAI +DEVORAIT +DEVORANT +DEVORAT +DEVORE +DEVOREE +DEVORENT +DEVORER +DEVORERA +DEVOREUR +DEVOREZ +DEVORIEZ +DEVOT +DEVOTE +DEVOTION +DEVOUA +DEVOUAI +DEVOUAIT +DEVOUANT +DEVOUAT +DEVOUE +DEVOUEE +DEVOUENT +DEVOUER +DEVOUERA +DEVOUEZ +DEVOUIEZ +DEVOYA +DEVOYAI +DEVOYAIT +DEVOYANT +DEVOYAT +DEVOYE +DEVOYEE +DEVOYER +DEVOYEZ +DEVOYIEZ +DEVRA +DEVRAI +DEVRAIT +DEVREZ +DEVRIEZ +DEVRONT +DEXTRE +DEXTRINE +DEXTROSE +DIABETE +DIABLE +DIABOLO +DIACIDE +DIACLASE +DIACODE +DIACONAL +DIACONAT +DIACRE +DIADEME +DIADOQUE +DIAGNOSE +DIAGONAL +DIALECTE +DIALOGUA +DIALOGUE +DIALYSA +DIALYSAI +DIALYSAT +DIALYSE +DIALYSEE +DIALYSER +DIALYSEZ +DIAMANT +DIAMANTA +DIAMETRE +DIAMIDE +DIANE +DIANTRE +DIAPASON +DIAPHANE +DIAPHYSE +DIAPO +DIAPRA +DIAPRAI +DIAPRAIT +DIAPRANT +DIAPRAT +DIAPRE +DIAPREE +DIAPRENT +DIAPRER +DIAPRERA +DIAPREZ +DIAPRIEZ +DIAPRURE +DIARRHEE +DIASCOPE +DIASPORA +DIASTASE +DIASTOLE +DIATHESE +DIATOMEE +DIATRIBE +DIAULE +DICLINE +DICO +DICROTE +DICTA +DICTAI +DICTAIT +DICTAME +DICTANT +DICTASSE +DICTAT +DICTE +DICTEE +DICTENT +DICTER +DICTERA +DICTERAI +DICTEREZ +DICTEZ +DICTIEZ +DICTION +DICTON +DIDYME +DIERESE +DIERGOL +DIESE +DIESEL +DIETE +DIEU +DIEUX +DIFFA +DIFFAMA +DIFFAMAI +DIFFAMAT +DIFFAME +DIFFAMEE +DIFFAMER +DIFFAMEZ +DIFFERA +DIFFERAI +DIFFERAT +DIFFERE +DIFFEREE +DIFFERER +DIFFEREZ +DIFFORMA +DIFFORME +DIFFUSA +DIFFUSAI +DIFFUSAT +DIFFUSE +DIFFUSEE +DIFFUSER +DIFFUSEZ +DIGERA +DIGERAI +DIGERAIT +DIGERANT +DIGERAT +DIGERE +DIGEREE +DIGERENT +DIGERER +DIGERERA +DIGEREZ +DIGERIEZ +DIGEST +DIGESTE +DIGESTIF +DIGIT +DIGITAL +DIGITALE +DIGITE +DIGITEE +DIGNE +DIGNITE +DIGON +DIGRAMME +DIGUE +DIKTAT +DILACERA +DILACERE +DILAPIDA +DILAPIDE +DILATA +DILATAI +DILATAIT +DILATANT +DILATAT +DILATE +DILATEE +DILATENT +DILATER +DILATERA +DILATEZ +DILATIEZ +DILEMME +DILIGENT +DILUA +DILUAI +DILUAIT +DILUANT +DILUASSE +DILUAT +DILUE +DILUEE +DILUENT +DILUER +DILUERA +DILUERAI +DILUEREZ +DILUEZ +DILUIEZ +DILUTION +DILUVIAL +DILUVIEN +DILUVIUM +DIMANCHE +DIME +DIMINUA +DIMINUAI +DIMINUAT +DIMINUE +DIMINUEE +DIMINUER +DIMINUEZ +DIMORPHE +DINA +DINAI +DINAIT +DINANT +DINAR +DINASSE +DINAT +DINDE +DINDON +DINDONNA +DINDONNE +DINE +DINENT +DINER +DINERA +DINERAI +DINERAIT +DINERENT +DINEREZ +DINERIEZ +DINETTE +DINEUR +DINEUSE +DINEZ +DING +DINGHIE +DINGHY +DINGO +DINGUA +DINGUAI +DINGUAIT +DINGUANT +DINGUAT +DINGUE +DINGUEE +DINGUENT +DINGUER +DINGUERA +DINGUEZ +DINGUIEZ +DINIEZ +DIOCESE +DIODE +DIONEE +DIOPTRE +DIOPTRIE +DIORAMA +DIORITE +DIOXINE +DIOXYDE +DIPALIDE +DIPETALE +DIPHASE +DIPHASEE +DIPLOIDE +DIPLOMA +DIPLOMAI +DIPLOMAT +DIPLOME +DIPLOMEE +DIPLOMER +DIPLOMEZ +DIPLOPIE +DIPODE +DIPOLE +DIPTERE +DIPTYQUE +DIRA +DIRAI +DIRAIT +DIRE +DIRECT +DIRECTE +DIRECTIF +DIRENT +DIREZ +DIRHAM +DIRHEM +DIRIEZ +DIRIGE +DIRIGEA +DIRIGEAI +DIRIGEAT +DIRIGEE +DIRIGENT +DIRIGER +DIRIGERA +DIRIGEZ +DIRIGIEZ +DIRIMANT +DIRONT +DISAIT +DISANT +DISCAL +DISCALE +DISCERNA +DISCERNE +DISCIPLE +DISCO +DISCOIDE +DISCORDA +DISCORDE +DISCOUNT +DISCOURE +DISCOURT +DISCOURU +DISCRET +DISCRETE +DISCULPA +DISCULPE +DISCUTA +DISCUTAI +DISCUTAT +DISCUTE +DISCUTEE +DISCUTER +DISCUTEZ +DISE +DISENT +DISERT +DISERTE +DISETTE +DISEUR +DISEUSE +DISGRACE +DISIEZ +DISJOINT +DISLOQUA +DISLOQUE +DISPARU +DISPARUE +DISPARUT +DISPENSA +DISPENSE +DISPERSA +DISPERSE +DISPOSA +DISPOSAI +DISPOSAT +DISPOSE +DISPOSEE +DISPOSER +DISPOSEZ +DISPUTA +DISPUTAI +DISPUTAT +DISPUTE +DISPUTEE +DISPUTER +DISPUTEZ +DISQUE +DISSE +DISSEQUA +DISSEQUE +DISSERTA +DISSERTE +DISSIPA +DISSIPAI +DISSIPAT +DISSIPE +DISSIPEE +DISSIPER +DISSIPEZ +DISSOCIA +DISSOCIE +DISSOLU +DISSOLUE +DISSOLVE +DISSONA +DISSONAI +DISSONAT +DISSONE +DISSONER +DISSONEZ +DISSOUT +DISSOUTE +DISSUADA +DISSUADE +DISTAL +DISTALE +DISTANCA +DISTANCE +DISTANT +DISTEND +DISTENDE +DISTENDU +DISTHENE +DISTILLA +DISTILLE +DISTINCT +DISTIQUE +DISTORD +DISTORDE +DISTORDU +DISTRAIE +DISTRAIT +DISTRICT +DISTYLE +DITE +DITO +DIURESE +DIURNAL +DIURNE +DIVA +DIVAGUA +DIVAGUAI +DIVAGUAT +DIVAGUE +DIVAGUER +DIVAGUEZ +DIVAN +DIVERGE +DIVERGEA +DIVERGEE +DIVERGER +DIVERGEZ +DIVERSE +DIVERTI +DIVERTIE +DIVERTIR +DIVERTIT +DIVETTE +DIVIN +DIVINE +DIVINISA +DIVINISE +DIVINITE +DIVISA +DIVISAI +DIVISAIT +DIVISANT +DIVISAT +DIVISE +DIVISEE +DIVISENT +DIVISER +DIVISERA +DIVISEUR +DIVISEZ +DIVISIEZ +DIVISION +DIVORCA +DIVORCAI +DIVORCAT +DIVORCE +DIVORCEE +DIVORCER +DIVORCEZ +DIVULGUA +DIVULGUE +DIXIEME +DIZAIN +DIZAINE +DIZYGOTE +DJAIN +DJELLABA +DJINN +DOBERMAN +DOCILE +DOCILITE +DOCK +DOCKER +DOCTE +DOCTEUR +DOCTORAL +DOCTORAT +DOCTRINE +DOCUMENT +DODELINA +DODELINE +DODINA +DODINAI +DODINAIT +DODINANT +DODINAT +DODINE +DODINEE +DODINENT +DODINER +DODINERA +DODINEZ +DODINIEZ +DODO +DODU +DODUE +DOGE +DOGGER +DOGME +DOGUE +DOIGT +DOIGTA +DOIGTAI +DOIGTAIT +DOIGTANT +DOIGTAT +DOIGTE +DOIGTEE +DOIGTENT +DOIGTER +DOIGTERA +DOIGTEZ +DOIGTIER +DOIGTIEZ +DOIT +DOIVE +DOIVENT +DOLA +DOLAI +DOLAIT +DOLANT +DOLASSE +DOLAT +DOLCE +DOLE +DOLEAU +DOLEE +DOLENT +DOLENTE +DOLER +DOLERA +DOLERAI +DOLERAIT +DOLERENT +DOLEREZ +DOLERIEZ +DOLEZ +DOLIC +DOLIEZ +DOLINE +DOLLAR +DOLMAN +DOLMEN +DOLOIRE +DOLOMIE +DOLOMITE +DOLOSIF +DOLOSIVE +DOMAINE +DOMANIAL +DOME +DOMICILE +DOMINA +DOMINAI +DOMINAIT +DOMINANT +DOMINAT +DOMINE +DOMINEE +DOMINENT +DOMINER +DOMINERA +DOMINEZ +DOMINIEZ +DOMINION +DOMINO +DOMISME +DOMMAGE +DOMPTA +DOMPTAGE +DOMPTAI +DOMPTAIT +DOMPTANT +DOMPTAT +DOMPTE +DOMPTEE +DOMPTENT +DOMPTER +DOMPTERA +DOMPTEUR +DOMPTEZ +DOMPTIEZ +DONACIE +DONATEUR +DONATION +DONC +DONDAINE +DONDON +DONJON +DONNA +DONNAI +DONNAIT +DONNANT +DONNASSE +DONNAT +DONNE +DONNEE +DONNENT +DONNER +DONNERA +DONNERAI +DONNEREZ +DONNEUR +DONNEUSE +DONNEZ +DONNIEZ +DONT +DONZELLE +DOPA +DOPAGE +DOPAI +DOPAIT +DOPAMINE +DOPANT +DOPASSE +DOPAT +DOPE +DOPEE +DOPENT +DOPER +DOPERA +DOPERAI +DOPERAIT +DOPERENT +DOPEREZ +DOPERIEZ +DOPEZ +DOPIEZ +DOPING +DORA +DORADE +DORAGE +DORAI +DORAIT +DORANT +DORASSE +DORAT +DORE +DOREE +DORENT +DORER +DORERA +DORERAI +DORERAIT +DORERENT +DOREREZ +DORERIEZ +DOREUR +DOREUSE +DOREZ +DORIEN +DORIENNE +DORIEZ +DORIQUE +DORLOTA +DORLOTAI +DORLOTAT +DORLOTE +DORLOTEE +DORLOTER +DORLOTEZ +DORMAIT +DORMANT +DORME +DORMENT +DORMEUR +DORMEUSE +DORMEZ +DORMI +DORMIEZ +DORMIR +DORMIRA +DORMIRAI +DORMIREZ +DORMISSE +DORMIT +DORMITIF +DORSAL +DORSALE +DORT +DORTOIR +DORURE +DOSA +DOSABLE +DOSAGE +DOSAI +DOSAIT +DOSANT +DOSASSE +DOSAT +DOSE +DOSEE +DOSENT +DOSER +DOSERA +DOSERAI +DOSERAIT +DOSERENT +DOSEREZ +DOSERIEZ +DOSEUR +DOSEZ +DOSIEZ +DOSSARD +DOSSE +DOSSERET +DOSSIER +DOSSIERE +DOTA +DOTAI +DOTAIT +DOTAL +DOTALE +DOTALITE +DOTANT +DOTASSE +DOTAT +DOTATION +DOTE +DOTEE +DOTENT +DOTER +DOTERA +DOTERAI +DOTERAIT +DOTERENT +DOTEREZ +DOTERIEZ +DOTEZ +DOTIEZ +DOUA +DOUAI +DOUAIRE +DOUAIT +DOUANE +DOUANIER +DOUANT +DOUAR +DOUASSE +DOUAT +DOUBLA +DOUBLAGE +DOUBLAI +DOUBLAIT +DOUBLANT +DOUBLAT +DOUBLE +DOUBLEAU +DOUBLEE +DOUBLENT +DOUBLER +DOUBLERA +DOUBLET +DOUBLEUR +DOUBLEZ +DOUBLIER +DOUBLIEZ +DOUBLON +DOUBLURE +DOUCE +DOUCET +DOUCETTE +DOUCEUR +DOUCHA +DOUCHAI +DOUCHAIT +DOUCHANT +DOUCHAT +DOUCHE +DOUCHEE +DOUCHENT +DOUCHER +DOUCHERA +DOUCHEUR +DOUCHEZ +DOUCHIEZ +DOUCI +DOUCIE +DOUCIN +DOUCINE +DOUCIR +DOUCIRA +DOUCIRAI +DOUCIREZ +DOUCISSE +DOUCIT +DOUE +DOUEE +DOUELLE +DOUER +DOUERA +DOUERAI +DOUERAIT +DOUERENT +DOUEREZ +DOUERIEZ +DOUEZ +DOUIEZ +DOUILLE +DOUILLET +DOULEUR +DOUM +DOURINE +DOURO +DOUTA +DOUTAI +DOUTAIT +DOUTANT +DOUTASSE +DOUTAT +DOUTE +DOUTEE +DOUTENT +DOUTER +DOUTERA +DOUTERAI +DOUTEREZ +DOUTEUR +DOUTEUSE +DOUTEUX +DOUTEZ +DOUTIEZ +DOUVAIN +DOUVE +DOUVELLE +DOUX +DOUZAIN +DOUZAINE +DOUZE +DOUZIEME +DOYEN +DOYENNE +DRACENA +DRACHME +DRAGAGE +DRAGEE +DRAGEOIR +DRAGEON +DRAGLINE +DRAGON +DRAGONNE +DRAGUA +DRAGUAI +DRAGUAIT +DRAGUANT +DRAGUAT +DRAGUE +DRAGUEE +DRAGUENT +DRAGUER +DRAGUERA +DRAGUEUR +DRAGUEZ +DRAGUIEZ +DRAIE +DRAIERA +DRAIERAI +DRAIEREZ +DRAILLE +DRAIN +DRAINA +DRAINAGE +DRAINAI +DRAINAIT +DRAINANT +DRAINAT +DRAINE +DRAINEE +DRAINENT +DRAINER +DRAINERA +DRAINEUR +DRAINEZ +DRAINIEZ +DRAISINE +DRAKKAR +DRAME +DRAP +DRAPA +DRAPAI +DRAPAIT +DRAPANT +DRAPASSE +DRAPAT +DRAPE +DRAPEAU +DRAPEE +DRAPENT +DRAPER +DRAPERA +DRAPERAI +DRAPEREZ +DRAPERIE +DRAPEZ +DRAPIER +DRAPIERE +DRAPIEZ +DRAVE +DRAVEUR +DRAWBACK +DRAYA +DRAYAI +DRAYAIT +DRAYANT +DRAYASSE +DRAYAT +DRAYE +DRAYEE +DRAYENT +DRAYER +DRAYERA +DRAYERAI +DRAYEREZ +DRAYEZ +DRAYIEZ +DRAYOIR +DRAYOIRE +DREGE +DRELIN +DRENNE +DRESSA +DRESSAGE +DRESSAI +DRESSAIT +DRESSANT +DRESSAT +DRESSE +DRESSEE +DRESSER +DRESSERA +DRESSEUR +DRESSOIR +DRIBBLA +DRIBBLAI +DRIBBLAT +DRIBBLE +DRIBBLEE +DRIBBLER +DRIBBLEZ +DRILL +DRILLA +DRILLAI +DRILLAIT +DRILLANT +DRILLAT +DRILLE +DRILLEE +DRILLENT +DRILLER +DRILLERA +DRILLEZ +DRILLIEZ +DRING +DRINK +DRISSE +DRIVA +DRIVAI +DRIVAIT +DRIVANT +DRIVASSE +DRIVAT +DRIVE +DRIVEE +DRIVENT +DRIVER +DRIVERA +DRIVERAI +DRIVEREZ +DRIVEZ +DRIVIEZ +DROGMAN +DROGUA +DROGUAI +DROGUAIT +DROGUANT +DROGUAT +DROGUE +DROGUEE +DROGUENT +DROGUER +DROGUERA +DROGUET +DROGUEZ +DROGUIEZ +DROIT +DROITE +DROITIER +DROITURE +DROLE +DROLERIE +DROLESSE +DRONTE +DROP +DROPA +DROPAI +DROPAIT +DROPANT +DROPASSE +DROPAT +DROPE +DROPEE +DROPENT +DROPER +DROPERA +DROPERAI +DROPEREZ +DROPEZ +DROPIEZ +DROPPA +DROPPAGE +DROPPAI +DROPPAIT +DROPPANT +DROPPAT +DROPPE +DROPPEE +DROPPENT +DROPPER +DROPPERA +DROPPEZ +DROPPIEZ +DROSSA +DROSSAI +DROSSAIT +DROSSANT +DROSSAT +DROSSE +DROSSEE +DROSSER +DROSSERA +DRUE +DRUIDE +DRUMLIN +DRUMMER +DRUPE +DRYADE +DUAL +DUALE +DUALISME +DUALISTE +DUALITE +DUCAL +DUCALE +DUCASSE +DUCAT +DUCE +DUCHE +DUCHESSE +DUCROIRE +DUCTILE +DUEGNE +DUEL +DUETTO +DUGONG +DUIT +DUITE +DULCIFIA +DULCIFIE +DULCINEE +DULCITE +DULIE +DUMENT +DUMPING +DUNDEE +DUNE +DUNETTE +DUODENAL +DUODENUM +DUODI +DUOPOLE +DUPA +DUPAI +DUPAIT +DUPANT +DUPASSE +DUPAT +DUPE +DUPEE +DUPENT +DUPER +DUPERA +DUPERAI +DUPERAIT +DUPERENT +DUPEREZ +DUPERIE +DUPERIEZ +DUPEUR +DUPEUSE +DUPEZ +DUPIEZ +DUPLEX +DUPLEXA +DUPLEXAI +DUPLEXAT +DUPLEXE +DUPLEXEE +DUPLEXER +DUPLEXEZ +DUPLIQUA +DUPLIQUE +DUQUEL +DURA +DURABLE +DURAI +DURAIT +DURAMEN +DURANT +DURASSE +DURAT +DURATIF +DURATIVE +DURCI +DURCIE +DURCIR +DURCIRA +DURCIRAI +DURCIREZ +DURCISSE +DURCIT +DURE +DUREE +DUREMENT +DURENT +DURER +DURERA +DURERAI +DURERAIT +DURERENT +DUREREZ +DURERIEZ +DURETE +DUREZ +DURIEZ +DURILLON +DURION +DURIT +DUSSE +DUUMVIR +DUUMVIRI +DUVET +DUVETA +DUVETAI +DUVETAIT +DUVETANT +DUVETAT +DUVETE +DUVETEE +DUVETER +DUVETEUX +DUVETEZ +DUVETIEZ +DUVETTE +DYADE +DYNAMISA +DYNAMISE +DYNAMITA +DYNAMITE +DYNAMO +DYNASTE +DYNASTIE +DYSLEXIE +DYSPNEE +DYSTASIE +DYSTOCIE +DYSTOMIE +DYSTONIE +DYSURIE +DYTIQUE +DZETA +EBAHI +EBAHIE +EBAHIR +EBAHIRA +EBAHIRAI +EBAHIREZ +EBAHISSE +EBAHIT +EBARBA +EBARBAGE +EBARBAI +EBARBAIT +EBARBANT +EBARBAT +EBARBE +EBARBEE +EBARBENT +EBARBER +EBARBERA +EBARBEUR +EBARBEZ +EBARBIEZ +EBARBOIR +EBARBURE +EBAT +EBATTEZ +EBATTIEZ +EBATTRE +EBATTREZ +EBATTU +EBATTUE +EBAUBI +EBAUBIE +EBAUBIR +EBAUCHA +EBAUCHAI +EBAUCHAT +EBAUCHE +EBAUCHEE +EBAUCHER +EBAUCHEZ +EBAUDI +EBAUDIE +EBAUDIR +EBAVURA +EBAVURAI +EBAVURAT +EBAVURE +EBAVUREE +EBAVURER +EBAVUREZ +EBENE +EBENIER +EBENISTE +EBERLUA +EBERLUAI +EBERLUAT +EBERLUE +EBERLUEE +EBERLUER +EBERLUEZ +EBISELA +EBISELAI +EBISELAT +EBISELE +EBISELEE +EBISELER +EBISELEZ +EBLOUI +EBLOUIE +EBLOUIR +EBLOUIRA +EBLOUIT +EBONITE +EBORGNA +EBORGNAI +EBORGNAT +EBORGNE +EBORGNEE +EBORGNER +EBORGNEZ +EBOSSA +EBOSSAI +EBOSSAIT +EBOSSANT +EBOSSAT +EBOSSE +EBOSSEE +EBOSSER +EBOSSERA +EBOUA +EBOUAI +EBOUAIT +EBOUANT +EBOUASSE +EBOUAT +EBOUE +EBOUEE +EBOUENT +EBOUER +EBOUERA +EBOUERAI +EBOUEREZ +EBOUEUR +EBOUEZ +EBOUIEZ +EBOULA +EBOULAI +EBOULAIT +EBOULANT +EBOULAT +EBOULE +EBOULEE +EBOULENT +EBOULER +EBOULERA +EBOULEZ +EBOULIEZ +EBOURRA +EBOURRAI +EBOURRAT +EBOURRE +EBOURREE +EBOURRER +EBOURREZ +EBOUTA +EBOUTAI +EBOUTAIT +EBOUTANT +EBOUTAT +EBOUTE +EBOUTEE +EBOUTENT +EBOUTER +EBOUTERA +EBOUTEZ +EBOUTIEZ +EBRAISA +EBRAISAI +EBRAISAT +EBRAISE +EBRAISEE +EBRAISER +EBRAISEZ +EBRANCHA +EBRANCHE +EBRANLA +EBRANLAI +EBRANLAT +EBRANLE +EBRANLEE +EBRANLER +EBRANLEZ +EBRASA +EBRASAI +EBRASAIT +EBRASANT +EBRASAT +EBRASE +EBRASEE +EBRASENT +EBRASER +EBRASERA +EBRASEZ +EBRASIEZ +EBRECHA +EBRECHAI +EBRECHAT +EBRECHE +EBRECHEE +EBRECHER +EBRECHEZ +EBRIETE +EBROUE +EBROUEE +EBROUER +EBROUEZ +EBROUIEZ +EBRUITA +EBRUITAI +EBRUITAT +EBRUITE +EBRUITEE +EBRUITER +EBRUITEZ +EBURNE +EBURNEE +EBURNEEN +ECACHA +ECACHAI +ECACHAIT +ECACHANT +ECACHAT +ECACHE +ECACHEE +ECACHENT +ECACHER +ECACHERA +ECACHEZ +ECACHIEZ +ECAFFA +ECAFFAI +ECAFFAIT +ECAFFANT +ECAFFAT +ECAFFE +ECAFFEE +ECAFFENT +ECAFFER +ECAFFERA +ECAFFEZ +ECAFFIEZ +ECAILLA +ECAILLAI +ECAILLAT +ECAILLE +ECAILLEE +ECAILLER +ECAILLEZ +ECALA +ECALAI +ECALAIT +ECALANT +ECALASSE +ECALAT +ECALE +ECALEE +ECALENT +ECALER +ECALERA +ECALERAI +ECALEREZ +ECALEZ +ECALIEZ +ECALURE +ECANG +ECANGUA +ECANGUAI +ECANGUAT +ECANGUE +ECANGUEE +ECANGUER +ECANGUEZ +ECARLATE +ECART +ECARTA +ECARTAI +ECARTAIT +ECARTANT +ECARTAT +ECARTE +ECARTEE +ECARTELA +ECARTELE +ECARTENT +ECARTER +ECARTERA +ECARTEUR +ECARTEZ +ECARTIEZ +ECATI +ECATIE +ECATIR +ECATIRA +ECATIRAI +ECATIREZ +ECATISSE +ECATIT +ECCEITE +ECERVELE +ECHAFAUD +ECHALIER +ECHALOTE +ECHAMPI +ECHAMPIE +ECHAMPIR +ECHAMPIT +ECHANCRA +ECHANCRE +ECHANGE +ECHANGEA +ECHANGEE +ECHANGER +ECHANGEZ +ECHANSON +ECHAPPA +ECHAPPAI +ECHAPPAT +ECHAPPE +ECHAPPEE +ECHAPPER +ECHAPPEZ +ECHARDE +ECHARNA +ECHARNAI +ECHARNAT +ECHARNE +ECHARNEE +ECHARNER +ECHARNEZ +ECHARPA +ECHARPAI +ECHARPAT +ECHARPE +ECHARPEE +ECHARPER +ECHARPEZ +ECHASSE +ECHAUDA +ECHAUDAI +ECHAUDAT +ECHAUDE +ECHAUDEE +ECHAUDER +ECHAUDEZ +ECHAUFFA +ECHAUFFE +ECHAULA +ECHAULAI +ECHAULAT +ECHAULE +ECHAULEE +ECHAULER +ECHAULEZ +ECHAUMA +ECHAUMAI +ECHAUMAT +ECHAUME +ECHAUMEE +ECHAUMER +ECHAUMEZ +ECHE +ECHEANCE +ECHEANT +ECHEC +ECHELIER +ECHELLE +ECHELON +ECHEVEAU +ECHEVELA +ECHEVELE +ECHEVIN +ECHIDNE +ECHINA +ECHINAI +ECHINAIT +ECHINANT +ECHINAT +ECHINE +ECHINEE +ECHINENT +ECHINER +ECHINERA +ECHINEZ +ECHINIEZ +ECHO +ECHOIE +ECHOIENT +ECHOIR +ECHOIRA +ECHOIT +ECHOPPA +ECHOPPAI +ECHOPPAT +ECHOPPE +ECHOPPEE +ECHOPPER +ECHOPPEZ +ECHOTIER +ECHOUA +ECHOUAGE +ECHOUAI +ECHOUAIT +ECHOUANT +ECHOUAT +ECHOUE +ECHOUEE +ECHOUENT +ECHOUER +ECHOUERA +ECHOUEZ +ECHOUIEZ +ECHU +ECHUE +ECHURENT +ECHUT +ECIMA +ECIMAGE +ECIMAI +ECIMAIT +ECIMANT +ECIMASSE +ECIMAT +ECIME +ECIMEE +ECIMENT +ECIMER +ECIMERA +ECIMERAI +ECIMEREZ +ECIMEZ +ECIMIEZ +ECLAIR +ECLAIRA +ECLAIRAI +ECLAIRAT +ECLAIRCI +ECLAIRE +ECLAIREE +ECLAIRER +ECLAIREZ +ECLAT +ECLATA +ECLATAI +ECLATAIT +ECLATANT +ECLATAT +ECLATE +ECLATEE +ECLATENT +ECLATER +ECLATERA +ECLATEUR +ECLATEZ +ECLATIEZ +ECLIPSA +ECLIPSAI +ECLIPSAT +ECLIPSE +ECLIPSEE +ECLIPSER +ECLIPSEZ +ECLISSA +ECLISSAI +ECLISSAT +ECLISSE +ECLISSEE +ECLISSER +ECLOPA +ECLOPAI +ECLOPAIT +ECLOPANT +ECLOPAT +ECLOPE +ECLOPEE +ECLOPENT +ECLOPER +ECLOPERA +ECLOPEZ +ECLOPIEZ +ECLORA +ECLORAI +ECLORAIT +ECLORE +ECLOREZ +ECLORIEZ +ECLORONT +ECLOSE +ECLOSENT +ECLOSION +ECLOT +ECLUSA +ECLUSAGE +ECLUSAI +ECLUSAIT +ECLUSANT +ECLUSAT +ECLUSE +ECLUSEE +ECLUSENT +ECLUSER +ECLUSERA +ECLUSEZ +ECLUSIER +ECLUSIEZ +ECOBUA +ECOBUAGE +ECOBUAI +ECOBUAIT +ECOBUANT +ECOBUAT +ECOBUE +ECOBUEE +ECOBUENT +ECOBUER +ECOBUERA +ECOBUEZ +ECOBUIEZ +ECOCIDE +ECOEURA +ECOEURAI +ECOEURAT +ECOEURE +ECOEUREE +ECOEURER +ECOEUREZ +ECOLAGE +ECOLATRE +ECOLE +ECOLIER +ECOLOGIE +ECOMUSEE +ECONDUIT +ECONOMAT +ECONOME +ECONOMIE +ECOPA +ECOPAI +ECOPAIT +ECOPANT +ECOPASSE +ECOPAT +ECOPE +ECOPEE +ECOPENT +ECOPER +ECOPERA +ECOPERAI +ECOPEREZ +ECOPEZ +ECOPIEZ +ECORA +ECORAI +ECORAIT +ECORANT +ECORASSE +ECORAT +ECORCA +ECORCAI +ECORCAIT +ECORCANT +ECORCAT +ECORCE +ECORCEE +ECORCENT +ECORCER +ECORCERA +ECORCEUR +ECORCEZ +ECORCHA +ECORCHAI +ECORCHAT +ECORCHE +ECORCHEE +ECORCHER +ECORCHEZ +ECORCIEZ +ECORE +ECOREE +ECORENT +ECORER +ECORERA +ECORERAI +ECOREREZ +ECOREZ +ECORIEZ +ECORNA +ECORNAI +ECORNAIT +ECORNANT +ECORNAT +ECORNE +ECORNEE +ECORNENT +ECORNER +ECORNERA +ECORNEZ +ECORNIEZ +ECORNURE +ECOSSA +ECOSSAI +ECOSSAIT +ECOSSANT +ECOSSAT +ECOSSE +ECOSSEE +ECOSSER +ECOSSERA +ECOT +ECOTE +ECOTEE +ECOTYPE +ECOULA +ECOULAI +ECOULAIT +ECOULANT +ECOULAT +ECOULE +ECOULEE +ECOULENT +ECOULER +ECOULERA +ECOULEZ +ECOULIEZ +ECOUMENE +ECOURTA +ECOURTAI +ECOURTAT +ECOURTE +ECOURTEE +ECOURTER +ECOURTEZ +ECOUTA +ECOUTAI +ECOUTAIT +ECOUTANT +ECOUTAT +ECOUTE +ECOUTEE +ECOUTENT +ECOUTER +ECOUTERA +ECOUTEUR +ECOUTEZ +ECOUTIEZ +ECRAN +ECRASA +ECRASAI +ECRASAIT +ECRASANT +ECRASAT +ECRASE +ECRASEE +ECRASENT +ECRASER +ECRASERA +ECRASEUR +ECRASEZ +ECRASIEZ +ECREMA +ECREMAGE +ECREMAI +ECREMAIT +ECREMANT +ECREMAT +ECREME +ECREMEE +ECREMENT +ECREMER +ECREMERA +ECREMEZ +ECREMIEZ +ECRETA +ECRETAI +ECRETAIT +ECRETANT +ECRETAT +ECRETE +ECRETEE +ECRETENT +ECRETER +ECRETERA +ECRETEZ +ECRETIEZ +ECRIE +ECRIEE +ECRIER +ECRIEREZ +ECRIEZ +ECRIIEZ +ECRIN +ECRIRA +ECRIRAI +ECRIRAIT +ECRIRE +ECRIREZ +ECRIRIEZ +ECRIRONT +ECRIT +ECRITE +ECRITEAU +ECRITURE +ECRIVAIN +ECRIVAIT +ECRIVANT +ECRIVE +ECRIVENT +ECRIVEZ +ECRIVIEZ +ECRIVIT +ECROU +ECROUA +ECROUAI +ECROUAIT +ECROUANT +ECROUAT +ECROUE +ECROUEE +ECROUENT +ECROUER +ECROUERA +ECROUEZ +ECROUI +ECROUIE +ECROUIEZ +ECROUIR +ECROUIRA +ECROUIT +ECROULE +ECROULEE +ECROULER +ECROULEZ +ECROUTA +ECROUTAI +ECROUTAT +ECROUTE +ECROUTEE +ECROUTER +ECROUTEZ +ECRU +ECRUE +ECTASIE +ECTHYMA +ECTOPIE +ECUBIER +ECUEIL +ECUELLE +ECUISSA +ECUISSAI +ECUISSAT +ECUISSE +ECUISSEE +ECUISSER +ECULA +ECULAI +ECULAIT +ECULANT +ECULASSE +ECULAT +ECULE +ECULEE +ECULENT +ECULER +ECULERA +ECULERAI +ECULEREZ +ECULEZ +ECULIEZ +ECUMA +ECUMAGE +ECUMAI +ECUMAIT +ECUMANT +ECUMASSE +ECUMAT +ECUME +ECUMEE +ECUMENT +ECUMER +ECUMERA +ECUMERAI +ECUMEREZ +ECUMEUR +ECUMEUSE +ECUMEUX +ECUMEZ +ECUMIEZ +ECUMOIRE +ECURA +ECURAI +ECURAIT +ECURANT +ECURASSE +ECURAT +ECURE +ECUREE +ECURENT +ECURER +ECURERA +ECURERAI +ECUREREZ +ECUREUIL +ECUREZ +ECURIE +ECURIEZ +ECUSSON +ECUYER +ECUYERE +ECZEMA +EDAM +EDEN +EDENIQUE +EDENTA +EDENTAI +EDENTAIT +EDENTANT +EDENTAT +EDENTE +EDENTEE +EDENTENT +EDENTER +EDENTERA +EDENTEZ +EDENTIEZ +EDICTA +EDICTAI +EDICTAIT +EDICTANT +EDICTAT +EDICTE +EDICTEE +EDICTENT +EDICTER +EDICTERA +EDICTEZ +EDICTIEZ +EDICULE +EDIFIA +EDIFIAI +EDIFIAIT +EDIFIANT +EDIFIAT +EDIFICE +EDIFIE +EDIFIEE +EDIFIENT +EDIFIER +EDIFIERA +EDIFIEZ +EDIFIIEZ +EDILE +EDILITE +EDIT +EDITA +EDITABLE +EDITAI +EDITAIT +EDITANT +EDITASSE +EDITAT +EDITE +EDITEE +EDITENT +EDITER +EDITERA +EDITERAI +EDITEREZ +EDITEUR +EDITEZ +EDITIEZ +EDITION +EDITRICE +EDREDON +EDUCABLE +EDUCATIF +EDULCORA +EDULCORE +EDUQUA +EDUQUAI +EDUQUAIT +EDUQUANT +EDUQUAT +EDUQUE +EDUQUEE +EDUQUENT +EDUQUER +EDUQUERA +EDUQUEZ +EDUQUIEZ +EFAUFILA +EFAUFILE +EFENDI +EFFACA +EFFACAI +EFFACAIT +EFFACANT +EFFACAT +EFFACE +EFFACEE +EFFACENT +EFFACER +EFFACERA +EFFACEZ +EFFACIEZ +EFFANA +EFFANAI +EFFANAIT +EFFANANT +EFFANAT +EFFANE +EFFANEE +EFFANENT +EFFANER +EFFANERA +EFFANEZ +EFFANIEZ +EFFANURE +EFFARA +EFFARAI +EFFARAIT +EFFARANT +EFFARAT +EFFARE +EFFAREE +EFFARENT +EFFARER +EFFARERA +EFFAREZ +EFFARIEZ +EFFECTIF +EFFECTUA +EFFECTUE +EFFEMINA +EFFEMINE +EFFENDI +EFFERENT +EFFET +EFFICACE +EFFIGIE +EFFILA +EFFILAGE +EFFILAI +EFFILAIT +EFFILANT +EFFILAT +EFFILE +EFFILEE +EFFILENT +EFFILER +EFFILERA +EFFILEZ +EFFILIEZ +EFFILURE +EFFLEURA +EFFLEURE +EFFLEURI +EFFLUENT +EFFLUVA +EFFLUVAI +EFFLUVAT +EFFLUVE +EFFLUVER +EFFLUVEZ +EFFONDRA +EFFONDRE +EFFORCE +EFFORCEE +EFFORCER +EFFORCEZ +EFFORT +EFFRAIE +EFFRANGE +EFFRAYA +EFFRAYAI +EFFRAYAT +EFFRAYE +EFFRAYEE +EFFRAYER +EFFRAYEZ +EFFRENE +EFFRENEE +EFFRITA +EFFRITAI +EFFRITAT +EFFRITE +EFFRITEE +EFFRITER +EFFRITEZ +EFFROI +EFFRONTE +EFFUSION +EGAIE +EGAIERA +EGAIERAI +EGAIEREZ +EGAILLE +EGAILLEE +EGAILLER +EGAILLEZ +EGAL +EGALA +EGALABLE +EGALAI +EGALAIT +EGALANT +EGALASSE +EGALAT +EGALE +EGALEE +EGALENT +EGALER +EGALERA +EGALERAI +EGALEREZ +EGALEZ +EGALIEZ +EGALISA +EGALISAI +EGALISAT +EGALISE +EGALISEE +EGALISER +EGALISEZ +EGALITE +EGARA +EGARAI +EGARAIT +EGARANT +EGARASSE +EGARAT +EGARD +EGARE +EGAREE +EGARENT +EGARER +EGARERA +EGARERAI +EGAREREZ +EGAREZ +EGARIEZ +EGAYA +EGAYAI +EGAYAIT +EGAYANT +EGAYASSE +EGAYAT +EGAYE +EGAYEE +EGAYENT +EGAYER +EGAYERA +EGAYERAI +EGAYEREZ +EGAYEZ +EGAYIEZ +EGEEN +EGEENNE +EGERIE +EGERMA +EGERMAGE +EGERMAI +EGERMAIT +EGERMANT +EGERMAT +EGERME +EGERMEE +EGERMENT +EGERMER +EGERMERA +EGERMEZ +EGERMIEZ +EGIDE +EGLEFIN +EGLISE +EGLOGUE +EGOINE +EGOISME +EGOISTE +EGORGE +EGORGEA +EGORGEAI +EGORGEAT +EGORGEE +EGORGENT +EGORGER +EGORGERA +EGORGEUR +EGORGEZ +EGORGIEZ +EGOSILLE +EGOTISME +EGOTISTE +EGOUT +EGOUTIER +EGOUTTA +EGOUTTAI +EGOUTTAT +EGOUTTE +EGOUTTEE +EGOUTTER +EGOUTTEZ +EGRAINA +EGRAINAI +EGRAINAT +EGRAINE +EGRAINEE +EGRAINER +EGRAINEZ +EGRAPPA +EGRAPPAI +EGRAPPAT +EGRAPPE +EGRAPPEE +EGRAPPER +EGRAPPEZ +EGRENA +EGRENAGE +EGRENAI +EGRENAIT +EGRENANT +EGRENAT +EGRENE +EGRENEE +EGRENENT +EGRENER +EGRENERA +EGRENEZ +EGRENIEZ +EGRISA +EGRISAGE +EGRISAI +EGRISAIT +EGRISANT +EGRISAT +EGRISE +EGRISEE +EGRISENT +EGRISER +EGRISERA +EGRISEZ +EGRISIEZ +EGROTANT +EGRUGE +EGRUGEA +EGRUGEAI +EGRUGEAT +EGRUGEE +EGRUGENT +EGRUGER +EGRUGERA +EGRUGEZ +EGRUGIEZ +EGYPTIEN +EHONTE +EHONTEE +EIDER +EJACULA +EJACULAI +EJACULAT +EJACULE +EJACULEE +EJACULER +EJACULEZ +EJECTA +EJECTAI +EJECTAIT +EJECTANT +EJECTAT +EJECTE +EJECTEE +EJECTENT +EJECTER +EJECTERA +EJECTEUR +EJECTEZ +EJECTIEZ +EJECTION +EJOINTA +EJOINTAI +EJOINTAT +EJOINTE +EJOINTEE +EJOINTER +EJOINTEZ +ELABORA +ELABORAI +ELABORAT +ELABORE +ELABOREE +ELABORER +ELABOREZ +ELAGAGE +ELAGUA +ELAGUAI +ELAGUAIT +ELAGUANT +ELAGUAT +ELAGUE +ELAGUEE +ELAGUENT +ELAGUER +ELAGUERA +ELAGUEUR +ELAGUEZ +ELAGUIEZ +ELAN +ELANCA +ELANCAI +ELANCAIT +ELANCANT +ELANCAT +ELANCE +ELANCEE +ELANCENT +ELANCER +ELANCERA +ELANCEZ +ELANCIEZ +ELARGI +ELARGIE +ELARGIR +ELARGIRA +ELARGIT +ELAVE +ELAVEE +ELBEUF +ELBOT +ELDORADO +ELECTEUR +ELECTIF +ELECTION +ELECTIVE +ELECTRON +ELECTRUM +ELEGANCE +ELEGANT +ELEGI +ELEGIE +ELEGIR +ELEGIRA +ELEGIRAI +ELEGIREZ +ELEMENT +ELEPHANT +ELEVA +ELEVAGE +ELEVAI +ELEVAIT +ELEVANT +ELEVASSE +ELEVAT +ELEVE +ELEVEE +ELEVENT +ELEVER +ELEVERA +ELEVERAI +ELEVEREZ +ELEVEUR +ELEVEUSE +ELEVEZ +ELEVIEZ +ELFE +ELIDA +ELIDAI +ELIDAIT +ELIDANT +ELIDASSE +ELIDAT +ELIDE +ELIDEE +ELIDENT +ELIDER +ELIDERA +ELIDERAI +ELIDEREZ +ELIDEZ +ELIDIEZ +ELIGIBLE +ELIMA +ELIMAI +ELIMAIT +ELIMANT +ELIMASSE +ELIMAT +ELIME +ELIMEE +ELIMENT +ELIMER +ELIMERA +ELIMERAI +ELIMEREZ +ELIMEZ +ELIMIEZ +ELIMINA +ELIMINAI +ELIMINAT +ELIMINE +ELIMINEE +ELIMINER +ELIMINEZ +ELINGUA +ELINGUAI +ELINGUAT +ELINGUE +ELINGUEE +ELINGUER +ELINGUEZ +ELIRA +ELIRAI +ELIRAIT +ELIRE +ELIREZ +ELIRIEZ +ELIRONT +ELISAIT +ELISANT +ELISE +ELISENT +ELISEZ +ELISIEZ +ELISION +ELIT +ELITAIRE +ELITE +ELITISME +ELITISTE +ELIXIR +ELLE +ELLEBORE +ELLIPSE +ELODEE +ELOGE +ELOGIEUX +ELOIGNA +ELOIGNAI +ELOIGNAT +ELOIGNE +ELOIGNEE +ELOIGNER +ELOIGNEZ +ELONGE +ELONGEA +ELONGEAI +ELONGEAT +ELONGEE +ELONGENT +ELONGER +ELONGERA +ELONGEZ +ELONGIEZ +ELOQUENT +ELUCIDA +ELUCIDAI +ELUCIDAT +ELUCIDE +ELUCIDEE +ELUCIDER +ELUCIDEZ +ELUCUBRA +ELUCUBRE +ELUDA +ELUDAI +ELUDAIT +ELUDANT +ELUDASSE +ELUDAT +ELUDE +ELUDEE +ELUDENT +ELUDER +ELUDERA +ELUDERAI +ELUDEREZ +ELUDEZ +ELUDIEZ +ELUE +ELURENT +ELUSIF +ELUSIVE +ELUSSE +ELUT +ELUVIAL +ELUVIALE +ELUVION +ELYSEEN +ELYTRE +EMACIE +EMACIEE +EMACIER +EMACIEZ +EMACIIEZ +EMAIL +EMAILLA +EMAILLAI +EMAILLAT +EMAILLE +EMAILLEE +EMAILLER +EMAILLEZ +EMANA +EMANAI +EMANAIT +EMANANT +EMANASSE +EMANAT +EMANCHE +EMANCIPA +EMANCIPE +EMANE +EMANENT +EMANER +EMANERA +EMANERAI +EMANEREZ +EMANEZ +EMANIEZ +EMARGE +EMARGEA +EMARGEAI +EMARGEAT +EMARGEE +EMARGENT +EMARGER +EMARGERA +EMARGEZ +EMARGIEZ +EMASCULA +EMASCULE +EMBACLE +EMBALLA +EMBALLAI +EMBALLAT +EMBALLE +EMBALLEE +EMBALLER +EMBALLEZ +EMBARDA +EMBARDAI +EMBARDAT +EMBARDE +EMBARDEE +EMBARDER +EMBARDEZ +EMBARGO +EMBARQUA +EMBARQUE +EMBARRA +EMBARRAI +EMBARRAT +EMBARRE +EMBARREE +EMBARRER +EMBARREZ +EMBASE +EMBAT +EMBATTE +EMBATTEZ +EMBATTIT +EMBATTRA +EMBATTRE +EMBATTU +EMBATTUE +EMBAUCHA +EMBAUCHE +EMBAUMA +EMBAUMAI +EMBAUMAT +EMBAUME +EMBAUMEE +EMBAUMER +EMBAUMEZ +EMBECQUA +EMBECQUE +EMBELLI +EMBELLIE +EMBELLIR +EMBELLIT +EMBETA +EMBETAI +EMBETAIT +EMBETANT +EMBETAT +EMBETE +EMBETEE +EMBETENT +EMBETER +EMBETERA +EMBETEZ +EMBETIEZ +EMBLAVA +EMBLAVAI +EMBLAVAT +EMBLAVE +EMBLAVEE +EMBLAVER +EMBLAVEZ +EMBLEME +EMBOBINA +EMBOBINE +EMBOIRE +EMBOIREZ +EMBOITA +EMBOITAI +EMBOITAT +EMBOITE +EMBOITEE +EMBOITER +EMBOITEZ +EMBOLIE +EMBOSSA +EMBOSSAI +EMBOSSAT +EMBOSSE +EMBOSSEE +EMBOSSER +EMBOUA +EMBOUAI +EMBOUAIT +EMBOUANT +EMBOUAT +EMBOUCHA +EMBOUCHE +EMBOUE +EMBOUEE +EMBOUENT +EMBOUER +EMBOUERA +EMBOUEZ +EMBOUIEZ +EMBOUQUA +EMBOUQUE +EMBOURBA +EMBOURBE +EMBOURRA +EMBOURRE +EMBOUT +EMBOUTI +EMBOUTIE +EMBOUTIR +EMBOUTIT +EMBRAIE +EMBRAQUA +EMBRAQUE +EMBRASA +EMBRASAI +EMBRASAT +EMBRASE +EMBRASEE +EMBRASER +EMBRASEZ +EMBRASSA +EMBRASSE +EMBRAYA +EMBRAYAI +EMBRAYAT +EMBRAYE +EMBRAYEE +EMBRAYER +EMBRAYEZ +EMBRELA +EMBRELAI +EMBRELAT +EMBRELE +EMBRELEE +EMBRELER +EMBRELEZ +EMBREVA +EMBREVAI +EMBREVAT +EMBREVE +EMBREVEE +EMBREVER +EMBREVEZ +EMBROCHA +EMBROCHE +EMBRUMA +EMBRUMAI +EMBRUMAT +EMBRUME +EMBRUMEE +EMBRUMER +EMBRUMEZ +EMBRUNI +EMBRUNIE +EMBRUNIR +EMBRUNIT +EMBRYON +EMBU +EMBUA +EMBUAI +EMBUAIT +EMBUANT +EMBUASSE +EMBUAT +EMBUCHE +EMBUE +EMBUEE +EMBUENT +EMBUER +EMBUERA +EMBUERAI +EMBUEREZ +EMBUEZ +EMBUIEZ +EMBUSQUA +EMBUSQUE +EMBUVEZ +EMBUVIEZ +EMECHA +EMECHAI +EMECHAIT +EMECHANT +EMECHAT +EMECHE +EMECHEE +EMECHENT +EMECHER +EMECHERA +EMECHEZ +EMECHIEZ +EMERAUDE +EMERGE +EMERGEA +EMERGEAI +EMERGEAT +EMERGENT +EMERGER +EMERGERA +EMERGEZ +EMERGIEZ +EMERI +EMERISA +EMERISAI +EMERISAT +EMERISE +EMERISEE +EMERISER +EMERISEZ +EMERITE +EMERSION +EMET +EMETINE +EMETIQUE +EMETTAIT +EMETTANT +EMETTE +EMETTENT +EMETTEUR +EMETTEZ +EMETTIEZ +EMETTRA +EMETTRAI +EMETTRE +EMETTREZ +EMEU +EMEUT +EMEUTE +EMEUTIER +EMEUVE +EMEUVENT +EMIA +EMIAI +EMIAIT +EMIANT +EMIASSE +EMIAT +EMIE +EMIEE +EMIENT +EMIER +EMIERA +EMIERAI +EMIERAIT +EMIERENT +EMIEREZ +EMIERIEZ +EMIETTA +EMIETTAI +EMIETTAT +EMIETTE +EMIETTEE +EMIETTER +EMIETTEZ +EMIEZ +EMIGRA +EMIGRAI +EMIGRAIT +EMIGRANT +EMIGRAT +EMIGRE +EMIGREE +EMIGRENT +EMIGRER +EMIGRERA +EMIGREZ +EMIGRIEZ +EMIIEZ +EMINCA +EMINCAI +EMINCAIT +EMINCANT +EMINCAT +EMINCE +EMINCEE +EMINCENT +EMINCER +EMINCERA +EMINCEZ +EMINCIEZ +EMINENCE +EMINENT +EMINENTE +EMIR +EMIRAT +EMIRENT +EMISE +EMISSE +EMISSIF +EMISSION +EMISSIVE +EMISSOLE +EMIT +EMMANCHA +EMMANCHE +EMMARGE +EMMARGEA +EMMARGEE +EMMARGER +EMMARGEZ +EMMELA +EMMELAI +EMMELAIT +EMMELANT +EMMELAT +EMMELE +EMMELEE +EMMELENT +EMMELER +EMMELERA +EMMELEZ +EMMELIEZ +EMMENA +EMMENAGE +EMMENAI +EMMENAIT +EMMENANT +EMMENAT +EMMENE +EMMENEE +EMMENENT +EMMENER +EMMENERA +EMMENEZ +EMMENIEZ +EMMENTAL +EMMERDA +EMMERDAI +EMMERDAT +EMMERDE +EMMERDEE +EMMERDER +EMMERDEZ +EMMETRA +EMMETRAI +EMMETRAT +EMMETRE +EMMETREE +EMMETRER +EMMETREZ +EMMIELLA +EMMIELLE +EMMOTTE +EMMOTTEE +EMMURA +EMMURAI +EMMURAIT +EMMURANT +EMMURAT +EMMURE +EMMUREE +EMMURENT +EMMURER +EMMURERA +EMMUREZ +EMMURIEZ +EMOI +EMONDA +EMONDAGE +EMONDAI +EMONDAIT +EMONDANT +EMONDAT +EMONDE +EMONDEE +EMONDENT +EMONDER +EMONDERA +EMONDEUR +EMONDEZ +EMONDIEZ +EMONDOIR +EMORFILA +EMORFILE +EMOTIF +EMOTION +EMOTIVE +EMOTTA +EMOTTAGE +EMOTTAI +EMOTTAIT +EMOTTANT +EMOTTAT +EMOTTE +EMOTTEE +EMOTTENT +EMOTTER +EMOTTERA +EMOTTEUR +EMOTTEZ +EMOTTIEZ +EMOU +EMOUCHA +EMOUCHAI +EMOUCHAT +EMOUCHE +EMOUCHEE +EMOUCHER +EMOUCHET +EMOUCHEZ +EMOUD +EMOUDRA +EMOUDRAI +EMOUDRE +EMOUDREZ +EMOULAGE +EMOULAIT +EMOULANT +EMOULE +EMOULENT +EMOULEUR +EMOULEZ +EMOULIEZ +EMOULU +EMOULUE +EMOULUT +EMOUSSA +EMOUSSAI +EMOUSSAT +EMOUSSE +EMOUSSEE +EMOUSSER +EMOUVAIT +EMOUVANT +EMOUVEZ +EMOUVIEZ +EMOUVOIR +EMOUVRA +EMOUVRAI +EMOUVREZ +EMPAILLA +EMPAILLE +EMPALA +EMPALAI +EMPALAIT +EMPALANT +EMPALAT +EMPALE +EMPALEE +EMPALENT +EMPALER +EMPALERA +EMPALEZ +EMPALIEZ +EMPALMA +EMPALMAI +EMPALMAT +EMPALME +EMPALMEE +EMPALMER +EMPALMEZ +EMPAN +EMPANNA +EMPANNAI +EMPANNAT +EMPANNE +EMPANNEE +EMPANNER +EMPANNEZ +EMPARE +EMPAREE +EMPARER +EMPAREZ +EMPARIEZ +EMPARQUA +EMPARQUE +EMPATA +EMPATAI +EMPATAIT +EMPATANT +EMPATAT +EMPATE +EMPATEE +EMPATENT +EMPATER +EMPATERA +EMPATEZ +EMPATHIE +EMPATIEZ +EMPATTA +EMPATTAI +EMPATTAT +EMPATTE +EMPATTEE +EMPATTER +EMPATTEZ +EMPAUMA +EMPAUMAI +EMPAUMAT +EMPAUME +EMPAUMEE +EMPAUMER +EMPAUMEZ +EMPECHA +EMPECHAI +EMPECHAT +EMPECHE +EMPECHEE +EMPECHER +EMPECHEZ +EMPEIGNA +EMPEIGNE +EMPENA +EMPENAI +EMPENAIT +EMPENANT +EMPENAT +EMPENE +EMPENEE +EMPENENT +EMPENER +EMPENERA +EMPENEZ +EMPENIEZ +EMPENNA +EMPENNAI +EMPENNAT +EMPENNE +EMPENNEE +EMPENNER +EMPENNEZ +EMPERCHA +EMPERCHE +EMPEREUR +EMPERLA +EMPERLAI +EMPERLAT +EMPERLE +EMPERLEE +EMPERLER +EMPERLEZ +EMPESA +EMPESAGE +EMPESAI +EMPESAIT +EMPESANT +EMPESAT +EMPESE +EMPESEE +EMPESENT +EMPESER +EMPESERA +EMPESEZ +EMPESIEZ +EMPESTA +EMPESTAI +EMPESTAT +EMPESTE +EMPESTEE +EMPESTER +EMPESTEZ +EMPETRA +EMPETRAI +EMPETRAT +EMPETRE +EMPETREE +EMPETRER +EMPETREZ +EMPHASE +EMPIERRA +EMPIERRE +EMPIETA +EMPIETAI +EMPIETAT +EMPIETE +EMPIETER +EMPIETEZ +EMPIFFRE +EMPILA +EMPILAGE +EMPILAI +EMPILAIT +EMPILANT +EMPILAT +EMPILE +EMPILEE +EMPILENT +EMPILER +EMPILERA +EMPILEUR +EMPILEZ +EMPILIEZ +EMPIRA +EMPIRAI +EMPIRAIT +EMPIRANT +EMPIRAT +EMPIRE +EMPIREE +EMPIRENT +EMPIRER +EMPIRERA +EMPIREZ +EMPIRIEZ +EMPLATRA +EMPLATRE +EMPLETTE +EMPLI +EMPLIE +EMPLIR +EMPLIRA +EMPLIRAI +EMPLIREZ +EMPLISSE +EMPLIT +EMPLOI +EMPLOIE +EMPLOYA +EMPLOYAI +EMPLOYAT +EMPLOYE +EMPLOYEE +EMPLOYER +EMPLOYEZ +EMPLUMA +EMPLUMAI +EMPLUMAT +EMPLUME +EMPLUMEE +EMPLUMER +EMPLUMEZ +EMPOCHA +EMPOCHAI +EMPOCHAT +EMPOCHE +EMPOCHEE +EMPOCHER +EMPOCHEZ +EMPOIGNA +EMPOIGNE +EMPOISSA +EMPOISSE +EMPORIA +EMPORIUM +EMPORT +EMPORTA +EMPORTAI +EMPORTAT +EMPORTE +EMPORTEE +EMPORTER +EMPORTEZ +EMPOTA +EMPOTAI +EMPOTAIT +EMPOTANT +EMPOTAT +EMPOTE +EMPOTEE +EMPOTENT +EMPOTER +EMPOTERA +EMPOTEZ +EMPOTIEZ +EMPREINT +EMPRESSE +EMPRISE +EMPRUNT +EMPRUNTA +EMPRUNTE +EMPUANTI +EMPUSE +EMPYEME +EMPYREE +EMUE +EMULA +EMULAI +EMULAIT +EMULANT +EMULASSE +EMULAT +EMULE +EMULEE +EMULENT +EMULER +EMULERA +EMULERAI +EMULEREZ +EMULEZ +EMULIEZ +EMULSEUR +EMULSIF +EMULSINE +EMULSION +EMULSIVE +EMURENT +EMUSSE +EMUT +ENAMOURE +ENARQUE +ENCABANA +ENCABANE +ENCADRA +ENCADRAI +ENCADRAT +ENCADRE +ENCADREE +ENCADRER +ENCADREZ +ENCAGE +ENCAGEA +ENCAGEAI +ENCAGEAT +ENCAGEE +ENCAGENT +ENCAGER +ENCAGERA +ENCAGEZ +ENCAGIEZ +ENCAISSA +ENCAISSE +ENCAN +ENCAQUA +ENCAQUAI +ENCAQUAT +ENCAQUE +ENCAQUEE +ENCAQUER +ENCAQUEZ +ENCART +ENCARTA +ENCARTAI +ENCARTAT +ENCARTE +ENCARTEE +ENCARTER +ENCARTEZ +ENCASTRA +ENCASTRE +ENCAVA +ENCAVAGE +ENCAVAI +ENCAVAIT +ENCAVANT +ENCAVAT +ENCAVE +ENCAVEE +ENCAVENT +ENCAVER +ENCAVERA +ENCAVEZ +ENCAVIEZ +ENCEINTE +ENCENSA +ENCENSAI +ENCENSAT +ENCENSE +ENCENSEE +ENCENSER +ENCENSEZ +ENCERCLA +ENCERCLE +ENCHAINA +ENCHAINE +ENCHANTA +ENCHARNA +ENCHARNE +ENCHASSA +ENCHASSE +ENCHERE +ENCHERI +ENCHERIE +ENCHERIR +ENCHERIT +ENCIRA +ENCIRAI +ENCIRAIT +ENCIRANT +ENCIRAT +ENCIRE +ENCIREE +ENCIRENT +ENCIRER +ENCIRERA +ENCIREZ +ENCIRIEZ +ENCLAVA +ENCLAVAI +ENCLAVAT +ENCLAVE +ENCLAVEE +ENCLAVER +ENCLAVEZ +ENCLIN +ENCLINE +ENCLORA +ENCLORAI +ENCLORE +ENCLOREZ +ENCLOSE +ENCLOSEZ +ENCLOT +ENCLOUA +ENCLOUAI +ENCLOUAT +ENCLOUE +ENCLOUEE +ENCLOUER +ENCLOUEZ +ENCLUME +ENCOCHA +ENCOCHAI +ENCOCHAT +ENCOCHE +ENCOCHEE +ENCOCHER +ENCOCHEZ +ENCODA +ENCODAGE +ENCODAI +ENCODAIT +ENCODANT +ENCODAT +ENCODE +ENCODEE +ENCODENT +ENCODER +ENCODERA +ENCODEUR +ENCODEZ +ENCODIEZ +ENCOFFRA +ENCOFFRE +ENCOLLA +ENCOLLAI +ENCOLLAT +ENCOLLE +ENCOLLEE +ENCOLLER +ENCOLLEZ +ENCOLURE +ENCOMBRA +ENCOMBRE +ENCONTRE +ENCORDA +ENCORDAI +ENCORDAT +ENCORDE +ENCORDEE +ENCORDER +ENCORDEZ +ENCORE +ENCORNA +ENCORNAI +ENCORNAT +ENCORNE +ENCORNEE +ENCORNER +ENCORNET +ENCORNEZ +ENCOURE +ENCOUREZ +ENCOURIR +ENCOURRA +ENCOURT +ENCOURU +ENCOURUE +ENCOURUT +ENCRA +ENCRAGE +ENCRAI +ENCRAIT +ENCRANT +ENCRASSA +ENCRASSE +ENCRAT +ENCRE +ENCREE +ENCRENT +ENCREPA +ENCREPAI +ENCREPAT +ENCREPE +ENCREPEE +ENCREPER +ENCREPEZ +ENCRER +ENCRERA +ENCRERAI +ENCREREZ +ENCREUR +ENCREZ +ENCRIER +ENCRIEZ +ENCRINE +ENCROUE +ENCROUEE +ENCROUTA +ENCROUTE +ENCUVA +ENCUVAGE +ENCUVAI +ENCUVAIT +ENCUVANT +ENCUVAT +ENCUVE +ENCUVEE +ENCUVENT +ENCUVER +ENCUVERA +ENCUVEZ +ENCUVIEZ +ENDAUBA +ENDAUBAI +ENDAUBAT +ENDAUBE +ENDAUBEE +ENDAUBER +ENDAUBEZ +ENDEMIE +ENDENTA +ENDENTAI +ENDENTAT +ENDENTE +ENDENTEE +ENDENTER +ENDENTEZ +ENDETTA +ENDETTAI +ENDETTAT +ENDETTE +ENDETTEE +ENDETTER +ENDETTEZ +ENDIABLA +ENDIABLE +ENDIGAGE +ENDIGUA +ENDIGUAI +ENDIGUAT +ENDIGUE +ENDIGUEE +ENDIGUER +ENDIGUEZ +ENDIVE +ENDOGAME +ENDOGENE +ENDOLORI +ENDORME +ENDORMEZ +ENDORMI +ENDORMIE +ENDORMIR +ENDORMIT +ENDORT +ENDOSSA +ENDOSSAI +ENDOSSAT +ENDOSSE +ENDOSSEE +ENDOSSER +ENDROIT +ENDUIRA +ENDUIRAI +ENDUIRE +ENDUIREZ +ENDUISE +ENDUISEZ +ENDUISIT +ENDUIT +ENDUITE +ENDURA +ENDURAI +ENDURAIT +ENDURANT +ENDURAT +ENDURCI +ENDURCIE +ENDURCIR +ENDURCIT +ENDURE +ENDUREE +ENDURENT +ENDURER +ENDURERA +ENDUREZ +ENDURIEZ +ENDURO +ENDYMION +ENERGIE +ENERVA +ENERVAI +ENERVAIT +ENERVANT +ENERVAT +ENERVE +ENERVEE +ENERVENT +ENERVER +ENERVERA +ENERVEZ +ENERVIEZ +ENFAITA +ENFAITAI +ENFAITAT +ENFAITE +ENFAITEE +ENFAITER +ENFAITEZ +ENFANCE +ENFANT +ENFANTA +ENFANTAI +ENFANTAT +ENFANTEE +ENFANTER +ENFANTEZ +ENFANTIN +ENFARINA +ENFARINE +ENFER +ENFERMA +ENFERMAI +ENFERMAT +ENFERME +ENFERMEE +ENFERMER +ENFERMEZ +ENFERRA +ENFERRAI +ENFERRAT +ENFERRE +ENFERREE +ENFERRER +ENFERREZ +ENFEU +ENFICHA +ENFICHAI +ENFICHAT +ENFICHE +ENFICHEE +ENFICHER +ENFICHEZ +ENFIELLA +ENFIELLE +ENFIEVRA +ENFIEVRE +ENFILA +ENFILADE +ENFILAGE +ENFILAI +ENFILAIT +ENFILANT +ENFILAT +ENFILE +ENFILEE +ENFILENT +ENFILER +ENFILERA +ENFILEUR +ENFILEZ +ENFILIEZ +ENFIN +ENFLA +ENFLAI +ENFLAIT +ENFLAMMA +ENFLAMME +ENFLANT +ENFLASSE +ENFLAT +ENFLE +ENFLECHA +ENFLECHE +ENFLEE +ENFLENT +ENFLER +ENFLERA +ENFLERAI +ENFLEREZ +ENFLEURA +ENFLEURE +ENFLEZ +ENFLIEZ +ENFLURE +ENFOIRE +ENFOIREE +ENFONCA +ENFONCAI +ENFONCAT +ENFONCE +ENFONCEE +ENFONCER +ENFONCEZ +ENFORCI +ENFORCIR +ENFORCIT +ENFOUI +ENFOUIE +ENFOUIR +ENFOUIRA +ENFOUIT +ENFOURNA +ENFOURNE +ENFREINT +ENFUI +ENFUIE +ENFUIR +ENFUIREZ +ENFUMA +ENFUMAGE +ENFUMAI +ENFUMAIT +ENFUMANT +ENFUMAT +ENFUME +ENFUMEE +ENFUMENT +ENFUMER +ENFUMERA +ENFUMEZ +ENFUMIEZ +ENFUTA +ENFUTAGE +ENFUTAI +ENFUTAIT +ENFUTANT +ENFUTAT +ENFUTE +ENFUTEE +ENFUTENT +ENFUTER +ENFUTERA +ENFUTEZ +ENFUTIEZ +ENFUYEZ +ENFUYIEZ +ENGAGE +ENGAGEA +ENGAGEAI +ENGAGEAT +ENGAGEE +ENGAGENT +ENGAGER +ENGAGERA +ENGAGEZ +ENGAGIEZ +ENGAINA +ENGAINAI +ENGAINAT +ENGAINE +ENGAINEE +ENGAINER +ENGAINEZ +ENGAMA +ENGAMAI +ENGAMAIT +ENGAMANT +ENGAMAT +ENGAME +ENGAMEE +ENGAMENT +ENGAMER +ENGAMERA +ENGAMEZ +ENGAMIEZ +ENGAVA +ENGAVAI +ENGAVAIT +ENGAVANT +ENGAVAT +ENGAVE +ENGAVEE +ENGAVENT +ENGAVER +ENGAVERA +ENGAVEZ +ENGAVIEZ +ENGEANCE +ENGELURE +ENGENDRA +ENGENDRE +ENGERBA +ENGERBAI +ENGERBAT +ENGERBE +ENGERBEE +ENGERBER +ENGERBEZ +ENGIN +ENGLACA +ENGLACAI +ENGLACAT +ENGLACE +ENGLACEE +ENGLACER +ENGLACEZ +ENGLOBA +ENGLOBAI +ENGLOBAT +ENGLOBE +ENGLOBEE +ENGLOBER +ENGLOBEZ +ENGLOUTI +ENGLUA +ENGLUAGE +ENGLUAI +ENGLUAIT +ENGLUANT +ENGLUAT +ENGLUE +ENGLUEE +ENGLUENT +ENGLUER +ENGLUERA +ENGLUEZ +ENGLUIEZ +ENGOBA +ENGOBAGE +ENGOBAI +ENGOBAIT +ENGOBANT +ENGOBAT +ENGOBE +ENGOBEE +ENGOBENT +ENGOBER +ENGOBERA +ENGOBEZ +ENGOBIEZ +ENGOMMA +ENGOMMAI +ENGOMMAT +ENGOMME +ENGOMMEE +ENGOMMER +ENGOMMEZ +ENGONCA +ENGONCAI +ENGONCAT +ENGONCE +ENGONCEE +ENGONCER +ENGONCEZ +ENGORGE +ENGORGEA +ENGORGEE +ENGORGER +ENGORGEZ +ENGOUE +ENGOUEE +ENGOUER +ENGOUEZ +ENGOUIEZ +ENGOULA +ENGOULAI +ENGOULAT +ENGOULE +ENGOULEE +ENGOULER +ENGOULEZ +ENGOURDI +ENGRAMME +ENGRANGE +ENGRAVA +ENGRAVAI +ENGRAVAT +ENGRAVE +ENGRAVEE +ENGRAVER +ENGRAVEZ +ENGRENA +ENGRENAI +ENGRENAT +ENGRENE +ENGRENEE +ENGRENER +ENGRENEZ +ENGROSSA +ENGROSSE +ENGUEULA +ENGUEULE +ENHARDI +ENHARDIE +ENHARDIR +ENHARDIT +ENHERBA +ENHERBAI +ENHERBAT +ENHERBE +ENHERBEE +ENHERBER +ENHERBEZ +ENIELLA +ENIELLAI +ENIELLAT +ENIELLE +ENIELLEE +ENIELLER +ENIELLEZ +ENIEME +ENIGME +ENIVRA +ENIVRAI +ENIVRAIT +ENIVRANT +ENIVRAT +ENIVRE +ENIVREE +ENIVRENT +ENIVRER +ENIVRERA +ENIVREZ +ENIVRIEZ +ENJAMBA +ENJAMBAI +ENJAMBAT +ENJAMBE +ENJAMBEE +ENJAMBER +ENJAMBEZ +ENJAVELA +ENJAVELE +ENJEU +ENJEUX +ENJOIGNE +ENJOINT +ENJOINTE +ENJOLA +ENJOLAI +ENJOLAIT +ENJOLANT +ENJOLAT +ENJOLE +ENJOLEE +ENJOLENT +ENJOLER +ENJOLERA +ENJOLEUR +ENJOLEZ +ENJOLIEZ +ENJOLIVA +ENJOLIVE +ENJONCA +ENJONCAI +ENJONCAT +ENJONCE +ENJONCEE +ENJONCER +ENJONCEZ +ENJOUA +ENJOUAI +ENJOUAIT +ENJOUANT +ENJOUAT +ENJOUE +ENJOUEE +ENJOUENT +ENJOUER +ENJOUERA +ENJOUEZ +ENJOUIEZ +ENJUGUA +ENJUGUAI +ENJUGUAT +ENJUGUE +ENJUGUEE +ENJUGUER +ENJUGUEZ +ENJUIVA +ENJUIVAI +ENJUIVAT +ENJUIVE +ENJUIVEE +ENJUIVER +ENJUIVEZ +ENKYSTE +ENKYSTEE +ENKYSTER +ENKYSTEZ +ENLACA +ENLACAI +ENLACAIT +ENLACANT +ENLACAT +ENLACE +ENLACEE +ENLACENT +ENLACER +ENLACERA +ENLACEZ +ENLACIEZ +ENLAIDI +ENLAIDIE +ENLAIDIR +ENLAIDIT +ENLEVA +ENLEVAGE +ENLEVAI +ENLEVAIT +ENLEVANT +ENLEVAT +ENLEVE +ENLEVEE +ENLEVENT +ENLEVER +ENLEVERA +ENLEVEZ +ENLEVIEZ +ENLEVURE +ENLIA +ENLIAI +ENLIAIT +ENLIANT +ENLIASSA +ENLIASSE +ENLIAT +ENLIE +ENLIEE +ENLIENT +ENLIER +ENLIERA +ENLIERAI +ENLIEREZ +ENLIEZ +ENLIGNA +ENLIGNAI +ENLIGNAT +ENLIGNE +ENLIGNEE +ENLIGNER +ENLIGNEZ +ENLIIEZ +ENLISA +ENLISAI +ENLISAIT +ENLISANT +ENLISAT +ENLISE +ENLISEE +ENLISENT +ENLISER +ENLISERA +ENLISEZ +ENLISIEZ +ENLUMINA +ENLUMINE +ENNEADE +ENNEIGE +ENNEIGEA +ENNEIGEE +ENNEIGER +ENNEIGEZ +ENNEMI +ENNEMIE +ENNOBLI +ENNOBLIE +ENNOBLIR +ENNOBLIT +ENNUAGE +ENNUAGEA +ENNUAGEE +ENNUAGER +ENNUAGEZ +ENNUI +ENNUIE +ENNUIENT +ENNUIERA +ENNUYA +ENNUYAI +ENNUYAIT +ENNUYANT +ENNUYAT +ENNUYE +ENNUYEE +ENNUYER +ENNUYEUX +ENNUYEZ +ENNUYIEZ +ENONCA +ENONCAI +ENONCAIT +ENONCANT +ENONCAT +ENONCE +ENONCEE +ENONCENT +ENONCER +ENONCERA +ENONCEZ +ENONCIEZ +ENORME +ENORMITE +ENOSTOSE +ENOUA +ENOUAI +ENOUAIT +ENOUANT +ENOUASSE +ENOUAT +ENOUE +ENOUEE +ENOUENT +ENOUER +ENOUERA +ENOUERAI +ENOUEREZ +ENOUEZ +ENOUIEZ +ENQUEREZ +ENQUERIR +ENQUETA +ENQUETAI +ENQUETAT +ENQUETE +ENQUETER +ENQUETEZ +ENQUISE +ENRACINA +ENRACINE +ENRAGE +ENRAGEA +ENRAGEAI +ENRAGEAT +ENRAGEE +ENRAGENT +ENRAGER +ENRAGERA +ENRAGEZ +ENRAGIEZ +ENRAIE +ENRAIERA +ENRAILLA +ENRAILLE +ENRAQUA +ENRAQUAI +ENRAQUAT +ENRAYA +ENRAYAGE +ENRAYAI +ENRAYAIT +ENRAYANT +ENRAYAT +ENRAYE +ENRAYEE +ENRAYENT +ENRAYER +ENRAYERA +ENRAYEZ +ENRAYIEZ +ENRAYOIR +ENRAYURE +ENRENA +ENRENAI +ENRENAIT +ENRENANT +ENRENAT +ENRENE +ENRENEE +ENRENENT +ENRENER +ENRENERA +ENRENEZ +ENRENIEZ +ENRHUMA +ENRHUMAI +ENRHUMAT +ENRHUME +ENRHUMEE +ENRHUMER +ENRHUMEZ +ENRICHI +ENRICHIE +ENRICHIR +ENRICHIT +ENROBA +ENROBAGE +ENROBAI +ENROBAIT +ENROBANT +ENROBAT +ENROBE +ENROBEE +ENROBENT +ENROBER +ENROBERA +ENROBEZ +ENROBIEZ +ENROCHA +ENROCHAI +ENROCHAT +ENROCHE +ENROCHEE +ENROCHER +ENROCHEZ +ENROLA +ENROLAI +ENROLAIT +ENROLANT +ENROLAT +ENROLE +ENROLEE +ENROLENT +ENROLER +ENROLERA +ENROLEUR +ENROLEZ +ENROLIEZ +ENROUA +ENROUAI +ENROUAIT +ENROUANT +ENROUAT +ENROUE +ENROUEE +ENROUENT +ENROUER +ENROUERA +ENROUEZ +ENROUIEZ +ENROULA +ENROULAI +ENROULAT +ENROULE +ENROULEE +ENROULER +ENROULEZ +ENSABLA +ENSABLAI +ENSABLAT +ENSABLE +ENSABLEE +ENSABLER +ENSABLEZ +ENSABOTA +ENSABOTE +ENSACHA +ENSACHAI +ENSACHAT +ENSACHE +ENSACHEE +ENSACHER +ENSACHEZ +ENSAUVE +ENSAUVEE +ENSAUVER +ENSAUVEZ +ENSEIGNA +ENSEIGNE +ENSEMBLE +ENSERRA +ENSERRAI +ENSERRAT +ENSERRE +ENSERREE +ENSERRER +ENSERREZ +ENSEVELI +ENSILA +ENSILAGE +ENSILAI +ENSILAIT +ENSILANT +ENSILAT +ENSILE +ENSILEE +ENSILENT +ENSILER +ENSILERA +ENSILEZ +ENSILIEZ +ENSOUFRA +ENSOUFRE +ENSOUPLE +ENSTERA +ENSTERAI +ENSTERAT +ENSTERE +ENSTEREE +ENSTERER +ENSTEREZ +ENSUITE +ENSUIVI +ENSUIVIE +ENTA +ENTABLA +ENTABLAI +ENTABLAT +ENTABLE +ENTABLEE +ENTABLER +ENTABLEZ +ENTACHA +ENTACHAI +ENTACHAT +ENTACHE +ENTACHEE +ENTACHER +ENTACHEZ +ENTAI +ENTAILLA +ENTAILLE +ENTAIT +ENTAMA +ENTAMAI +ENTAMAIT +ENTAMANT +ENTAMAT +ENTAME +ENTAMEE +ENTAMENT +ENTAMER +ENTAMERA +ENTAMEZ +ENTAMIEZ +ENTANT +ENTAQUE +ENTAQUEE +ENTAQUER +ENTAQUEZ +ENTARTRA +ENTARTRE +ENTASSA +ENTASSAI +ENTASSAT +ENTASSE +ENTASSEE +ENTASSER +ENTAT +ENTE +ENTEE +ENTEND +ENTENDE +ENTENDEZ +ENTENDIT +ENTENDRA +ENTENDRE +ENTENDU +ENTENDUE +ENTENT +ENTENTE +ENTER +ENTERA +ENTERAI +ENTERAIT +ENTERENT +ENTEREZ +ENTERIEZ +ENTERINA +ENTERINE +ENTERITE +ENTERRA +ENTERRAI +ENTERRAT +ENTERRE +ENTERREE +ENTERRER +ENTERREZ +ENTETA +ENTETAI +ENTETAIT +ENTETANT +ENTETAT +ENTETE +ENTETEE +ENTETENT +ENTETER +ENTETERA +ENTETEZ +ENTETIEZ +ENTEZ +ENTICHE +ENTICHEE +ENTICHER +ENTICHEZ +ENTIER +ENTIERE +ENTIEZ +ENTITE +ENTOILA +ENTOILAI +ENTOILAT +ENTOILE +ENTOILEE +ENTOILER +ENTOILEZ +ENTOIR +ENTOLA +ENTOLAGE +ENTOLAI +ENTOLAIT +ENTOLANT +ENTOLAT +ENTOLE +ENTOLEE +ENTOLENT +ENTOLER +ENTOLERA +ENTOLEZ +ENTOLIEZ +ENTOLOME +ENTONNA +ENTONNAI +ENTONNAT +ENTONNE +ENTONNEE +ENTONNER +ENTONNEZ +ENTORSE +ENTOUR +ENTOURA +ENTOURAI +ENTOURAT +ENTOURE +ENTOUREE +ENTOURER +ENTOUREZ +ENTRA +ENTRACTE +ENTRAI +ENTRAIDE +ENTRAIN +ENTRAINA +ENTRAINE +ENTRAIT +ENTRANT +ENTRASSE +ENTRAT +ENTRAVA +ENTRAVAI +ENTRAVAT +ENTRAVE +ENTRAVEE +ENTRAVER +ENTRAVEZ +ENTRE +ENTREE +ENTREFER +ENTREMET +ENTREMIT +ENTRENT +ENTREPOT +ENTRER +ENTRERA +ENTRERAI +ENTREREZ +ENTRESOL +ENTREVIT +ENTREVU +ENTREVUE +ENTREZ +ENTRIEZ +ENTRISME +ENTROPIE +ENTROQUE +ENTUBA +ENTUBAI +ENTUBAIT +ENTUBANT +ENTUBAT +ENTUBE +ENTUBEE +ENTUBENT +ENTUBER +ENTUBERA +ENTUBEZ +ENTUBIEZ +ENTURE +ENUCLEA +ENUCLEAI +ENUCLEAT +ENUCLEE +ENUCLEEE +ENUCLEER +ENUCLEEZ +ENUMERA +ENUMERAI +ENUMERAT +ENUMERE +ENUMEREE +ENUMERER +ENUMEREZ +ENURESIE +ENVAHI +ENVAHIE +ENVAHIR +ENVAHIRA +ENVAHIT +ENVASA +ENVASAI +ENVASAIT +ENVASANT +ENVASAT +ENVASE +ENVASEE +ENVASENT +ENVASER +ENVASERA +ENVASEZ +ENVASIEZ +ENVENIMA +ENVENIME +ENVERGE +ENVERGEA +ENVERGEE +ENVERGER +ENVERGEZ +ENVERGUA +ENVERGUE +ENVERRA +ENVERRAI +ENVERREZ +ENVIA +ENVIABLE +ENVIAI +ENVIAIT +ENVIANT +ENVIASSE +ENVIAT +ENVIDA +ENVIDAI +ENVIDAIT +ENVIDANT +ENVIDAT +ENVIDE +ENVIDEE +ENVIDENT +ENVIDER +ENVIDERA +ENVIDEZ +ENVIDIEZ +ENVIE +ENVIEE +ENVIENT +ENVIER +ENVIERA +ENVIERAI +ENVIEREZ +ENVIEUSE +ENVIEUX +ENVIEZ +ENVIIEZ +ENVINE +ENVINEE +ENVIRON +ENVISAGE +ENVOI +ENVOIE +ENVOIENT +ENVOILE +ENVOILEE +ENVOILER +ENVOILEZ +ENVOL +ENVOLE +ENVOLEE +ENVOLER +ENVOLEZ +ENVOLIEZ +ENVOUTA +ENVOUTAI +ENVOUTAT +ENVOUTE +ENVOUTEE +ENVOUTER +ENVOUTEZ +ENVOYA +ENVOYAI +ENVOYAIT +ENVOYANT +ENVOYAT +ENVOYE +ENVOYEE +ENVOYER +ENVOYEUR +ENVOYEZ +ENVOYIEZ +ENZOOTIE +ENZYME +EOCENE +EOLIEN +EOLIENNE +EOLIPILE +EOLITHE +EOSINE +EPACTE +EPAGNEUL +EPAIR +EPAISSE +EPAISSI +EPAISSIE +EPAISSIR +EPAISSIT +EPALA +EPALAI +EPALAIT +EPALANT +EPALASSE +EPALAT +EPALE +EPALEE +EPALENT +EPALER +EPALERA +EPALERAI +EPALEREZ +EPALEZ +EPALIEZ +EPAMPRA +EPAMPRAI +EPAMPRAT +EPAMPRE +EPAMPREE +EPAMPRER +EPAMPREZ +EPANCHA +EPANCHAI +EPANCHAT +EPANCHE +EPANCHEE +EPANCHER +EPANCHEZ +EPAND +EPANDAGE +EPANDAIT +EPANDANT +EPANDE +EPANDENT +EPANDEUR +EPANDEZ +EPANDIEZ +EPANDIT +EPANDRA +EPANDRAI +EPANDRE +EPANDREZ +EPANDU +EPANDUE +EPANNA +EPANNAI +EPANNAIT +EPANNANT +EPANNAT +EPANNE +EPANNEE +EPANNELA +EPANNELE +EPANNENT +EPANNER +EPANNERA +EPANNEZ +EPANNIEZ +EPANOUI +EPANOUIE +EPANOUIR +EPANOUIT +EPAR +EPARCHIE +EPARGNA +EPARGNAI +EPARGNAT +EPARGNE +EPARGNEE +EPARGNER +EPARGNEZ +EPARQUE +EPARSE +EPATA +EPATAI +EPATAIT +EPATANT +EPATASSE +EPATAT +EPATE +EPATEE +EPATENT +EPATER +EPATERA +EPATERAI +EPATEREZ +EPATEUR +EPATEUSE +EPATEZ +EPATIEZ +EPAUFRA +EPAUFRAI +EPAUFRAT +EPAUFRE +EPAUFREE +EPAUFRER +EPAUFREZ +EPAULA +EPAULAI +EPAULAIT +EPAULANT +EPAULARD +EPAULAT +EPAULE +EPAULEE +EPAULENT +EPAULER +EPAULERA +EPAULEZ +EPAULIEZ +EPAVE +EPEAUTRE +EPEE +EPEICHE +EPEIRE +EPEISME +EPEISTE +EPELA +EPELAI +EPELAIT +EPELANT +EPELASSE +EPELAT +EPELE +EPELEE +EPELER +EPELEZ +EPELIEZ +EPELLE +EPELLENT +EPELLERA +EPENDYME +EPEPINA +EPEPINAI +EPEPINAT +EPEPINE +EPEPINEE +EPEPINER +EPEPINEZ +EPERDEZ +EPERDIEZ +EPERDRE +EPERDREZ +EPERDU +EPERDUE +EPERLAN +EPERON +EPERONNA +EPERONNE +EPERVIER +EPERVIN +EPEULA +EPEULAI +EPEULAIT +EPEULANT +EPEULAT +EPEULE +EPEULEE +EPEULENT +EPEULER +EPEULERA +EPEULEZ +EPEULIEZ +EPEURA +EPEURAI +EPEURAIT +EPEURANT +EPEURAT +EPEURE +EPEUREE +EPEURENT +EPEURER +EPEURERA +EPEUREZ +EPEURIEZ +EPHEBE +EPHEMERE +EPHOD +EPHORE +EPIA +EPIAGE +EPIAI +EPIAIRE +EPIAISON +EPIAIT +EPIANT +EPIASSE +EPIAT +EPICA +EPICAI +EPICAIT +EPICANT +EPICARPE +EPICASSE +EPICAT +EPICE +EPICEA +EPICEE +EPICENE +EPICENT +EPICER +EPICERA +EPICERAI +EPICEREZ +EPICERIE +EPICEZ +EPICIER +EPICIERE +EPICIEZ +EPICYCLE +EPIDEMIE +EPIDERME +EPIE +EPIEE +EPIENT +EPIER +EPIERA +EPIERAI +EPIERAIT +EPIERENT +EPIEREZ +EPIERIEZ +EPIERRA +EPIERRAI +EPIERRAT +EPIERRE +EPIERREE +EPIERRER +EPIERREZ +EPIEU +EPIEUR +EPIEUSE +EPIEUX +EPIEZ +EPIGE +EPIGEE +EPIGONE +EPIGYNE +EPIIEZ +EPILA +EPILAI +EPILAIT +EPILANT +EPILASSE +EPILAT +EPILE +EPILEE +EPILENT +EPILER +EPILERA +EPILERAI +EPILEREZ +EPILEZ +EPILIEZ +EPILLET +EPILOBE +EPILOGUA +EPILOGUE +EPINA +EPINAI +EPINAIT +EPINANT +EPINARD +EPINASSE +EPINAT +EPINCA +EPINCAI +EPINCAIT +EPINCANT +EPINCAT +EPINCE +EPINCEE +EPINCELA +EPINCELE +EPINCENT +EPINCER +EPINCERA +EPINCETA +EPINCETE +EPINCEZ +EPINCIEZ +EPINE +EPINEE +EPINENT +EPINER +EPINERA +EPINERAI +EPINEREZ +EPINETTE +EPINEUSE +EPINEUX +EPINEZ +EPINGLA +EPINGLAI +EPINGLAT +EPINGLE +EPINGLEE +EPINGLER +EPINGLEZ +EPINIER +EPINIERE +EPINIEZ +EPINOCHE +EPIPHANE +EPIPHYSE +EPIPHYTE +EPIPLOON +EPIQUE +EPISCOPE +EPISODE +EPISSA +EPISSAI +EPISSAIT +EPISSANT +EPISSAT +EPISSE +EPISSEE +EPISSER +EPISSERA +EPISSOIR +EPISSURE +EPISTYLE +EPITAPHE +EPITE +EPITHEME +EPITHETE +EPITOGE +EPITOME +EPITRE +EPLOIE +EPLOIENT +EPLOIERA +EPLORE +EPLOREE +EPLOYA +EPLOYAI +EPLOYAIT +EPLOYANT +EPLOYAT +EPLOYE +EPLOYEE +EPLOYER +EPLOYEZ +EPLOYIEZ +EPLUCHA +EPLUCHAI +EPLUCHAT +EPLUCHE +EPLUCHEE +EPLUCHER +EPLUCHEZ +EPODE +EPOINTA +EPOINTAI +EPOINTAT +EPOINTE +EPOINTEE +EPOINTER +EPOINTEZ +EPONGE +EPONGEA +EPONGEAI +EPONGEAT +EPONGEE +EPONGENT +EPONGER +EPONGERA +EPONGEZ +EPONGIEZ +EPONTE +EPONYME +EPONYMIE +EPOPEE +EPOQUE +EPOUILLA +EPOUILLE +EPOUMONA +EPOUMONE +EPOUSA +EPOUSAI +EPOUSAIT +EPOUSANT +EPOUSAT +EPOUSE +EPOUSEE +EPOUSENT +EPOUSER +EPOUSERA +EPOUSEUR +EPOUSEZ +EPOUSIEZ +EPOUTI +EPOUTIA +EPOUTIAI +EPOUTIAT +EPOUTIE +EPOUTIEE +EPOUTIER +EPOUTIEZ +EPOUTIR +EPOUTIRA +EPOUTIT +EPOUX +EPREIGNE +EPREINT +EPREINTE +EPRENDRE +EPRENEZ +EPRENIEZ +EPREUVE +EPRIRENT +EPRISE +EPROUVA +EPROUVAI +EPROUVAT +EPROUVE +EPROUVEE +EPROUVER +EPROUVEZ +EPSILON +EPSOMITE +EPUCA +EPUCAI +EPUCAIT +EPUCANT +EPUCASSE +EPUCAT +EPUCE +EPUCEE +EPUCENT +EPUCER +EPUCERA +EPUCERAI +EPUCEREZ +EPUCEZ +EPUCIEZ +EPUISA +EPUISAI +EPUISAIT +EPUISANT +EPUISAT +EPUISE +EPUISEE +EPUISENT +EPUISER +EPUISERA +EPUISEZ +EPUISIEZ +EPULIDE +EPULIE +EPULON +EPULPEUR +EPURA +EPURAI +EPURAIT +EPURANT +EPURASSE +EPURAT +EPURATIF +EPURE +EPUREE +EPURENT +EPURER +EPURERA +EPURERAI +EPUREREZ +EPUREZ +EPURGE +EPURIEZ +EQUARRI +EQUARRIE +EQUARRIR +EQUARRIT +EQUATEUR +EQUATION +EQUERRA +EQUERRAI +EQUERRAT +EQUERRE +EQUERREE +EQUERRER +EQUERREZ +EQUESTRE +EQUEUTA +EQUEUTAI +EQUEUTAT +EQUEUTE +EQUEUTEE +EQUEUTER +EQUEUTEZ +EQUIDE +EQUILLE +EQUIN +EQUINE +EQUINOXE +EQUIPA +EQUIPAGE +EQUIPAI +EQUIPAIT +EQUIPANT +EQUIPAT +EQUIPE +EQUIPEE +EQUIPENT +EQUIPER +EQUIPERA +EQUIPEZ +EQUIPIER +EQUIPIEZ +EQUIPOLE +EQUITANT +EQUITE +EQUIVALU +EQUIVAUT +ERABLE +ERADIQUA +ERADIQUE +ERAFLA +ERAFLAI +ERAFLAIT +ERAFLANT +ERAFLAT +ERAFLE +ERAFLEE +ERAFLENT +ERAFLER +ERAFLERA +ERAFLEZ +ERAFLIEZ +ERAFLURE +ERAIE +ERAIERA +ERAIERAI +ERAIEREZ +ERAILLA +ERAILLAI +ERAILLAT +ERAILLE +ERAILLEE +ERAILLER +ERAILLEZ +ERAYA +ERAYAI +ERAYAIT +ERAYANT +ERAYASSE +ERAYAT +ERAYE +ERAYEE +ERAYENT +ERAYER +ERAYERA +ERAYERAI +ERAYEREZ +ERAYEZ +ERAYIEZ +ERBINE +ERBIUM +ERECTEUR +ERECTILE +ERECTION +EREINTA +EREINTAI +EREINTAT +EREINTE +EREINTEE +EREINTER +EREINTEZ +EREPSINE +ERGONOME +ERGOT +ERGOTA +ERGOTAGE +ERGOTAI +ERGOTAIT +ERGOTANT +ERGOTAT +ERGOTE +ERGOTENT +ERGOTER +ERGOTERA +ERGOTEUR +ERGOTEZ +ERGOTIEZ +ERGOTINE +ERIGE +ERIGEA +ERIGEAI +ERIGEAIT +ERIGEANT +ERIGEAT +ERIGEE +ERIGENT +ERIGER +ERIGERA +ERIGERAI +ERIGEREZ +ERIGERON +ERIGEZ +ERIGIEZ +ERIGNE +ERINE +ERISTALE +ERMITAGE +ERMITE +ERODA +ERODAI +ERODAIT +ERODANT +ERODASSE +ERODAT +ERODE +ERODEE +ERODENT +ERODER +ERODERA +ERODERAI +ERODEREZ +ERODEZ +ERODIEZ +EROGENE +EROSIF +EROSION +EROSIVE +EROTIQUE +EROTISA +EROTISAI +EROTISAT +EROTISE +EROTISEE +EROTISER +EROTISEZ +EROTISME +ERRA +ERRAI +ERRAIT +ERRANCE +ERRANT +ERRASSE +ERRAT +ERRATA +ERRATUM +ERRE +ERRENT +ERRER +ERRERA +ERRERAI +ERRERAIT +ERRERENT +ERREREZ +ERRERIEZ +ERREUR +ERREZ +ERRIEZ +ERRONE +ERRONEE +ERSATZ +ERSEAU +ERUCTA +ERUCTAI +ERUCTAIT +ERUCTANT +ERUCTAT +ERUCTE +ERUCTEE +ERUCTENT +ERUCTER +ERUCTERA +ERUCTEZ +ERUCTIEZ +ERUDIT +ERUDITE +ERUPTIF +ERUPTION +ERUPTIVE +ERYTHEME +ESBAUDI +ESBAUDIE +ESBAUDIR +ESBIGNE +ESBIGNEE +ESBIGNER +ESBIGNEZ +ESBROUFA +ESBROUFE +ESCABEAU +ESCADRE +ESCADRON +ESCALADA +ESCALADE +ESCALE +ESCALIER +ESCALOPE +ESCAMOTA +ESCAMOTE +ESCAPADE +ESCAPE +ESCARBOT +ESCARGOT +ESCAROLE +ESCARPE +ESCARPEE +ESCARPIN +ESCARRE +ESCHA +ESCHAI +ESCHAIT +ESCHANT +ESCHASSE +ESCHAT +ESCHE +ESCHEE +ESCHENT +ESCHER +ESCHERA +ESCHERAI +ESCHEREZ +ESCHEZ +ESCHIEZ +ESCIENT +ESCLAFFE +ESCLAVE +ESCLAVON +ESCOBAR +ESCOMPTA +ESCOMPTE +ESCORTA +ESCORTAI +ESCORTAT +ESCORTE +ESCORTEE +ESCORTER +ESCORTEZ +ESCOT +ESCOUADE +ESCRIME +ESCRIMEE +ESCRIMER +ESCRIMEZ +ESCROC +ESCROQUA +ESCROQUE +ESCUDO +ESCULAPE +ESCULINE +ESERINE +ESGOURDE +ESPACA +ESPACAI +ESPACAIT +ESPACANT +ESPACAT +ESPACE +ESPACEE +ESPACENT +ESPACER +ESPACERA +ESPACEZ +ESPACIEZ +ESPADA +ESPADON +ESPAGNOL +ESPALIER +ESPAR +ESPARCET +ESPECE +ESPERA +ESPERAI +ESPERAIT +ESPERANT +ESPERAT +ESPERE +ESPEREE +ESPERENT +ESPERER +ESPERERA +ESPEREZ +ESPERIEZ +ESPIEGLE +ESPION +ESPIONNA +ESPIONNE +ESPOIR +ESPOLINA +ESPOLINE +ESPONTON +ESPRIT +ESQUARRE +ESQUIF +ESQUILLE +ESQUIMAU +ESQUINTA +ESQUINTE +ESQUIRE +ESQUISSA +ESQUISSE +ESQUIVA +ESQUIVAI +ESQUIVAT +ESQUIVE +ESQUIVEE +ESQUIVER +ESQUIVEZ +ESSAI +ESSAIE +ESSAIERA +ESSAIM +ESSAIMA +ESSAIMAI +ESSAIMAT +ESSAIME +ESSAIMER +ESSAIMEZ +ESSANGE +ESSANGEA +ESSANGEE +ESSANGER +ESSANGEZ +ESSART +ESSARTA +ESSARTAI +ESSARTAT +ESSARTE +ESSARTEE +ESSARTER +ESSARTEZ +ESSAYA +ESSAYAGE +ESSAYAI +ESSAYAIT +ESSAYANT +ESSAYAT +ESSAYE +ESSAYEE +ESSAYENT +ESSAYER +ESSAYERA +ESSAYEUR +ESSAYEZ +ESSAYIEZ +ESSE +ESSENCE +ESSEULE +ESSEULEE +ESSIEU +ESSIEUX +ESSOR +ESSORA +ESSORAGE +ESSORAI +ESSORAIT +ESSORANT +ESSORAT +ESSORE +ESSOREE +ESSORENT +ESSORER +ESSORERA +ESSOREZ +ESSORIEZ +ESSOUCHA +ESSOUCHE +ESSUIE +ESSUIENT +ESSUIERA +ESSUYA +ESSUYAGE +ESSUYAI +ESSUYAIT +ESSUYANT +ESSUYAT +ESSUYE +ESSUYEE +ESSUYER +ESSUYEUR +ESSUYEZ +ESSUYIEZ +ESTACADE +ESTAFIER +ESTAGNON +ESTAMPA +ESTAMPAI +ESTAMPAT +ESTAMPE +ESTAMPEE +ESTAMPER +ESTAMPEZ +ESTANCIA +ESTARIE +ESTER +ESTERLIN +ESTHESIE +ESTHETE +ESTIMA +ESTIMAI +ESTIMAIT +ESTIMANT +ESTIMAT +ESTIME +ESTIMEE +ESTIMENT +ESTIMER +ESTIMERA +ESTIMEZ +ESTIMIEZ +ESTIVA +ESTIVAGE +ESTIVAI +ESTIVAIT +ESTIVAL +ESTIVALE +ESTIVANT +ESTIVAT +ESTIVE +ESTIVEE +ESTIVENT +ESTIVER +ESTIVERA +ESTIVEZ +ESTIVIEZ +ESTOC +ESTOCADE +ESTOMAC +ESTOMPA +ESTOMPAI +ESTOMPAT +ESTOMPE +ESTOMPEE +ESTOMPER +ESTOMPEZ +ESTONIEN +ESTOQUA +ESTOQUAI +ESTOQUAT +ESTOQUE +ESTOQUEE +ESTOQUER +ESTOQUEZ +ESTOURBI +ESTRADE +ESTRAGON +ESTRAN +ESTROPE +ESTROPIA +ESTROPIE +ESTUAIRE +ETABLA +ETABLAI +ETABLAIT +ETABLANT +ETABLAT +ETABLE +ETABLEE +ETABLENT +ETABLER +ETABLERA +ETABLEZ +ETABLI +ETABLIE +ETABLIEZ +ETABLIR +ETABLIRA +ETABLIT +ETAGE +ETAGEA +ETAGEAI +ETAGEAIT +ETAGEANT +ETAGEAT +ETAGEE +ETAGENT +ETAGER +ETAGERA +ETAGERAI +ETAGERE +ETAGEREZ +ETAGEZ +ETAGIEZ +ETAI +ETAIE +ETAIERA +ETAIERAI +ETAIEREZ +ETAIN +ETAIT +ETAL +ETALA +ETALAGE +ETALAGEA +ETALAGEE +ETALAGER +ETALAGEZ +ETALAI +ETALAIT +ETALANT +ETALASSE +ETALAT +ETALE +ETALEE +ETALENT +ETALER +ETALERA +ETALERAI +ETALEREZ +ETALEUSE +ETALEZ +ETALIER +ETALIERE +ETALIEZ +ETALISA +ETALISAI +ETALISAT +ETALISE +ETALISER +ETALISEZ +ETALON +ETALONNA +ETALONNE +ETAMA +ETAMAGE +ETAMAI +ETAMAIT +ETAMANT +ETAMASSE +ETAMAT +ETAMBOT +ETAMBRAI +ETAME +ETAMEE +ETAMENT +ETAMER +ETAMERA +ETAMERAI +ETAMEREZ +ETAMEUR +ETAMEZ +ETAMIEZ +ETAMINE +ETAMPA +ETAMPAGE +ETAMPAI +ETAMPAIT +ETAMPANT +ETAMPAT +ETAMPE +ETAMPEE +ETAMPENT +ETAMPER +ETAMPERA +ETAMPEUR +ETAMPEZ +ETAMPIEZ +ETAMPURE +ETAMURE +ETANCHA +ETANCHAI +ETANCHAT +ETANCHE +ETANCHEE +ETANCHER +ETANCHEZ +ETANCON +ETANG +ETANT +ETAPE +ETARQUA +ETARQUAI +ETARQUAT +ETARQUE +ETARQUEE +ETARQUER +ETARQUEZ +ETAT +ETATIQUE +ETATISME +ETATISTE +ETAU +ETAYA +ETAYAGE +ETAYAI +ETAYAIT +ETAYANT +ETAYASSE +ETAYAT +ETAYE +ETAYEE +ETAYENT +ETAYER +ETAYERA +ETAYERAI +ETAYEREZ +ETAYEZ +ETAYIEZ +ETEIGNE +ETEIGNEZ +ETEIGNIT +ETEINDRA +ETEINDRE +ETEINT +ETEINTE +ETEND +ETENDAGE +ETENDAIT +ETENDANT +ETENDARD +ETENDE +ETENDENT +ETENDEZ +ETENDIEZ +ETENDIT +ETENDOIR +ETENDRA +ETENDRAI +ETENDRE +ETENDREZ +ETENDU +ETENDUE +ETERNEL +ETERNISA +ETERNISE +ETERNITE +ETERNUA +ETERNUAI +ETERNUAT +ETERNUE +ETERNUER +ETERNUEZ +ETESIEN +ETETA +ETETAGE +ETETAI +ETETAIT +ETETANT +ETETASSE +ETETAT +ETETE +ETETEE +ETETENT +ETETER +ETETERA +ETETERAI +ETETEREZ +ETETEZ +ETETIEZ +ETEUF +ETEULE +ETHANE +ETHER +ETHERE +ETHEREE +ETHERISA +ETHERISE +ETHIQUE +ETHNIE +ETHNIQUE +ETHUSE +ETHYLE +ETHYLENE +ETIAGE +ETIER +ETIEZ +ETINCELA +ETINCELE +ETIOLA +ETIOLAI +ETIOLAIT +ETIOLANT +ETIOLAT +ETIOLE +ETIOLEE +ETIOLENT +ETIOLER +ETIOLERA +ETIOLEZ +ETIOLIEZ +ETIQUE +ETIQUETA +ETIQUETE +ETIRA +ETIRABLE +ETIRAGE +ETIRAI +ETIRAIT +ETIRANT +ETIRASSE +ETIRAT +ETIRE +ETIREE +ETIRENT +ETIRER +ETIRERA +ETIRERAI +ETIREREZ +ETIREUR +ETIREUSE +ETIREZ +ETIRIEZ +ETISIE +ETOC +ETOFFA +ETOFFAI +ETOFFAIT +ETOFFANT +ETOFFAT +ETOFFE +ETOFFEE +ETOFFENT +ETOFFER +ETOFFERA +ETOFFEZ +ETOFFIEZ +ETOILA +ETOILAI +ETOILAIT +ETOILANT +ETOILAT +ETOILE +ETOILEE +ETOILENT +ETOILER +ETOILERA +ETOILEZ +ETOILIEZ +ETOLE +ETONNA +ETONNAI +ETONNAIT +ETONNANT +ETONNAT +ETONNE +ETONNEE +ETONNENT +ETONNER +ETONNERA +ETONNEZ +ETONNIEZ +ETOUFFA +ETOUFFAI +ETOUFFAT +ETOUFFE +ETOUFFEE +ETOUFFER +ETOUFFEZ +ETOUPA +ETOUPAI +ETOUPAIT +ETOUPANT +ETOUPAT +ETOUPE +ETOUPEE +ETOUPENT +ETOUPER +ETOUPERA +ETOUPEZ +ETOUPIEZ +ETOURDI +ETOURDIE +ETOURDIR +ETOURDIT +ETRANGE +ETRANGER +ETRANGLA +ETRANGLE +ETRAVE +ETRE +ETRECI +ETRECIE +ETRECIR +ETRECIRA +ETRECIT +ETREIGNE +ETREINT +ETREINTE +ETRENNA +ETRENNAI +ETRENNAT +ETRENNE +ETRENNEE +ETRENNER +ETRENNEZ +ETRIER +ETRILLA +ETRILLAI +ETRILLAT +ETRILLE +ETRILLEE +ETRILLER +ETRILLEZ +ETRIPA +ETRIPAGE +ETRIPAI +ETRIPAIT +ETRIPANT +ETRIPAT +ETRIPE +ETRIPEE +ETRIPENT +ETRIPER +ETRIPERA +ETRIPEZ +ETRIPIEZ +ETRIQUA +ETRIQUAI +ETRIQUAT +ETRIQUE +ETRIQUEE +ETRIQUER +ETRIQUEZ +ETRIVE +ETROIT +ETROITE +ETRON +ETRUSQUE +ETUDE +ETUDIA +ETUDIAI +ETUDIAIT +ETUDIANT +ETUDIAT +ETUDIE +ETUDIEE +ETUDIENT +ETUDIER +ETUDIERA +ETUDIEZ +ETUDIIEZ +ETUI +ETUVA +ETUVAGE +ETUVAI +ETUVAIT +ETUVANT +ETUVASSE +ETUVAT +ETUVE +ETUVEE +ETUVENT +ETUVER +ETUVERA +ETUVERAI +ETUVEREZ +ETUVEUR +ETUVEUSE +ETUVEZ +ETUVIEZ +ETYMON +EUCOLOGE +EUDISTE +EUGENATE +EUGLENE +EUNECTE +EUNUQUE +EUPHONIE +EUPHORBE +EUPHORIE +EURASIEN +EUREKA +EURENT +EURO +EUROPEEN +EUROPIUM +EUSSE +EUSTACHE +EUTEXIE +EVACUA +EVACUAI +EVACUAIT +EVACUANT +EVACUAT +EVACUE +EVACUEE +EVACUENT +EVACUER +EVACUERA +EVACUEZ +EVACUIEZ +EVADE +EVADEE +EVADER +EVADEREZ +EVADEZ +EVADIEZ +EVALUA +EVALUAI +EVALUAIT +EVALUANT +EVALUAT +EVALUE +EVALUEE +EVALUENT +EVALUER +EVALUERA +EVALUEZ +EVALUIEZ +EVANGILE +EVANOUI +EVANOUIE +EVANOUIR +EVAPORA +EVAPORAI +EVAPORAT +EVAPORE +EVAPOREE +EVAPORER +EVAPOREZ +EVASA +EVASAI +EVASAIT +EVASANT +EVASASSE +EVASAT +EVASE +EVASEE +EVASENT +EVASER +EVASERA +EVASERAI +EVASEREZ +EVASEZ +EVASIEZ +EVASIF +EVASION +EVASIVE +EVASURE +EVECHE +EVECTION +EVEIL +EVEILLA +EVEILLAI +EVEILLAT +EVEILLE +EVEILLEE +EVEILLER +EVEILLEZ +EVENT +EVENTA +EVENTAI +EVENTAIL +EVENTAIT +EVENTANT +EVENTAT +EVENTE +EVENTEE +EVENTENT +EVENTER +EVENTERA +EVENTEZ +EVENTIEZ +EVENTRA +EVENTRAI +EVENTRAT +EVENTRE +EVENTREE +EVENTRER +EVENTREZ +EVENTUEL +EVEQUE +EVERTUEE +EVERTUER +EVERTUEZ +EVICTION +EVIDA +EVIDAGE +EVIDAI +EVIDAIT +EVIDANT +EVIDASSE +EVIDAT +EVIDE +EVIDEE +EVIDENCE +EVIDENT +EVIDENTE +EVIDER +EVIDERA +EVIDERAI +EVIDEREZ +EVIDEZ +EVIDIEZ +EVIER +EVINCA +EVINCAI +EVINCAIT +EVINCANT +EVINCAT +EVINCE +EVINCEE +EVINCENT +EVINCER +EVINCERA +EVINCEZ +EVINCIEZ +EVISCERA +EVISCERE +EVITA +EVITABLE +EVITAGE +EVITAI +EVITAIT +EVITANT +EVITASSE +EVITAT +EVITE +EVITEE +EVITENT +EVITER +EVITERA +EVITERAI +EVITEREZ +EVITEZ +EVITIEZ +EVOCABLE +EVOHE +EVOLUA +EVOLUAI +EVOLUAIT +EVOLUANT +EVOLUAT +EVOLUE +EVOLUEE +EVOLUENT +EVOLUER +EVOLUERA +EVOLUEZ +EVOLUIEZ +EVOLUTIF +EVOQUA +EVOQUAI +EVOQUAIT +EVOQUANT +EVOQUAT +EVOQUE +EVOQUEE +EVOQUENT +EVOQUER +EVOQUERA +EVOQUEZ +EVOQUIEZ +EVZONE +EXACERBA +EXACERBE +EXACT +EXACTE +EXACTION +EXAGERA +EXAGERAI +EXAGERAT +EXAGERE +EXAGEREE +EXAGERER +EXAGEREZ +EXALTA +EXALTAI +EXALTAIT +EXALTANT +EXALTAT +EXALTE +EXALTEE +EXALTENT +EXALTER +EXALTERA +EXALTEZ +EXALTIEZ +EXAMEN +EXAMINA +EXAMINAI +EXAMINAT +EXAMINE +EXAMINEE +EXAMINER +EXAMINEZ +EXARCHAT +EXARQUE +EXASPERA +EXASPERE +EXAUCA +EXAUCAI +EXAUCAIT +EXAUCANT +EXAUCAT +EXAUCE +EXAUCEE +EXAUCENT +EXAUCER +EXAUCERA +EXAUCEZ +EXAUCIEZ +EXCAVA +EXCAVAI +EXCAVAIT +EXCAVANT +EXCAVAT +EXCAVE +EXCAVEE +EXCAVENT +EXCAVER +EXCAVERA +EXCAVEZ +EXCAVIEZ +EXCEDA +EXCEDAI +EXCEDAIT +EXCEDANT +EXCEDAT +EXCEDE +EXCEDEE +EXCEDENT +EXCEDER +EXCEDERA +EXCEDEZ +EXCEDIEZ +EXCELLA +EXCELLAI +EXCELLAT +EXCELLE +EXCELLER +EXCELLEZ +EXCENTRA +EXCENTRE +EXCEPTA +EXCEPTAI +EXCEPTAT +EXCEPTE +EXCEPTEE +EXCEPTER +EXCEPTEZ +EXCESSIF +EXCIPA +EXCIPAI +EXCIPAIT +EXCIPANT +EXCIPAT +EXCIPE +EXCIPEE +EXCIPENT +EXCIPER +EXCIPERA +EXCIPEZ +EXCIPIEZ +EXCISA +EXCISAI +EXCISAIT +EXCISANT +EXCISAT +EXCISE +EXCISEE +EXCISENT +EXCISER +EXCISERA +EXCISEZ +EXCISIEZ +EXCISION +EXCITA +EXCITAI +EXCITAIT +EXCITANT +EXCITAT +EXCITE +EXCITEE +EXCITENT +EXCITER +EXCITERA +EXCITEZ +EXCITIEZ +EXCLAME +EXCLAMEE +EXCLAMER +EXCLAMEZ +EXCLU +EXCLUAIT +EXCLUANT +EXCLUE +EXCLUENT +EXCLUEZ +EXCLUIEZ +EXCLURA +EXCLURAI +EXCLURE +EXCLUREZ +EXCLUSIF +EXCLUSSE +EXCLUT +EXCORIA +EXCORIAI +EXCORIAT +EXCORIE +EXCORIEE +EXCORIER +EXCORIEZ +EXCRETA +EXCRETAI +EXCRETAT +EXCRETE +EXCRETEE +EXCRETER +EXCRETEZ +EXCUSA +EXCUSAI +EXCUSAIT +EXCUSANT +EXCUSAT +EXCUSE +EXCUSEE +EXCUSENT +EXCUSER +EXCUSERA +EXCUSEZ +EXCUSIEZ +EXECRA +EXECRAI +EXECRAIT +EXECRANT +EXECRAT +EXECRE +EXECREE +EXECRENT +EXECRER +EXECRERA +EXECREZ +EXECRIEZ +EXECUTA +EXECUTAI +EXECUTAT +EXECUTE +EXECUTEE +EXECUTER +EXECUTEZ +EXECUTIF +EXEDRE +EXEGESE +EXEGETE +EXEMPLE +EXEMPT +EXEMPTA +EXEMPTAI +EXEMPTAT +EXEMPTE +EXEMPTEE +EXEMPTER +EXEMPTEZ +EXERCA +EXERCAI +EXERCAIT +EXERCANT +EXERCAT +EXERCE +EXERCEE +EXERCENT +EXERCER +EXERCERA +EXERCEZ +EXERCICE +EXERCIEZ +EXERGUE +EXFOLIA +EXFOLIAI +EXFOLIAT +EXFOLIE +EXFOLIEE +EXFOLIER +EXFOLIEZ +EXHALA +EXHALAI +EXHALAIT +EXHALANT +EXHALAT +EXHALE +EXHALEE +EXHALENT +EXHALER +EXHALERA +EXHALEZ +EXHALIEZ +EXHAURE +EXHAUSSA +EXHAUSSE +EXHEREDA +EXHEREDE +EXHIBA +EXHIBAI +EXHIBAIT +EXHIBANT +EXHIBAT +EXHIBE +EXHIBEE +EXHIBENT +EXHIBER +EXHIBERA +EXHIBEZ +EXHIBIEZ +EXHORTA +EXHORTAI +EXHORTAT +EXHORTE +EXHORTEE +EXHORTER +EXHORTEZ +EXHUMA +EXHUMAI +EXHUMAIT +EXHUMANT +EXHUMAT +EXHUME +EXHUMEE +EXHUMENT +EXHUMER +EXHUMERA +EXHUMEZ +EXHUMIEZ +EXIGE +EXIGEA +EXIGEAI +EXIGEAIT +EXIGEANT +EXIGEAT +EXIGEE +EXIGENCE +EXIGENT +EXIGER +EXIGERA +EXIGERAI +EXIGEREZ +EXIGEZ +EXIGIBLE +EXIGIEZ +EXIGU +EXIGUE +EXIGUITE +EXIL +EXILA +EXILAI +EXILAIT +EXILANT +EXILASSE +EXILAT +EXILE +EXILEE +EXILENT +EXILER +EXILERA +EXILERAI +EXILEREZ +EXILEZ +EXILIEZ +EXISTA +EXISTAI +EXISTAIT +EXISTANT +EXISTAT +EXISTE +EXISTENT +EXISTER +EXISTERA +EXISTEZ +EXISTIEZ +EXIT +EXOCET +EXOCRINE +EXODE +EXOGAME +EXOGAMIE +EXOGENE +EXONDE +EXONDEE +EXONDER +EXONDEZ +EXONDIEZ +EXONERA +EXONERAI +EXONERAT +EXONERE +EXONEREE +EXONERER +EXONEREZ +EXORBITE +EXORCISA +EXORCISE +EXORDE +EXOSMOSE +EXOSTOSE +EXOTIQUE +EXOTISME +EXPANSE +EXPANSEE +EXPANSIF +EXPATRIA +EXPATRIE +EXPEDIA +EXPEDIAI +EXPEDIAT +EXPEDIE +EXPEDIEE +EXPEDIER +EXPEDIEZ +EXPERT +EXPERTE +EXPIA +EXPIABLE +EXPIAI +EXPIAIT +EXPIANT +EXPIASSE +EXPIAT +EXPIE +EXPIEE +EXPIENT +EXPIER +EXPIERA +EXPIERAI +EXPIEREZ +EXPIEZ +EXPIIEZ +EXPIRA +EXPIRAI +EXPIRAIT +EXPIRANT +EXPIRAT +EXPIRE +EXPIREE +EXPIRENT +EXPIRER +EXPIRERA +EXPIREZ +EXPIRIEZ +EXPLETIF +EXPLIQUA +EXPLIQUE +EXPLOIT +EXPLOITA +EXPLOITE +EXPLORA +EXPLORAI +EXPLORAT +EXPLORE +EXPLOREE +EXPLORER +EXPLOREZ +EXPLOSA +EXPLOSAI +EXPLOSAT +EXPLOSE +EXPLOSER +EXPLOSEZ +EXPLOSIF +EXPORTA +EXPORTAI +EXPORTAT +EXPORTE +EXPORTEE +EXPORTER +EXPORTEZ +EXPOSA +EXPOSAI +EXPOSAIT +EXPOSANT +EXPOSAT +EXPOSE +EXPOSEE +EXPOSENT +EXPOSER +EXPOSERA +EXPOSEZ +EXPOSIEZ +EXPRESSE +EXPRIMA +EXPRIMAI +EXPRIMAT +EXPRIME +EXPRIMEE +EXPRIMER +EXPRIMEZ +EXPULSA +EXPULSAI +EXPULSAT +EXPULSE +EXPULSEE +EXPULSER +EXPULSEZ +EXPURGE +EXPURGEA +EXPURGEE +EXPURGER +EXPURGEZ +EXQUISE +EXSANGUE +EXSUDA +EXSUDAI +EXSUDAIT +EXSUDANT +EXSUDAT +EXSUDE +EXSUDEE +EXSUDENT +EXSUDER +EXSUDERA +EXSUDEZ +EXSUDIEZ +EXTASE +EXTASIE +EXTASIEE +EXTASIER +EXTASIEZ +EXTENSIF +EXTENUA +EXTENUAI +EXTENUAT +EXTENUE +EXTENUEE +EXTENUER +EXTENUEZ +EXTERNAT +EXTERNE +EXTIRPA +EXTIRPAI +EXTIRPAT +EXTIRPE +EXTIRPEE +EXTIRPER +EXTIRPEZ +EXTORQUA +EXTORQUE +EXTRA +EXTRADA +EXTRADAI +EXTRADAT +EXTRADE +EXTRADEE +EXTRADER +EXTRADEZ +EXTRAIE +EXTRAIRA +EXTRAIRE +EXTRAIT +EXTRAITE +EXTRAYEZ +EXTREME +EXTREMUM +EXTRORSE +EXTRUDA +EXTRUDAI +EXTRUDAT +EXTRUDE +EXTRUDEE +EXTRUDER +EXTRUDEZ +EXULCERA +EXULCERE +EXULTA +EXULTAI +EXULTAIT +EXULTANT +EXULTAT +EXULTE +EXULTENT +EXULTER +EXULTERA +EXULTEZ +EXULTIEZ +EXUTOIRE +FABLE +FABLIAU +FABLIER +FABRIQUA +FABRIQUE +FABULA +FABULAI +FABULAIT +FABULANT +FABULAT +FABULE +FABULENT +FABULER +FABULERA +FABULEUX +FABULEZ +FABULIEZ +FACADE +FACE +FACETIE +FACETTA +FACETTAI +FACETTAT +FACETTE +FACETTEE +FACETTER +FACETTEZ +FACHA +FACHAI +FACHAIT +FACHANT +FACHASSE +FACHAT +FACHE +FACHEE +FACHENT +FACHER +FACHERA +FACHERAI +FACHEREZ +FACHERIE +FACHEU +FACHEUSE +FACHEUX +FACHEZ +FACHIEZ +FACHO +FACIAL +FACIALE +FACILE +FACILITA +FACILITE +FACON +FACONDE +FACONNA +FACONNAI +FACONNAT +FACONNE +FACONNEE +FACONNER +FACONNEZ +FACTAGE +FACTEUR +FACTICE +FACTIEUX +FACTION +FACTITIF +FACTO +FACTOTUM +FACTRICE +FACTUEL +FACTUM +FACTURA +FACTURAI +FACTURAT +FACTURE +FACTUREE +FACTURER +FACTUREZ +FACULTE +FADA +FADAI +FADAISE +FADAIT +FADANT +FADASSE +FADAT +FADE +FADEE +FADEMENT +FADENT +FADER +FADERA +FADERAI +FADERAIT +FADERENT +FADEREZ +FADERIEZ +FADEUR +FADEZ +FADIEZ +FADING +FADO +FAFIOT +FAGNE +FAGOT +FAGOTA +FAGOTAGE +FAGOTAI +FAGOTAIT +FAGOTANT +FAGOTAT +FAGOTE +FAGOTEE +FAGOTENT +FAGOTER +FAGOTERA +FAGOTEZ +FAGOTIER +FAGOTIEZ +FAGOTIN +FAIBLARD +FAIBLE +FAIBLI +FAIBLIR +FAIBLIRA +FAIBLIT +FAIENCE +FAIENCEE +FAIGNANT +FAILLA +FAILLAI +FAILLAIT +FAILLANT +FAILLAT +FAILLE +FAILLEE +FAILLENT +FAILLER +FAILLERA +FAILLEZ +FAILLI +FAILLIEZ +FAILLIR +FAILLIRA +FAILLIT +FAILLITE +FAIM +FAINE +FAINEANT +FAIRE +FAISABLE +FAISAIT +FAISAN +FAISANDA +FAISANDE +FAISANT +FAISCEAU +FAISEUR +FAISEUSE +FAISIEZ +FAIT +FAITAGE +FAITE +FAITEAU +FAITIERE +FAITOUT +FAKIR +FALAISE +FALBALA +FALERNE +FALLAIT +FALLOIR +FALLU +FALLUT +FALOT +FALOTE +FALOURDE +FALSIFIA +FALSIFIE +FALUCHE +FALUN +FALZAR +FAME +FAMEE +FAMEUSE +FAMEUX +FAMILIAL +FAMILIER +FAMILLE +FAMINE +FANA +FANAGE +FANAI +FANAIT +FANAL +FANANT +FANASSE +FANAT +FANATISA +FANATISE +FANDANGO +FANE +FANEE +FANENT +FANER +FANERA +FANERAI +FANERAIT +FANERENT +FANEREZ +FANERIEZ +FANEUR +FANEUSE +FANEUX +FANEZ +FANFARE +FANFARON +FANGE +FANGEUSE +FANGEUX +FANIEZ +FANION +FANON +FANTASIA +FANTASMA +FANTASME +FANTOCHE +FANTOME +FANZINE +FAON +FAQUIN +FARAD +FARADAY +FARAUD +FARAUDE +FARCE +FARCEUR +FARCEUSE +FARCI +FARCIE +FARCIN +FARCIR +FARCIRA +FARCIRAI +FARCIREZ +FARCISSE +FARCIT +FARD +FARDA +FARDAGE +FARDAI +FARDAIT +FARDANT +FARDASSE +FARDAT +FARDE +FARDEAU +FARDEE +FARDENT +FARDER +FARDERA +FARDERAI +FARDEREZ +FARDEZ +FARDIER +FARDIEZ +FARFADET +FARFELU +FARFELUE +FARIBOLE +FARINA +FARINACE +FARINAI +FARINAIT +FARINANT +FARINAT +FARINE +FARINEE +FARINENT +FARINER +FARINERA +FARINEUX +FARINEZ +FARINIEZ +FARLOUSE +FARO +FAROUCHE +FARRAGO +FART +FARTA +FARTAGE +FARTAI +FARTAIT +FARTANT +FARTASSE +FARTAT +FARTE +FARTEE +FARTENT +FARTER +FARTERA +FARTERAI +FARTEREZ +FARTEZ +FARTIEZ +FASCE +FASCEE +FASCIA +FASCIE +FASCIEE +FASCINA +FASCINAI +FASCINAT +FASCINE +FASCINEE +FASCINER +FASCINEZ +FASCISA +FASCISAI +FASCISAT +FASCISE +FASCISEE +FASCISER +FASCISEZ +FASCISME +FASCISTE +FASEILLA +FASEILLE +FASSE +FASTE +FASTIGIE +FASTUEUX +FATAL +FATALE +FATALITE +FATIGANT +FATIGUA +FATIGUAI +FATIGUAT +FATIGUE +FATIGUEE +FATIGUER +FATIGUEZ +FATMA +FATRASIE +FATUITE +FATUM +FAUBER +FAUBERT +FAUBOURG +FAUCARD +FAUCARDA +FAUCARDE +FAUCHA +FAUCHAGE +FAUCHAI +FAUCHAIT +FAUCHANT +FAUCHARD +FAUCHAT +FAUCHE +FAUCHEE +FAUCHENT +FAUCHER +FAUCHERA +FAUCHET +FAUCHEUR +FAUCHEUX +FAUCHEZ +FAUCHIEZ +FAUCHON +FAUCILLE +FAUCON +FAUCONNA +FAUCONNE +FAUCRE +FAUDRA +FAUDRAI +FAUDRAIT +FAUDREZ +FAUDRIEZ +FAUDRONT +FAUFIL +FAUFILA +FAUFILAI +FAUFILAT +FAUFILE +FAUFILEE +FAUFILER +FAUFILEZ +FAUNE +FAUNIQUE +FAUSSA +FAUSSAI +FAUSSAIT +FAUSSANT +FAUSSAT +FAUSSE +FAUSSEE +FAUSSER +FAUSSERA +FAUSSET +FAUSSETE +FAUT +FAUTA +FAUTAI +FAUTAIT +FAUTANT +FAUTASSE +FAUTAT +FAUTE +FAUTENT +FAUTER +FAUTERA +FAUTERAI +FAUTEREZ +FAUTEUIL +FAUTEUR +FAUTEZ +FAUTIEZ +FAUTIF +FAUTIVE +FAUTRICE +FAUVE +FAUVERIE +FAUVETTE +FAUVISME +FAVELA +FAVEROLE +FAVEUR +FAVORI +FAVORISA +FAVORISE +FAVORITE +FAXA +FAXAI +FAXAIT +FAXANT +FAXASSE +FAXAT +FAXE +FAXEE +FAXENT +FAXER +FAXERA +FAXERAI +FAXERAIT +FAXERENT +FAXEREZ +FAXERIEZ +FAXEZ +FAXIEZ +FAYARD +FAYOT +FAYOTA +FAYOTAI +FAYOTAIT +FAYOTANT +FAYOTAT +FAYOTE +FAYOTENT +FAYOTER +FAYOTERA +FAYOTEZ +FAYOTIEZ +FAYOTTA +FAYOTTAI +FAYOTTAT +FAYOTTE +FAYOTTER +FAYOTTEZ +FAZENDA +FEAL +FEALE +FEBRILE +FECAL +FECALE +FECIAL +FECOND +FECONDA +FECONDAI +FECONDAT +FECONDE +FECONDEE +FECONDER +FECONDEZ +FECULA +FECULAI +FECULAIT +FECULANT +FECULAT +FECULE +FECULEE +FECULENT +FECULER +FECULERA +FECULEZ +FECULIEZ +FEDAYIN +FEDERA +FEDERAI +FEDERAIT +FEDERAL +FEDERALE +FEDERANT +FEDERAT +FEDERE +FEDEREE +FEDERENT +FEDERER +FEDERERA +FEDEREZ +FEDERIEZ +FEERIE +FEERIQUE +FEGATERA +FEIGNAIT +FEIGNANT +FEIGNE +FEIGNENT +FEIGNEZ +FEIGNIEZ +FEIGNIT +FEINDRA +FEINDRAI +FEINDRE +FEINDREZ +FEINT +FEINTA +FEINTAI +FEINTAIT +FEINTANT +FEINTAT +FEINTE +FEINTEE +FEINTENT +FEINTER +FEINTERA +FEINTEUR +FEINTEZ +FEINTIEZ +FEINTISE +FELA +FELAI +FELAIT +FELANT +FELASSE +FELAT +FELE +FELEE +FELENT +FELER +FELERA +FELERAI +FELERAIT +FELERENT +FELEREZ +FELERIEZ +FELEZ +FELIBRE +FELICITA +FELICITE +FELIDE +FELIEZ +FELIN +FELINE +FELINITE +FELLAGA +FELLAGHA +FELLAH +FELON +FELONIE +FELONNE +FELOUQUE +FELURE +FEMELLE +FEMININ +FEMININE +FEMINISA +FEMINISE +FEMINITE +FEMME +FEMORAL +FEMORALE +FEMUR +FENAISON +FEND +FENDAGE +FENDAIT +FENDANT +FENDARD +FENDART +FENDE +FENDENT +FENDEUR +FENDEZ +FENDIEZ +FENDILLA +FENDILLE +FENDISSE +FENDIT +FENDOIR +FENDRA +FENDRAI +FENDRAIT +FENDRE +FENDREZ +FENDRIEZ +FENDRONT +FENDU +FENDUE +FENESTRA +FENESTRE +FENETRA +FENETRAI +FENETRAT +FENETRE +FENETREE +FENETRER +FENETREZ +FENIL +FENNEC +FENOUIL +FENTE +FENTON +FENUGREC +FEODAL +FEODALE +FERA +FERAI +FERAIT +FEREZ +FERIAL +FERIALE +FERIE +FERIEE +FERIEZ +FERLA +FERLAI +FERLAIT +FERLANT +FERLASSE +FERLAT +FERLE +FERLEE +FERLENT +FERLER +FERLERA +FERLERAI +FERLEREZ +FERLEZ +FERLIEZ +FERMA +FERMAGE +FERMAI +FERMAIL +FERMAIT +FERMANT +FERMASSE +FERMAT +FERME +FERMEE +FERMENT +FERMENTA +FERMENTE +FERMER +FERMERA +FERMERAI +FERMEREZ +FERMETE +FERMETTE +FERMEZ +FERMIER +FERMIERE +FERMIEZ +FERMIUM +FERMOIR +FEROCE +FEROCITE +FERRA +FERRADE +FERRAGE +FERRAI +FERRAIT +FERRANT +FERRASSE +FERRAT +FERRATE +FERRE +FERREE +FERRENT +FERRER +FERRERA +FERRERAI +FERREREZ +FERRET +FERREUR +FERREUX +FERREZ +FERRIEZ +FERRIQUE +FERRITE +FERRURE +FERRY +FERTILE +FERU +FERUE +FERULE +FERVENT +FERVENTE +FERVEUR +FESSA +FESSAI +FESSAIT +FESSANT +FESSASSE +FESSAT +FESSE +FESSEE +FESSER +FESSERA +FESSERAI +FESSEREZ +FESSIER +FESSIERE +FESSU +FESSUE +FESTIF +FESTIN +FESTIVAL +FESTIVE +FESTOIE +FESTON +FESTONNA +FESTONNE +FESTOYA +FESTOYAI +FESTOYAT +FESTOYE +FESTOYEE +FESTOYER +FESTOYEZ +FETA +FETAI +FETAIT +FETANT +FETARD +FETASSE +FETAT +FETE +FETEE +FETENT +FETER +FETERA +FETERAI +FETERAIT +FETERENT +FETEREZ +FETERIEZ +FETEZ +FETICHE +FETIDE +FETIDITE +FETIEZ +FETU +FETUQUE +FEUDISTE +FEUE +FEUIL +FEUILLA +FEUILLAI +FEUILLAT +FEUILLE +FEUILLEE +FEUILLER +FEUILLET +FEUILLEZ +FEUILLU +FEUILLUE +FEULA +FEULAI +FEULAIT +FEULANT +FEULASSE +FEULAT +FEULE +FEULENT +FEULER +FEULERA +FEULERAI +FEULEREZ +FEULEZ +FEULIEZ +FEUTRA +FEUTRAGE +FEUTRAI +FEUTRAIT +FEUTRANT +FEUTRAT +FEUTRE +FEUTREE +FEUTRENT +FEUTRER +FEUTRERA +FEUTREZ +FEUTRIEZ +FEUTRINE +FEUX +FEVE +FEVEROLE +FEVIER +FEVRIER +FIABLE +FIACRE +FIAI +FIAIT +FIANCA +FIANCAI +FIANCAIT +FIANCANT +FIANCAT +FIANCE +FIANCEE +FIANCENT +FIANCER +FIANCERA +FIANCEZ +FIANCIEZ +FIANT +FIASCO +FIASQUE +FIASSE +FIAT +FIBRANNE +FIBRE +FIBREUSE +FIBREUX +FIBRINE +FIBROINE +FIBROME +FIBROSE +FIBULE +FICAIRE +FICELA +FICELAGE +FICELAI +FICELAIT +FICELANT +FICELAT +FICELE +FICELEE +FICELER +FICELEZ +FICELIEZ +FICELLE +FICHA +FICHAGE +FICHAI +FICHAIT +FICHANT +FICHASSE +FICHAT +FICHE +FICHEE +FICHENT +FICHER +FICHERA +FICHERAI +FICHEREZ +FICHET +FICHEZ +FICHIER +FICHIEZ +FICHISTE +FICHOIR +FICHTRE +FICHU +FICHUE +FICTIF +FICTION +FICTIVE +FIDEISME +FIDEISTE +FIDELE +FIDELITE +FIEE +FIEF +FIEFFA +FIEFFAI +FIEFFAIT +FIEFFANT +FIEFFAT +FIEFFE +FIEFFEE +FIEFFENT +FIEFFER +FIEFFERA +FIEFFEZ +FIEFFIEZ +FIEL +FIELLEUX +FIENT +FIENTA +FIENTAI +FIENTAIT +FIENTANT +FIENTAT +FIENTE +FIENTENT +FIENTER +FIENTERA +FIENTEZ +FIENTIEZ +FIER +FIERA +FIERAI +FIERAIT +FIERE +FIERENT +FIEREZ +FIERIEZ +FIEROT +FIEROTE +FIERTE +FIESTA +FIEU +FIEUX +FIEVRE +FIEVREUX +FIEZ +FIFILLE +FIFRE +FIFRELIN +FIGARO +FIGE +FIGEA +FIGEAI +FIGEAIT +FIGEANT +FIGEASSE +FIGEAT +FIGEE +FIGEMENT +FIGENT +FIGER +FIGERA +FIGERAI +FIGERAIT +FIGERENT +FIGEREZ +FIGERIEZ +FIGEZ +FIGIEZ +FIGNOLA +FIGNOLAI +FIGNOLAT +FIGNOLE +FIGNOLEE +FIGNOLER +FIGNOLEZ +FIGUE +FIGUERIE +FIGUIER +FIGULINE +FIGURA +FIGURAI +FIGURAIT +FIGURANT +FIGURAT +FIGURE +FIGUREE +FIGURENT +FIGURER +FIGURERA +FIGUREZ +FIGURIEZ +FIGURINE +FIIEZ +FILA +FILABLE +FILAGE +FILAI +FILAIRE +FILAIT +FILAMENT +FILANDRE +FILANT +FILASSE +FILAT +FILATEUR +FILATURE +FILE +FILEE +FILENT +FILER +FILERA +FILERAI +FILERAIT +FILERENT +FILEREZ +FILERIEZ +FILET +FILETA +FILETAGE +FILETAI +FILETAIT +FILETANT +FILETAT +FILETE +FILETEE +FILETENT +FILETER +FILETERA +FILETEZ +FILETIEZ +FILEUR +FILEUSE +FILEZ +FILIAL +FILIALE +FILIERE +FILIEZ +FILIN +FILLASSE +FILLE +FILLETTE +FILLEUL +FILLEULE +FILM +FILMA +FILMAGE +FILMAI +FILMAIT +FILMANT +FILMASSE +FILMAT +FILME +FILMEE +FILMENT +FILMER +FILMERA +FILMERAI +FILMEREZ +FILMEZ +FILMIEZ +FILMIQUE +FILOCHA +FILOCHAI +FILOCHAT +FILOCHE +FILOCHEE +FILOCHER +FILOCHEZ +FILON +FILONIEN +FILOU +FILOUTA +FILOUTAI +FILOUTAT +FILOUTE +FILOUTEE +FILOUTER +FILOUTEZ +FILTRA +FILTRAGE +FILTRAI +FILTRAIT +FILTRANT +FILTRAT +FILTRE +FILTREE +FILTRENT +FILTRER +FILTRERA +FILTREZ +FILTRIEZ +FINAGE +FINAL +FINALE +FINALITE +FINANCA +FINANCAI +FINANCAT +FINANCE +FINANCEE +FINANCER +FINANCEZ +FINASSA +FINASSAI +FINASSAT +FINASSE +FINASSEE +FINASSER +FINAUD +FINAUDE +FINE +FINEMENT +FINERIE +FINESSE +FINETTE +FINI +FINIE +FINIR +FINIRA +FINIRAI +FINIRAIT +FINIRENT +FINIREZ +FINIRIEZ +FINIRONT +FINISH +FINISSE +FINIT +FINITION +FINNOISE +FIOLE +FION +FIRENT +FIRMAN +FIRME +FISC +FISCAL +FISCALE +FISSE +FISSIBLE +FISSILE +FISSION +FISSURA +FISSURAI +FISSURAT +FISSURE +FISSUREE +FISSURER +FISSUREZ +FISTON +FISTOT +FISTULE +FIXA +FIXAGE +FIXAI +FIXAIT +FIXANT +FIXASSE +FIXAT +FIXATEUR +FIXATIF +FIXATION +FIXATIVE +FIXE +FIXEE +FIXEMENT +FIXENT +FIXER +FIXERA +FIXERAI +FIXERAIT +FIXERENT +FIXEREZ +FIXERIEZ +FIXEZ +FIXIEZ +FIXING +FIXISME +FIXISTE +FIXITE +FJELD +FJORD +FLAC +FLACHE +FLACON +FLAGADA +FLAGELLA +FLAGELLE +FLAGEOLA +FLAGEOLE +FLAGORNA +FLAGORNE +FLAGRANT +FLAIR +FLAIRA +FLAIRAI +FLAIRAIT +FLAIRANT +FLAIRAT +FLAIRE +FLAIREE +FLAIRENT +FLAIRER +FLAIRERA +FLAIREUR +FLAIREZ +FLAIRIEZ +FLAMAND +FLAMANDE +FLAMANT +FLAMBA +FLAMBAGE +FLAMBAI +FLAMBAIT +FLAMBANT +FLAMBARD +FLAMBART +FLAMBAT +FLAMBE +FLAMBEAU +FLAMBEE +FLAMBENT +FLAMBER +FLAMBERA +FLAMBEUR +FLAMBEZ +FLAMBIEZ +FLAMBOIE +FLAMBOYA +FLAMBOYE +FLAMENCO +FLAMINE +FLAMME +FLAMMEE +FLAN +FLANA +FLANAI +FLANAIT +FLANANT +FLANASSE +FLANAT +FLANC +FLANCHA +FLANCHAI +FLANCHAT +FLANCHE +FLANCHEE +FLANCHER +FLANCHET +FLANCHEZ +FLANDRIN +FLANE +FLANELLE +FLANENT +FLANER +FLANERA +FLANERAI +FLANEREZ +FLANERIE +FLANEUR +FLANEUSE +FLANEZ +FLANIEZ +FLANQUA +FLANQUAI +FLANQUAT +FLANQUE +FLANQUEE +FLANQUER +FLANQUEZ +FLAPI +FLAPIE +FLAQUA +FLAQUAI +FLAQUAIT +FLAQUANT +FLAQUAT +FLAQUE +FLAQUENT +FLAQUER +FLAQUERA +FLAQUEZ +FLAQUIEZ +FLASH +FLASHA +FLASHAI +FLASHAIT +FLASHANT +FLASHAT +FLASHE +FLASHENT +FLASHER +FLASHERA +FLASHEZ +FLASHIEZ +FLASQUE +FLATTA +FLATTAI +FLATTAIT +FLATTANT +FLATTAT +FLATTE +FLATTEE +FLATTENT +FLATTER +FLATTERA +FLATTEUR +FLATTEZ +FLATTIEZ +FLAUPA +FLAUPAI +FLAUPAIT +FLAUPANT +FLAUPAT +FLAUPE +FLAUPEE +FLAUPENT +FLAUPER +FLAUPERA +FLAUPEZ +FLAUPIEZ +FLAVINE +FLEAU +FLECHA +FLECHAGE +FLECHAI +FLECHAIT +FLECHANT +FLECHAT +FLECHE +FLECHEE +FLECHENT +FLECHER +FLECHERA +FLECHEZ +FLECHI +FLECHIE +FLECHIEZ +FLECHIR +FLECHIRA +FLECHIT +FLEGME +FLEGMON +FLEIN +FLEMARD +FLEMARDE +FLEMMARD +FLEMME +FLEOLE +FLETAN +FLETRI +FLETRIE +FLETRIR +FLETRIRA +FLETRIT +FLETTE +FLEUR +FLEURA +FLEURAGE +FLEURAI +FLEURAIT +FLEURANT +FLEURAT +FLEURE +FLEUREE +FLEURENT +FLEURER +FLEURERA +FLEURET +FLEUREZ +FLEURI +FLEURIE +FLEURIEZ +FLEURIR +FLEURIRA +FLEURIT +FLEURON +FLEUVE +FLEXIBLE +FLEXION +FLEXURE +FLIBUSTA +FLIBUSTE +FLIC +FLINGOT +FLINGUA +FLINGUAI +FLINGUAT +FLINGUE +FLINGUEE +FLINGUER +FLINGUEZ +FLINT +FLIPOT +FLIPPA +FLIPPAI +FLIPPAIT +FLIPPANT +FLIPPAT +FLIPPE +FLIPPENT +FLIPPER +FLIPPERA +FLIPPEZ +FLIPPIEZ +FLIRT +FLIRTA +FLIRTAI +FLIRTAIT +FLIRTANT +FLIRTAT +FLIRTE +FLIRTENT +FLIRTER +FLIRTERA +FLIRTEUR +FLIRTEZ +FLIRTIEZ +FLOC +FLOCAGE +FLOCHE +FLOCON +FLOCONNA +FLOCONNE +FLOCULA +FLOCULAI +FLOCULAT +FLOCULE +FLOCULER +FLOCULEZ +FLONFLON +FLOOD +FLOP +FLOPEE +FLORAL +FLORALE +FLORE +FLOREAL +FLORENCE +FLORIN +FLOT +FLOTTA +FLOTTAGE +FLOTTAI +FLOTTAIT +FLOTTANT +FLOTTARD +FLOTTAT +FLOTTE +FLOTTEE +FLOTTENT +FLOTTER +FLOTTERA +FLOTTEUR +FLOTTEZ +FLOTTIEZ +FLOU +FLOUA +FLOUAI +FLOUAIT +FLOUANT +FLOUASSE +FLOUAT +FLOUE +FLOUEE +FLOUENT +FLOUER +FLOUERA +FLOUERAI +FLOUEREZ +FLOUEZ +FLOUIEZ +FLOUSA +FLOUSAI +FLOUSAIT +FLOUSANT +FLOUSAT +FLOUSE +FLOUSENT +FLOUSER +FLOUSERA +FLOUSEZ +FLOUSIEZ +FLOUVE +FLOUZE +FLUA +FLUAGE +FLUAI +FLUAIT +FLUANT +FLUASSE +FLUAT +FLUATE +FLUCTUA +FLUCTUAI +FLUCTUAT +FLUCTUE +FLUCTUER +FLUCTUEZ +FLUE +FLUENT +FLUER +FLUERA +FLUERAI +FLUERAIT +FLUERENT +FLUEREZ +FLUERIEZ +FLUET +FLUETTE +FLUEZ +FLUIDE +FLUIDISA +FLUIDISE +FLUIDITE +FLUIEZ +FLUOR +FLUORINE +FLUORISA +FLUORISE +FLUOROSE +FLUORURE +FLUSH +FLUTA +FLUTAI +FLUTAIT +FLUTANT +FLUTASSE +FLUTAT +FLUTE +FLUTEAU +FLUTEE +FLUTENT +FLUTER +FLUTERA +FLUTERAI +FLUTEREZ +FLUTEZ +FLUTIEZ +FLUTISTE +FLUVIAL +FLUVIALE +FLUX +FLUXA +FLUXAI +FLUXAIT +FLUXANT +FLUXASSE +FLUXAT +FLUXE +FLUXEE +FLUXENT +FLUXER +FLUXERA +FLUXERAI +FLUXEREZ +FLUXEZ +FLUXIEZ +FLUXION +FOCAL +FOCALE +FOCALISA +FOCALISE +FOEHN +FOETAL +FOETALE +FOIE +FOIN +FOIRA +FOIRADE +FOIRAI +FOIRAIL +FOIRAIT +FOIRANT +FOIRASSE +FOIRAT +FOIRE +FOIRENT +FOIRER +FOIRERA +FOIRERAI +FOIREREZ +FOIREUSE +FOIREUX +FOIREZ +FOIRIEZ +FOISON +FOISONNA +FOISONNE +FOLASSE +FOLATRA +FOLATRAI +FOLATRAT +FOLATRE +FOLATRER +FOLATREZ +FOLIACE +FOLIACEE +FOLIAIRE +FOLICHON +FOLIE +FOLIEE +FOLIO +FOLIOLE +FOLIOT +FOLIOTA +FOLIOTAI +FOLIOTAT +FOLIOTE +FOLIOTEE +FOLIOTER +FOLIOTEZ +FOLK +FOLKLORE +FOLKSONG +FOLLE +FOLLET +FOLLETTE +FOMENTA +FOMENTAI +FOMENTAT +FOMENTE +FOMENTEE +FOMENTER +FOMENTEZ +FONCA +FONCAI +FONCAIT +FONCANT +FONCASSE +FONCAT +FONCE +FONCEE +FONCENT +FONCER +FONCERA +FONCERAI +FONCEREZ +FONCEUR +FONCEUSE +FONCEZ +FONCIER +FONCIERE +FONCIEZ +FONCTION +FOND +FONDA +FONDAI +FONDAIT +FONDANT +FONDASSE +FONDAT +FONDE +FONDEE +FONDENT +FONDER +FONDERA +FONDERAI +FONDEREZ +FONDERIE +FONDEUR +FONDEUSE +FONDEZ +FONDIEZ +FONDISSE +FONDIT +FONDOIR +FONDOUK +FONDRA +FONDRAI +FONDRAIT +FONDRE +FONDREZ +FONDRIEZ +FONDRONT +FONDU +FONDUE +FONGIBLE +FONGIQUE +FONGUEUX +FONT +FONTAINE +FONTANGE +FONTE +FOOT +FOOTBALL +FOOTING +FORA +FORAGE +FORAI +FORAIN +FORAINE +FORAIT +FORAMINE +FORANT +FORASSE +FORAT +FORBAN +FORCA +FORCAGE +FORCAI +FORCAIT +FORCANT +FORCASSE +FORCAT +FORCE +FORCEE +FORCENE +FORCENEE +FORCENT +FORCER +FORCERA +FORCERAI +FORCEREZ +FORCERIE +FORCEZ +FORCI +FORCIEZ +FORCING +FORCIR +FORCIRA +FORCIRAI +FORCIREZ +FORCISSE +FORCIT +FORCLORE +FORCLOSE +FORE +FOREE +FORENT +FORER +FORERA +FORERAI +FORERAIT +FORERENT +FOREREZ +FORERIEZ +FORET +FOREUR +FOREUSE +FOREZ +FORFAIRE +FORFAIT +FORFAITE +FORFASSE +FORFERA +FORFERAI +FORFEREZ +FORFISSE +FORFIT +FORFONT +FORGE +FORGEA +FORGEAGE +FORGEAI +FORGEAIT +FORGEANT +FORGEAT +FORGEE +FORGENT +FORGER +FORGERA +FORGERAI +FORGEREZ +FORGERON +FORGEUR +FORGEUSE +FORGEZ +FORGIEZ +FORIEZ +FORINT +FORJETA +FORJETAI +FORJETAT +FORJETE +FORJETEE +FORJETER +FORJETEZ +FORJETTE +FORLANCA +FORLANCE +FORLANE +FORLIGNA +FORLIGNE +FORMA +FORMAGE +FORMAI +FORMAIT +FORMANT +FORMASSE +FORMAT +FORMATIF +FORME +FORMEE +FORMEL +FORMELLE +FORMENE +FORMENT +FORMER +FORMERA +FORMERAI +FORMERET +FORMEREZ +FORMEZ +FORMIATE +FORMIEZ +FORMIQUE +FORMOL +FORMOLA +FORMOLAI +FORMOLAT +FORMOLE +FORMOLEE +FORMOLER +FORMOLEZ +FORMULA +FORMULAI +FORMULAT +FORMULE +FORMULEE +FORMULER +FORMULEZ +FORNIQUA +FORNIQUE +FORT +FORTE +FORTICHE +FORTIFIA +FORTIFIE +FORTIN +FORTIORI +FORTRAIT +FORTRAN +FORTUIT +FORTUITE +FORTUNE +FORTUNEE +FORUM +FORURE +FOSSE +FOSSETTE +FOSSILE +FOSSOIE +FOSSOIR +FOSSOYA +FOSSOYAI +FOSSOYAT +FOSSOYE +FOSSOYEE +FOSSOYER +FOSSOYEZ +FOUACE +FOUACIER +FOUAGE +FOUAILLA +FOUAILLE +FOUCADE +FOUCHTRA +FOUDRE +FOUDROIE +FOUDROYA +FOUDROYE +FOUEE +FOUET +FOUETTA +FOUETTAI +FOUETTAT +FOUETTE +FOUETTEE +FOUETTER +FOUETTEZ +FOUFOU +FOUGASSE +FOUGE +FOUGEA +FOUGEAI +FOUGEAIT +FOUGEANT +FOUGEAT +FOUGENT +FOUGER +FOUGERA +FOUGERAI +FOUGERE +FOUGEREZ +FOUGEZ +FOUGIEZ +FOUGUE +FOUGUEUX +FOUI +FOUIE +FOUILLA +FOUILLAI +FOUILLAT +FOUILLE +FOUILLEE +FOUILLER +FOUILLEZ +FOUINA +FOUINAI +FOUINAIT +FOUINANT +FOUINARD +FOUINAT +FOUINE +FOUINENT +FOUINER +FOUINERA +FOUINEUR +FOUINEZ +FOUINIEZ +FOUIR +FOUIRA +FOUIRAI +FOUIRAIT +FOUIRENT +FOUIREZ +FOUIRIEZ +FOUIRONT +FOUISSE +FOUIT +FOULA +FOULAGE +FOULAI +FOULAIT +FOULANT +FOULARD +FOULASSE +FOULAT +FOULE +FOULEE +FOULENT +FOULER +FOULERA +FOULERAI +FOULEREZ +FOULERIE +FOULEUR +FOULEUSE +FOULEZ +FOULIEZ +FOULOIR +FOULON +FOULQUE +FOULURE +FOUR +FOURBA +FOURBAI +FOURBAIT +FOURBANT +FOURBAT +FOURBE +FOURBEE +FOURBENT +FOURBER +FOURBERA +FOURBEZ +FOURBI +FOURBIE +FOURBIEZ +FOURBIR +FOURBIRA +FOURBIT +FOURBU +FOURBUE +FOURBURE +FOURCHA +FOURCHAI +FOURCHAT +FOURCHE +FOURCHEE +FOURCHER +FOURCHET +FOURCHEZ +FOURCHON +FOURCHU +FOURCHUE +FOURGON +FOURGUA +FOURGUAI +FOURGUAT +FOURGUE +FOURGUEE +FOURGUER +FOURGUEZ +FOURME +FOURMI +FOURNEAU +FOURNEE +FOURNI +FOURNIE +FOURNIER +FOURNIL +FOURNIR +FOURNIRA +FOURNIT +FOURRA +FOURRAGE +FOURRAI +FOURRAIT +FOURRANT +FOURRAT +FOURRE +FOURREAU +FOURREE +FOURRENT +FOURRER +FOURRERA +FOURREUR +FOURREZ +FOURRIER +FOURRIEZ +FOURRURE +FOURVOIE +FOURVOYA +FOURVOYE +FOUT +FOUTAISE +FOUTAIT +FOUTANT +FOUTE +FOUTENT +FOUTEZ +FOUTIEZ +FOUTOIR +FOUTRA +FOUTRAI +FOUTRAIT +FOUTRAL +FOUTRALE +FOUTRE +FOUTREZ +FOUTRIEZ +FOUTRONT +FOUTU +FOUTUE +FOVEA +FOXE +FOXEE +FOYER +FRAC +FRACASSA +FRACASSE +FRACTION +FRACTURA +FRACTURE +FRAGILE +FRAGMENT +FRAGON +FRAI +FRAICHE +FRAICHI +FRAICHIN +FRAICHIR +FRAICHIT +FRAIE +FRAIERA +FRAIERAI +FRAIEREZ +FRAIRIE +FRAISA +FRAISAGE +FRAISAI +FRAISAIT +FRAISANT +FRAISAT +FRAISE +FRAISEE +FRAISENT +FRAISER +FRAISERA +FRAISEUR +FRAISEZ +FRAISIER +FRAISIEZ +FRAISIL +FRAISURE +FRAMEE +FRANC +FRANCHE +FRANCHI +FRANCHIE +FRANCHIR +FRANCHIT +FRANCIEN +FRANCISA +FRANCISE +FRANCITE +FRANCIUM +FRANCO +FRANGE +FRANGEA +FRANGEAI +FRANGEAT +FRANGEE +FRANGENT +FRANGER +FRANGERA +FRANGEZ +FRANGIEZ +FRANGIN +FRANGINE +FRAPE +FRAPPA +FRAPPAGE +FRAPPAI +FRAPPAIT +FRAPPANT +FRAPPAT +FRAPPE +FRAPPEE +FRAPPENT +FRAPPER +FRAPPERA +FRAPPEUR +FRAPPEZ +FRAPPIEZ +FRASIL +FRASQUE +FRATER +FRATRIE +FRAUDA +FRAUDAI +FRAUDAIT +FRAUDANT +FRAUDAT +FRAUDE +FRAUDEE +FRAUDENT +FRAUDER +FRAUDERA +FRAUDEUR +FRAUDEZ +FRAUDIEZ +FRAYA +FRAYAGE +FRAYAI +FRAYAIT +FRAYANT +FRAYASSE +FRAYAT +FRAYE +FRAYEE +FRAYENT +FRAYER +FRAYERA +FRAYERAI +FRAYERE +FRAYEREZ +FRAYEUR +FRAYEZ +FRAYIEZ +FREDAINE +FREDONNA +FREDONNE +FREESIA +FREEZER +FREGATA +FREGATAI +FREGATAT +FREGATE +FREGATEE +FREGATER +FREGATEZ +FREIN +FREINA +FREINAGE +FREINAI +FREINAIT +FREINANT +FREINAT +FREINE +FREINEE +FREINENT +FREINER +FREINERA +FREINEZ +FREINIEZ +FREINTE +FRELATA +FRELATAI +FRELATAT +FRELATE +FRELATEE +FRELATER +FRELATEZ +FRELE +FRELON +FREMI +FREMIR +FREMIRA +FREMIRAI +FREMIREZ +FREMISSE +FREMIT +FRENAIE +FRENE +FRENESIE +FREON +FREQUENT +FRERE +FREROT +FRESQUE +FRESSURE +FRET +FRETA +FRETAI +FRETAIT +FRETANT +FRETASSE +FRETAT +FRETE +FRETEE +FRETENT +FRETER +FRETERA +FRETERAI +FRETEREZ +FRETEUR +FRETEZ +FRETIEZ +FRETILLA +FRETILLE +FRETIN +FRETTA +FRETTAGE +FRETTAI +FRETTAIT +FRETTANT +FRETTAT +FRETTE +FRETTEE +FRETTENT +FRETTER +FRETTERA +FRETTEZ +FRETTIEZ +FREUDIEN +FREUX +FRIABLE +FRIAND +FRIANDE +FRIC +FRICASSA +FRICASSE +FRICATIF +FRICHE +FRICHTI +FRICOT +FRICOTA +FRICOTAI +FRICOTAT +FRICOTE +FRICOTEE +FRICOTER +FRICOTEZ +FRICTION +FRIDOLIN +FRIGIDE +FRIGO +FRIGORIE +FRILEUSE +FRILEUX +FRIMA +FRIMAI +FRIMAIRE +FRIMAIT +FRIMANT +FRIMASSE +FRIMAT +FRIME +FRIMEE +FRIMENT +FRIMER +FRIMERA +FRIMERAI +FRIMEREZ +FRIMEUR +FRIMEUSE +FRIMEZ +FRIMIEZ +FRINGALE +FRINGANT +FRINGUA +FRINGUAI +FRINGUAT +FRINGUE +FRINGUEE +FRINGUER +FRINGUEZ +FRIPA +FRIPAI +FRIPAIT +FRIPANT +FRIPASSE +FRIPAT +FRIPE +FRIPEE +FRIPENT +FRIPER +FRIPERA +FRIPERAI +FRIPEREZ +FRIPERIE +FRIPEZ +FRIPIER +FRIPIERE +FRIPIEZ +FRIPON +FRIPONNA +FRIPONNE +FRIQUE +FRIQUEE +FRIQUET +FRIRA +FRIRAI +FRIRAIT +FRIRE +FRIRENT +FRIREZ +FRIRIEZ +FRIRONT +FRISA +FRISAGE +FRISAI +FRISAIT +FRISANT +FRISASSE +FRISAT +FRISE +FRISEE +FRISENT +FRISER +FRISERA +FRISERAI +FRISEREZ +FRISETTE +FRISEZ +FRISIEZ +FRISOLEE +FRISON +FRISONNE +FRISOTTA +FRISOTTE +FRISQUET +FRISSE +FRISSON +FRISURE +FRIT +FRITE +FRITERIE +FRITEUSE +FRITTA +FRITTAGE +FRITTAI +FRITTAIT +FRITTANT +FRITTAT +FRITTE +FRITTEE +FRITTENT +FRITTER +FRITTERA +FRITTEZ +FRITTIEZ +FRITURE +FRITZ +FRIVOLE +FROC +FROCARD +FROID +FROIDE +FROIDEUR +FROIDI +FROIDIR +FROIDIRA +FROIDIT +FROIDURE +FROISSA +FROISSAI +FROISSAT +FROISSE +FROISSEE +FROISSER +FROLA +FROLAI +FROLAIT +FROLANT +FROLASSE +FROLAT +FROLE +FROLEE +FROLENT +FROLER +FROLERA +FROLERAI +FROLEREZ +FROLEUR +FROLEUSE +FROLEZ +FROLIEZ +FROMAGE +FROMAGER +FROMENT +FRONCA +FRONCAI +FRONCAIT +FRONCANT +FRONCAT +FRONCE +FRONCEE +FRONCENT +FRONCER +FRONCERA +FRONCEZ +FRONCIEZ +FRONDA +FRONDAI +FRONDAIT +FRONDANT +FRONDAT +FRONDE +FRONDEE +FRONDENT +FRONDER +FRONDERA +FRONDEUR +FRONDEZ +FRONDIEZ +FRONT +FRONTAIL +FRONTAL +FRONTALE +FRONTEAU +FRONTON +FROTTA +FROTTAGE +FROTTAI +FROTTAIT +FROTTANT +FROTTAT +FROTTE +FROTTEE +FROTTENT +FROTTER +FROTTERA +FROTTEUR +FROTTEZ +FROTTIEZ +FROTTOIR +FROUA +FROUAI +FROUAIT +FROUANT +FROUASSE +FROUAT +FROUE +FROUENT +FROUER +FROUERA +FROUERAI +FROUEREZ +FROUEZ +FROUFROU +FROUIEZ +FROUSSE +FRUCTOSE +FRUGAL +FRUGALE +FRUIT +FRUITE +FRUITEE +FRUITIER +FRUSQUA +FRUSQUAI +FRUSQUAT +FRUSQUE +FRUSQUEE +FRUSQUER +FRUSQUEZ +FRUSTE +FRUSTRA +FRUSTRAI +FRUSTRAT +FRUSTRE +FRUSTREE +FRUSTRER +FRUSTREZ +FUCHSIA +FUCHSINE +FUEGIEN +FUEL +FUGACE +FUGACITE +FUGITIF +FUGITIVE +FUGUA +FUGUAI +FUGUAIT +FUGUANT +FUGUASSE +FUGUAT +FUGUE +FUGUENT +FUGUER +FUGUERA +FUGUERAI +FUGUEREZ +FUGUEUR +FUGUEUSE +FUGUEZ +FUGUIEZ +FUHRER +FUIE +FUIENT +FUIR +FUIRA +FUIRAI +FUIRAIT +FUIRENT +FUIREZ +FUIRIEZ +FUIRONT +FUISSE +FUIT +FUITE +FULGURA +FULGURAI +FULGURAT +FULGURE +FULGUREE +FULGURER +FULGUREZ +FULL +FULMINA +FULMINAI +FULMINAT +FULMINE +FULMINEE +FULMINER +FULMINEZ +FUMA +FUMABLE +FUMAGE +FUMAGINE +FUMAI +FUMAISON +FUMAIT +FUMANT +FUMASSE +FUMAT +FUME +FUMEE +FUMENT +FUMER +FUMERA +FUMERAI +FUMERAIT +FUMERENT +FUMEREZ +FUMERIE +FUMERIEZ +FUMERON +FUMET +FUMEUR +FUMEUSE +FUMEUX +FUMEZ +FUMIER +FUMIEZ +FUMIGE +FUMIGEA +FUMIGEAI +FUMIGEAT +FUMIGEE +FUMIGENE +FUMIGENT +FUMIGER +FUMIGERA +FUMIGEZ +FUMIGIEZ +FUMISTE +FUMIVORE +FUMOIR +FUMURE +FUNEBRE +FUNESTE +FUNICULE +FUNIN +FUNKY +FURAX +FURENT +FURET +FURETA +FURETAGE +FURETAI +FURETAIT +FURETANT +FURETAT +FURETE +FURETENT +FURETER +FURETERA +FURETEUR +FURETEZ +FURETIEZ +FUREUR +FURFURAL +FURIA +FURIBARD +FURIBOND +FURIE +FURIEUSE +FURIEUX +FURIOSO +FUROLE +FURONCLE +FURTIF +FURTIVE +FUSA +FUSAI +FUSAIN +FUSAIT +FUSANT +FUSASSE +FUSAT +FUSCINE +FUSE +FUSEAU +FUSEE +FUSEL +FUSELA +FUSELAGE +FUSELAI +FUSELAIT +FUSELANT +FUSELAT +FUSELE +FUSELEE +FUSELER +FUSELEZ +FUSELIEZ +FUSELLE +FUSENT +FUSER +FUSERA +FUSERAI +FUSERAIT +FUSERENT +FUSEREZ +FUSERIEZ +FUSETTE +FUSEZ +FUSIBLE +FUSIEZ +FUSIL +FUSILIER +FUSILLA +FUSILLAI +FUSILLAT +FUSILLE +FUSILLEE +FUSILLER +FUSILLEZ +FUSION +FUSIONNA +FUSIONNE +FUSSE +FUSTIGE +FUSTIGEA +FUSTIGEE +FUSTIGER +FUSTIGEZ +FUTAIE +FUTAILLE +FUTAINE +FUTE +FUTEE +FUTILE +FUTILITE +FUTUR +FUTURE +FUYAIT +FUYANT +FUYARD +FUYARDE +FUYEZ +FUYIEZ +GABARE +GABARIER +GABARIT +GABARRE +GABBRO +GABEGIE +GABELLE +GABELOU +GABIER +GABION +GABIONNA +GABIONNE +GABLE +GACHA +GACHAGE +GACHAI +GACHAIT +GACHANT +GACHASSE +GACHAT +GACHE +GACHEE +GACHENT +GACHER +GACHERA +GACHERAI +GACHEREZ +GACHETTE +GACHEUR +GACHEUSE +GACHEZ +GACHIEZ +GADE +GADGET +GADIN +GADOUE +GAELIQUE +GAFFA +GAFFAI +GAFFAIT +GAFFANT +GAFFASSE +GAFFAT +GAFFE +GAFFEE +GAFFENT +GAFFER +GAFFERA +GAFFERAI +GAFFEREZ +GAFFEUR +GAFFEUSE +GAFFEZ +GAFFIEZ +GAGA +GAGE +GAGEA +GAGEAI +GAGEAIT +GAGEANT +GAGEASSE +GAGEAT +GAGEE +GAGENT +GAGER +GAGERA +GAGERAI +GAGERAIT +GAGERENT +GAGEREZ +GAGERIEZ +GAGEURE +GAGEZ +GAGIEZ +GAGISTE +GAGMAN +GAGMEN +GAGNA +GAGNABLE +GAGNAGE +GAGNAI +GAGNAIT +GAGNANT +GAGNASSE +GAGNAT +GAGNE +GAGNEE +GAGNENT +GAGNER +GAGNERA +GAGNERAI +GAGNEREZ +GAGNEUR +GAGNEUSE +GAGNEZ +GAGNIEZ +GAIAC +GAIACOL +GAIE +GAIEMENT +GAIETE +GAILLARD +GAILLET +GAIMENT +GAIN +GAINA +GAINAGE +GAINAI +GAINAIT +GAINANT +GAINASSE +GAINAT +GAINE +GAINEE +GAINENT +GAINER +GAINERA +GAINERAI +GAINEREZ +GAINERIE +GAINEZ +GAINIER +GAINIEZ +GALA +GALANT +GALANTIN +GALAPIAT +GALAXIE +GALBA +GALBAI +GALBAIT +GALBANT +GALBASSE +GALBAT +GALBE +GALBEE +GALBENT +GALBER +GALBERA +GALBERAI +GALBEREZ +GALBEZ +GALBIEZ +GALE +GALEACE +GALEASSE +GALEJA +GALEJADE +GALEJAI +GALEJAIT +GALEJANT +GALEJAT +GALEJE +GALEJENT +GALEJER +GALEJERA +GALEJEZ +GALEJIEZ +GALENE +GALERE +GALERIE +GALERIEN +GALERNE +GALET +GALETTE +GALEUSE +GALEUX +GALGAL +GALIBOT +GALILEEN +GALION +GALIOTE +GALIPOT +GALIPOTA +GALIPOTE +GALLEC +GALLERIE +GALLICAN +GALLIQUE +GALLIUM +GALLO +GALLOISE +GALLON +GALLUP +GALOCHE +GALON +GALONNA +GALONNAI +GALONNAT +GALONNE +GALONNEE +GALONNER +GALONNEZ +GALOP +GALOPA +GALOPADE +GALOPAI +GALOPAIT +GALOPANT +GALOPAT +GALOPE +GALOPEE +GALOPENT +GALOPER +GALOPERA +GALOPEUR +GALOPEZ +GALOPIEZ +GALOPIN +GALOUBET +GALUCHAT +GALURE +GALURIN +GALVANO +GALVAUDA +GALVAUDE +GAMBA +GAMBADA +GAMBADAI +GAMBADAT +GAMBADE +GAMBADER +GAMBADEZ +GAMBE +GAMBERGE +GAMBETTE +GAMBILLA +GAMBILLE +GAMBIT +GAMELLE +GAMETE +GAMIN +GAMINA +GAMINAI +GAMINAIT +GAMINANT +GAMINAT +GAMINE +GAMINENT +GAMINER +GAMINERA +GAMINEZ +GAMINIEZ +GAMMARE +GAMME +GAMMEE +GANACHE +GANDIN +GANDOURA +GANG +GANGA +GANGLION +GANGRENA +GANGRENE +GANGSTER +GANGUE +GANOIDE +GANSA +GANSAI +GANSAIT +GANSANT +GANSASSE +GANSAT +GANSE +GANSEE +GANSENT +GANSER +GANSERA +GANSERAI +GANSEREZ +GANSETTE +GANSEZ +GANSIEZ +GANT +GANTA +GANTAI +GANTAIT +GANTANT +GANTASSE +GANTAT +GANTEE +GANTELE +GANTELEE +GANTELET +GANTENT +GANTER +GANTERA +GANTERAI +GANTEREZ +GANTERIE +GANTEZ +GANTIER +GANTIERE +GANTIEZ +GARA +GARAGE +GARAI +GARAIT +GARANCA +GARANCAI +GARANCAT +GARANCE +GARANCEE +GARANCER +GARANCEZ +GARANT +GARANTI +GARANTIE +GARANTIR +GARANTIT +GARASSE +GARAT +GARBURE +GARCE +GARCETTE +GARCON +GARCONNE +GARDA +GARDAI +GARDAIT +GARDANT +GARDASSE +GARDAT +GARDE +GARDEE +GARDENAL +GARDENIA +GARDENT +GARDER +GARDERA +GARDERAI +GARDEREZ +GARDERIE +GARDEUR +GARDEUSE +GARDEZ +GARDIAN +GARDIEN +GARDIEZ +GARDON +GARE +GAREE +GARENNE +GARENT +GARER +GARERA +GARERAI +GARERAIT +GARERENT +GAREREZ +GARERIEZ +GAREZ +GARGOTA +GARGOTAI +GARGOTAT +GARGOTE +GARGOTER +GARGOTEZ +GARIEZ +GARNI +GARNIE +GARNIR +GARNIRA +GARNIRAI +GARNIREZ +GARNISON +GARNISSE +GARNIT +GAROU +GARRIGUE +GARROT +GARROTTA +GARROTTE +GASCON +GASCONNA +GASCONNE +GASOIL +GASPACHO +GASPILLA +GASPILLE +GASTRITE +GASTRULA +GATA +GATAI +GATAIT +GATANT +GATASSE +GATAT +GATE +GATEAU +GATEE +GATENT +GATER +GATERA +GATERAI +GATERAIT +GATERENT +GATEREZ +GATERIE +GATERIEZ +GATEUSE +GATEUX +GATEZ +GATIEZ +GATIFIA +GATIFIAI +GATIFIAT +GATIFIE +GATIFIER +GATIFIEZ +GATINE +GATISME +GATTE +GAUCHE +GAUCHER +GAUCHERE +GAUCHI +GAUCHIE +GAUCHIR +GAUCHIRA +GAUCHIT +GAUCHO +GAUDE +GAUFRA +GAUFRAGE +GAUFRAI +GAUFRAIT +GAUFRANT +GAUFRAT +GAUFRE +GAUFREE +GAUFRENT +GAUFRER +GAUFRERA +GAUFREUR +GAUFREZ +GAUFRIER +GAUFRIEZ +GAUFROIR +GAUFRURE +GAULA +GAULAGE +GAULAI +GAULAIT +GAULANT +GAULASSE +GAULAT +GAULE +GAULEE +GAULENT +GAULER +GAULERA +GAULERAI +GAULEREZ +GAULEZ +GAULIEZ +GAULLIEN +GAULOISE +GAUPE +GAUR +GAUSSA +GAUSSAI +GAUSSAIT +GAUSSANT +GAUSSAT +GAUSSE +GAUSSEE +GAUSSER +GAUSSERA +GAVA +GAVACHE +GAVAGE +GAVAI +GAVAIT +GAVANT +GAVASSE +GAVAT +GAVE +GAVEE +GAVENT +GAVER +GAVERA +GAVERAI +GAVERAIT +GAVERENT +GAVEREZ +GAVERIEZ +GAVEUR +GAVEUSE +GAVEZ +GAVIAL +GAVIEZ +GAVOTTE +GAVROCHE +GAYAL +GAZA +GAZAGE +GAZAI +GAZAIT +GAZANT +GAZASSE +GAZAT +GAZE +GAZEE +GAZEIFIA +GAZEIFIE +GAZELLE +GAZENT +GAZER +GAZERA +GAZERAI +GAZERAIT +GAZERENT +GAZEREZ +GAZERIEZ +GAZETIER +GAZETTE +GAZEUSE +GAZEUX +GAZEZ +GAZIER +GAZIERE +GAZIEZ +GAZODUC +GAZOGENE +GAZOLE +GAZOLINE +GAZON +GAZONNA +GAZONNAI +GAZONNAT +GAZONNE +GAZONNEE +GAZONNER +GAZONNEZ +GEAI +GEANT +GECKO +GEHENNE +GEIGNAIT +GEIGNANT +GEIGNARD +GEIGNE +GEIGNENT +GEIGNEZ +GEIGNIEZ +GEIGNIT +GEINDRA +GEINDRAI +GEINDRE +GEINDREZ +GEINT +GEINTE +GEISHA +GELA +GELAI +GELAIT +GELANT +GELASSE +GELAT +GELATINA +GELATINE +GELE +GELEE +GELENT +GELER +GELERA +GELERAI +GELERAIT +GELERENT +GELEREZ +GELERIEZ +GELEZ +GELIEZ +GELIF +GELIFIA +GELIFIAI +GELIFIAT +GELIFIE +GELIFIEE +GELIFIER +GELIFIEZ +GELIVE +GELIVURE +GELOSE +GELULE +GELURE +GEMEAU +GEMELLE +GEMI +GEMIE +GEMINA +GEMINAI +GEMINAIT +GEMINANT +GEMINAT +GEMINE +GEMINEE +GEMINENT +GEMINER +GEMINERA +GEMINEZ +GEMINIEZ +GEMIR +GEMIRA +GEMIRAI +GEMIRAIT +GEMIRENT +GEMIREZ +GEMIRIEZ +GEMIRONT +GEMISSE +GEMIT +GEMMA +GEMMAGE +GEMMAI +GEMMAIL +GEMMAIT +GEMMANT +GEMMASSE +GEMMAT +GEMME +GEMMEE +GEMMENT +GEMMER +GEMMERA +GEMMERAI +GEMMEREZ +GEMMEUR +GEMMEUSE +GEMMEZ +GEMMIEZ +GEMMULE +GENA +GENAI +GENAIT +GENANT +GENASSE +GENAT +GENCIVE +GENDARMA +GENDARME +GENDRE +GENE +GENEE +GENENT +GENEPI +GENER +GENERA +GENERAI +GENERAIT +GENERAL +GENERALE +GENERANT +GENERAT +GENERE +GENEREE +GENERENT +GENERER +GENERERA +GENEREUX +GENEREZ +GENERIEZ +GENESE +GENET +GENETTE +GENEUR +GENEUSE +GENEZ +GENIAL +GENIALE +GENIE +GENIEVRE +GENIEZ +GENISSE +GENITAL +GENITALE +GENITEUR +GENITIF +GENOCIDE +GENOISE +GENOME +GENOTYPE +GENOU +GENOUX +GENRE +GENT +GENTIANE +GENTIL +GENTILLE +GENTRY +GEODE +GEODESIE +GEOIDE +GEOLE +GEOLIER +GEOLIERE +GEOLOGIE +GEOLOGUE +GEOMETRE +GEOPHAGE +GEOPHILE +GEORGIEN +GEOTRUPE +GERA +GERAI +GERAIT +GERANCE +GERANIUM +GERANT +GERASSE +GERAT +GERBA +GERBAGE +GERBAI +GERBAIT +GERBANT +GERBASSE +GERBAT +GERBE +GERBEE +GERBENT +GERBER +GERBERA +GERBERAI +GERBEREZ +GERBEUR +GERBEUSE +GERBEZ +GERBIER +GERBIERE +GERBIEZ +GERBILLE +GERBOISE +GERCA +GERCAI +GERCAIT +GERCANT +GERCASSE +GERCAT +GERCE +GERCEE +GERCENT +GERCER +GERCERA +GERCERAI +GERCEREZ +GERCEZ +GERCIEZ +GERCURE +GERE +GEREE +GERENT +GERER +GERERA +GERERAI +GERERAIT +GERERENT +GEREREZ +GERERIEZ +GEREZ +GERFAUT +GERIATRE +GERIEZ +GERMA +GERMAI +GERMAIN +GERMAINE +GERMAIT +GERMANT +GERMASSE +GERMAT +GERME +GERMEE +GERMEN +GERMENT +GERMER +GERMERA +GERMERAI +GERMEREZ +GERMEZ +GERMIEZ +GERMINAL +GERMOIR +GERMON +GEROME +GERONDIF +GERONTE +GERSEAU +GESIER +GESINE +GESIR +GESSE +GESTE +GESTION +GESTUEL +GEYSER +GHETTO +GHILDE +GIAOUR +GIBBEUSE +GIBBEUX +GIBBON +GIBELIN +GIBELINE +GIBERNE +GIBET +GIBIER +GIBOIE +GIBOIENT +GIBOIERA +GIBOULEE +GIBOYA +GIBOYAI +GIBOYAIT +GIBOYANT +GIBOYAT +GIBOYE +GIBOYEE +GIBOYER +GIBOYEUX +GIBOYEZ +GIBOYIEZ +GICLA +GICLAI +GICLAIT +GICLANT +GICLASSE +GICLAT +GICLE +GICLEE +GICLENT +GICLER +GICLERA +GICLERAI +GICLEREZ +GICLEUR +GICLEZ +GICLIEZ +GIFLA +GIFLAI +GIFLAIT +GIFLANT +GIFLASSE +GIFLAT +GIFLE +GIFLEE +GIFLENT +GIFLER +GIFLERA +GIFLERAI +GIFLEREZ +GIFLEZ +GIFLIEZ +GIGOGNE +GIGOLO +GIGOT +GIGOTA +GIGOTAI +GIGOTAIT +GIGOTANT +GIGOTAT +GIGOTE +GIGOTENT +GIGOTER +GIGOTERA +GIGOTEZ +GIGOTIEZ +GIGUE +GILDE +GILET +GILETIER +GILLE +GINDRE +GINGIVAL +GINGUET +GINKGO +GINSENG +GIRAFE +GIRAFEAU +GIRAFON +GIRASOL +GIRATION +GIRAUMON +GIRAVION +GIRELLE +GIRIE +GIRL +GIRODYNE +GIROFLE +GIROFLEE +GIROLLE +GIRON +GIROND +GIRONDE +GIRONDIN +GIRONNA +GIRONNAI +GIRONNAT +GIRONNE +GIRONNEE +GIRONNER +GIRONNEZ +GISAIT +GISANT +GISEMENT +GISEZ +GISIEZ +GITA +GITAI +GITAIT +GITAN +GITANE +GITANT +GITASSE +GITAT +GITE +GITENT +GITER +GITERA +GITERAI +GITERAIT +GITERENT +GITEREZ +GITERIEZ +GITEZ +GITIEZ +GITON +GIVRA +GIVRAGE +GIVRAI +GIVRAIT +GIVRANT +GIVRASSE +GIVRAT +GIVRE +GIVREE +GIVRENT +GIVRER +GIVRERA +GIVRERAI +GIVREREZ +GIVREUSE +GIVREUX +GIVREZ +GIVRIEZ +GIVRURE +GLABELLE +GLABRE +GLACA +GLACAGE +GLACAI +GLACAIT +GLACANT +GLACASSE +GLACAT +GLACE +GLACEE +GLACENT +GLACER +GLACERA +GLACERAI +GLACEREZ +GLACERIE +GLACEUR +GLACEUSE +GLACEUX +GLACEZ +GLACIAL +GLACIALE +GLACIER +GLACIERE +GLACIEZ +GLACON +GLACURE +GLAIEUL +GLAIRA +GLAIRAI +GLAIRAIT +GLAIRANT +GLAIRAT +GLAIRE +GLAIREE +GLAIRENT +GLAIRER +GLAIRERA +GLAIREUX +GLAIREZ +GLAIRIEZ +GLAIRURE +GLAISA +GLAISAI +GLAISAIT +GLAISANT +GLAISAT +GLAISE +GLAISEE +GLAISENT +GLAISER +GLAISERA +GLAISEUX +GLAISEZ +GLAISIEZ +GLAIVE +GLANA +GLANAGE +GLANAI +GLANAIT +GLANANT +GLANASSE +GLANAT +GLAND +GLANDA +GLANDAGE +GLANDAI +GLANDAIT +GLANDANT +GLANDAT +GLANDE +GLANDEE +GLANDENT +GLANDER +GLANDERA +GLANDEUR +GLANDEZ +GLANDIEZ +GLANE +GLANEE +GLANENT +GLANER +GLANERA +GLANERAI +GLANEREZ +GLANEUR +GLANEUSE +GLANEZ +GLANIEZ +GLANURE +GLAPI +GLAPIE +GLAPIR +GLAPIRA +GLAPIRAI +GLAPIREZ +GLAPISSE +GLAPIT +GLAREOLE +GLATI +GLATIR +GLATIRA +GLATIRAI +GLATIREZ +GLATISSE +GLATIT +GLAUCOME +GLAUQUE +GLAVIOT +GLAVIOTA +GLAVIOTE +GLEBE +GLECHOME +GLECOME +GLENE +GLENOIDE +GLIOME +GLISSA +GLISSADE +GLISSAGE +GLISSAI +GLISSAIT +GLISSANT +GLISSAT +GLISSE +GLISSEE +GLISSER +GLISSERA +GLISSEUR +GLISSOIR +GLOBAL +GLOBALE +GLOBE +GLOBINE +GLOBULE +GLOIRE +GLOME +GLORIA +GLORIEUX +GLORIFIA +GLORIFIE +GLORIOLE +GLOSA +GLOSAI +GLOSAIT +GLOSANT +GLOSASSE +GLOSAT +GLOSE +GLOSEE +GLOSENT +GLOSER +GLOSERA +GLOSERAI +GLOSEREZ +GLOSEZ +GLOSIEZ +GLOSSINE +GLOSSITE +GLOTTAL +GLOTTALE +GLOTTE +GLOUGLOU +GLOUSSA +GLOUSSAI +GLOUSSAT +GLOUSSE +GLOUSSER +GLOUTON +GLUANT +GLUAU +GLUCIDE +GLUCOSE +GLUI +GLUME +GLUMELLE +GLUTEN +GLYCEMIE +GLYCERIE +GLYCINE +GLYCOL +GLYPHE +GNANGNAN +GNOCCHI +GNOGNOTE +GNOLE +GNOME +GNOMIQUE +GNOMON +GNON +GNOSE +GNOSIE +GNOU +GOAL +GOBA +GOBAI +GOBAIT +GOBANT +GOBASSE +GOBAT +GOBE +GOBEE +GOBELET +GOBELIN +GOBENT +GOBER +GOBERA +GOBERAI +GOBERAIT +GOBERENT +GOBEREZ +GOBERGE +GOBERGEA +GOBERGEE +GOBERGER +GOBERGEZ +GOBERIEZ +GOBETA +GOBETAI +GOBETAIT +GOBETANT +GOBETAT +GOBETE +GOBETEE +GOBETER +GOBETEZ +GOBETIEZ +GOBETTE +GOBEUR +GOBEUSE +GOBEZ +GOBIE +GOBIEZ +GODA +GODAGE +GODAI +GODAILLA +GODAILLE +GODAIT +GODANT +GODASSE +GODAT +GODE +GODENT +GODER +GODERA +GODERAI +GODERAIT +GODERENT +GODEREZ +GODERIEZ +GODET +GODEZ +GODICHE +GODIEZ +GODILLA +GODILLAI +GODILLAT +GODILLE +GODILLER +GODILLEZ +GODILLOT +GODIVEAU +GODRON +GODRONNA +GODRONNE +GOELAND +GOELETTE +GOEMON +GOGLU +GOGO +GOGUETTE +GOIM +GOINFRA +GOINFRAI +GOINFRAT +GOINFRE +GOINFREE +GOINFRER +GOINFREZ +GOITRE +GOITREUX +GOLDEN +GOLF +GOLFE +GOLFEUR +GOLFEUSE +GOLMOTTE +GOMBO +GOMENOL +GOMENOLE +GOMINA +GOMINAI +GOMINAIT +GOMINANT +GOMINAT +GOMINE +GOMINEE +GOMINENT +GOMINER +GOMINERA +GOMINEZ +GOMINIEZ +GOMMA +GOMMAGE +GOMMAI +GOMMAIT +GOMMANT +GOMMASSE +GOMMAT +GOMME +GOMMEE +GOMMENT +GOMMER +GOMMERA +GOMMERAI +GOMMEREZ +GOMMEUSE +GOMMEUX +GOMMEZ +GOMMIER +GOMMIEZ +GONADE +GOND +GONDA +GONDAI +GONDAIT +GONDANT +GONDASSE +GONDAT +GONDE +GONDEE +GONDENT +GONDER +GONDERA +GONDERAI +GONDEREZ +GONDEZ +GONDIEZ +GONDOLA +GONDOLAI +GONDOLAT +GONDOLE +GONDOLER +GONDOLEZ +GONELLE +GONFALON +GONFANON +GONFLA +GONFLAGE +GONFLAI +GONFLAIT +GONFLANT +GONFLAT +GONFLE +GONFLEE +GONFLENT +GONFLER +GONFLERA +GONFLEUR +GONFLEZ +GONFLIEZ +GONG +GONNELLE +GONZE +GONZESSE +GORD +GORDIEN +GORET +GORFOU +GORGE +GORGEA +GORGEAI +GORGEAIT +GORGEANT +GORGEAT +GORGEE +GORGENT +GORGER +GORGERA +GORGERAI +GORGEREZ +GORGERIN +GORGET +GORGEZ +GORGIEZ +GORGONE +GORILLE +GOSETTE +GOSIER +GOSPEL +GOSSE +GOTHIQUE +GOTIQUE +GOTON +GOUACHA +GOUACHAI +GOUACHAT +GOUACHE +GOUACHEE +GOUACHER +GOUACHEZ +GOUAILLA +GOUAILLE +GOUAPE +GOUDA +GOUDRON +GOUET +GOUFFRE +GOUGE +GOUGERE +GOUINE +GOUJAT +GOUJON +GOUJONNA +GOUJONNE +GOULACHE +GOULAFRE +GOULAG +GOULASCH +GOULE +GOULEE +GOULET +GOULOT +GOULOTTE +GOULU +GOULUE +GOUM +GOUPIL +GOUPILLA +GOUPILLE +GOUR +GOURA +GOURAI +GOURAIT +GOURANCE +GOURANT +GOURASSE +GOURAT +GOURBI +GOURD +GOURDE +GOURDIN +GOURE +GOUREE +GOURENT +GOURER +GOURERA +GOURERAI +GOUREREZ +GOUREZ +GOURIEZ +GOURMAND +GOURME +GOURMEE +GOURMET +GOUROU +GOUSSE +GOUSSET +GOUT +GOUTA +GOUTAI +GOUTAIT +GOUTANT +GOUTASSE +GOUTAT +GOUTE +GOUTEE +GOUTENT +GOUTER +GOUTERA +GOUTERAI +GOUTEREZ +GOUTEUR +GOUTEUSE +GOUTEUX +GOUTEZ +GOUTIEZ +GOUTTA +GOUTTAI +GOUTTAIT +GOUTTANT +GOUTTAT +GOUTTE +GOUTTENT +GOUTTER +GOUTTERA +GOUTTEUX +GOUTTEZ +GOUTTIEZ +GOUVERNA +GOUVERNE +GOYAVE +GOYAVIER +GOYIM +GRABAT +GRABEN +GRABUGE +GRACE +GRACIA +GRACIAI +GRACIAIT +GRACIANT +GRACIAT +GRACIE +GRACIEE +GRACIENT +GRACIER +GRACIERA +GRACIEUX +GRACIEZ +GRACIIEZ +GRACILE +GRADE +GRADEE +GRADER +GRADIENT +GRADIN +GRADUA +GRADUAI +GRADUAIT +GRADUANT +GRADUAT +GRADUE +GRADUEE +GRADUEL +GRADUENT +GRADUER +GRADUERA +GRADUEZ +GRADUIEZ +GRAFFITI +GRAILLA +GRAILLAI +GRAILLAT +GRAILLE +GRAILLEE +GRAILLER +GRAILLEZ +GRAILLON +GRAIN +GRAINA +GRAINAGE +GRAINAI +GRAINAIT +GRAINANT +GRAINAT +GRAINE +GRAINEE +GRAINENT +GRAINER +GRAINERA +GRAINEZ +GRAINIER +GRAINIEZ +GRAISSA +GRAISSAI +GRAISSAT +GRAISSE +GRAISSEE +GRAISSER +GRAMEN +GRAMINEE +GRAMME +GRAND +GRANDE +GRANDET +GRANDEUR +GRANDI +GRANDIE +GRANDIR +GRANDIRA +GRANDIT +GRANGE +GRANIT +GRANITA +GRANITAI +GRANITAT +GRANITE +GRANITEE +GRANITER +GRANITEZ +GRANULA +GRANULAI +GRANULAT +GRANULE +GRANULEE +GRANULER +GRANULEZ +GRANULIE +GRAPHE +GRAPHEME +GRAPHIE +GRAPHITA +GRAPHITE +GRAPPE +GRAPPIN +GRASSE +GRASSET +GRASSEYA +GRASSEYE +GRATERON +GRATIFIA +GRATIFIE +GRATIN +GRATINA +GRATINAI +GRATINAT +GRATINE +GRATINEE +GRATINER +GRATINEZ +GRATIOLE +GRATTA +GRATTAGE +GRATTAI +GRATTAIT +GRATTANT +GRATTAT +GRATTE +GRATTEE +GRATTENT +GRATTER +GRATTERA +GRATTEUR +GRATTEZ +GRATTIEZ +GRATTOIR +GRATTURE +GRATUIT +GRATUITE +GRAU +GRAVA +GRAVAI +GRAVAIT +GRAVANT +GRAVASSE +GRAVAT +GRAVE +GRAVEE +GRAVELEE +GRAVELLE +GRAVENT +GRAVER +GRAVERA +GRAVERAI +GRAVEREZ +GRAVEUR +GRAVEUSE +GRAVEZ +GRAVI +GRAVIDE +GRAVIE +GRAVIER +GRAVIEZ +GRAVIR +GRAVIRA +GRAVIRAI +GRAVIREZ +GRAVISSE +GRAVIT +GRAVITA +GRAVITAI +GRAVITAT +GRAVITE +GRAVITER +GRAVITEZ +GRAVURE +GREA +GREAI +GREAIT +GREANT +GREASSE +GREAT +GREBE +GREBICHE +GREBIGE +GREC +GRECISA +GRECISAI +GRECISAT +GRECISE +GRECISEE +GRECISER +GRECISEZ +GRECITE +GRECQUA +GRECQUAI +GRECQUAT +GRECQUE +GRECQUEE +GRECQUER +GRECQUEZ +GREDIN +GREDINE +GREE +GREEE +GREEMENT +GREEN +GREENT +GREER +GREERAI +GREERENT +GREEZ +GREFFA +GREFFAGE +GREFFAI +GREFFAIT +GREFFANT +GREFFAT +GREFFE +GREFFEE +GREFFENT +GREFFER +GREFFERA +GREFFEUR +GREFFEZ +GREFFIER +GREFFIEZ +GREFFOIR +GREFFON +GREGAIRE +GREGE +GREIEZ +GRELA +GRELAIT +GRELAT +GRELE +GRELER +GRELERA +GRELIN +GRELON +GRELOT +GRELOTTA +GRELOTTE +GREMIL +GRENA +GRENACHE +GRENADE +GRENADIN +GRENAGE +GRENAI +GRENAIT +GRENANT +GRENASSE +GRENAT +GRENE +GRENEE +GRENELA +GRENELAI +GRENELAT +GRENELE +GRENELEE +GRENELER +GRENELEZ +GRENELLE +GRENENT +GRENER +GRENERA +GRENERAI +GRENEREZ +GRENEUR +GRENEZ +GRENIER +GRENIEZ +GRENU +GRENUE +GRENURE +GRESA +GRESAGE +GRESAI +GRESAIT +GRESANT +GRESASSE +GRESAT +GRESE +GRESEE +GRESENT +GRESER +GRESERA +GRESERAI +GRESEREZ +GRESEUX +GRESEZ +GRESIEZ +GRESIL +GRESOIR +GRESSIN +GREVA +GREVAI +GREVAIT +GREVANT +GREVASSE +GREVAT +GREVE +GREVEE +GREVENT +GREVER +GREVERA +GREVERAI +GREVEREZ +GREVEZ +GREVIEZ +GREVISTE +GRIBICHE +GRIECHE +GRIEF +GRIFFA +GRIFFADE +GRIFFAI +GRIFFAIT +GRIFFANT +GRIFFAT +GRIFFE +GRIFFEE +GRIFFENT +GRIFFER +GRIFFERA +GRIFFEUR +GRIFFEZ +GRIFFIEZ +GRIFFON +GRIFFU +GRIFFUE +GRIFFURE +GRIGNA +GRIGNAI +GRIGNAIT +GRIGNANT +GRIGNAT +GRIGNE +GRIGNENT +GRIGNER +GRIGNERA +GRIGNEZ +GRIGNIEZ +GRIGNON +GRIGNOTA +GRIGNOTE +GRIGOU +GRIGRI +GRIL +GRILL +GRILLA +GRILLADE +GRILLAGE +GRILLAI +GRILLAIT +GRILLANT +GRILLAT +GRILLE +GRILLEE +GRILLENT +GRILLER +GRILLERA +GRILLEZ +GRILLIEZ +GRILLOIR +GRILLON +GRIMA +GRIMACA +GRIMACAI +GRIMACAT +GRIMACE +GRIMACEE +GRIMACER +GRIMACEZ +GRIMAGE +GRIMAI +GRIMAIT +GRIMANT +GRIMASSE +GRIMAT +GRIMAUD +GRIME +GRIMEE +GRIMENT +GRIMER +GRIMERA +GRIMERAI +GRIMEREZ +GRIMEZ +GRIMIEZ +GRIMOIRE +GRIMPA +GRIMPAI +GRIMPAIT +GRIMPANT +GRIMPAT +GRIMPE +GRIMPEE +GRIMPENT +GRIMPER +GRIMPERA +GRIMPEUR +GRIMPEZ +GRIMPIEZ +GRINCA +GRINCAI +GRINCAIT +GRINCANT +GRINCAT +GRINCE +GRINCENT +GRINCER +GRINCERA +GRINCEZ +GRINCHA +GRINCHAI +GRINCHAT +GRINCHE +GRINCHEE +GRINCHER +GRINCHEZ +GRINCIEZ +GRINGE +GRINGO +GRINGUA +GRINGUAI +GRINGUAT +GRINGUE +GRINGUER +GRINGUEZ +GRIOT +GRIOTTE +GRIPPA +GRIPPAGE +GRIPPAI +GRIPPAIT +GRIPPAL +GRIPPALE +GRIPPANT +GRIPPAT +GRIPPE +GRIPPEE +GRIPPENT +GRIPPER +GRIPPERA +GRIPPEZ +GRIPPIEZ +GRISA +GRISAI +GRISAIT +GRISANT +GRISARD +GRISASSE +GRISAT +GRISATRE +GRISBI +GRISE +GRISEE +GRISENT +GRISER +GRISERA +GRISERAI +GRISEREZ +GRISERIE +GRISET +GRISETTE +GRISEZ +GRISIEZ +GRISOLA +GRISOLAI +GRISOLAT +GRISOLE +GRISOLER +GRISOLEZ +GRISOLLA +GRISOLLE +GRISON +GRISONNA +GRISONNE +GRISOU +GRIVE +GRIVELA +GRIVELAI +GRIVELAT +GRIVELE +GRIVELEE +GRIVELER +GRIVELEZ +GRIVELLE +GRIVETON +GRIVOISE +GRIZZLI +GRIZZLY +GROG +GROGGY +GROGNA +GROGNAI +GROGNAIT +GROGNANT +GROGNARD +GROGNAT +GROGNE +GROGNENT +GROGNER +GROGNERA +GROGNEUR +GROGNEZ +GROGNIEZ +GROGNON +GROIN +GROISIL +GROLE +GROLLE +GROMMELA +GROMMELE +GRONDA +GRONDAI +GRONDAIT +GRONDANT +GRONDAT +GRONDE +GRONDEE +GRONDENT +GRONDER +GRONDERA +GRONDEZ +GRONDIEZ +GRONDIN +GROOM +GROSSE +GROSSEUR +GROSSI +GROSSIE +GROSSIER +GROSSIR +GROSSIRA +GROSSIT +GROSSOIE +GROSSOYA +GROSSOYE +GROTTE +GROUILLE +GROULLA +GROULLAI +GROULLAT +GROUP +GROUPA +GROUPAGE +GROUPAI +GROUPAIT +GROUPANT +GROUPAT +GROUPE +GROUPEE +GROUPENT +GROUPER +GROUPERA +GROUPEZ +GROUPIE +GROUPIEZ +GROUSE +GRUAU +GRUE +GRUGE +GRUGEA +GRUGEAI +GRUGEAIT +GRUGEANT +GRUGEAT +GRUGEE +GRUGENT +GRUGEOIR +GRUGER +GRUGERA +GRUGERAI +GRUGEREZ +GRUGEZ +GRUGIEZ +GRUME +GRUMEAU +GRUMELA +GRUMELAI +GRUMELAT +GRUMELE +GRUMELEE +GRUMELER +GRUMELEZ +GRUMELLE +GRUTIER +GRUYERE +GRYPHEE +GUAI +GUANACO +GUANO +GUARANI +GUEA +GUEABLE +GUEAI +GUEAIT +GUEANT +GUEASSE +GUEAT +GUEBRE +GUEDE +GUEE +GUEEE +GUEENT +GUEER +GUEERA +GUEERAI +GUEERAIT +GUEERENT +GUEEREZ +GUEERIEZ +GUEEZ +GUEIEZ +GUELFE +GUELTE +GUENILLE +GUENON +GUEPARD +GUEPE +GUEPIER +GUEPIERE +GUERE +GUERET +GUERI +GUERIDON +GUERIE +GUERILLA +GUERIR +GUERIRA +GUERIRAI +GUERIREZ +GUERISON +GUERISSE +GUERIT +GUERITE +GUERRE +GUERRIER +GUERROIE +GUERROYA +GUERROYE +GUET +GUETE +GUETRA +GUETRAI +GUETRAIT +GUETRANT +GUETRAT +GUETRE +GUETREE +GUETRENT +GUETRER +GUETRERA +GUETREZ +GUETRIEZ +GUETRON +GUETTA +GUETTAI +GUETTAIT +GUETTANT +GUETTAT +GUETTE +GUETTEE +GUETTENT +GUETTER +GUETTERA +GUETTEUR +GUETTEZ +GUETTIEZ +GUEULA +GUEULAI +GUEULAIT +GUEULANT +GUEULARD +GUEULAT +GUEULE +GUEULEE +GUEULENT +GUEULER +GUEULERA +GUEULEZ +GUEULIEZ +GUEUSA +GUEUSAI +GUEUSAIT +GUEUSANT +GUEUSAT +GUEUSE +GUEUSEE +GUEUSENT +GUEUSER +GUEUSERA +GUEUSEZ +GUEUSIEZ +GUEUX +GUIBOLE +GUIBOLLE +GUIBRE +GUICHE +GUICHET +GUIDA +GUIDAGE +GUIDAI +GUIDAIT +GUIDANT +GUIDASSE +GUIDAT +GUIDE +GUIDEAU +GUIDEE +GUIDENT +GUIDER +GUIDERA +GUIDERAI +GUIDEREZ +GUIDEZ +GUIDIEZ +GUIDON +GUIGNA +GUIGNAI +GUIGNAIT +GUIGNANT +GUIGNARD +GUIGNAT +GUIGNE +GUIGNEE +GUIGNENT +GUIGNER +GUIGNERA +GUIGNEZ +GUIGNIER +GUIGNIEZ +GUIGNOL +GUIGNON +GUILDE +GUIMAUVE +GUIMPE +GUINCHA +GUINCHAI +GUINCHAT +GUINCHE +GUINCHER +GUINCHEZ +GUINDA +GUINDAI +GUINDAIT +GUINDANT +GUINDAT +GUINDE +GUINDEAU +GUINDEE +GUINDENT +GUINDER +GUINDERA +GUINDEZ +GUINDIEZ +GUINEE +GUIPA +GUIPAGE +GUIPAI +GUIPAIT +GUIPANT +GUIPASSE +GUIPAT +GUIPE +GUIPEE +GUIPENT +GUIPER +GUIPERA +GUIPERAI +GUIPEREZ +GUIPEZ +GUIPIEZ +GUIPOIR +GUIPON +GUIPURE +GUISARME +GUISE +GUITARE +GUITOUNE +GUIVRE +GUIVREE +GULDEN +GUNITE +GUPPY +GURU +GUSTATIF +GUTTURAL +GUZLA +GYMKHANA +GYMNASE +GYMNASTE +GYMNIQUE +GYMNOTE +GYPAETE +GYPSE +GYPSEUSE +GYPSEUX +GYRIN +GYROSTAT +HABANERA +HABILE +HABILETE +HABILITA +HABILITE +HABILLA +HABILLAI +HABILLAT +HABILLE +HABILLEE +HABILLER +HABILLEZ +HABIT +HABITA +HABITAI +HABITAIT +HABITANT +HABITAT +HABITE +HABITEE +HABITENT +HABITER +HABITERA +HABITEZ +HABITIEZ +HABITUA +HABITUAI +HABITUAT +HABITUDE +HABITUE +HABITUEE +HABITUEL +HABITUER +HABITUEZ +HABLA +HABLAI +HABLAIT +HABLANT +HABLASSE +HABLAT +HABLE +HABLEE +HABLENT +HABLER +HABLERA +HABLERAI +HABLEREZ +HABLERIE +HABLEUR +HABLEUSE +HABLEZ +HABLIEZ +HACHA +HACHAGE +HACHAI +HACHAIT +HACHANT +HACHASSE +HACHAT +HACHE +HACHEE +HACHENT +HACHER +HACHERA +HACHERAI +HACHEREZ +HACHETTE +HACHEUR +HACHEZ +HACHIEZ +HACHISCH +HACHOIR +HACHURA +HACHURAI +HACHURAT +HACHURE +HACHUREE +HACHURER +HACHUREZ +HACIENDA +HADDOCK +HADITH +HADJI +HAFNIUM +HAGARD +HAGARDE +HAIE +HAIK +HAIKAI +HAIKU +HAILLON +HAINE +HAINEUSE +HAINEUX +HAIR +HAIRA +HAIRAI +HAIRAIT +HAIRE +HAIRENT +HAIREZ +HAIRIEZ +HAIRONT +HAISSAIT +HAISSANT +HAISSE +HAIT +HAITIEN +HALA +HALAGE +HALAI +HALAIT +HALANT +HALASSE +HALAT +HALBI +HALBRAN +HALE +HALECRET +HALEE +HALEINE +HALENT +HALER +HALERA +HALERAI +HALERAIT +HALERENT +HALEREZ +HALERIEZ +HALETA +HALETAI +HALETAIT +HALETANT +HALETAT +HALETE +HALETEE +HALETENT +HALETER +HALETERA +HALETEZ +HALETIEZ +HALEUR +HALEUSE +HALEZ +HALICTE +HALIEZ +HALIPLE +HALL +HALLALI +HALLE +HALLIER +HALO +HALOGENE +HALOIR +HALTE +HALTERE +HALVA +HAMAC +HAMADA +HAMEAU +HAMECON +HAMMAM +HAMPE +HAMSTER +HANAP +HANCHA +HANCHAI +HANCHAIT +HANCHANT +HANCHAT +HANCHE +HANCHEE +HANCHENT +HANCHER +HANCHERA +HANCHEZ +HANCHIEZ +HANDBALL +HANDICAP +HANGAR +HANNETON +HANSART +HANSE +HANTA +HANTAI +HANTAIT +HANTANT +HANTASSE +HANTAT +HANTEE +HANTENT +HANTER +HANTERA +HANTERAI +HANTEREZ +HANTEZ +HANTIEZ +HANTISE +HAPAX +HAPLOIDE +HAPPA +HAPPAI +HAPPAIT +HAPPANT +HAPPASSE +HAPPAT +HAPPE +HAPPEE +HAPPENT +HAPPER +HAPPERA +HAPPERAI +HAPPEREZ +HAPPEZ +HAPPIEZ +HAQUENEE +HAQUET +HARANGUA +HARANGUE +HARASSA +HARASSAI +HARASSAT +HARASSE +HARASSEE +HARASSER +HARCELA +HARCELAI +HARCELAT +HARCELE +HARCELEE +HARCELER +HARCELEZ +HARCELLE +HARDA +HARDAI +HARDAIT +HARDANT +HARDASSE +HARDAT +HARDE +HARDEE +HARDENT +HARDER +HARDERA +HARDERAI +HARDEREZ +HARDEZ +HARDI +HARDIE +HARDIEZ +HAREM +HARENG +HARFANG +HARGNE +HARGNEUX +HARICOT +HARISSA +HARKI +HARLE +HARMONIE +HARNACHA +HARNACHE +HARO +HARPA +HARPAGON +HARPAI +HARPAIL +HARPAIT +HARPANT +HARPASSE +HARPAT +HARPE +HARPEE +HARPENT +HARPER +HARPERA +HARPERAI +HARPEREZ +HARPEZ +HARPIE +HARPIEZ +HARPISTE +HARPON +HARPONNA +HARPONNE +HART +HASARD +HASARDA +HASARDAI +HASARDAT +HASARDE +HASARDEE +HASARDER +HASARDEZ +HASCH +HASCHICH +HASE +HAST +HASTE +HASTEE +HATA +HATAI +HATAIT +HATANT +HATASSE +HATAT +HATE +HATEE +HATELET +HATENT +HATER +HATERA +HATERAI +HATERAIT +HATEREAU +HATERENT +HATEREZ +HATERIEZ +HATEZ +HATIER +HATIEZ +HATIF +HATIVE +HATIVEAU +HAUBAN +HAUBANA +HAUBANAI +HAUBANAT +HAUBANE +HAUBANEE +HAUBANER +HAUBANEZ +HAUBERT +HAUSSA +HAUSSAI +HAUSSAIT +HAUSSANT +HAUSSAT +HAUSSE +HAUSSEE +HAUSSER +HAUSSERA +HAUSSIER +HAUT +HAUTAIN +HAUTAINE +HAUTE +HAUTEUR +HAUTIN +HAVA +HAVAGE +HAVAI +HAVAIT +HAVANE +HAVANT +HAVASSE +HAVAT +HAVE +HAVEE +HAVENEAU +HAVENET +HAVENT +HAVER +HAVERA +HAVERAI +HAVERAIT +HAVERENT +HAVEREZ +HAVERIEZ +HAVEUR +HAVEUSE +HAVEZ +HAVI +HAVIE +HAVIEZ +HAVIR +HAVIRA +HAVIRAI +HAVIRAIT +HAVIRENT +HAVIREZ +HAVIRIEZ +HAVIRONT +HAVISSE +HAVIT +HAVRE +HAVRESAC +HAWAIEN +HAYON +HEAUME +HEAUMIER +HEBERGE +HEBERGEA +HEBERGEE +HEBERGER +HEBERGEZ +HEBETA +HEBETAI +HEBETAIT +HEBETANT +HEBETAT +HEBETE +HEBETEE +HEBETENT +HEBETER +HEBETERA +HEBETEZ +HEBETIEZ +HEBETUDE +HEBRAISA +HEBRAISE +HEBREU +HEBREUX +HECTARE +HECTIQUE +HECTO +HEGELIEN +HEGIRE +HEIDUQUE +HEIN +HELA +HELAI +HELAIT +HELANT +HELASSE +HELAT +HELE +HELEE +HELENT +HELEPOLE +HELER +HELERA +HELERAI +HELERAIT +HELERENT +HELEREZ +HELERIEZ +HELEZ +HELIAQUE +HELIASTE +HELICE +HELICON +HELIEZ +HELIGARE +HELION +HELIPORT +HELIUM +HELIX +HELLENE +HELLO +HELODEE +HELVELLE +HELVETE +HEMATIE +HEMATINE +HEMATITE +HEMATOME +HEMATOSE +HEMIEDRE +HEMINE +HEMIONE +HEMOLYSE +HENNE +HENNI +HENNIE +HENNIN +HENNIR +HENNIRA +HENNIRAI +HENNIREZ +HENNISSE +HENNIT +HENRY +HEPARINE +HEPATITE +HERAUT +HERBA +HERBACE +HERBACEE +HERBAGE +HERBAGEA +HERBAGEE +HERBAGER +HERBAGEZ +HERBAI +HERBAIT +HERBANT +HERBASSE +HERBAT +HERBE +HERBEE +HERBENT +HERBER +HERBERA +HERBERAI +HERBEREZ +HERBERIE +HERBETTE +HERBEUSE +HERBEUX +HERBEZ +HERBIER +HERBIEZ +HERBU +HERBUE +HERCULE +HERE +HEREDITE +HERESIE +HERISSA +HERISSAI +HERISSAT +HERISSE +HERISSEE +HERISSER +HERISSON +HERITA +HERITAGE +HERITAI +HERITAIT +HERITANT +HERITAT +HERITE +HERITEE +HERITENT +HERITER +HERITERA +HERITEZ +HERITIER +HERITIEZ +HERMESSE +HERMINE +HERNIE +HERNIEE +HERNIEUX +HEROINE +HEROIQUE +HEROISME +HERON +HERPE +HERSA +HERSAGE +HERSAI +HERSAIT +HERSANT +HERSASSE +HERSAT +HERSE +HERSEE +HERSENT +HERSER +HERSERA +HERSERAI +HERSEREZ +HERSEUR +HERSEUSE +HERSEZ +HERSIEZ +HERTZ +HESITA +HESITAI +HESITAIT +HESITANT +HESITAT +HESITE +HESITENT +HESITER +HESITERA +HESITEZ +HESITIEZ +HETAIRE +HETAIRIE +HETMAN +HETRAIE +HETRE +HEUR +HEURE +HEUREUSE +HEUREUX +HEURT +HEURTA +HEURTAI +HEURTAIT +HEURTANT +HEURTAT +HEURTE +HEURTEE +HEURTENT +HEURTER +HEURTERA +HEURTEZ +HEURTIEZ +HEURTOIR +HEVEA +HEXAEDRE +HEXAGONE +HEXAPODE +HEXOSE +HIATAL +HIATALE +HIBERNA +HIBERNAI +HIBERNAL +HIBERNAT +HIBERNE +HIBERNEE +HIBERNER +HIBERNEZ +HIBOU +HIBOUX +HICKORY +HIDALGO +HIDEUR +HIDEUSE +HIDEUX +HIEBLE +HIEMAL +HIEMALE +HIER +HILAIRE +HILARANT +HILARE +HILARITE +HIMATION +HINDI +HINDOU +HINDOUE +HIPPIE +HIPPIQUE +HIPPISME +HIPPY +HIRCIN +HIRCINE +HIRSUTE +HISPIDE +HISSA +HISSAI +HISSAIT +HISSANT +HISSASSE +HISSAT +HISSE +HISSEE +HISSER +HISSERA +HISSERAI +HISSEREZ +HISTOIRE +HISTORIA +HISTORIE +HISTRION +HITTITE +HIVER +HIVERNA +HIVERNAI +HIVERNAL +HIVERNAT +HIVERNE +HIVERNEE +HIVERNER +HIVERNEZ +HOBBY +HOBEREAU +HOCCO +HOCHA +HOCHAI +HOCHAIT +HOCHANT +HOCHASSE +HOCHAT +HOCHE +HOCHEE +HOCHENT +HOCHER +HOCHERA +HOCHERAI +HOCHEREZ +HOCHET +HOCHEZ +HOCHIEZ +HOCKEY +HOIR +HOIRIE +HOLA +HOLDING +HOLLANDE +HOLMIUM +HOLOCENE +HOLOSIDE +HOMARD +HOME +HOMELIE +HOMESPUN +HOMICIDE +HOMINISE +HOMMAGE +HOMMASSE +HOMME +HOMO +HOMOGENE +HOMONYME +HONGRA +HONGRAI +HONGRAIT +HONGRANT +HONGRAT +HONGRE +HONGREE +HONGRENT +HONGRER +HONGRERA +HONGREZ +HONGRIEZ +HONGROIE +HONGROYA +HONGROYE +HONNETE +HONNEUR +HONNI +HONNIE +HONNIR +HONNIRA +HONNIRAI +HONNIREZ +HONNISSE +HONNIT +HONORA +HONORAI +HONORAIT +HONORANT +HONORAT +HONORE +HONOREE +HONORENT +HONORER +HONORERA +HONOREZ +HONORIEZ +HONTE +HONTEUSE +HONTEUX +HOOLIGAN +HOPITAL +HOPLITE +HOQUET +HOQUETA +HOQUETAI +HOQUETAT +HOQUETE +HOQUETEE +HOQUETER +HOQUETEZ +HOQUETON +HOQUETTE +HORAIRE +HORDE +HORDEINE +HORION +HORIZON +HORLOGE +HORLOGER +HORMONA +HORMONAI +HORMONAL +HORMONAT +HORMONE +HORMONEE +HORMONER +HORMONEZ +HORODATE +HORREUR +HORRIBLE +HORRIFIA +HORRIFIE +HORST +HOSANNA +HOSPICE +HOSPODAR +HOSTIE +HOSTILE +HOSTO +HOTE +HOTEL +HOTELIER +HOTESSE +HOTTE +HOTTEE +HOTTERET +HOUA +HOUACHE +HOUAI +HOUAICHE +HOUAIT +HOUANT +HOUASSE +HOUAT +HOUBLON +HOUDAN +HOUE +HOUEE +HOUENT +HOUER +HOUERA +HOUERAI +HOUERAIT +HOUERENT +HOUEREZ +HOUERIEZ +HOUEZ +HOUIEZ +HOUILLE +HOUILLER +HOUKA +HOULE +HOULETTE +HOULEUSE +HOULEUX +HOULQUE +HOUP +HOUPPA +HOUPPAI +HOUPPAIT +HOUPPANT +HOUPPAT +HOUPPE +HOUPPEE +HOUPPENT +HOUPPER +HOUPPERA +HOUPPEZ +HOUPPIER +HOUPPIEZ +HOUQUE +HOURD +HOURDA +HOURDAGE +HOURDAI +HOURDAIT +HOURDANT +HOURDAT +HOURDE +HOURDEE +HOURDENT +HOURDER +HOURDERA +HOURDEZ +HOURDI +HOURDIE +HOURDIEZ +HOURDIR +HOURDIRA +HOURDIT +HOURI +HOURQUE +HOURRA +HOURVARI +HOUSEAU +HOUSSA +HOUSSAI +HOUSSAIE +HOUSSAIT +HOUSSANT +HOUSSAT +HOUSSE +HOUSSEE +HOUSSER +HOUSSERA +HOUSSINE +HOUSSOIR +HOUX +HOYAU +HUAI +HUAIT +HUANT +HUARD +HUART +HUASSE +HUAT +HUBLOT +HUCHA +HUCHAI +HUCHAIT +HUCHANT +HUCHASSE +HUCHAT +HUCHE +HUCHEE +HUCHENT +HUCHER +HUCHERA +HUCHERAI +HUCHEREZ +HUCHET +HUCHEZ +HUCHIEZ +HUEE +HUENT +HUER +HUERA +HUERAI +HUERAIT +HUERENT +HUEREZ +HUERIEZ +HUERTA +HUEZ +HUGUENOT +HUIEZ +HUILA +HUILAGE +HUILAI +HUILAIT +HUILANT +HUILASSE +HUILAT +HUILE +HUILEE +HUILENT +HUILER +HUILERA +HUILERAI +HUILEREZ +HUILERIE +HUILEUSE +HUILEUX +HUILEZ +HUILIER +HUILIEZ +HUISSIER +HUIT +HUITAIN +HUITAINE +HUITIEME +HUITRE +HUITRIER +HULOTTE +HULULA +HULULAI +HULULAIT +HULULANT +HULULAT +HULULE +HULULEE +HULULENT +HULULER +HULULERA +HULULEZ +HULULIEZ +HUMA +HUMAGE +HUMAI +HUMAIN +HUMAINE +HUMAIT +HUMANISA +HUMANISE +HUMANITE +HUMANT +HUMASSE +HUMAT +HUMBLE +HUME +HUMECTA +HUMECTAI +HUMECTAT +HUMECTE +HUMECTEE +HUMECTER +HUMECTEZ +HUMEE +HUMENT +HUMER +HUMERA +HUMERAI +HUMERAIT +HUMERAL +HUMERALE +HUMERENT +HUMEREZ +HUMERIEZ +HUMEUR +HUMEZ +HUMIDE +HUMIDITE +HUMIEZ +HUMILIA +HUMILIAI +HUMILIAT +HUMILIE +HUMILIEE +HUMILIER +HUMILIEZ +HUMILITE +HUMORAL +HUMORALE +HUMOUR +HUNE +HUNIER +HUPPE +HUPPEE +HURDLER +HURE +HURLA +HURLAI +HURLAIT +HURLANT +HURLASSE +HURLAT +HURLE +HURLEE +HURLENT +HURLER +HURLERA +HURLERAI +HURLEREZ +HURLEUR +HURLEUSE +HURLEZ +HURLIEZ +HURON +HURONIEN +HURONNE +HURRAH +HUSSARD +HUSSARDE +HUSSITE +HUTINET +HUTTE +HYALIN +HYALINE +HYALITE +HYALOIDE +HYBRIDA +HYBRIDAI +HYBRIDAT +HYBRIDE +HYBRIDEE +HYBRIDER +HYBRIDEZ +HYDATIDE +HYDNE +HYDRATA +HYDRATAI +HYDRATAT +HYDRATE +HYDRATEE +HYDRATER +HYDRATEZ +HYDRE +HYDREMIE +HYDRIE +HYDRIQUE +HYDROLAT +HYDROMEL +HYDRURE +HYENE +HYGIENE +HYGROMA +HYMEN +HYMENEE +HYMNE +HYOIDE +HYOIDIEN +HYPERON +HYPNOSE +HYPOGE +HYPOGEE +HYPOGYNE +HYSOPE +HYSTERIE +IAMBE +IBERE +IBERIDE +IBERIQUE +IBIDEM +ICAQUE +ICAQUIER +ICARIEN +ICEBERG +ICEFIELD +ICHOR +ICHTYOL +ICHTYOSE +ICOGLAN +ICONE +ICONIQUE +ICTERE +IDEAL +IDEALE +IDEALISA +IDEALISE +IDEALITE +IDEATION +IDEE +IDEEL +IDEELLE +IDEM +IDENTITE +IDIOME +IDIOT +IDIOTE +IDIOTIE +IDIOTISA +IDIOTISE +IDOINE +IDOLATRA +IDOLATRE +IDOLE +IDYLLE +IGLOO +IGNAME +IGNARE +IGNE +IGNEE +IGNIFUGE +IGNITION +IGNIVOME +IGNOBLE +IGNORA +IGNORAI +IGNORAIT +IGNORANT +IGNORAT +IGNORE +IGNOREE +IGNORENT +IGNORER +IGNORERA +IGNOREZ +IGNORIEZ +IGUANE +IGUE +ILEAL +ILEALE +ILEITE +ILEON +ILIAQUE +ILIEN +ILIENNE +ILION +ILLEGAL +ILLEGALE +ILLETTRE +ILLICITE +ILLICO +ILLIMITE +ILLUMINA +ILLUMINE +ILLUSION +ILLUSTRA +ILLUSTRE +ILOT +ILOTAGE +ILOTE +ILOTIER +IMAGE +IMAGEA +IMAGEAI +IMAGEAIT +IMAGEANT +IMAGEAT +IMAGEE +IMAGENT +IMAGER +IMAGERA +IMAGERAI +IMAGEREZ +IMAGERIE +IMAGEZ +IMAGIER +IMAGIERE +IMAGIEZ +IMAGINA +IMAGINAI +IMAGINAT +IMAGINE +IMAGINEE +IMAGINER +IMAGINEZ +IMAGO +IMAM +IMAMAT +IMANAT +IMBECILE +IMBERBE +IMBIBA +IMBIBAI +IMBIBAIT +IMBIBANT +IMBIBAT +IMBIBE +IMBIBEE +IMBIBENT +IMBIBER +IMBIBERA +IMBIBEZ +IMBIBIEZ +IMBRIQUA +IMBRIQUE +IMBU +IMBUE +IMIDE +IMITA +IMITABLE +IMITAI +IMITAIT +IMITANT +IMITASSE +IMITAT +IMITATIF +IMITE +IMITEE +IMITENT +IMITER +IMITERA +IMITERAI +IMITEREZ +IMITEZ +IMITIEZ +IMMACULE +IMMANENT +IMMATURE +IMMEDIAT +IMMENSE +IMMERGE +IMMERGEA +IMMERGEE +IMMERGER +IMMERGEZ +IMMERITE +IMMERSIF +IMMEUBLE +IMMIGRA +IMMIGRAI +IMMIGRAT +IMMIGRE +IMMIGREE +IMMIGRER +IMMIGREZ +IMMINENT +IMMISCE +IMMISCEE +IMMISCER +IMMISCEZ +IMMOBILE +IMMODERE +IMMOLA +IMMOLAI +IMMOLAIT +IMMOLANT +IMMOLAT +IMMOLE +IMMOLEE +IMMOLENT +IMMOLER +IMMOLERA +IMMOLEZ +IMMOLIEZ +IMMONDE +IMMORAL +IMMORALE +IMMORTEL +IMMOTIVE +IMMUABLE +IMMUN +IMMUNE +IMMUNISA +IMMUNISE +IMMUNITE +IMPACT +IMPACTA +IMPACTAI +IMPACTAT +IMPACTE +IMPACTEE +IMPACTER +IMPACTEZ +IMPAIR +IMPAIRE +IMPALA +IMPALUDE +IMPARTI +IMPARTIE +IMPARTIR +IMPARTIT +IMPASSE +IMPAVIDE +IMPAYE +IMPAYEE +IMPER +IMPERIAL +IMPETIGO +IMPETRA +IMPETRAI +IMPETRAT +IMPETRE +IMPETREE +IMPETRER +IMPETREZ +IMPIE +IMPIETE +IMPLANT +IMPLANTA +IMPLEXE +IMPLIQUA +IMPLIQUE +IMPLORA +IMPLORAI +IMPLORAT +IMPLORE +IMPLOREE +IMPLORER +IMPLOREZ +IMPLOSA +IMPLOSAI +IMPLOSAT +IMPLOSE +IMPLOSER +IMPLOSEZ +IMPLOSIF +IMPOLI +IMPOLIE +IMPORTA +IMPORTAI +IMPORTAT +IMPORTE +IMPORTEE +IMPORTER +IMPORTEZ +IMPORTUN +IMPOSA +IMPOSAI +IMPOSAIT +IMPOSANT +IMPOSAT +IMPOSE +IMPOSEE +IMPOSENT +IMPOSER +IMPOSERA +IMPOSEUR +IMPOSEZ +IMPOSIEZ +IMPOSTE +IMPOT +IMPOTENT +IMPREGNA +IMPREGNE +IMPREVU +IMPREVUE +IMPRIMA +IMPRIMAI +IMPRIMAT +IMPRIME +IMPRIMEE +IMPRIMER +IMPRIMEZ +IMPROPRE +IMPROUVA +IMPROUVE +IMPUBERE +IMPUDENT +IMPUDEUR +IMPULSA +IMPULSAI +IMPULSAT +IMPULSE +IMPULSEE +IMPULSER +IMPULSEZ +IMPULSIF +IMPUNI +IMPUNIE +IMPUNITE +IMPUR +IMPURE +IMPURETE +IMPUTA +IMPUTAI +IMPUTAIT +IMPUTANT +IMPUTAT +IMPUTE +IMPUTEE +IMPUTENT +IMPUTER +IMPUTERA +IMPUTEZ +IMPUTIEZ +INABRITE +INACHEVE +INACTIF +INACTION +INACTIVA +INACTIVE +INACTUEL +INADAPTE +INALTERE +INAMICAL +INANIME +INANIMEE +INANITE +INANITIE +INAPAISE +INAPERCU +INAPTE +INAUGURA +INAUGURE +INAVOUE +INAVOUEE +INCA +INCARNA +INCARNAI +INCARNAT +INCARNE +INCARNEE +INCARNER +INCARNEZ +INCENDIA +INCENDIE +INCESTE +INCHANGE +INCIDENT +INCINERA +INCINERE +INCIPIT +INCISA +INCISAI +INCISAIT +INCISANT +INCISAT +INCISE +INCISEE +INCISENT +INCISER +INCISERA +INCISEZ +INCISIEZ +INCISIF +INCISION +INCISIVE +INCISURE +INCITA +INCITAI +INCITAIT +INCITANT +INCITAT +INCITE +INCITEE +INCITENT +INCITER +INCITERA +INCITEZ +INCITIEZ +INCIVIL +INCIVILE +INCLINA +INCLINAI +INCLINAT +INCLINE +INCLINEE +INCLINER +INCLINEZ +INCLUAIT +INCLUANT +INCLUE +INCLUENT +INCLUEZ +INCLUIEZ +INCLURA +INCLURAI +INCLURE +INCLUREZ +INCLUSE +INCLUSIF +INCLUSSE +INCLUT +INCOLORE +INCOMBA +INCOMBAI +INCOMBAT +INCOMBE +INCOMBER +INCOMBEZ +INCONGRU +INCONNU +INCONNUE +INCREE +INCREEE +INCRUSTA +INCRUSTE +INCUBA +INCUBAI +INCUBAIT +INCUBANT +INCUBAT +INCUBE +INCUBEE +INCUBENT +INCUBER +INCUBERA +INCUBEZ +INCUBIEZ +INCUIT +INCULPA +INCULPAI +INCULPAT +INCULPE +INCULPEE +INCULPER +INCULPEZ +INCULQUA +INCULQUE +INCULTE +INCURIE +INCURVA +INCURVAI +INCURVAT +INCURVE +INCURVEE +INCURVER +INCURVEZ +INCUSE +INDE +INDECENT +INDECISE +INDEFINI +INDEMNE +INDEX +INDEXA +INDEXAGE +INDEXAI +INDEXAIT +INDEXANT +INDEXAT +INDEXE +INDEXEE +INDEXENT +INDEXER +INDEXERA +INDEXEZ +INDEXIEZ +INDICA +INDICAI +INDICAIT +INDICAN +INDICANT +INDICAT +INDICE +INDICEE +INDICENT +INDICER +INDICERA +INDICEZ +INDICIEL +INDICIEZ +INDIEN +INDIENNE +INDIGENE +INDIGENT +INDIGETE +INDIGNA +INDIGNAI +INDIGNAT +INDIGNE +INDIGNEE +INDIGNER +INDIGNEZ +INDIGO +INDIQUA +INDIQUAI +INDIQUAT +INDIQUE +INDIQUEE +INDIQUER +INDIQUEZ +INDIRECT +INDIUM +INDIVIDU +INDIVISE +INDOCILE +INDOLE +INDOLENT +INDOLORE +INDOMPTE +INDU +INDUCTIF +INDUE +INDUIRA +INDUIRAI +INDUIRE +INDUIREZ +INDUISE +INDUISEZ +INDUISIT +INDUIT +INDUITE +INDULINE +INDULT +INDUMENT +INDURA +INDURAI +INDURAIT +INDURANT +INDURAT +INDURE +INDUREE +INDURENT +INDURER +INDURERA +INDUREZ +INDURIEZ +INDUSIE +INDUVIE +INECOUTE +INEDIT +INEDITE +INEGAL +INEGALE +INEGALEE +INEPTE +INEPTIE +INEPUISE +INERME +INERTE +INERTIE +INERTIEL +INESPERE +INETENDU +INEXACT +INEXACTE +INEXERCE +INEXPERT +INEXPIE +INEXPIEE +INFAMANT +INFAME +INFAMIE +INFANT +INFATUA +INFATUAI +INFATUAT +INFATUE +INFATUEE +INFATUER +INFATUEZ +INFECOND +INFECT +INFECTA +INFECTAI +INFECTAT +INFECTE +INFECTEE +INFECTER +INFECTEZ +INFEODA +INFEODAI +INFEODAT +INFEODE +INFEODEE +INFEODER +INFEODEZ +INFERA +INFERAI +INFERAIT +INFERANT +INFERAT +INFERE +INFEREE +INFERENT +INFERER +INFERERA +INFEREZ +INFERIEZ +INFERNAL +INFESTA +INFESTAI +INFESTAT +INFESTE +INFESTEE +INFESTER +INFESTEZ +INFIDELE +INFILTRA +INFILTRE +INFIME +INFINI +INFINIE +INFINITE +INFIRMA +INFIRMAI +INFIRMAT +INFIRME +INFIRMEE +INFIRMER +INFIRMEZ +INFIXE +INFLECHI +INFLIGE +INFLIGEA +INFLIGEE +INFLIGER +INFLIGEZ +INFLUA +INFLUAI +INFLUAIT +INFLUANT +INFLUAT +INFLUE +INFLUENT +INFLUER +INFLUERA +INFLUEZ +INFLUIEZ +INFLUX +INFONDE +INFONDEE +INFORMA +INFORMAI +INFORMAT +INFORME +INFORMEE +INFORMEL +INFORMER +INFORMEZ +INFRA +INFRASON +INFULE +INFUSA +INFUSAI +INFUSAIT +INFUSANT +INFUSAT +INFUSE +INFUSEE +INFUSENT +INFUSER +INFUSERA +INFUSEZ +INFUSIEZ +INFUSION +INGAMBE +INGENIE +INGENIEE +INGENIER +INGENIEZ +INGENU +INGENUE +INGERA +INGERAI +INGERAIT +INGERANT +INGERAT +INGERE +INGEREE +INGERENT +INGERER +INGERERA +INGEREZ +INGERIEZ +INGRAT +INGRATE +INGUINAL +INHABILE +INHABITE +INHALA +INHALAI +INHALAIT +INHALANT +INHALAT +INHALE +INHALEE +INHALENT +INHALER +INHALERA +INHALEZ +INHALIEZ +INHERENT +INHIBA +INHIBAI +INHIBAIT +INHIBANT +INHIBAT +INHIBE +INHIBEE +INHIBENT +INHIBER +INHIBERA +INHIBEZ +INHIBIEZ +INHUMA +INHUMAI +INHUMAIN +INHUMAIT +INHUMANT +INHUMAT +INHUME +INHUMEE +INHUMENT +INHUMER +INHUMERA +INHUMEZ +INHUMIEZ +INIMITE +INIMITEE +INIMITIE +INIQUE +INIQUITE +INITIA +INITIAI +INITIAIT +INITIAL +INITIALE +INITIANT +INITIAT +INITIE +INITIEE +INITIENT +INITIER +INITIERA +INITIEZ +INITIIEZ +INJECTA +INJECTAI +INJECTAT +INJECTE +INJECTEE +INJECTER +INJECTEZ +INJURE +INJURIA +INJURIAI +INJURIAT +INJURIE +INJURIEE +INJURIER +INJURIEZ +INJUSTE +INLAY +INNE +INNEE +INNEISME +INNEISTE +INNEITE +INNERVA +INNERVAI +INNERVAT +INNERVE +INNERVEE +INNERVER +INNERVEZ +INNOCENT +INNOME +INNOMEE +INNOMINE +INNOMME +INNOMMEE +INNOVA +INNOVAI +INNOVAIT +INNOVANT +INNOVAT +INNOVE +INNOVEE +INNOVENT +INNOVER +INNOVERA +INNOVEZ +INNOVIEZ +INOCCUPE +INOCULA +INOCULAI +INOCULAT +INOCULE +INOCULEE +INOCULER +INOCULEZ +INODORE +INONDA +INONDAI +INONDAIT +INONDANT +INONDAT +INONDE +INONDEE +INONDENT +INONDER +INONDERA +INONDEZ +INONDIEZ +INOPINE +INOPINEE +INOUI +INOUIE +INOX +INPUT +INQUART +INQUIET +INQUIETA +INQUIETE +INSANE +INSANITE +INSCRIRA +INSCRIRE +INSCRIT +INSCRITE +INSCRIVE +INSCULPA +INSCULPE +INSECTE +INSEMINA +INSEMINE +INSENSE +INSENSEE +INSERA +INSERAI +INSERAIT +INSERANT +INSERAT +INSERE +INSEREE +INSERENT +INSERER +INSERERA +INSEREZ +INSERIEZ +INSIGNE +INSINUA +INSINUAI +INSINUAT +INSINUE +INSINUEE +INSINUER +INSINUEZ +INSIPIDE +INSISTA +INSISTAI +INSISTAT +INSISTE +INSISTER +INSISTEZ +INSOLA +INSOLAI +INSOLAIT +INSOLANT +INSOLAT +INSOLE +INSOLEE +INSOLENT +INSOLER +INSOLERA +INSOLEZ +INSOLIEZ +INSOLITE +INSOMNIE +INSONORE +INSPECTA +INSPECTE +INSPIRA +INSPIRAI +INSPIRAT +INSPIRE +INSPIREE +INSPIRER +INSPIREZ +INSTABLE +INSTALLA +INSTALLE +INSTANCE +INSTANT +INSTAR +INSTAURA +INSTAURE +INSTIGUA +INSTIGUE +INSTILLA +INSTILLE +INSTINCT +INSTITUA +INSTITUE +INSTITUT +INSTRUIT +INSU +INSUFFLA +INSUFFLE +INSULINE +INSULTA +INSULTAI +INSULTAT +INSULTE +INSULTEE +INSULTER +INSULTEZ +INSURGE +INSURGEE +INSURGER +INSURGEZ +INTACT +INTACTE +INTAILLA +INTAILLE +INTEGRA +INTEGRAI +INTEGRAL +INTEGRAT +INTEGRE +INTEGREE +INTEGRER +INTEGREZ +INTENSE +INTENSIF +INTENTA +INTENTAI +INTENTAT +INTENTE +INTENTEE +INTENTER +INTENTEZ +INTER +INTERDIT +INTERET +INTERIM +INTERNA +INTERNAI +INTERNAT +INTERNE +INTERNEE +INTERNER +INTERNET +INTERNET +INTERNEZ +INTESTAT +INTESTIN +INTI +INTIMA +INTIMAI +INTIMAIT +INTIMANT +INTIMAT +INTIME +INTIMEE +INTIMENT +INTIMER +INTIMERA +INTIMEZ +INTIMIDA +INTIMIDE +INTIMIEZ +INTIMITE +INTITULA +INTITULE +INTRIGUA +INTRIGUE +INTRIQUA +INTRIQUE +INTROIT +INTRUSE +INTUBA +INTUBAI +INTUBAIT +INTUBANT +INTUBAT +INTUBE +INTUBEE +INTUBENT +INTUBER +INTUBERA +INTUBEZ +INTUBIEZ +INTUITIF +INUIT +INULE +INULINE +INUSABLE +INUSITE +INUSITEE +INUSUEL +INUTILE +INVAGINA +INVAGINE +INVAINCU +INVALIDA +INVALIDE +INVASION +INVENDU +INVENDUE +INVENTA +INVENTAI +INVENTAT +INVENTE +INVENTEE +INVENTER +INVENTEZ +INVENTIF +INVERSA +INVERSAI +INVERSAT +INVERSE +INVERSEE +INVERSER +INVERSEZ +INVERSIF +INVERTI +INVERTIE +INVERTIR +INVERTIT +INVESTI +INVESTIE +INVESTIR +INVESTIT +INVETERE +INVIOLE +INVIOLEE +INVITA +INVITAI +INVITAIT +INVITANT +INVITAT +INVITE +INVITEE +INVITENT +INVITER +INVITERA +INVITEZ +INVITIEZ +INVOLUTE +INVOQUA +INVOQUAI +INVOQUAT +INVOQUE +INVOQUEE +INVOQUER +INVOQUEZ +IODA +IODAI +IODAIT +IODANT +IODASSE +IODAT +IODATE +IODE +IODEE +IODENT +IODER +IODERA +IODERAI +IODERAIT +IODERENT +IODEREZ +IODERIEZ +IODEZ +IODIEZ +IODIQUE +IODISME +IODLA +IODLAI +IODLAIT +IODLANT +IODLASSE +IODLAT +IODLE +IODLEE +IODLENT +IODLER +IODLERA +IODLERAI +IODLEREZ +IODLEZ +IODLIEZ +IODURE +IODUREE +IONIEN +IONIENNE +IONIQUE +IONISA +IONISAI +IONISAIT +IONISANT +IONISAT +IONISE +IONISEE +IONISENT +IONISER +IONISERA +IONISEZ +IONISIEZ +IONONE +IOTA +IOULA +IOULAI +IOULAIT +IOULANT +IOULASSE +IOULAT +IOULE +IOULEE +IOULENT +IOULER +IOULERA +IOULERAI +IOULEREZ +IOULEZ +IOULIEZ +IOURTE +IPECA +IPOMEE +IRAI +IRAIT +IRAKIEN +IRANIEN +IRAQIEN +IRENIQUE +IRENISME +IREZ +IRIDIE +IRIDIEE +IRIDIEN +IRIDIUM +IRIEZ +IRISA +IRISABLE +IRISAI +IRISAIT +IRISANT +IRISASSE +IRISAT +IRISE +IRISEE +IRISENT +IRISER +IRISERA +IRISERAI +IRISEREZ +IRISEZ +IRISIEZ +IRONE +IRONIE +IRONIQUE +IRONISA +IRONISAI +IRONISAT +IRONISE +IRONISER +IRONISEZ +IRONISTE +IRONT +IRRADIA +IRRADIAI +IRRADIAT +IRRADIE +IRRADIEE +IRRADIER +IRRADIEZ +IRREEL +IRREELLE +IRREFUTE +IRRESOLU +IRRIGUA +IRRIGUAI +IRRIGUAT +IRRIGUE +IRRIGUEE +IRRIGUER +IRRIGUEZ +IRRITA +IRRITAI +IRRITAIT +IRRITANT +IRRITAT +IRRITE +IRRITEE +IRRITENT +IRRITER +IRRITERA +IRRITEZ +IRRITIEZ +ISARD +ISBA +ISCHEMIE +ISCHION +ISIAQUE +ISLAM +ISLAMISA +ISLAMISE +ISOBARE +ISOBATHE +ISOCARDE +ISOCELE +ISOCHORE +ISOCLINE +ISOGAME +ISOGAMIE +ISOGONE +ISOHYETE +ISOHYPSE +ISOLA +ISOLABLE +ISOLAI +ISOLAIT +ISOLANT +ISOLASSE +ISOLAT +ISOLE +ISOLEE +ISOLENT +ISOLER +ISOLERA +ISOLERAI +ISOLEREZ +ISOLEZ +ISOLIEZ +ISOLOGUE +ISOLOIR +ISOMERE +ISOMERIE +ISONOMIE +ISOPET +ISOPODE +ISOSISTE +ISOTONIE +ISOTOPE +ISPELL +ISSANT +ISSU +ISSUE +ISTHME +ITALIEN +ITALIQUE +ITEM +ITERA +ITERAI +ITERAIT +ITERANT +ITERASSE +ITERAT +ITERATIF +ITERE +ITEREE +ITERENT +ITERER +ITERERA +ITERERAI +ITEREREZ +ITEREZ +ITERIEZ +ITOU +IULE +IVETTE +IVOIRE +IVOIRIEN +IVOIRIER +IVOIRIN +IVOIRINE +IVRAIE +IVRE +IVRESSE +IVROGNE +IXIA +IXODE +JABIRU +JABLA +JABLAI +JABLAIT +JABLANT +JABLASSE +JABLAT +JABLE +JABLEE +JABLENT +JABLER +JABLERA +JABLERAI +JABLEREZ +JABLEZ +JABLIERE +JABLIEZ +JABLOIR +JABLOIRE +JABOT +JABOTA +JABOTAI +JABOTAIT +JABOTANT +JABOTAT +JABOTE +JABOTEE +JABOTENT +JABOTER +JABOTERA +JABOTEZ +JABOTIEZ +JACASSA +JACASSAI +JACASSAT +JACASSE +JACASSER +JACEE +JACHERE +JACINTHE +JACK +JACKET +JACOBEE +JACOBIN +JACOBINE +JACOT +JACQUARD +JACQUE +JACQUEE +JACQUER +JACQUET +JACQUIER +JACQUOT +JACTA +JACTAI +JACTAIT +JACTANCE +JACTANT +JACTASSE +JACTAT +JACTE +JACTENT +JACTERA +JACTERAI +JACTEREZ +JACTEZ +JACTIEZ +JADE +JADEITE +JAGUAR +JAILLI +JAILLIR +JAILLIRA +JAILLIT +JAIN +JAINA +JAINISME +JALAP +JALE +JALON +JALONNA +JALONNAI +JALONNAT +JALONNE +JALONNEE +JALONNER +JALONNEZ +JALOUSA +JALOUSAI +JALOUSAT +JALOUSE +JALOUSEE +JALOUSER +JALOUSEZ +JALOUSIE +JALOUX +JAMBAGE +JAMBE +JAMBEE +JAMBETTE +JAMBIER +JAMBIERE +JAMBON +JAMBOREE +JAMBOSE +JANGADA +JANV +JANVIER +JAPON +JAPONNA +JAPONNAI +JAPONNAT +JAPONNE +JAPONNEE +JAPONNER +JAPONNEZ +JAPPA +JAPPAI +JAPPAIT +JAPPANT +JAPPASSE +JAPPAT +JAPPE +JAPPENT +JAPPER +JAPPERA +JAPPERAI +JAPPEREZ +JAPPEUR +JAPPEUSE +JAPPEZ +JAPPIEZ +JAQUETTE +JAQUIER +JARDE +JARDIN +JARDINA +JARDINAI +JARDINAT +JARDINE +JARDINEE +JARDINER +JARDINET +JARDINEZ +JARDON +JARGON +JARGONNA +JARGONNE +JAROSSE +JARRE +JARRET +JARRETA +JARRETAI +JARRETAT +JARRETE +JARRETEE +JARRETER +JARRETEZ +JARRETTE +JASA +JASAI +JASAIT +JASANT +JASASSE +JASAT +JASE +JASENT +JASER +JASERA +JASERAI +JASERAIT +JASERAN +JASERENT +JASEREZ +JASERIEZ +JASERON +JASEUR +JASEUSE +JASEZ +JASIEZ +JASMIN +JASPA +JASPAI +JASPAIT +JASPANT +JASPASSE +JASPAT +JASPE +JASPEE +JASPENT +JASPER +JASPERA +JASPERAI +JASPEREZ +JASPEZ +JASPIEZ +JASPINA +JASPINAI +JASPINAT +JASPINE +JASPINEE +JASPINER +JASPINEZ +JASPURE +JATTE +JATTEE +JAUGE +JAUGEA +JAUGEAGE +JAUGEAI +JAUGEAIT +JAUGEANT +JAUGEAT +JAUGEE +JAUGENT +JAUGER +JAUGERA +JAUGERAI +JAUGEREZ +JAUGEUR +JAUGEZ +JAUGIEZ +JAUMIERE +JAUNATRE +JAUNE +JAUNET +JAUNETTE +JAUNI +JAUNIE +JAUNIR +JAUNIRA +JAUNIRAI +JAUNIREZ +JAUNISSE +JAUNIT +JAVA +JAVART +JAVEAU +JAVEL +JAVELA +JAVELAGE +JAVELAI +JAVELAIT +JAVELANT +JAVELAT +JAVELE +JAVELEE +JAVELER +JAVELEUR +JAVELEZ +JAVELIEZ +JAVELINE +JAVELLE +JAVELOT +JAZZ +JAZZMAN +JAZZMEN +JEAN +JECTISSE +JEEP +JEJUNUM +JENNY +JEREZ +JERK +JERKA +JERKAI +JERKAIT +JERKANT +JERKASSE +JERKAT +JERKE +JERKENT +JERKER +JERKERA +JERKERAI +JERKEREZ +JERKEZ +JERKIEZ +JEROBOAM +JERRICAN +JERRYCAN +JERSEY +JESUITE +JETA +JETABLE +JETAGE +JETAI +JETAIT +JETANT +JETASSE +JETAT +JETE +JETEE +JETER +JETERENT +JETEUR +JETEUSE +JETEZ +JETIEZ +JETON +JETTE +JETTENT +JETTERA +JETTERAI +JETTEREZ +JEUDI +JEUN +JEUNA +JEUNAI +JEUNAIT +JEUNANT +JEUNASSE +JEUNAT +JEUNE +JEUNENT +JEUNER +JEUNERA +JEUNERAI +JEUNEREZ +JEUNESSE +JEUNET +JEUNETTE +JEUNEUR +JEUNEUSE +JEUNEZ +JEUNIEZ +JEUNOT +JEUNOTTE +JEUX +JIGGER +JOBARD +JOBARDA +JOBARDAI +JOBARDAT +JOBARDE +JOBARDEE +JOBARDER +JOBARDEZ +JOBELIN +JOCASSE +JOCISTE +JOCKEY +JOCRISSE +JODLA +JODLAI +JODLAIT +JODLANT +JODLASSE +JODLAT +JODLE +JODLEE +JODLENT +JODLER +JODLERA +JODLERAI +JODLEREZ +JODLEZ +JODLIEZ +JOGGING +JOIE +JOIGNAIT +JOIGNANT +JOIGNE +JOIGNENT +JOIGNEZ +JOIGNIEZ +JOIGNIT +JOINDRA +JOINDRAI +JOINDRE +JOINDREZ +JOINT +JOINTE +JOINTIF +JOINTIVE +JOINTOIE +JOINTOYA +JOINTOYE +JOINTURE +JOKER +JOLI +JOLIE +JOLIESSE +JOLIMENT +JONC +JONCA +JONCAI +JONCAIT +JONCANT +JONCASSE +JONCAT +JONCE +JONCEE +JONCENT +JONCER +JONCERA +JONCERAI +JONCEREZ +JONCEZ +JONCHA +JONCHAI +JONCHAIT +JONCHANT +JONCHAT +JONCHE +JONCHEE +JONCHENT +JONCHER +JONCHERA +JONCHERE +JONCHET +JONCHEZ +JONCHIEZ +JONCIEZ +JONCTION +JONGLA +JONGLAI +JONGLAIT +JONGLANT +JONGLAT +JONGLE +JONGLEE +JONGLENT +JONGLER +JONGLERA +JONGLEUR +JONGLEZ +JONGLIEZ +JONKHEER +JONQUE +JONTOYEZ +JOSEPH +JOTA +JOUA +JOUABLE +JOUAI +JOUAILLA +JOUAILLE +JOUAIT +JOUAL +JOUANT +JOUASSE +JOUAT +JOUBARBE +JOUE +JOUEE +JOUENT +JOUER +JOUERA +JOUERAI +JOUERAIT +JOUERENT +JOUEREZ +JOUERIEZ +JOUET +JOUEUR +JOUEUSE +JOUEZ +JOUFFLU +JOUFFLUE +JOUG +JOUI +JOUIEZ +JOUIR +JOUIRA +JOUIRAI +JOUIRAIT +JOUIRENT +JOUIREZ +JOUIRIEZ +JOUIRONT +JOUISSE +JOUISSIF +JOUIT +JOUJOU +JOUJOUX +JOULE +JOUR +JOURNAL +JOURNEE +JOUTA +JOUTAI +JOUTAIT +JOUTANT +JOUTASSE +JOUTAT +JOUTE +JOUTENT +JOUTER +JOUTERA +JOUTERAI +JOUTEREZ +JOUTEUR +JOUTEUSE +JOUTEZ +JOUTIEZ +JOUVENCE +JOUXTA +JOUXTAI +JOUXTAIT +JOUXTANT +JOUXTAT +JOUXTE +JOUXTEE +JOUXTENT +JOUXTER +JOUXTERA +JOUXTEZ +JOUXTIEZ +JOVIAL +JOVIALE +JOVIEN +JOVIENNE +JOYAU +JOYEUSE +JOYEUX +JUBARTE +JUBE +JUBILA +JUBILAI +JUBILAIT +JUBILANT +JUBILAT +JUBILE +JUBILENT +JUBILER +JUBILERA +JUBILEZ +JUBILIEZ +JUCHA +JUCHAI +JUCHAIT +JUCHANT +JUCHASSE +JUCHAT +JUCHE +JUCHEE +JUCHENT +JUCHER +JUCHERA +JUCHERAI +JUCHEREZ +JUCHEZ +JUCHIEZ +JUCHOIR +JUDAIQUE +JUDAISME +JUDAITE +JUDEITE +JUDELLE +JUDO +JUDOKA +JUGAL +JUGALE +JUGE +JUGEA +JUGEABLE +JUGEAI +JUGEAIT +JUGEANT +JUGEASSE +JUGEAT +JUGEE +JUGEMENT +JUGENT +JUGEOTE +JUGER +JUGERA +JUGERAI +JUGERAIT +JUGERENT +JUGEREZ +JUGERIEZ +JUGEUR +JUGEUSE +JUGEZ +JUGIEZ +JUGULA +JUGULAI +JUGULAIT +JUGULANT +JUGULAT +JUGULE +JUGULEE +JUGULENT +JUGULER +JUGULERA +JUGULEZ +JUGULIEZ +JUIF +JUILL +JUILLET +JUIN +JUIVE +JUIVERIE +JUJUBE +JUJUBIER +JULEP +JULIEN +JULIENNE +JUMBO +JUMEAU +JUMEL +JUMELA +JUMELAGE +JUMELAI +JUMELAIT +JUMELANT +JUMELAT +JUMELE +JUMELEE +JUMELER +JUMELEZ +JUMELIEZ +JUMELLE +JUMENT +JUMPING +JUNGLE +JUNIOR +JUNKER +JUNONIEN +JUNTE +JUPE +JUPETTE +JUPON +JUPONNA +JUPONNAI +JUPONNAT +JUPONNE +JUPONNEE +JUPONNER +JUPONNEZ +JURA +JURAI +JURAIT +JURANDE +JURANT +JURASSE +JURAT +JURE +JUREE +JUREMENT +JURENT +JURER +JURERA +JURERAI +JURERAIT +JURERENT +JUREREZ +JURERIEZ +JUREUR +JUREZ +JURIEZ +JURISTE +JURON +JURY +JUSANT +JUSEE +JUSQU +JUSQUE +JUSSIEE +JUSSION +JUSTE +JUSTESSE +JUSTICE +JUSTIFIA +JUSTIFIE +JUTA +JUTAI +JUTAIT +JUTANT +JUTASSE +JUTAT +JUTE +JUTEE +JUTENT +JUTER +JUTERA +JUTERAI +JUTERAIT +JUTERENT +JUTEREZ +JUTERIEZ +JUTEUSE +JUTEUX +JUTEZ +JUTIEZ +JUVENAT +JUVENILE +KABBALE +KABUKI +KABYLE +KACHA +KACHE +KAFKAIEN +KAINITE +KAISER +KAKEMONO +KAKI +KALI +KALIEMIE +KALIUM +KALMOUKE +KAMALA +KAMI +KAMICHI +KAMIKAZE +KANAKE +KANDJAR +KANTIEN +KANTISME +KAOLIANG +KAOLIN +KAPOK +KAPOKIER +KAPPA +KARAKUL +KARATE +KARATEKA +KARBAU +KARITE +KARMA +KARMAN +KART +KARTING +KASCHER +KAVA +KAWA +KAYAC +KAYAK +KEEPSAKE +KEFFIEH +KEFIR +KELVIN +KENDO +KENOTRON +KENTIA +KEPHIR +KEPI +KERABAU +KERATINE +KERATITE +KERATOSE +KERMESSE +KEROGENE +KEROSENE +KETCH +KETCHUP +KETMIE +KHAGNE +KHAGNEUX +KHALIFAT +KHALIFE +KHAMSIN +KHAN +KHANAT +KHAT +KHEDIVAL +KHEDIVAT +KHEDIVE +KHMER +KHMERE +KHOL +KIBBOUTZ +KICK +KIDNAPPA +KIDNAPPE +KIEF +KIKI +KILO +KILOVOLT +KILOWATT +KILT +KIMONO +KINASE +KINKAJOU +KIOSQUE +KIPPER +KIRSCH +KITSCH +KIWI +KLAXON +KLAXONNA +KLAXONNE +KLEENEX +KLEPHTE +KLYSTRON +KNOUT +KOALA +KOBOLD +KOINE +KOLA +KOLATIER +KOLINSKI +KOLKHOZ +KOLKHOZE +KONZERN +KOPECK +KORE +KORRIGAN +KOUBBA +KOUGLOF +KOULAK +KRAAL +KRACH +KRAFT +KRAK +KRAKEN +KREUTZER +KROUMIR +KRYPTON +KSAR +KSOUR +KUFIQUE +KUMMEL +KUMQUAT +KURDE +KYMRIQUE +KYRIE +KYRIELLE +KYSTE +KYSTIQUE +LABARUM +LABDANUM +LABEL +LABELLE +LABEUR +LABIAL +LABIALE +LABIE +LABIEE +LABILE +LABIUM +LABOUR +LABOURA +LABOURAI +LABOURAT +LABOURE +LABOUREE +LABOURER +LABOUREZ +LABRADOR +LABRE +LACA +LACAGE +LACAI +LACAIT +LACANT +LACASSE +LACAT +LACCASE +LACE +LACEE +LACEMENT +LACENT +LACER +LACERA +LACERAI +LACERAIT +LACERANT +LACERAT +LACERE +LACEREE +LACERENT +LACERER +LACERERA +LACEREZ +LACERIE +LACERIEZ +LACET +LACEUR +LACEUSE +LACEZ +LACHA +LACHAGE +LACHAI +LACHAIT +LACHANT +LACHASSE +LACHAT +LACHE +LACHEE +LACHENT +LACHER +LACHERA +LACHERAI +LACHEREZ +LACHETE +LACHEUR +LACHEUSE +LACHEZ +LACHIEZ +LACIEZ +LACINIE +LACINIEE +LACRYMAL +LACTAIRE +LACTASE +LACTATE +LACTE +LACTEE +LACTIQUE +LACTOSE +LACUNE +LACUNEUX +LACUSTRE +LADANUM +LADIN +LADITE +LADRE +LADRERIE +LADY +LAGON +LAGOPEDE +LAGUNE +LAIC +LAICAT +LAICHE +LAICISA +LAICISAI +LAICISAT +LAICISE +LAICISEE +LAICISER +LAICISEZ +LAICISME +LAICITE +LAID +LAIDE +LAIDERON +LAIDEUR +LAIE +LAIERA +LAIERAI +LAIERAIT +LAIEREZ +LAIERIEZ +LAINA +LAINAGE +LAINAI +LAINAIT +LAINANT +LAINASSE +LAINAT +LAINE +LAINEE +LAINENT +LAINER +LAINERA +LAINERAI +LAINEREZ +LAINERIE +LAINEUR +LAINEUSE +LAINEUX +LAINEZ +LAINIER +LAINIERE +LAINIEZ +LAIQUE +LAIRD +LAISSA +LAISSAI +LAISSAIT +LAISSANT +LAISSAT +LAISSE +LAISSEE +LAISSER +LAISSERA +LAIT +LAITAGE +LAITANCE +LAITE +LAITEE +LAITERIE +LAITERON +LAITEUSE +LAITEUX +LAITIER +LAITIERE +LAITON +LAITONNA +LAITONNE +LAITUE +LAIZE +LAKISTE +LAMA +LAMAI +LAMAISME +LAMAISTE +LAMAIT +LAMANAGE +LAMANEUR +LAMANT +LAMANTIN +LAMASSE +LAMAT +LAMBDA +LAMBEAU +LAMBEL +LAMBIC +LAMBIN +LAMBINA +LAMBINAI +LAMBINAT +LAMBINE +LAMBINER +LAMBINEZ +LAME +LAMEE +LAMELLE +LAMELLEE +LAMENT +LAMENTA +LAMENTAI +LAMENTAT +LAMENTE +LAMENTEE +LAMENTER +LAMENTEZ +LAMENTO +LAMER +LAMERA +LAMERAI +LAMERAIT +LAMERENT +LAMEREZ +LAMERIEZ +LAMEZ +LAMIE +LAMIER +LAMIEZ +LAMIFIE +LAMIFIEE +LAMINA +LAMINAGE +LAMINAI +LAMINAIT +LAMINANT +LAMINAT +LAMINE +LAMINEE +LAMINENT +LAMINER +LAMINERA +LAMINEUR +LAMINEUX +LAMINEZ +LAMINIEZ +LAMINOIR +LAMPA +LAMPAI +LAMPAIT +LAMPANT +LAMPARO +LAMPASSE +LAMPAT +LAMPE +LAMPEE +LAMPENT +LAMPER +LAMPERA +LAMPERAI +LAMPEREZ +LAMPEZ +LAMPIEZ +LAMPION +LAMPISTE +LAMPROIE +LAMPYRE +LANCA +LANCAGE +LANCAI +LANCAIT +LANCANT +LANCASSE +LANCAT +LANCE +LANCEE +LANCENT +LANCEOLE +LANCER +LANCERA +LANCERAI +LANCEREZ +LANCETTE +LANCEUR +LANCEUSE +LANCEZ +LANCIER +LANCIEZ +LANCINA +LANCINAI +LANCINAT +LANCINE +LANCINEE +LANCINER +LANCINEZ +LANCON +LAND +LANDAISE +LANDAU +LANDE +LANDER +LANDIER +LANGAGE +LANGE +LANGEA +LANGEAI +LANGEAIT +LANGEANT +LANGEAT +LANGEE +LANGENT +LANGER +LANGERA +LANGERAI +LANGEREZ +LANGEZ +LANGIEZ +LANGUE +LANGUEUR +LANGUEYA +LANGUEYE +LANGUI +LANGUIDE +LANGUIE +LANGUIER +LANGUIR +LANGUIRA +LANGUIT +LANICE +LANIER +LANIERE +LANIFERE +LANIGERE +LANLAIRE +LANOLINE +LANTERNA +LANTERNE +LANTHANE +LAOTIEN +LAPA +LAPAI +LAPAIT +LAPANT +LAPASSE +LAPAT +LAPE +LAPEE +LAPEMENT +LAPENT +LAPER +LAPERA +LAPERAI +LAPERAIT +LAPEREAU +LAPERENT +LAPEREZ +LAPERIEZ +LAPEZ +LAPIAZ +LAPICIDE +LAPIDA +LAPIDAI +LAPIDAIT +LAPIDANT +LAPIDAT +LAPIDE +LAPIDEE +LAPIDENT +LAPIDER +LAPIDERA +LAPIDEZ +LAPIDIEZ +LAPIEZ +LAPILLI +LAPIN +LAPINE +LAPONE +LAPTOT +LAQUA +LAQUAGE +LAQUAI +LAQUAIT +LAQUANT +LAQUASSE +LAQUAT +LAQUE +LAQUEE +LAQUELLE +LAQUENT +LAQUER +LAQUERA +LAQUERAI +LAQUEREZ +LAQUEUR +LAQUEUSE +LAQUEUX +LAQUEZ +LAQUIEZ +LARAIRE +LARBIN +LARCIN +LARD +LARDA +LARDAI +LARDAIT +LARDANT +LARDASSE +LARDAT +LARDE +LARDEE +LARDENT +LARDER +LARDERA +LARDERAI +LARDEREZ +LARDEZ +LARDIEZ +LARDOIRE +LARDON +LARDONNA +LARDONNE +LARGABLE +LARGAGE +LARGE +LARGESSE +LARGEUR +LARGO +LARGUA +LARGUAI +LARGUAIT +LARGUANT +LARGUAT +LARGUE +LARGUEE +LARGUENT +LARGUER +LARGUERA +LARGUEZ +LARGUIEZ +LARIGOT +LARME +LARMIER +LARMOIE +LARMOYA +LARMOYAI +LARMOYAT +LARMOYE +LARMOYEE +LARMOYER +LARMOYEZ +LARRON +LARVAIRE +LARVE +LARVEE +LARYNGE +LARYNGEE +LARYNX +LASAGNE +LASCAR +LASCIF +LASCIVE +LASER +LASSA +LASSAI +LASSAIT +LASSANT +LASSASSE +LASSAT +LASSE +LASSEE +LASSER +LASSERA +LASSERAI +LASSEREZ +LASSO +LASTEX +LASTING +LATANIER +LATENCE +LATENT +LATENTE +LATERAL +LATERALE +LATERITE +LATEX +LATIN +LATINE +LATINISA +LATINISE +LATINITE +LATITUDE +LATRIE +LATTA +LATTAGE +LATTAI +LATTAIT +LATTANT +LATTASSE +LATTAT +LATTE +LATTEE +LATTENT +LATTER +LATTERA +LATTERAI +LATTEREZ +LATTEZ +LATTIEZ +LAUDANUM +LAUDATIF +LAURE +LAUREAT +LAUREATE +LAUREE +LAURIER +LAVA +LAVABLE +LAVABO +LAVAGE +LAVAI +LAVAIT +LAVANDE +LAVANDIN +LAVANT +LAVARET +LAVASSE +LAVAT +LAVATORY +LAVE +LAVEE +LAVEMENT +LAVENT +LAVER +LAVERA +LAVERAI +LAVERAIT +LAVERENT +LAVEREZ +LAVERIE +LAVERIEZ +LAVETTE +LAVEUR +LAVEUSE +LAVEZ +LAVIEZ +LAVOIR +LAVURE +LAXATIF +LAXATIVE +LAXISME +LAXISTE +LAXITE +LAYA +LAYAI +LAYAIT +LAYANT +LAYASSE +LAYAT +LAYE +LAYEE +LAYENT +LAYER +LAYERA +LAYERAI +LAYERAIT +LAYERENT +LAYEREZ +LAYERIEZ +LAYETIER +LAYETTE +LAYEZ +LAYIEZ +LAYON +LAZARET +LAZULITE +LAZURITE +LAZZI +LEADER +LEASING +LEBEL +LECHA +LECHAGE +LECHAI +LECHAIT +LECHANT +LECHASSE +LECHAT +LECHE +LECHEE +LECHENT +LECHER +LECHERA +LECHERAI +LECHEREZ +LECHEUR +LECHEUSE +LECHEZ +LECHIEZ +LECON +LECTEUR +LECTORAT +LECTRICE +LECTURE +LEDIT +LEGAL +LEGALE +LEGALISA +LEGALISE +LEGALITE +LEGAT +LEGATION +LEGATO +LEGE +LEGENDE +LEGER +LEGERE +LEGERETE +LEGHORN +LEGIFERA +LEGIFERE +LEGION +LEGISTE +LEGITIMA +LEGITIME +LEGUA +LEGUAI +LEGUAIT +LEGUANT +LEGUASSE +LEGUAT +LEGUE +LEGUEE +LEGUENT +LEGUER +LEGUERA +LEGUERAI +LEGUEREZ +LEGUEZ +LEGUIEZ +LEGUME +LEGUMIER +LEGUMINE +LEMME +LEMMING +LEMURE +LENDIT +LENIFIA +LENIFIAI +LENIFIAT +LENIFIE +LENIFIEE +LENIFIER +LENIFIEZ +LENITIF +LENITIVE +LENT +LENTE +LENTEUR +LENTIGO +LENTILLE +LENTO +LEONARD +LEONARDE +LEONIN +LEONINE +LEONURE +LEOPARD +LEOPARDE +LEPIOTE +LEPISME +LEPRE +LEPREUSE +LEPREUX +LEPTURE +LEQUEL +LERCHE +LEROT +LESA +LESAI +LESAIT +LESANT +LESASSE +LESAT +LESBIEN +LESE +LESEE +LESENT +LESER +LESERA +LESERAI +LESERAIT +LESERENT +LESEREZ +LESERIEZ +LESEZ +LESIEZ +LESINA +LESINAI +LESINAIT +LESINANT +LESINAT +LESINE +LESINENT +LESINER +LESINERA +LESINEUR +LESINEZ +LESINIEZ +LESION +LESSIVA +LESSIVAI +LESSIVAT +LESSIVE +LESSIVEE +LESSIVER +LESSIVEZ +LEST +LESTA +LESTAGE +LESTAI +LESTAIT +LESTANT +LESTASSE +LESTAT +LESTE +LESTEE +LESTENT +LESTER +LESTERA +LESTERAI +LESTEREZ +LESTEZ +LESTIEZ +LETAL +LETALE +LETALITE +LETCHI +LETTONE +LETTONNE +LETTRAGE +LETTRE +LETTREE +LETTRINE +LEUCANIE +LEUCEMIE +LEUCINE +LEUCITE +LEUCOME +LEUCOSE +LEUDE +LEUR +LEURRA +LEURRAI +LEURRAIT +LEURRANT +LEURRAT +LEURRE +LEURREE +LEURRENT +LEURRER +LEURRERA +LEURREZ +LEURRIEZ +LEVA +LEVAGE +LEVAI +LEVAIN +LEVAIT +LEVANT +LEVANTIN +LEVASSE +LEVAT +LEVE +LEVEE +LEVENT +LEVER +LEVERA +LEVERAI +LEVERAIT +LEVERENT +LEVEREZ +LEVERIEZ +LEVEZ +LEVIER +LEVIEZ +LEVIGE +LEVIGEA +LEVIGEAI +LEVIGEAT +LEVIGEE +LEVIGENT +LEVIGER +LEVIGERA +LEVIGEZ +LEVIGIEZ +LEVIRAT +LEVITE +LEVRAUT +LEVRE +LEVRETTA +LEVRETTE +LEVRIER +LEVRON +LEVRONNE +LEVULOSE +LEVURE +LEXEME +LEXICAL +LEXICALE +LEXIE +LEXIQUE +LEZARD +LEZARDA +LEZARDAI +LEZARDAT +LEZARDE +LEZARDEE +LEZARDER +LEZARDEZ +LIAGE +LIAI +LIAISON +LIAIT +LIANE +LIANT +LIARD +LIARDA +LIARDAI +LIARDAIT +LIARDANT +LIARDAT +LIARDE +LIARDENT +LIARDER +LIARDERA +LIARDEZ +LIARDIEZ +LIASIQUE +LIASSE +LIAT +LIBAGE +LIBATION +LIBELLA +LIBELLAI +LIBELLAT +LIBELLE +LIBELLEE +LIBELLER +LIBELLEZ +LIBER +LIBERA +LIBERAI +LIBERAIT +LIBERAL +LIBERALE +LIBERANT +LIBERAT +LIBERE +LIBEREE +LIBERENT +LIBERER +LIBERERA +LIBEREZ +LIBERIEN +LIBERIEZ +LIBERTE +LIBERTIN +LIBERTY +LIBIDO +LIBRAIRE +LIBRE +LIBRETTI +LIBRETTO +LIBYEN +LIBYENNE +LICE +LICENCE +LICENCIA +LICENCIE +LICHA +LICHAI +LICHAIT +LICHANT +LICHASSE +LICHAT +LICHE +LICHEE +LICHEN +LICHENT +LICHER +LICHERA +LICHERAI +LICHEREZ +LICHETTE +LICHEZ +LICHIEZ +LICIER +LICITA +LICITAI +LICITAIT +LICITANT +LICITAT +LICITE +LICITEE +LICITENT +LICITER +LICITERA +LICITEZ +LICITIEZ +LICOL +LICORNE +LICOU +LICTEUR +LIDO +LIED +LIEE +LIEGE +LIEGEA +LIEGEAI +LIEGEAIT +LIEGEANT +LIEGEAT +LIEGEE +LIEGENT +LIEGER +LIEGERA +LIEGERAI +LIEGEREZ +LIEGEZ +LIEGIEZ +LIEN +LIENT +LIER +LIERA +LIERAI +LIERAIT +LIERENT +LIEREZ +LIERIEZ +LIERNE +LIERRE +LIESSE +LIEU +LIEUDIT +LIEUE +LIEUR +LIEUSE +LIEUX +LIEVRE +LIEZ +LIFT +LIFTA +LIFTAI +LIFTAIT +LIFTANT +LIFTASSE +LIFTAT +LIFTE +LIFTEE +LIFTENT +LIFTER +LIFTERA +LIFTERAI +LIFTEREZ +LIFTEZ +LIFTIER +LIFTIERE +LIFTIEZ +LIFTING +LIGAMENT +LIGAND +LIGATURA +LIGATURE +LIGE +LIGIE +LIGNA +LIGNAGE +LIGNAI +LIGNAIT +LIGNANT +LIGNARD +LIGNASSE +LIGNAT +LIGNE +LIGNEE +LIGNENT +LIGNER +LIGNERA +LIGNERAI +LIGNEREZ +LIGNEUL +LIGNEUSE +LIGNEUX +LIGNEZ +LIGNIEZ +LIGNIFIA +LIGNIFIE +LIGNINE +LIGNITE +LIGOT +LIGOTA +LIGOTAGE +LIGOTAI +LIGOTAIT +LIGOTANT +LIGOTAT +LIGOTE +LIGOTEE +LIGOTENT +LIGOTER +LIGOTERA +LIGOTEZ +LIGOTIEZ +LIGUA +LIGUAI +LIGUAIT +LIGUANT +LIGUASSE +LIGUAT +LIGUE +LIGUEE +LIGUENT +LIGUER +LIGUERA +LIGUERAI +LIGUEREZ +LIGUEUR +LIGUEUSE +LIGUEZ +LIGUIEZ +LIGULE +LIGULEE +LIGURE +LIIEZ +LILIACE +LILIACEE +LILIAL +LILIALE +LIMA +LIMACE +LIMACON +LIMAGE +LIMAI +LIMAILLE +LIMAIT +LIMAN +LIMANDA +LIMANDAI +LIMANDAT +LIMANDE +LIMANDEE +LIMANDER +LIMANDEZ +LIMANT +LIMASSE +LIMAT +LIMBAIRE +LIMBE +LIME +LIMEE +LIMENT +LIMER +LIMERA +LIMERAI +LIMERAIT +LIMERENT +LIMEREZ +LIMERICK +LIMERIEZ +LIMETTE +LIMEUR +LIMEUSE +LIMEZ +LIMICOLE +LIMIER +LIMIEZ +LIMINAL +LIMINALE +LIMITA +LIMITAI +LIMITAIT +LIMITANT +LIMITAT +LIMITE +LIMITEE +LIMITENT +LIMITER +LIMITERA +LIMITEUR +LIMITEZ +LIMITIEZ +LIMNEE +LIMOGE +LIMOGEA +LIMOGEAI +LIMOGEAT +LIMOGEE +LIMOGENT +LIMOGER +LIMOGERA +LIMOGEZ +LIMOGIEZ +LIMON +LIMONA +LIMONADE +LIMONAGE +LIMONAI +LIMONAIT +LIMONANT +LIMONAT +LIMONE +LIMONEE +LIMONENE +LIMONENT +LIMONER +LIMONERA +LIMONEUX +LIMONEZ +LIMONIER +LIMONIEZ +LIMONITE +LIMOUSIN +LIMPIDE +LIMULE +LINAIRE +LINCEUL +LINEAIRE +LINEAL +LINEALE +LINER +LINETTE +LINGA +LINGAM +LINGE +LINGEA +LINGEAI +LINGEAIT +LINGEANT +LINGEAT +LINGEE +LINGENT +LINGER +LINGERA +LINGERAI +LINGERE +LINGEREZ +LINGERIE +LINGEZ +LINGIEZ +LINGOT +LINGUAL +LINGUALE +LINIER +LINIERE +LINIMENT +LINKAGE +LINNEEN +LINO +LINOLEUM +LINON +LINOTTE +LINOTYPE +LINSANG +LINSOIR +LINTEAU +LINTER +LION +LIONCEAU +LIONNE +LIPASE +LIPEMIE +LIPIDE +LIPOIDE +LIPOLYSE +LIPOME +LIPPE +LIPPEE +LIPPU +LIPPUE +LIQUEFIA +LIQUEFIE +LIQUETTE +LIQUEUR +LIQUIDA +LIQUIDAI +LIQUIDAT +LIQUIDE +LIQUIDEE +LIQUIDER +LIQUIDEZ +LIRA +LIRAI +LIRAIT +LIRE +LIREZ +LIRIEZ +LIRON +LIRONT +LISAGE +LISAIT +LISANT +LISE +LISENT +LISERA +LISERAGE +LISERAI +LISERAIT +LISERANT +LISERAT +LISERE +LISEREE +LISERENT +LISERER +LISERERA +LISEREZ +LISERIEZ +LISERON +LISEUR +LISEUSE +LISEZ +LISIBLE +LISIER +LISIERE +LISIEZ +LISSA +LISSAGE +LISSAI +LISSAIT +LISSANT +LISSASSE +LISSAT +LISSE +LISSEE +LISSER +LISSERA +LISSERAI +LISSEREZ +LISSEUR +LISSEUSE +LISSIER +LISSOIR +LISTA +LISTAGE +LISTAI +LISTAIT +LISTANT +LISTASSE +LISTAT +LISTE +LISTEAU +LISTEE +LISTEL +LISTENT +LISTER +LISTERA +LISTERAI +LISTEREZ +LISTEZ +LISTIEZ +LISTING +LITA +LITAI +LITAIT +LITANIE +LITANT +LITASSE +LITAT +LITCHI +LITE +LITEAU +LITEE +LITENT +LITER +LITERA +LITERAI +LITERAIT +LITERENT +LITEREZ +LITERIE +LITERIEZ +LITEZ +LITHAM +LITHARGE +LITHIASE +LITHINE +LITHINEE +LITHIQUE +LITHIUM +LITHO +LITIERE +LITIEZ +LITIGE +LITORNE +LITOTE +LITRE +LITRON +LITSAM +LITTERAL +LITTORAL +LITURGIE +LIURE +LIVAROT +LIVE +LIVECHE +LIVET +LIVIDE +LIVIDITE +LIVING +LIVRA +LIVRABLE +LIVRAI +LIVRAIT +LIVRANT +LIVRASSE +LIVRAT +LIVRE +LIVREE +LIVRENT +LIVRER +LIVRERA +LIVRERAI +LIVREREZ +LIVRET +LIVREUR +LIVREUSE +LIVREZ +LIVRIEZ +LOADER +LOBA +LOBAI +LOBAIRE +LOBAIT +LOBANT +LOBASSE +LOBAT +LOBBY +LOBE +LOBEE +LOBELIE +LOBENT +LOBER +LOBERA +LOBERAI +LOBERAIT +LOBERENT +LOBEREZ +LOBERIEZ +LOBEZ +LOBIEZ +LOBULE +LOBULEE +LOBULEUX +LOCAL +LOCALE +LOCALISA +LOCALISE +LOCALITE +LOCATIF +LOCATION +LOCATIVE +LOCH +LOCHA +LOCHAI +LOCHAIT +LOCHANT +LOCHASSE +LOCHAT +LOCHE +LOCHEE +LOCHENT +LOCHER +LOCHERA +LOCHERAI +LOCHEREZ +LOCHEZ +LOCHIEZ +LOCULE +LOCULEE +LOCULEUX +LOCUSTE +LOCUTEUR +LOCUTION +LODEN +LOFA +LOFAI +LOFAIT +LOFANT +LOFASSE +LOFAT +LOFE +LOFENT +LOFER +LOFERA +LOFERAI +LOFERAIT +LOFERENT +LOFEREZ +LOFERIEZ +LOFEZ +LOFIEZ +LOFT +LOGE +LOGEA +LOGEABLE +LOGEAI +LOGEAIT +LOGEANT +LOGEASSE +LOGEAT +LOGEE +LOGEMENT +LOGENT +LOGER +LOGERA +LOGERAI +LOGERAIT +LOGERENT +LOGEREZ +LOGERIEZ +LOGETTE +LOGEUR +LOGEUSE +LOGEZ +LOGGIA +LOGICIEL +LOGICIEN +LOGIEZ +LOGIQUE +LOGISTE +LOGO +LOIN +LOINTAIN +LOIR +LOISIBLE +LOISIR +LOKOUM +LOLO +LOMBAGO +LOMBAIRE +LOMBARD +LOMBARDE +LOMBRIC +LONG +LONGANE +LONGE +LONGEA +LONGEAI +LONGEAIT +LONGEANT +LONGEAT +LONGEE +LONGENT +LONGER +LONGERA +LONGERAI +LONGEREZ +LONGERON +LONGEZ +LONGIEZ +LONGOTTE +LONGRINE +LONGUE +LONGUET +LONGUEUR +LOOCH +LOOFA +LOOK +LOOPING +LOPETTE +LOPIN +LOQUA +LOQUACE +LOQUAI +LOQUAIT +LOQUANT +LOQUASSE +LOQUAT +LOQUE +LOQUEE +LOQUENT +LOQUER +LOQUERA +LOQUERAI +LOQUEREZ +LOQUET +LOQUEZ +LOQUIEZ +LORAN +LORD +LORDOSE +LORETTE +LORGNA +LORGNAI +LORGNAIT +LORGNANT +LORGNAT +LORGNE +LORGNEE +LORGNENT +LORGNER +LORGNERA +LORGNEZ +LORGNIEZ +LORGNON +LORI +LORIOT +LORRAIN +LORRAINE +LORSQU +LORSQUE +LOSANGE +LOSANGEE +LOTE +LOTERIE +LOTI +LOTIE +LOTIER +LOTION +LOTIONNA +LOTIONNE +LOTIR +LOTIRA +LOTIRAI +LOTIRAIT +LOTIRENT +LOTIREZ +LOTIRIEZ +LOTIRONT +LOTISSE +LOTIT +LOTO +LOTTE +LOUA +LOUABLE +LOUAGE +LOUAI +LOUAIT +LOUANGE +LOUANGEA +LOUANGEE +LOUANGER +LOUANGEZ +LOUANT +LOUASSE +LOUAT +LOUBAR +LOUBARD +LOUCHA +LOUCHAI +LOUCHAIT +LOUCHANT +LOUCHAT +LOUCHE +LOUCHENT +LOUCHER +LOUCHERA +LOUCHET +LOUCHEUR +LOUCHEZ +LOUCHI +LOUCHIEZ +LOUCHIR +LOUCHIRA +LOUCHIT +LOUCHON +LOUE +LOUEE +LOUENT +LOUER +LOUERA +LOUERAI +LOUERAIT +LOUERENT +LOUEREZ +LOUERIEZ +LOUEUR +LOUEUSE +LOUEZ +LOUFA +LOUFAI +LOUFAIT +LOUFANT +LOUFASSE +LOUFAT +LOUFE +LOUFENT +LOUFER +LOUFERA +LOUFERAI +LOUFEREZ +LOUFEZ +LOUFIAT +LOUFIEZ +LOUFOQUE +LOUGRE +LOUIEZ +LOUKOUM +LOULOU +LOUP +LOUPA +LOUPAGE +LOUPAI +LOUPAIT +LOUPANT +LOUPASSE +LOUPAT +LOUPE +LOUPEE +LOUPENT +LOUPER +LOUPERA +LOUPERAI +LOUPEREZ +LOUPEZ +LOUPIEZ +LOUPIOT +LOUPIOTE +LOURA +LOURAI +LOURAIT +LOURANT +LOURASSE +LOURAT +LOURD +LOURDA +LOURDAI +LOURDAIT +LOURDANT +LOURDAT +LOURDAUD +LOURDE +LOURDEE +LOURDENT +LOURDER +LOURDERA +LOURDEUR +LOURDEZ +LOURDIEZ +LOURE +LOUREE +LOURENT +LOURER +LOURERA +LOURERAI +LOUREREZ +LOUREZ +LOURIEZ +LOUSTIC +LOUTRE +LOUVA +LOUVAI +LOUVAIT +LOUVANT +LOUVASSE +LOUVAT +LOUVE +LOUVEE +LOUVENT +LOUVER +LOUVERA +LOUVERAI +LOUVEREZ +LOUVET +LOUVETA +LOUVETAI +LOUVETAT +LOUVETE +LOUVETEE +LOUVETER +LOUVETEZ +LOUVETTE +LOUVEZ +LOUVIEZ +LOUVOIE +LOUVOYA +LOUVOYAI +LOUVOYAT +LOUVOYE +LOUVOYER +LOUVOYEZ +LOVA +LOVAI +LOVAIT +LOVANT +LOVASSE +LOVAT +LOVE +LOVEE +LOVELACE +LOVENT +LOVER +LOVERA +LOVERAI +LOVERAIT +LOVERENT +LOVEREZ +LOVERIEZ +LOVEZ +LOVIEZ +LOYAL +LOYALE +LOYAUTE +LOYER +LUBIE +LUBRIFIA +LUBRIFIE +LUBRIQUE +LUCANE +LUCARNE +LUCIDE +LUCIDITE +LUCIFUGE +LUCILIE +LUCIOLE +LUCRATIF +LUCRE +LUDICIEL +LUDION +LUDIQUE +LUDISME +LUETINE +LUETTE +LUEUR +LUFFA +LUGE +LUGEA +LUGEAI +LUGEAIT +LUGEANT +LUGEASSE +LUGEAT +LUGENT +LUGER +LUGERA +LUGERAI +LUGERAIT +LUGERENT +LUGEREZ +LUGERIEZ +LUGEUR +LUGEUSE +LUGEZ +LUGIEZ +LUGUBRE +LUIRA +LUIRAI +LUIRAIT +LUIRE +LUIREZ +LUIRIEZ +LUIRONT +LUISAIT +LUISANCE +LUISANT +LUISE +LUISENT +LUISEZ +LUISIEZ +LUISISSE +LUISIT +LUIT +LUITE +LULU +LUMBAGO +LUMEN +LUMIERE +LUMIGNON +LUMINEUX +LUMITYPE +LUMP +LUNAIRE +LUNAISON +LUNCH +LUNCHA +LUNCHAI +LUNCHAIT +LUNCHANT +LUNCHAT +LUNCHE +LUNCHENT +LUNCHER +LUNCHERA +LUNCHEZ +LUNCHIEZ +LUNDI +LUNE +LUNEE +LUNETIER +LUNETTE +LUNULE +LUNURE +LUPANAR +LUPIN +LUPULIN +LUPULINE +LURENT +LURETTE +LURON +LURONNE +LUSIN +LUSSE +LUSTRA +LUSTRAGE +LUSTRAI +LUSTRAIT +LUSTRAL +LUSTRALE +LUSTRANT +LUSTRAT +LUSTRE +LUSTREE +LUSTRENT +LUSTRER +LUSTRERA +LUSTREZ +LUSTRIEZ +LUSTRINE +LUTA +LUTAI +LUTAIT +LUTANT +LUTASSE +LUTAT +LUTE +LUTECIEN +LUTECIUM +LUTEE +LUTEINE +LUTENT +LUTER +LUTERA +LUTERAI +LUTERAIT +LUTERENT +LUTEREZ +LUTERIEZ +LUTEZ +LUTH +LUTHERIE +LUTHIER +LUTHISTE +LUTIEZ +LUTIN +LUTINA +LUTINAI +LUTINAIT +LUTINANT +LUTINAT +LUTINE +LUTINEE +LUTINENT +LUTINER +LUTINERA +LUTINEZ +LUTINIEZ +LUTRIN +LUTTA +LUTTAI +LUTTAIT +LUTTANT +LUTTASSE +LUTTAT +LUTTE +LUTTENT +LUTTER +LUTTERA +LUTTERAI +LUTTEREZ +LUTTEUR +LUTTEUSE +LUTTEZ +LUTTIEZ +LUXA +LUXAI +LUXAIT +LUXANT +LUXASSE +LUXAT +LUXATION +LUXE +LUXEE +LUXENT +LUXER +LUXERA +LUXERAI +LUXERAIT +LUXERENT +LUXEREZ +LUXERIEZ +LUXEZ +LUXIEZ +LUXMETRE +LUXUEUSE +LUXUEUX +LUXURE +LUZERNE +LUZULE +LYCAON +LYCEE +LYCEEN +LYCEENNE +LYCENE +LYCHEE +LYCOPE +LYCOPODE +LYCOSE +LYCRA +LYDDITE +LYDIEN +LYDIENNE +LYMPHE +LYNCHA +LYNCHAGE +LYNCHAI +LYNCHAIT +LYNCHANT +LYNCHAT +LYNCHE +LYNCHEE +LYNCHENT +LYNCHER +LYNCHERA +LYNCHEUR +LYNCHEZ +LYNCHIEZ +LYNX +LYOPHILE +LYRE +LYRIC +LYRIQUE +LYRISME +LYSA +LYSAI +LYSAIT +LYSANT +LYSASSE +LYSAT +LYSE +LYSEE +LYSENT +LYSER +LYSERA +LYSERAI +LYSERAIT +LYSERENT +LYSEREZ +LYSERIEZ +LYSEZ +LYSIEZ +LYSINE +LYSOZYME +LYTIQUE +MABOUL +MABOULE +MACABRE +MACACHE +MACADAM +MACAQUE +MACAREUX +MACARON +MACARONI +MACASSAR +MACERA +MACERAI +MACERAIT +MACERANT +MACERAT +MACERE +MACEREE +MACERENT +MACERER +MACERERA +MACEREZ +MACERIEZ +MACERON +MACH +MACHA +MACHAI +MACHAIT +MACHANT +MACHAON +MACHASSE +MACHAT +MACHE +MACHEE +MACHEFER +MACHENT +MACHER +MACHERA +MACHERAI +MACHEREZ +MACHETTE +MACHEUR +MACHEUSE +MACHEZ +MACHIEZ +MACHIN +MACHINA +MACHINAI +MACHINAL +MACHINAT +MACHINE +MACHINEE +MACHINER +MACHISME +MACHO +MACHOIRE +MACHONNA +MACHONNE +MACHURA +MACHURAI +MACHURAT +MACHURE +MACHUREE +MACHURER +MACHUREZ +MACLA +MACLAI +MACLAIT +MACLANT +MACLASSE +MACLAT +MACLE +MACLEE +MACLENT +MACLER +MACLERA +MACLERAI +MACLEREZ +MACLEZ +MACLIEZ +MACON +MACONNA +MACONNAI +MACONNAT +MACONNE +MACONNEE +MACONNER +MACONNEZ +MACQUA +MACQUAI +MACQUAIT +MACQUANT +MACQUAT +MACQUE +MACQUEE +MACQUENT +MACQUER +MACQUERA +MACQUEZ +MACQUIEZ +MACRAME +MACRE +MACREUSE +MACROURE +MACULA +MACULAGE +MACULAI +MACULAIT +MACULANT +MACULAT +MACULE +MACULEE +MACULENT +MACULER +MACULERA +MACULEZ +MACULIEZ +MADAME +MADEFIA +MADEFIAI +MADEFIAT +MADEFIE +MADEFIEE +MADEFIER +MADEFIEZ +MADERE +MADERISA +MADERISE +MADONE +MADRAGUE +MADRE +MADREE +MADRIER +MADRIGAL +MAESTOSO +MAESTRIA +MAESTRO +MAFFIA +MAFFIOSI +MAFFIOSO +MAFFLU +MAFFLUE +MAFIA +MAFIOSI +MAFIOSO +MAGASIN +MAGASINA +MAGASINE +MAGAZINE +MAGE +MAGENTA +MAGHZEN +MAGICIEN +MAGIE +MAGIQUE +MAGISTER +MAGMA +MAGNA +MAGNAI +MAGNAIT +MAGNANT +MAGNASSE +MAGNAT +MAGNE +MAGNEE +MAGNENT +MAGNER +MAGNERA +MAGNERAI +MAGNEREZ +MAGNESIE +MAGNETO +MAGNEZ +MAGNIEZ +MAGNIFIA +MAGNIFIE +MAGNOLIA +MAGNUM +MAGOT +MAGRET +MAGYARE +MAHARANI +MAHATMA +MAHDISTE +MAHONIA +MAHONNE +MAHOUSSE +MAHRATTE +MAIA +MAIE +MAIEUR +MAIGRE +MAIGREUR +MAIGRI +MAIGRIE +MAIGRIOT +MAIGRIR +MAIGRIRA +MAIGRIT +MAIL +MAILING +MAILLA +MAILLAI +MAILLAIT +MAILLANT +MAILLAT +MAILLE +MAILLEE +MAILLER +MAILLERA +MAILLET +MAILLEZ +MAILLIEZ +MAILLON +MAILLOT +MAILLURE +MAIN +MAINATE +MAINMISE +MAINT +MAINTE +MAINTENU +MAINTIEN +MAINTINT +MAIRE +MAIRIE +MAISERIE +MAISON +MAITRE +MAITRISA +MAITRISE +MAIZENA +MAJESTE +MAJEUR +MAJEURE +MAJOR +MAJORA +MAJORAI +MAJORAIT +MAJORAL +MAJORANT +MAJORAT +MAJORE +MAJOREE +MAJORENT +MAJORER +MAJORERA +MAJOREZ +MAJORIEZ +MAJORITE +MAKI +MAKIMONO +MALABAR +MALADE +MALADIE +MALADIF +MALADIVE +MALAGA +MALAIRE +MALAISE +MALAISEE +MALANDRE +MALARD +MALARIA +MALART +MALAVISE +MALAXA +MALAXAGE +MALAXAI +MALAXAIT +MALAXANT +MALAXAT +MALAXE +MALAXEE +MALAXENT +MALAXER +MALAXERA +MALAXEUR +MALAXEZ +MALAXIEZ +MALDONNE +MALE +MALEFICE +MALFACON +MALFAIRE +MALFAIT +MALFAITE +MALFAME +MALFAMEE +MALFASSE +MALFERA +MALFERAI +MALFEREZ +MALFISSE +MALFIT +MALFONT +MALFRAT +MALGACHE +MALGRE +MALHEUR +MALI +MALICE +MALIEN +MALIENNE +MALIGNE +MALIN +MALINGRE +MALIQUE +MALLE +MALLEOLE +MALLETTE +MALMENA +MALMENAI +MALMENAT +MALMENE +MALMENEE +MALMENER +MALMENEZ +MALOTRU +MALOTRUE +MALPOLI +MALPOLIE +MALSAIN +MALSAINE +MALSEANT +MALT +MALTA +MALTAGE +MALTAI +MALTAIT +MALTANT +MALTASE +MALTASSE +MALTAT +MALTE +MALTEE +MALTENT +MALTER +MALTERA +MALTERAI +MALTEREZ +MALTERIE +MALTEUR +MALTEZ +MALTIEZ +MALTOSE +MALTOTE +MALVENU +MALVENUE +MAMAN +MAMBO +MAMELLE +MAMELON +MAMELU +MAMELUE +MAMELUKE +MAMIE +MAMMAIRE +MAMMITE +MAMMOUTH +MAMMY +MANA +MANADE +MANAGE +MANAGEA +MANAGEAI +MANAGEAT +MANAGEE +MANAGENT +MANAGER +MANAGERA +MANAGEZ +MANAGIEZ +MANANT +MANCELLE +MANCHE +MANCHON +MANCHOT +MANCHOTE +MANCIE +MANDA +MANDAI +MANDAIT +MANDALE +MANDANT +MANDARIN +MANDASSE +MANDAT +MANDATA +MANDATAI +MANDATAT +MANDATE +MANDATEE +MANDATER +MANDATEZ +MANDCHOU +MANDE +MANDEE +MANDENT +MANDER +MANDERA +MANDERAI +MANDEREZ +MANDEZ +MANDIEZ +MANDORE +MANDORLE +MANDRILL +MANDRIN +MANEGE +MANEGEA +MANEGEAI +MANEGEAT +MANEGEE +MANEGENT +MANEGER +MANEGERA +MANEGEZ +MANEGIEZ +MANETON +MANETTE +MANGE +MANGEA +MANGEAI +MANGEAIT +MANGEANT +MANGEAT +MANGEE +MANGENT +MANGER +MANGERA +MANGERAI +MANGEREZ +MANGEUR +MANGEURE +MANGEUSE +MANGEZ +MANGIEZ +MANGLIER +MANGROVE +MANGUE +MANGUIER +MANIA +MANIABLE +MANIAI +MANIAIT +MANIANT +MANIAQUE +MANIASSE +MANIAT +MANICLE +MANIE +MANIEE +MANIENT +MANIER +MANIERA +MANIERAI +MANIERAT +MANIERE +MANIEREE +MANIERER +MANIEREZ +MANIEUR +MANIEUSE +MANIEZ +MANIFOLD +MANIIEZ +MANILLE +MANILLON +MANIOC +MANIPULA +MANIPULE +MANIQUE +MANITOU +MANNE +MANNITE +MANNOSE +MANOIR +MANOQUA +MANOQUAI +MANOQUAT +MANOQUE +MANOQUEE +MANOQUER +MANOQUEZ +MANOUCHE +MANQUA +MANQUAI +MANQUAIT +MANQUANT +MANQUAT +MANQUE +MANQUEE +MANQUENT +MANQUER +MANQUERA +MANQUEZ +MANQUIEZ +MANSARDA +MANSARDE +MANSE +MANSION +MANTEAU +MANTELE +MANTELEE +MANTELET +MANTILLE +MANTIQUE +MANTISSE +MANUCURA +MANUCURE +MANUEL +MANUELIN +MANUELLE +MAOISME +MAOISTE +MAORI +MAORIE +MAOUSSE +MAOUX +MAQUA +MAQUAI +MAQUAIT +MAQUANT +MAQUASSE +MAQUAT +MAQUE +MAQUEE +MAQUENT +MAQUER +MAQUERA +MAQUERAI +MAQUEREZ +MAQUETTE +MAQUEZ +MAQUIEZ +MAQUILLA +MAQUILLE +MARABOUT +MARANTA +MARASME +MARASQUE +MARATHON +MARATRE +MARAUD +MARAUDA +MARAUDAI +MARAUDAT +MARAUDE +MARAUDER +MARAUDEZ +MARBRA +MARBRAI +MARBRAIT +MARBRANT +MARBRAT +MARBRE +MARBREE +MARBRENT +MARBRER +MARBRERA +MARBREUR +MARBREZ +MARBRIER +MARBRIEZ +MARBRURE +MARC +MARCHA +MARCHAI +MARCHAIT +MARCHAND +MARCHANT +MARCHAT +MARCHE +MARCHENT +MARCHER +MARCHERA +MARCHEUR +MARCHEZ +MARCHIEZ +MARCOTTA +MARCOTTE +MARDI +MARE +MARECAGE +MARECHAL +MAREE +MARELLE +MAREMME +MARENGO +MAREYAGE +MAREYEUR +MARFIL +MARGAY +MARGE +MARGEA +MARGEAI +MARGEAIT +MARGEANT +MARGEAT +MARGEE +MARGELLE +MARGENT +MARGER +MARGERA +MARGERAI +MARGEREZ +MARGEUR +MARGEUSE +MARGEZ +MARGIEZ +MARGINA +MARGINAI +MARGINAL +MARGINAT +MARGINE +MARGINEE +MARGINER +MARGINEZ +MARGOTA +MARGOTAI +MARGOTAT +MARGOTE +MARGOTER +MARGOTEZ +MARGOTIN +MARGOTTA +MARGOTTE +MARGRAVE +MARI +MARIA +MARIABLE +MARIAGE +MARIAI +MARIAIT +MARIAL +MARIALE +MARIANT +MARIASSE +MARIAT +MARIE +MARIEE +MARIENT +MARIER +MARIERA +MARIERAI +MARIEREZ +MARIEUR +MARIEUSE +MARIEZ +MARIGOT +MARIIEZ +MARIN +MARINA +MARINADE +MARINAGE +MARINAI +MARINAIT +MARINANT +MARINAT +MARINE +MARINEE +MARINENT +MARINER +MARINERA +MARINEZ +MARINIER +MARINIEZ +MARIOLE +MARIOLLE +MARISTE +MARITAL +MARITALE +MARITIME +MARK +MARLI +MARLOU +MARMITA +MARMITAI +MARMITAT +MARMITE +MARMITEE +MARMITER +MARMITEZ +MARMITON +MARMONNA +MARMONNE +MARMOT +MARMOTTA +MARMOTTE +MARNA +MARNAGE +MARNAI +MARNAIT +MARNANT +MARNASSE +MARNAT +MARNE +MARNEE +MARNENT +MARNER +MARNERA +MARNERAI +MARNEREZ +MARNEUR +MARNEUSE +MARNEUX +MARNEZ +MARNIERE +MARNIEZ +MAROCAIN +MARONITE +MARONNA +MARONNAI +MARONNAT +MARONNE +MARONNER +MARONNEZ +MAROQUIN +MAROTTE +MAROUFLA +MAROUFLE +MAROUTE +MARQUA +MARQUAGE +MARQUAI +MARQUAIT +MARQUANT +MARQUAT +MARQUE +MARQUEE +MARQUENT +MARQUER +MARQUERA +MARQUETA +MARQUETE +MARQUEUR +MARQUEZ +MARQUIEZ +MARQUISE +MARQUOIR +MARRA +MARRAI +MARRAINE +MARRAIT +MARRANT +MARRASSE +MARRAT +MARRE +MARREE +MARRENT +MARRER +MARRERA +MARRERAI +MARREREZ +MARREZ +MARRI +MARRIE +MARRIEZ +MARRON +MARRONNA +MARRONNE +MARRUBE +MARSAULT +MARSOUIN +MARTAGON +MARTE +MARTEAU +MARTEL +MARTELA +MARTELAI +MARTELAT +MARTELE +MARTELEE +MARTELER +MARTELEZ +MARTIAL +MARTIALE +MARTIEN +MARTINET +MARTINI +MARTRE +MARTYR +MARTYRE +MARXIEN +MARXISA +MARXISAI +MARXISAT +MARXISE +MARXISEE +MARXISER +MARXISEZ +MARXISME +MARXISTE +MARYLAND +MASCARA +MASCARET +MASCARON +MASCOTTE +MASCULIN +MASER +MASQUA +MASQUAGE +MASQUAI +MASQUAIT +MASQUANT +MASQUAT +MASQUE +MASQUEE +MASQUENT +MASQUER +MASQUERA +MASQUEZ +MASQUIEZ +MASSA +MASSACRA +MASSACRE +MASSAGE +MASSAI +MASSAIT +MASSANT +MASSASSE +MASSAT +MASSE +MASSEE +MASSER +MASSERA +MASSERAI +MASSEREZ +MASSETER +MASSETTE +MASSEUR +MASSEUSE +MASSICOT +MASSIER +MASSIERE +MASSIF +MASSIFIA +MASSIFIE +MASSIQUE +MASSIVE +MASSORAH +MASSUE +MASTABA +MASTIC +MASTIFF +MASTIQUA +MASTIQUE +MASTITE +MASTOC +MASTOIDE +MASTURBA +MASTURBE +MASURE +MASURIUM +MATA +MATADOR +MATAF +MATAGE +MATAI +MATAIT +MATAMORE +MATANT +MATASSE +MATAT +MATCH +MATCHA +MATCHAI +MATCHAIT +MATCHANT +MATCHAT +MATCHE +MATCHEE +MATCHENT +MATCHER +MATCHERA +MATCHEZ +MATCHIEZ +MATE +MATEE +MATEFAIM +MATELOT +MATELOTE +MATENT +MATER +MATERA +MATERAI +MATERAIT +MATEREAU +MATERENT +MATEREZ +MATERIAU +MATERIEL +MATERIEZ +MATERNA +MATERNAI +MATERNAT +MATERNE +MATERNEE +MATERNEL +MATERNER +MATERNEZ +MATEZ +MATH +MATHEUSE +MATHEUX +MATI +MATIE +MATIERE +MATIEZ +MATIN +MATINA +MATINAI +MATINAIT +MATINAL +MATINALE +MATINANT +MATINAT +MATINE +MATINEE +MATINENT +MATINER +MATINERA +MATINEUX +MATINEZ +MATINIER +MATINIEZ +MATIR +MATIRA +MATIRAI +MATIRAIT +MATIRENT +MATIREZ +MATIRIEZ +MATIRONT +MATISSE +MATIT +MATITE +MATOIR +MATOISE +MATON +MATONNE +MATOU +MATRAQUA +MATRAQUE +MATRICA +MATRICAI +MATRICAT +MATRICE +MATRICEE +MATRICER +MATRICEZ +MATRONE +MATTE +MATURA +MATURAI +MATURAIT +MATURANT +MATURAT +MATURE +MATUREE +MATURENT +MATURER +MATURERA +MATUREZ +MATURIEZ +MATURITE +MAUBECHE +MAUDIRA +MAUDIRAI +MAUDIRE +MAUDIREZ +MAUDISSE +MAUDIT +MAUDITE +MAUGREA +MAUGREAI +MAUGREAT +MAUGREE +MAUGREEE +MAUGREER +MAUGREEZ +MAURE +MAURELLE +MAUSER +MAUSOLEE +MAUSSADE +MAUVAISE +MAUVE +MAUVEINE +MAXILLE +MAXIMA +MAXIMAL +MAXIMALE +MAXIME +MAXIMISA +MAXIMISE +MAXIMUM +MAXWELL +MAYA +MAYE +MAYEN +MAZAGRAN +MAZETTE +MAZOUT +MAZOUTA +MAZOUTAI +MAZOUTAT +MAZOUTE +MAZOUTEE +MAZOUTER +MAZOUTEZ +MAZURKA +MEANDRE +MEAT +MECANISA +MECANISE +MECANO +MECCANO +MECENAT +MECENE +MECHA +MECHAGE +MECHAI +MECHAIT +MECHANT +MECHASSE +MECHAT +MECHE +MECHEE +MECHENT +MECHER +MECHERA +MECHERAI +MECHEREZ +MECHEUSE +MECHEUX +MECHEZ +MECHIEZ +MECHOUI +MECHTA +MECOMPTA +MECOMPTE +MECONIUM +MECONNU +MECONNUE +MECONNUT +MECREANT +MEDAILLA +MEDAILLE +MEDE +MEDECIN +MEDECINE +MEDERSA +MEDIA +MEDIAL +MEDIALE +MEDIAN +MEDIANE +MEDIAT +MEDIATOR +MEDICAL +MEDICALE +MEDIEVAL +MEDINA +MEDIOCRE +MEDIQUE +MEDIRA +MEDIRAI +MEDIRAIT +MEDIRE +MEDIRENT +MEDIREZ +MEDIRIEZ +MEDIRONT +MEDISA +MEDISAI +MEDISAIT +MEDISANT +MEDISAT +MEDISE +MEDISENT +MEDISER +MEDISERA +MEDISEZ +MEDISIEZ +MEDISSE +MEDIT +MEDITA +MEDITAI +MEDITAIT +MEDITANT +MEDITAT +MEDITE +MEDITEE +MEDITENT +MEDITER +MEDITERA +MEDITEZ +MEDITIEZ +MEDIUM +MEDOC +MEDUSA +MEDUSAI +MEDUSAIT +MEDUSANT +MEDUSAT +MEDUSE +MEDUSEE +MEDUSENT +MEDUSER +MEDUSERA +MEDUSEZ +MEDUSIEZ +MEETING +MEFAIRE +MEFAIT +MEFAITE +MEFASSE +MEFERA +MEFERAI +MEFERAIT +MEFEREZ +MEFERIEZ +MEFIA +MEFIAI +MEFIAIT +MEFIANCE +MEFIANT +MEFIASSE +MEFIAT +MEFIE +MEFIEE +MEFIENT +MEFIER +MEFIERA +MEFIERAI +MEFIEREZ +MEFIEZ +MEFIIEZ +MEFIRENT +MEFISSE +MEFIT +MEFONT +MEFORME +MEGARDE +MEGERE +MEGI +MEGIE +MEGIR +MEGIRA +MEGIRAI +MEGIRAIT +MEGIRENT +MEGIREZ +MEGIRIEZ +MEGIRONT +MEGISSA +MEGISSAI +MEGISSAT +MEGISSE +MEGISSEE +MEGISSER +MEGIT +MEGOHM +MEGOT +MEGOTA +MEGOTAI +MEGOTAIT +MEGOTANT +MEGOTAT +MEGOTE +MEGOTEE +MEGOTENT +MEGOTER +MEGOTERA +MEGOTEZ +MEGOTIEZ +MEHARA +MEHAREE +MEHARI +MEIJI +MEILLEUR +MEIOSE +MEISTRE +MEJANAGE +MEJUGE +MEJUGEA +MEJUGEAI +MEJUGEAT +MEJUGEE +MEJUGENT +MEJUGER +MEJUGERA +MEJUGEZ +MEJUGIEZ +MELA +MELAENA +MELAI +MELAIT +MELANGE +MELANGEA +MELANGEE +MELANGER +MELANGEZ +MELANINE +MELANOME +MELANOSE +MELANT +MELASSE +MELAT +MELBA +MELCHIOR +MELCHITE +MELE +MELEE +MELENA +MELENT +MELER +MELERA +MELERAI +MELERAIT +MELERENT +MELEREZ +MELERIEZ +MELEZ +MELEZE +MELIA +MELIEZ +MELILOT +MELINITE +MELIQUE +MELISSE +MELITTE +MELLAH +MELLITE +MELO +MELODIE +MELOMANE +MELON +MELONNE +MELONNEE +MELOPEE +MELUSINE +MEMBRANE +MEMBRE +MEMBREE +MEMBRON +MEMBRU +MEMBRUE +MEMBRURE +MEME +MEMEMENT +MEMENTO +MEMERE +MEMOIRE +MEMORIAL +MEMORIEL +MEMORISA +MEMORISE +MENA +MENACA +MENACAI +MENACAIT +MENACANT +MENACAT +MENACE +MENACEE +MENACENT +MENACER +MENACERA +MENACEZ +MENACIEZ +MENADE +MENAGE +MENAGEA +MENAGEAI +MENAGEAT +MENAGEE +MENAGENT +MENAGER +MENAGERA +MENAGERE +MENAGEZ +MENAGIEZ +MENAI +MENAIT +MENANT +MENASSE +MENAT +MENDIA +MENDIAI +MENDIAIT +MENDIANT +MENDIAT +MENDIE +MENDIEE +MENDIENT +MENDIER +MENDIERA +MENDIEZ +MENDIGOT +MENDIIEZ +MENE +MENEAU +MENEE +MENENT +MENER +MENERA +MENERAI +MENERAIT +MENERENT +MENEREZ +MENERIEZ +MENEUR +MENEUSE +MENEZ +MENHIR +MENIEZ +MENIN +MENINE +MENINGE +MENINGEE +MENISQUE +MENOLOGE +MENOTTE +MENSE +MENSONGE +MENSUEL +MENSURA +MENSURAI +MENSURAT +MENSURE +MENSUREE +MENSURER +MENSUREZ +MENT +MENTAIT +MENTAL +MENTALE +MENTANT +MENTE +MENTENT +MENTERIE +MENTEUR +MENTEUSE +MENTEZ +MENTHE +MENTHOL +MENTHOLE +MENTI +MENTIE +MENTIEZ +MENTION +MENTIR +MENTIRA +MENTIRAI +MENTIREZ +MENTISME +MENTISSE +MENTIT +MENTON +MENTOR +MENU +MENUE +MENUET +MENUISA +MENUISAI +MENUISAT +MENUISE +MENUISEE +MENUISER +MENUISEZ +MENURE +MEPLAT +MEPLATE +MEPREND +MEPRENEZ +MEPRENNE +MEPRISA +MEPRISAI +MEPRISAT +MEPRISE +MEPRISEE +MEPRISER +MEPRISEZ +MEPRISSE +MEPRIT +MERCANTI +MERCERIE +MERCI +MERCIER +MERCIERE +MERCREDI +MERCURE +MERDE +MERDEUSE +MERDEUX +MERDIER +MERDIQUE +MERDOIE +MERDOYA +MERDOYAI +MERDOYAT +MERDOYE +MERDOYER +MERDOYEZ +MERE +MERGUEZ +MERIDIEN +MERINGUA +MERINGUE +MERISE +MERISIER +MERITA +MERITAI +MERITAIT +MERITANT +MERITAT +MERITE +MERITEE +MERITENT +MERITER +MERITERA +MERITEZ +MERITIEZ +MERLAN +MERLE +MERLETTE +MERLIN +MERLON +MERLU +MERLUCHE +MEROU +MERRAIN +MESA +MESALLIA +MESALLIE +MESANGE +MESCLUN +MESQUIN +MESQUINE +MESSAGE +MESSAGER +MESSE +MESSEANT +MESSEOIR +MESSER +MESSIDOR +MESSIE +MESSIED +MESSIEE +MESSIER +MESSIERA +MESSIRE +MESTRE +MESURA +MESURAGE +MESURAI +MESURAIT +MESURANT +MESURAT +MESURE +MESUREE +MESURENT +MESURER +MESURERA +MESUREUR +MESUREZ +MESURIEZ +MESUSA +MESUSAI +MESUSAIT +MESUSANT +MESUSAT +MESUSE +MESUSENT +MESUSER +MESUSERA +MESUSEZ +MESUSIEZ +META +METAIRIE +METAL +METALLO +METAYAGE +METAYER +METAYERE +METEIL +METEO +METEORE +METEQUE +METHANE +METHODE +METHYLE +METIER +METISSA +METISSAI +METISSAT +METISSE +METISSEE +METISSER +METOPE +METRA +METRAGE +METRAI +METRAIT +METRANT +METRASSE +METRAT +METRE +METREE +METRENT +METRER +METRERA +METRERAI +METREREZ +METREUR +METREUSE +METREZ +METRIEZ +METRIQUE +METRITE +METRO +METTABLE +METTAIT +METTANT +METTE +METTENT +METTEUR +METTEUSE +METTEZ +METTIEZ +METTRA +METTRAI +METTRAIT +METTRE +METTREZ +METTRIEZ +METTRONT +MEUBLA +MEUBLAI +MEUBLAIT +MEUBLANT +MEUBLAT +MEUBLE +MEUBLEE +MEUBLENT +MEUBLER +MEUBLERA +MEUBLEZ +MEUBLIEZ +MEUGLA +MEUGLAI +MEUGLAIT +MEUGLANT +MEUGLAT +MEUGLE +MEUGLENT +MEUGLER +MEUGLERA +MEUGLEZ +MEUGLIEZ +MEULA +MEULAGE +MEULAI +MEULAIT +MEULANT +MEULASSE +MEULAT +MEULE +MEULEE +MEULENT +MEULER +MEULERA +MEULERAI +MEULEREZ +MEULETTE +MEULEZ +MEULIER +MEULIERE +MEULIEZ +MEULON +MEUNERIE +MEUNIER +MEUNIERE +MEURE +MEURENT +MEURETTE +MEURT +MEURTRE +MEURTRI +MEURTRIE +MEURTRIR +MEURTRIT +MEUT +MEUTE +MEUVE +MEUVENT +MEVEND +MEVENDE +MEVENDEZ +MEVENDIT +MEVENDRA +MEVENDRE +MEVENDU +MEVENDUE +MEVENTE +MEXICAIN +MEZAIL +MEZIGUE +MEZZO +MIAOU +MIASME +MIAULA +MIAULAI +MIAULAIT +MIAULANT +MIAULAT +MIAULE +MIAULENT +MIAULER +MIAULERA +MIAULEUR +MIAULEZ +MIAULIEZ +MICA +MICACE +MICACEE +MICELLE +MICHE +MICHETON +MICMAC +MICRO +MICROBE +MICRON +MICTION +MIDI +MIDSHIP +MIEL +MIELLE +MIELLEE +MIELLEUX +MIEN +MIENNE +MIETTE +MIEUX +MIEVRE +MIGNARD +MIGNARDA +MIGNARDE +MIGNON +MIGNONNE +MIGNOTA +MIGNOTAI +MIGNOTAT +MIGNOTE +MIGNOTEE +MIGNOTER +MIGNOTEZ +MIGRA +MIGRAI +MIGRAINE +MIGRAIT +MIGRANT +MIGRASSE +MIGRAT +MIGRE +MIGRENT +MIGRER +MIGRERA +MIGRERAI +MIGREREZ +MIGREZ +MIGRIEZ +MIJAUREE +MIJOTA +MIJOTAI +MIJOTAIT +MIJOTANT +MIJOTAT +MIJOTE +MIJOTEE +MIJOTENT +MIJOTER +MIJOTERA +MIJOTEZ +MIJOTIEZ +MIKADO +MILAN +MILDIOU +MILE +MILIAIRE +MILICE +MILICIEN +MILIEU +MILIEUX +MILITA +MILITAI +MILITAIT +MILITANT +MILITAT +MILITE +MILITENT +MILITER +MILITERA +MILITEZ +MILITIEZ +MILLAGE +MILLASSE +MILLE +MILLET +MILLIARD +MILLIBAR +MILLIEME +MILLIER +MILLION +MILORD +MILOUIN +MIMA +MIMAI +MIMAIT +MIMANT +MIMASSE +MIMAT +MIME +MIMEE +MIMENT +MIMER +MIMERA +MIMERAI +MIMERAIT +MIMERENT +MIMEREZ +MIMERIEZ +MIMEZ +MIMI +MIMIEZ +MIMIQUE +MIMOSA +MINA +MINABLE +MINAGE +MINAI +MINAIT +MINANT +MINARET +MINASSE +MINAT +MINAUDA +MINAUDAI +MINAUDAT +MINAUDE +MINAUDEE +MINAUDER +MINAUDEZ +MINBAR +MINCE +MINCEUR +MINCI +MINCIR +MINCIRA +MINCIRAI +MINCIREZ +MINCISSE +MINCIT +MINE +MINEE +MINENT +MINER +MINERA +MINERAI +MINERAIT +MINERAL +MINERALE +MINERENT +MINEREZ +MINERIEZ +MINERVAL +MINERVE +MINET +MINETTE +MINEUR +MINEURE +MINEZ +MINI +MINICAR +MINIER +MINIERE +MINIEZ +MINIMA +MINIMAL +MINIMALE +MINIME +MINIMISA +MINIMISE +MINIMUM +MINISTRE +MINITEL +MINIUM +MINOEN +MINOENNE +MINORA +MINORAI +MINORAIT +MINORANT +MINORAT +MINORE +MINOREE +MINORENT +MINORER +MINORERA +MINOREZ +MINORIEZ +MINORITE +MINOT +MINOTIER +MINOU +MINUIT +MINUTA +MINUTAGE +MINUTAI +MINUTAIT +MINUTANT +MINUTAT +MINUTE +MINUTEE +MINUTENT +MINUTER +MINUTERA +MINUTEUR +MINUTEZ +MINUTIE +MINUTIER +MINUTIEZ +MIOCENE +MIOCHE +MIRA +MIRACLE +MIRACULE +MIRADOR +MIRAGE +MIRAI +MIRAIT +MIRANT +MIRASSE +MIRAT +MIRBANE +MIRE +MIREE +MIRENT +MIREPOIX +MIRER +MIRERA +MIRERAI +MIRERAIT +MIRERENT +MIREREZ +MIRERIEZ +MIREUR +MIREUSE +MIREZ +MIRIEZ +MIRLITON +MIRMIDON +MIRO +MIROIR +MIROITA +MIROITAI +MIROITAT +MIROITE +MIROITEE +MIROITER +MIROITEZ +MIRONTON +MIROTON +MISA +MISAI +MISAINE +MISAIT +MISANT +MISASSE +MISAT +MISCIBLE +MISE +MISEE +MISENT +MISER +MISERA +MISERAI +MISERAIT +MISERE +MISERENT +MISERERE +MISEREUX +MISEREZ +MISERIEZ +MISEZ +MISIEZ +MISOGYNE +MISSE +MISSEL +MISSILE +MISSION +MISSIVE +MISTELLE +MISTIGRI +MISTON +MISTONNE +MISTRAL +MITA +MITAGE +MITAI +MITAINE +MITAIT +MITAN +MITANT +MITASSE +MITAT +MITE +MITEE +MITENT +MITER +MITERA +MITERAI +MITERAIT +MITERENT +MITEREZ +MITERIEZ +MITEUSE +MITEUX +MITEZ +MITIEZ +MITIGE +MITIGEA +MITIGEAI +MITIGEAT +MITIGEE +MITIGENT +MITIGER +MITIGERA +MITIGEUR +MITIGEZ +MITIGIEZ +MITON +MITONNA +MITONNAI +MITONNAT +MITONNE +MITONNEE +MITONNER +MITONNEZ +MITOSE +MITOYEN +MITRAL +MITRALE +MITRE +MITREE +MITRON +MIXA +MIXAGE +MIXAI +MIXAIT +MIXANT +MIXASSE +MIXAT +MIXE +MIXEE +MIXENT +MIXER +MIXERA +MIXERAI +MIXERAIT +MIXERENT +MIXEREZ +MIXERIEZ +MIXEUR +MIXEZ +MIXIEZ +MIXITE +MIXTE +MIXTION +MIXTURE +MOBILE +MOBILIER +MOBILISA +MOBILISE +MOBILITE +MOBLOT +MOCASSIN +MOCHARD +MOCHARDE +MOCHE +MOCHETE +MOCO +MODAL +MODALE +MODALITE +MODE +MODELA +MODELAGE +MODELAI +MODELAIT +MODELANT +MODELAT +MODELE +MODELEE +MODELENT +MODELER +MODELERA +MODELEUR +MODELEZ +MODELIEZ +MODELISA +MODELISE +MODEM +MODERA +MODERAI +MODERAIT +MODERANT +MODERAT +MODERATO +MODERE +MODEREE +MODERENT +MODERER +MODERERA +MODEREZ +MODERIEZ +MODERNE +MODESTE +MODESTIE +MODICITE +MODIFIA +MODIFIAI +MODIFIAT +MODIFIE +MODIFIEE +MODIFIER +MODIFIEZ +MODILLON +MODIQUE +MODISTE +MODULA +MODULAI +MODULAIT +MODULANT +MODULAT +MODULE +MODULEE +MODULENT +MODULER +MODULERA +MODULEZ +MODULIEZ +MODULOR +MOELLE +MOELLEUX +MOELLON +MOERE +MOFETTE +MOHAIR +MOIGNON +MOINDRE +MOINE +MOINEAU +MOINERIE +MOIRA +MOIRAGE +MOIRAI +MOIRAIT +MOIRANT +MOIRASSE +MOIRAT +MOIRE +MOIREE +MOIRENT +MOIRER +MOIRERA +MOIRERAI +MOIREREZ +MOIREZ +MOIRIEZ +MOIRURE +MOISA +MOISAI +MOISAIT +MOISANT +MOISASSE +MOISAT +MOISE +MOISEE +MOISENT +MOISER +MOISERA +MOISERAI +MOISEREZ +MOISEZ +MOISI +MOISIEZ +MOISIR +MOISIRA +MOISIRAI +MOISIREZ +MOISISSE +MOISIT +MOISSINE +MOISSON +MOITA +MOITAI +MOITAIT +MOITANT +MOITASSE +MOITAT +MOITE +MOITENT +MOITER +MOITERA +MOITERAI +MOITEREZ +MOITEUR +MOITEZ +MOITI +MOITIE +MOITIEZ +MOITIR +MOITIRA +MOITIRAI +MOITIREZ +MOITISSE +MOITIT +MOKA +MOLAIRE +MOLASSE +MOLE +MOLECULE +MOLENE +MOLESTA +MOLESTAI +MOLESTAT +MOLESTE +MOLESTEE +MOLESTER +MOLESTEZ +MOLETA +MOLETAGE +MOLETAI +MOLETAIT +MOLETANT +MOLETAT +MOLETE +MOLETEE +MOLETER +MOLETEZ +MOLETIEZ +MOLETTE +MOLLAH +MOLLARD +MOLLARDA +MOLLARDE +MOLLASSE +MOLLE +MOLLESSE +MOLLET +MOLLETON +MOLLI +MOLLIE +MOLLIR +MOLLIRA +MOLLIRAI +MOLLIREZ +MOLLISSE +MOLLIT +MOLLO +MOLOCH +MOLOSSE +MOLY +MOME +MOMENT +MOMERIE +MOMIE +MOMIFIA +MOMIFIAI +MOMIFIAT +MOMIFIE +MOMIFIEE +MOMIFIER +MOMIFIEZ +MONACAL +MONACALE +MONADE +MONARQUE +MONAZITE +MONCEAU +MONDA +MONDAI +MONDAIN +MONDAINE +MONDAIT +MONDANT +MONDASSE +MONDAT +MONDE +MONDEE +MONDENT +MONDER +MONDERA +MONDERAI +MONDEREZ +MONDEZ +MONDIAL +MONDIALE +MONDIEZ +MONEL +MONEME +MONETISA +MONETISE +MONGOL +MONGOLE +MONIAL +MONIALE +MONISME +MONISTE +MONITEUR +MONITION +MONITOR +MONNAIE +MONNAYA +MONNAYAI +MONNAYAT +MONNAYE +MONNAYEE +MONNAYER +MONNAYEZ +MONO +MONOBLOC +MONOCLE +MONOCYTE +MONODIE +MONOECIE +MONOGAME +MONOIQUE +MONOMERE +MONOPLAN +MONOPOLE +MONOPRIX +MONORAIL +MONORIME +MONOSKI +MONOTONE +MONOTYPE +MONOXYLE +MONSIEUR +MONSTRE +MONT +MONTA +MONTAGE +MONTAGNE +MONTAI +MONTAIT +MONTANT +MONTASSE +MONTAT +MONTE +MONTEE +MONTENT +MONTER +MONTERA +MONTERAI +MONTEREZ +MONTEUR +MONTEUSE +MONTEZ +MONTIEZ +MONTOIR +MONTRA +MONTRAI +MONTRAIT +MONTRANT +MONTRAT +MONTRE +MONTREE +MONTRENT +MONTRER +MONTRERA +MONTREUR +MONTREZ +MONTRIEZ +MONTUEUX +MONTURE +MONUMENT +MOQUA +MOQUAI +MOQUAIT +MOQUANT +MOQUASSE +MOQUAT +MOQUE +MOQUEE +MOQUENT +MOQUER +MOQUERA +MOQUERAI +MOQUEREZ +MOQUERIE +MOQUETTA +MOQUETTE +MOQUEUR +MOQUEUSE +MOQUEZ +MOQUIEZ +MORAINE +MORAL +MORALE +MORALISA +MORALISE +MORALITE +MORASSE +MORBIDE +MORBLEU +MORCEAU +MORCELA +MORCELAI +MORCELAT +MORCELE +MORCELEE +MORCELER +MORCELEZ +MORCELLE +MORD +MORDACHE +MORDAIT +MORDANCA +MORDANCE +MORDANT +MORDE +MORDENT +MORDEZ +MORDIEZ +MORDILLA +MORDILLE +MORDISSE +MORDIT +MORDORA +MORDORAI +MORDORAT +MORDORE +MORDOREE +MORDORER +MORDOREZ +MORDRA +MORDRAI +MORDRAIT +MORDRE +MORDREZ +MORDRIEZ +MORDRONT +MORDU +MORDUE +MORE +MOREAU +MORELLE +MORESQUE +MORFAL +MORFALE +MORFIL +MORFILA +MORFILAI +MORFILAT +MORFILE +MORFILEE +MORFILER +MORFILEZ +MORFLA +MORFLAI +MORFLAIT +MORFLANT +MORFLAT +MORFLE +MORFLEE +MORFLENT +MORFLER +MORFLERA +MORFLEZ +MORFLIEZ +MORFOND +MORFONDE +MORFONDU +MORGUA +MORGUAI +MORGUAIT +MORGUANT +MORGUAT +MORGUE +MORGUEE +MORGUENT +MORGUER +MORGUERA +MORGUEZ +MORGUIEZ +MORIBOND +MORICAUD +MORIGENA +MORIGENE +MORILLE +MORILLON +MORIO +MORION +MORMONE +MORNE +MORNEE +MORNIFLE +MOROSE +MOROSITE +MORPHEME +MORPHINE +MORPION +MORSE +MORSURE +MORT +MORTAISA +MORTAISE +MORTE +MORTEL +MORTELLE +MORTIER +MORTIFIA +MORTIFIE +MORUE +MORULA +MORUTIER +MORVE +MORVEUSE +MORVEUX +MOSAIQUE +MOSAISME +MOSAISTE +MOSAN +MOSANE +MOSELLAN +MOSETTE +MOSQUEE +MOTARD +MOTARDE +MOTEL +MOTET +MOTEUR +MOTIF +MOTILITE +MOTION +MOTIONNA +MOTIONNE +MOTIVA +MOTIVAI +MOTIVAIT +MOTIVANT +MOTIVAT +MOTIVE +MOTIVEE +MOTIVENT +MOTIVER +MOTIVERA +MOTIVEZ +MOTIVIEZ +MOTO +MOTORISA +MOTORISE +MOTRICE +MOTTA +MOTTAI +MOTTAIT +MOTTANT +MOTTASSE +MOTTAT +MOTTE +MOTTEE +MOTTENT +MOTTER +MOTTERA +MOTTERAI +MOTTEREZ +MOTTEUX +MOTTEZ +MOTTIEZ +MOUCHA +MOUCHAGE +MOUCHAI +MOUCHAIT +MOUCHANT +MOUCHARD +MOUCHAT +MOUCHE +MOUCHEE +MOUCHENT +MOUCHER +MOUCHERA +MOUCHETA +MOUCHETE +MOUCHEZ +MOUCHIEZ +MOUCHOIR +MOUCHURE +MOUD +MOUDRA +MOUDRAI +MOUDRAIT +MOUDRE +MOUDREZ +MOUDRIEZ +MOUDRONT +MOUE +MOUETTA +MOUETTAI +MOUETTAT +MOUETTE +MOUETTER +MOUETTEZ +MOUFETTE +MOUFLE +MOUFLET +MOUFLON +MOUFTA +MOUFTAI +MOUFTAIT +MOUFTANT +MOUFTAT +MOUFTE +MOUFTENT +MOUFTER +MOUFTERA +MOUFTEZ +MOUFTIEZ +MOUILLA +MOUILLAI +MOUILLAT +MOUILLE +MOUILLEE +MOUILLER +MOUILLEZ +MOUISE +MOUJIK +MOUKERE +MOULA +MOULAGE +MOULAI +MOULAIT +MOULANT +MOULASSE +MOULAT +MOULE +MOULEE +MOULENT +MOULER +MOULERA +MOULERAI +MOULEREZ +MOULEUR +MOULEZ +MOULIERE +MOULIEZ +MOULIN +MOULINA +MOULINAI +MOULINAT +MOULINE +MOULINEE +MOULINER +MOULINET +MOULINEZ +MOULT +MOULU +MOULUE +MOULURA +MOULURAI +MOULURAT +MOULURE +MOULUREE +MOULURER +MOULUREZ +MOULUSSE +MOULUT +MOUMOUTE +MOUQUERE +MOURAIT +MOURANT +MOUREZ +MOURIEZ +MOURIR +MOUROIR +MOURON +MOURONNA +MOURONNE +MOURRA +MOURRAI +MOURRAIT +MOURRE +MOURREZ +MOURRIEZ +MOURRONT +MOURUSSE +MOURUT +MOUSME +MOUSQUET +MOUSSA +MOUSSAI +MOUSSAIT +MOUSSANT +MOUSSAT +MOUSSE +MOUSSER +MOUSSERA +MOUSSEUX +MOUSSOIR +MOUSSON +MOUSSU +MOUSSUE +MOUT +MOUTARD +MOUTARDE +MOUTIER +MOUTON +MOUTONNA +MOUTONNE +MOUTURE +MOUVA +MOUVAI +MOUVAIT +MOUVANCE +MOUVANT +MOUVASSE +MOUVAT +MOUVE +MOUVEE +MOUVENT +MOUVER +MOUVERA +MOUVERAI +MOUVEREZ +MOUVEZ +MOUVIEZ +MOUVOIR +MOUVRA +MOUVRAI +MOUVRAIT +MOUVREZ +MOUVRIEZ +MOUVRONT +MOVIOLA +MOXA +MOYE +MOYEE +MOYEN +MOYENNA +MOYENNAI +MOYENNAT +MOYENNE +MOYENNEE +MOYENNER +MOYENNEZ +MOYETTE +MOYEU +MOYEUX +MOZABITE +MOZARABE +MOZETTE +MUAI +MUAIT +MUANCE +MUANT +MUASSE +MUAT +MUCHA +MUCHAI +MUCHAIT +MUCHANT +MUCHASSE +MUCHAT +MUCHE +MUCHEE +MUCHENT +MUCHER +MUCHERA +MUCHERAI +MUCHEREZ +MUCHEZ +MUCHIEZ +MUCILAGE +MUCOR +MUCOSITE +MUCRON +MUDEJARE +MUEE +MUENT +MUER +MUERA +MUERAI +MUERAIT +MUERENT +MUEREZ +MUERIEZ +MUET +MUETTE +MUEZ +MUEZZIN +MUFFIN +MUFLE +MUFLERIE +MUFLIER +MUFTI +MUGE +MUGI +MUGIR +MUGIRA +MUGIRAI +MUGIRAIT +MUGIRENT +MUGIREZ +MUGIRIEZ +MUGIRONT +MUGISSE +MUGIT +MUGUET +MUGUETA +MUGUETAI +MUGUETAT +MUGUETE +MUGUETEE +MUGUETER +MUGUETEZ +MUGUETTE +MUID +MUIEZ +MULARD +MULARDE +MULATRE +MULE +MULET +MULETA +MULETIER +MULETTE +MULON +MULOT +MULOTA +MULOTAI +MULOTAIT +MULOTANT +MULOTAT +MULOTE +MULOTENT +MULOTER +MULOTERA +MULOTEZ +MULOTIEZ +MULSION +MULTIPLE +MUNI +MUNICIPE +MUNIE +MUNIR +MUNIRA +MUNIRAI +MUNIRAIT +MUNIRENT +MUNIREZ +MUNIRIEZ +MUNIRONT +MUNISSE +MUNIT +MUNITION +MUNSTER +MUPHTI +MUQUEUSE +MUQUEUX +MURA +MURAGE +MURAI +MURAILLA +MURAILLE +MURAIT +MURAL +MURALE +MURANT +MURASSE +MURAT +MURE +MUREE +MUREMENT +MURENE +MURENT +MURER +MURERA +MURERAI +MURERAIT +MURERENT +MUREREZ +MURERIEZ +MURET +MURETIN +MURETTE +MUREX +MUREZ +MURI +MURIATE +MURIE +MURIER +MURIEZ +MURIR +MURIRA +MURIRAI +MURIRAIT +MURIRENT +MURIREZ +MURIRIEZ +MURIRONT +MURISSE +MURIT +MURMEL +MURMURA +MURMURAI +MURMURAT +MURMURE +MURMUREE +MURMURER +MURMUREZ +MURRHIN +MURRHINE +MUSA +MUSAGETE +MUSAI +MUSAIT +MUSANT +MUSARD +MUSARDA +MUSARDAI +MUSARDAT +MUSARDE +MUSARDER +MUSARDEZ +MUSASSE +MUSAT +MUSC +MUSCADE +MUSCADET +MUSCADIN +MUSCARI +MUSCAT +MUSCLA +MUSCLAI +MUSCLAIT +MUSCLANT +MUSCLAT +MUSCLE +MUSCLEE +MUSCLENT +MUSCLER +MUSCLERA +MUSCLEZ +MUSCLIEZ +MUSE +MUSEAU +MUSEE +MUSELA +MUSELAI +MUSELAIT +MUSELANT +MUSELAT +MUSELE +MUSELEE +MUSELER +MUSELET +MUSELEZ +MUSELIEZ +MUSELLE +MUSENT +MUSER +MUSERA +MUSERAI +MUSERAIT +MUSERENT +MUSEREZ +MUSERIEZ +MUSETTE +MUSEUM +MUSEZ +MUSICAL +MUSICALE +MUSICIEN +MUSIEZ +MUSIQUA +MUSIQUAI +MUSIQUAT +MUSIQUE +MUSIQUEE +MUSIQUER +MUSIQUEZ +MUSOIR +MUSQUA +MUSQUAI +MUSQUAIT +MUSQUANT +MUSQUAT +MUSQUE +MUSQUEE +MUSQUENT +MUSQUER +MUSQUERA +MUSQUEZ +MUSQUIEZ +MUSSA +MUSSAI +MUSSAIT +MUSSANT +MUSSASSE +MUSSAT +MUSSE +MUSSEE +MUSSER +MUSSERA +MUSSERAI +MUSSEREZ +MUSSIF +MUSSIVE +MUST +MUSTANG +MUSULMAN +MUTA +MUTABLE +MUTAGE +MUTAGENE +MUTAI +MUTAIT +MUTANT +MUTASSE +MUTAT +MUTATION +MUTE +MUTEE +MUTENT +MUTER +MUTERA +MUTERAI +MUTERAIT +MUTERENT +MUTEREZ +MUTERIEZ +MUTEZ +MUTIEZ +MUTILA +MUTILAI +MUTILAIT +MUTILANT +MUTILAT +MUTILE +MUTILEE +MUTILENT +MUTILER +MUTILERA +MUTILEZ +MUTILIEZ +MUTIN +MUTINA +MUTINAI +MUTINAIT +MUTINANT +MUTINAT +MUTINE +MUTINEE +MUTINENT +MUTINER +MUTINERA +MUTINEZ +MUTINIEZ +MUTIQUE +MUTISME +MUTITE +MUTUEL +MUTUELLE +MUTULE +MYALGIE +MYCELIEN +MYCELIUM +MYCENIEN +MYCOSE +MYDRIASE +MYELINE +MYELITE +MYELOME +MYGALE +MYIASE +MYOCARDE +MYOLOGIE +MYOME +MYOPE +MYOPIE +MYOSITE +MYRIADE +MYRMIDON +MYROSINE +MYROXYLE +MYRRHE +MYRTE +MYRTILLE +MYSTERE +MYSTIFIA +MYSTIFIE +MYSTIQUE +MYTHE +MYTHIQUE +NABAB +NABOT +NABOTE +NACARAT +NACELLE +NACRA +NACRAI +NACRAIT +NACRANT +NACRASSE +NACRAT +NACRE +NACREE +NACRENT +NACRER +NACRERA +NACRERAI +NACREREZ +NACREZ +NACRIEZ +NADIR +NAFE +NAGAIKA +NAGE +NAGEA +NAGEAI +NAGEAIT +NAGEANT +NAGEASSE +NAGEAT +NAGEE +NAGENT +NAGEOIRE +NAGER +NAGERA +NAGERAI +NAGERAIT +NAGERENT +NAGEREZ +NAGERIEZ +NAGEUR +NAGEUSE +NAGEZ +NAGIEZ +NAGUERE +NAHAIKA +NAIADE +NAIF +NAIN +NAINE +NAISSAIN +NAISSAIT +NAISSANT +NAISSE +NAIT +NAITRA +NAITRAI +NAITRAIT +NAITRE +NAITREZ +NAITRIEZ +NAITRONT +NAIVE +NAIVETE +NAJA +NANA +NANAN +NANAR +NANDOU +NANISME +NANKIN +NANSOUK +NANTI +NANTIE +NANTIR +NANTIRA +NANTIRAI +NANTIREZ +NANTISSE +NANTIT +NANZOUK +NAPALM +NAPEE +NAPEL +NAPHTE +NAPHTOL +NAPOLEON +NAPOLEON +NAPPA +NAPPAGE +NAPPAI +NAPPAIT +NAPPANT +NAPPASSE +NAPPAT +NAPPE +NAPPEE +NAPPENT +NAPPER +NAPPERA +NAPPERAI +NAPPEREZ +NAPPERON +NAPPEZ +NAPPIEZ +NAQUISSE +NAQUIT +NARCEINE +NARCISSE +NARCOSE +NARD +NARGHILE +NARGUA +NARGUAI +NARGUAIT +NARGUANT +NARGUAT +NARGUE +NARGUEE +NARGUENT +NARGUER +NARGUERA +NARGUEZ +NARGUIEZ +NARGUILE +NARINE +NARRA +NARRAI +NARRAIT +NARRANT +NARRASSE +NARRAT +NARRATIF +NARRE +NARREE +NARRENT +NARRER +NARRERA +NARRERAI +NARREREZ +NARREZ +NARRIEZ +NARTHEX +NARVAL +NASAL +NASALE +NASALISA +NASALISE +NASALITE +NASARD +NASARDE +NASE +NASEAU +NASILLA +NASILLAI +NASILLAT +NASILLE +NASILLEE +NASILLER +NASILLEZ +NASIQUE +NASITORT +NASSE +NATAL +NATALE +NATALITE +NATATION +NATICE +NATIF +NATION +NATIONAL +NATIVE +NATIVITE +NATRON +NATRUM +NATTA +NATTAGE +NATTAI +NATTAIT +NATTANT +NATTASSE +NATTAT +NATTE +NATTEE +NATTENT +NATTER +NATTERA +NATTERAI +NATTEREZ +NATTEZ +NATTIER +NATTIERE +NATTIEZ +NATURE +NATUREL +NAUCORE +NAUFRAGE +NAUSEE +NAUSEEUX +NAUTILE +NAUTIQUE +NAUTISME +NAVAJA +NAVAL +NAVALE +NAVARIN +NAVARQUE +NAVET +NAVETTE +NAVICERT +NAVICULE +NAVIGANT +NAVIGUA +NAVIGUAI +NAVIGUAT +NAVIGUE +NAVIGUER +NAVIGUEZ +NAVIRE +NAVRA +NAVRAI +NAVRAIT +NAVRANT +NAVRASSE +NAVRAT +NAVRE +NAVREE +NAVRENT +NAVRER +NAVRERA +NAVRERAI +NAVREREZ +NAVREZ +NAVRIEZ +NAZAREEN +NAZI +NAZIE +NAZISME +NEANT +NEANTISA +NEANTISE +NEBKA +NEBULEUX +NECK +NECROBIE +NECROSA +NECROSAI +NECROSAT +NECROSE +NECROSEE +NECROSER +NECROSEZ +NECTAIRE +NECTAR +NEFASTE +NEFLE +NEFLIER +NEGATEUR +NEGATIF +NEGATION +NEGATIVE +NEGATON +NEGLIGE +NEGLIGEA +NEGLIGEE +NEGLIGER +NEGLIGEZ +NEGOCE +NEGOCIA +NEGOCIAI +NEGOCIAT +NEGOCIE +NEGOCIEE +NEGOCIER +NEGOCIEZ +NEGONDO +NEGRE +NEGRESSE +NEGRIER +NEGRILLE +NEGROIDE +NEIGE +NEIGEA +NEIGEAIT +NEIGEAT +NEIGER +NEIGERA +NEIGEUSE +NEIGEUX +NELOMBO +NEMALE +NEMALION +NENE +NENNI +NENUPHAR +NEODYME +NEOFORME +NEOGENE +NEOLOGIE +NEOMENIE +NEON +NEONATAL +NEOPHYTE +NEOTTIE +NEPERIEN +NEPETE +NEPHRITE +NEPHRON +NEPHROSE +NEREIDE +NERF +NEROLI +NERONIEN +NERPRUN +NERVEUSE +NERVEUX +NERVI +NERVIN +NERVURA +NERVURAI +NERVURAT +NERVURE +NERVUREE +NERVURER +NERVUREZ +NESCAFE +NETTE +NETTETE +NETTOIE +NETTOYA +NETTOYAI +NETTOYAT +NETTOYE +NETTOYEE +NETTOYER +NETTOYEZ +NEUF +NEUME +NEURAL +NEURALE +NEURONAL +NEURONE +NEURULA +NEUTRE +NEUTRINO +NEUTRON +NEUVAINE +NEUVE +NEUVIEME +NEVE +NEVEU +NEVEUX +NEVRAXE +NEVRITE +NEVROSE +NEVROSEE +NIABLE +NIAI +NIAISA +NIAISAI +NIAISAIT +NIAISANT +NIAISAT +NIAISE +NIAISENT +NIAISER +NIAISERA +NIAISEZ +NIAISIEZ +NIAIT +NIANT +NIAOULI +NIASSE +NIAT +NICHA +NICHAI +NICHAIT +NICHANT +NICHASSE +NICHAT +NICHE +NICHEE +NICHENT +NICHER +NICHERA +NICHERAI +NICHEREZ +NICHET +NICHEZ +NICHIEZ +NICHOIR +NICHON +NICHROME +NICKEL +NICKELA +NICKELAI +NICKELAT +NICKELE +NICKELEE +NICKELER +NICKELEZ +NICKELLE +NICODEME +NICOL +NICOTINE +NIDATION +NIDIFIA +NIDIFIAI +NIDIFIAT +NIDIFIE +NIDIFIER +NIDIFIEZ +NIECE +NIEE +NIELLA +NIELLAGE +NIELLAI +NIELLAIT +NIELLANT +NIELLAT +NIELLE +NIELLEE +NIELLENT +NIELLER +NIELLERA +NIELLEUR +NIELLEZ +NIELLIEZ +NIELLURE +NIEME +NIENT +NIER +NIERA +NIERAI +NIERAIT +NIERENT +NIEREZ +NIERIEZ +NIEZ +NIFE +NIGAUD +NIGAUDE +NIGELLE +NIIEZ +NILGAUT +NILLE +NIMBA +NIMBAI +NIMBAIT +NIMBANT +NIMBASSE +NIMBAT +NIMBE +NIMBEE +NIMBENT +NIMBER +NIMBERA +NIMBERAI +NIMBEREZ +NIMBEZ +NIMBIEZ +NIOBIUM +NIOLE +NIPPA +NIPPAI +NIPPAIT +NIPPANT +NIPPASSE +NIPPAT +NIPPE +NIPPEE +NIPPENT +NIPPER +NIPPERA +NIPPERAI +NIPPEREZ +NIPPEZ +NIPPIEZ +NIPPONE +NIPPONNE +NIQUE +NIRVANA +NITOUCHE +NITRA +NITRAI +NITRAIT +NITRANT +NITRASSE +NITRAT +NITRATA +NITRATAI +NITRATAT +NITRATE +NITRATEE +NITRATER +NITRATEZ +NITRE +NITREE +NITRENT +NITRER +NITRERA +NITRERAI +NITREREZ +NITREUSE +NITREUX +NITREZ +NITRIERE +NITRIEZ +NITRIFIA +NITRIFIE +NITRILE +NITRIQUE +NITRITE +NITRURA +NITRURAI +NITRURAT +NITRURE +NITRUREE +NITRURER +NITRUREZ +NIVAL +NIVALE +NIVEAL +NIVEALE +NIVEAU +NIVELA +NIVELAGE +NIVELAI +NIVELAIT +NIVELANT +NIVELAT +NIVELE +NIVELEE +NIVELER +NIVELEUR +NIVELEZ +NIVELIEZ +NIVELLE +NIVEOLE +NIVOSE +NIXE +NIZERE +NOBLE +NOBLESSE +NOBLIAU +NOCE +NOCEUR +NOCEUSE +NOCHER +NOCIF +NOCIVE +NOCIVITE +NOCTULE +NOCTURNE +NOCUITE +NODOSITE +NODULE +NODULEUX +NOEL +NOETIQUE +NOEUD +NOIE +NOIENT +NOIERA +NOIERAI +NOIERAIT +NOIEREZ +NOIERIEZ +NOIR +NOIRATRE +NOIRAUD +NOIRAUDE +NOIRCEUR +NOIRCI +NOIRCIE +NOIRCIR +NOIRCIRA +NOIRCIT +NOIRE +NOISE +NOISETTE +NOIX +NOLISA +NOLISAI +NOLISAIT +NOLISANT +NOLISAT +NOLISE +NOLISEE +NOLISENT +NOLISER +NOLISERA +NOLISEZ +NOLISIEZ +NOMADE +NOMADISA +NOMADISE +NOMBRA +NOMBRAI +NOMBRAIT +NOMBRANT +NOMBRAT +NOMBRE +NOMBREE +NOMBRENT +NOMBRER +NOMBREUX +NOMBREZ +NOMBRIEZ +NOMBRIL +NOME +NOMINAL +NOMINALE +NOMMA +NOMMAI +NOMMAIT +NOMMANT +NOMMASSE +NOMMAT +NOMME +NOMMEE +NOMMENT +NOMMER +NOMMERA +NOMMERAI +NOMMEREZ +NOMMEZ +NOMMIEZ +NONCE +NONE +NONIDI +NONNE +NONNETTE +NOPA +NOPAI +NOPAIT +NOPAL +NOPANT +NOPASSE +NOPAT +NOPE +NOPEE +NOPENT +NOPER +NOPERA +NOPERAI +NOPERAIT +NOPERENT +NOPEREZ +NOPERIEZ +NOPEZ +NOPIEZ +NORD +NORDI +NORDIQUE +NORDIR +NORDIRA +NORDIRAI +NORDIREZ +NORDISSE +NORDISTE +NORDIT +NORIA +NORMAL +NORMALE +NORMAND +NORMANDE +NORMATIF +NORME +NORMEE +NOROIT +NOSTOC +NOTA +NOTABLE +NOTAI +NOTAIRE +NOTAIT +NOTANT +NOTARIAL +NOTARIAT +NOTARIE +NOTARIEE +NOTASSE +NOTAT +NOTATION +NOTE +NOTEE +NOTENT +NOTER +NOTERA +NOTERAI +NOTERAIT +NOTERENT +NOTEREZ +NOTERIEZ +NOTEZ +NOTICE +NOTIEZ +NOTIFIA +NOTIFIAI +NOTIFIAT +NOTIFIE +NOTIFIEE +NOTIFIER +NOTIFIEZ +NOTION +NOTOIRE +NOTRE +NOTULE +NOUA +NOUAI +NOUAISON +NOUAIT +NOUANT +NOUASSE +NOUAT +NOUBA +NOUE +NOUEE +NOUENT +NOUER +NOUERA +NOUERAI +NOUERAIT +NOUERENT +NOUEREZ +NOUERIEZ +NOUEUSE +NOUEUX +NOUEZ +NOUGAT +NOUIEZ +NOUILLE +NOULET +NOUMENE +NOUNOU +NOURRAIN +NOURRI +NOURRICE +NOURRIE +NOURRIR +NOURRIT +NOUURE +NOUVEAU +NOUVEL +NOUVELLE +NOVA +NOVAI +NOVAIT +NOVANT +NOVASSE +NOVAT +NOVATEUR +NOVATION +NOVE +NOVEE +NOVEMBRE +NOVENT +NOVER +NOVERA +NOVERAI +NOVERAIT +NOVERENT +NOVEREZ +NOVERIEZ +NOVEZ +NOVICE +NOVICIAT +NOVIEZ +NOYA +NOYADE +NOYAI +NOYAIT +NOYANT +NOYASSE +NOYAT +NOYAU +NOYAUTA +NOYAUTAI +NOYAUTAT +NOYAUTE +NOYAUTEE +NOYAUTER +NOYAUTEZ +NOYE +NOYEE +NOYER +NOYERENT +NOYEZ +NOYIEZ +NUAGE +NUAGEUSE +NUAGEUX +NUAI +NUAIT +NUANCA +NUANCAI +NUANCAIT +NUANCANT +NUANCAT +NUANCE +NUANCEE +NUANCENT +NUANCER +NUANCERA +NUANCEZ +NUANCIEZ +NUANT +NUASSE +NUAT +NUBIEN +NUBIENNE +NUBILE +NUBILITE +NUCELLE +NUCLEA +NUCLEAI +NUCLEAIT +NUCLEANT +NUCLEAT +NUCLEE +NUCLEEE +NUCLEENT +NUCLEER +NUCLEERA +NUCLEEZ +NUCLEIEZ +NUCLEINE +NUCLEOLE +NUCLEON +NUDISME +NUDISTE +NUDITE +NUEE +NUENT +NUER +NUERA +NUERAI +NUERAIT +NUERENT +NUEREZ +NUERIEZ +NUEZ +NUIEZ +NUIRA +NUIRAI +NUIRAIT +NUIRE +NUIREZ +NUIRIEZ +NUIRONT +NUISAIT +NUISANCE +NUISANT +NUISE +NUISENT +NUISEZ +NUISIBLE +NUISIEZ +NUISISSE +NUISIT +NUIT +NUITE +NUITEE +NULLARD +NULLARDE +NULLE +NULLITE +NUMENT +NUMERAL +NUMERALE +NUMERISA +NUMERISE +NUMERO +NUMEROTA +NUMEROTE +NUMIDE +NUNATAK +NUPTIAL +NUPTIALE +NUQUE +NURAGHE +NURAGHI +NURSE +NURSERY +NUTATION +NUTRITIF +NYCTURIE +NYLON +NYMPHAL +NYMPHALE +NYMPHE +NYMPHEA +NYMPHEE +NYMPHOSE +OASIEN +OASIENNE +OBEI +OBEIR +OBEIRA +OBEIRAI +OBEIRAIT +OBEIRENT +OBEIREZ +OBEIRIEZ +OBEIRONT +OBEISSE +OBEIT +OBEL +OBELE +OBERA +OBERAI +OBERAIT +OBERANT +OBERASSE +OBERAT +OBERE +OBEREE +OBERENT +OBERER +OBERERA +OBERERAI +OBEREREZ +OBEREZ +OBERIEZ +OBESE +OBESITE +OBIER +OBIT +OBJECTA +OBJECTAI +OBJECTAL +OBJECTAT +OBJECTE +OBJECTEE +OBJECTER +OBJECTEZ +OBJECTIF +OBJET +OBJURGUA +OBJURGUE +OBLAT +OBLATE +OBLATIF +OBLATION +OBLATIVE +OBLIGE +OBLIGEA +OBLIGEAI +OBLIGEAT +OBLIGEE +OBLIGENT +OBLIGER +OBLIGERA +OBLIGEZ +OBLIGIEZ +OBLIQUA +OBLIQUAI +OBLIQUAT +OBLIQUE +OBLIQUER +OBLIQUEZ +OBLITERA +OBLITERE +OBLONG +OBLONGUE +OBNUBILA +OBNUBILE +OBOLE +OBOMBRA +OBOMBRAI +OBOMBRAT +OBOMBRE +OBOMBREE +OBOMBRER +OBOMBREZ +OBSCENE +OBSCUR +OBSCURCI +OBSCURE +OBSEDA +OBSEDAI +OBSEDAIT +OBSEDANT +OBSEDAT +OBSEDE +OBSEDEE +OBSEDENT +OBSEDER +OBSEDERA +OBSEDEZ +OBSEDIEZ +OBSERVA +OBSERVAI +OBSERVAT +OBSERVE +OBSERVEE +OBSERVER +OBSERVEZ +OBSOLETE +OBSTACLE +OBSTINE +OBSTINEE +OBSTINER +OBSTINEZ +OBSTRUA +OBSTRUAI +OBSTRUAT +OBSTRUE +OBSTRUEE +OBSTRUER +OBSTRUEZ +OBTENAIT +OBTENANT +OBTENEZ +OBTENIEZ +OBTENIR +OBTENU +OBTENUE +OBTIENNE +OBTIENT +OBTINSSE +OBTINT +OBTURA +OBTURAI +OBTURAIT +OBTURANT +OBTURAT +OBTURE +OBTUREE +OBTURENT +OBTURER +OBTURERA +OBTUREZ +OBTURIEZ +OBTUSE +OBUSIER +OBVENAIT +OBVENANT +OBVENEZ +OBVENIEZ +OBVENIR +OBVENU +OBVIA +OBVIAI +OBVIAIT +OBVIANT +OBVIASSE +OBVIAT +OBVIE +OBVIEE +OBVIENNE +OBVIENT +OBVIER +OBVIERA +OBVIERAI +OBVIEREZ +OBVIEZ +OBVIIEZ +OBVINSSE +OBVINT +OCARINA +OCCASE +OCCASION +OCCIDENT +OCCIPUT +OCCITAN +OCCITANE +OCCLU +OCCLUAIT +OCCLUANT +OCCLUE +OCCLUENT +OCCLUEZ +OCCLUIEZ +OCCLURA +OCCLURAI +OCCLURE +OCCLUREZ +OCCLUSIF +OCCLUSSE +OCCLUT +OCCULTA +OCCULTAI +OCCULTAT +OCCULTE +OCCULTEE +OCCULTER +OCCULTEZ +OCCUPA +OCCUPAI +OCCUPAIT +OCCUPANT +OCCUPAT +OCCUPE +OCCUPEE +OCCUPENT +OCCUPER +OCCUPERA +OCCUPEZ +OCCUPIEZ +OCEAN +OCEANIEN +OCELLE +OCELLEE +OCELOT +OCRA +OCRAI +OCRAIT +OCRANT +OCRASSE +OCRAT +OCRE +OCREE +OCRENT +OCRER +OCRERA +OCRERAI +OCRERAIT +OCRERENT +OCREREZ +OCRERIEZ +OCREUSE +OCREUX +OCREZ +OCRIEZ +OCTANE +OCTANT +OCTAVE +OCTAVIA +OCTAVIAI +OCTAVIAT +OCTAVIE +OCTAVIEE +OCTAVIER +OCTAVIEZ +OCTAVIN +OCTET +OCTIDI +OCTOBRE +OCTOGONE +OCTOPODE +OCTROI +OCTROIE +OCTROYA +OCTROYAI +OCTROYAT +OCTROYE +OCTROYEE +OCTROYER +OCTROYEZ +OCTUOR +OCTUPLA +OCTUPLAI +OCTUPLAT +OCTUPLE +OCTUPLEE +OCTUPLER +OCTUPLEZ +OCULAIRE +OCULISTE +ODELETTE +ODEON +ODEUR +ODIEUSE +ODIEUX +ODOMETRE +ODORANT +ODORAT +ODYSSEE +OEDEME +OEDIPE +OEDIPIEN +OEIL +OEILLADE +OEILLARD +OEILLERE +OEILLET +OENANTHE +OERSTED +OERSTITE +OESTRAL +OESTRALE +OESTRE +OEUF +OEUFRIER +OEUVE +OEUVEE +OEUVRA +OEUVRAI +OEUVRAIT +OEUVRANT +OEUVRAT +OEUVRE +OEUVRENT +OEUVRER +OEUVRERA +OEUVREZ +OEUVRIEZ +OFFENSA +OFFENSAI +OFFENSAT +OFFENSE +OFFENSEE +OFFENSER +OFFENSEZ +OFFENSIF +OFFERT +OFFERTE +OFFICE +OFFICIA +OFFICIAI +OFFICIAL +OFFICIAT +OFFICIE +OFFICIEL +OFFICIER +OFFICIEZ +OFFICINE +OFFRAIT +OFFRANDE +OFFRANT +OFFRE +OFFRENT +OFFREUR +OFFREUSE +OFFREZ +OFFRIEZ +OFFRIR +OFFRIRA +OFFRIRAI +OFFRIREZ +OFFRISSE +OFFRIT +OFFSET +OFFUSQUA +OFFUSQUE +OFLAG +OGIVAL +OGIVALE +OGIVE +OGRE +OGRESSE +OHMIQUE +OHMMETRE +OIDIUM +OIGNIT +OIGNON +OILLE +OINDRE +OING +OINT +OINTE +OISEAU +OISELA +OISELAI +OISELAIT +OISELANT +OISELAT +OISELE +OISELEE +OISELER +OISELET +OISELEUR +OISELEZ +OISELIER +OISELIEZ +OISELLE +OISEUSE +OISEUX +OISIF +OISILLON +OISIVE +OISIVETE +OISON +OKAPI +OKOUME +OLEATE +OLEFIANT +OLEFINE +OLEICOLE +OLEIFERE +OLEINE +OLEIQUE +OLEODUC +OLEOLAT +OLEUM +OLFACTIF +OLIFANT +OLIGISTE +OLIGURIE +OLIM +OLIPHANT +OLIVAIE +OLIVATRE +OLIVE +OLIVETTE +OLIVIER +OLIVINE +OLLAIRE +OLLE +OLYMPE +OLYMPIEN +OMBELLE +OMBELLEE +OMBILIC +OMBLE +OMBRA +OMBRAGE +OMBRAGEA +OMBRAGEE +OMBRAGER +OMBRAGEZ +OMBRAI +OMBRAIT +OMBRANT +OMBRASSE +OMBRAT +OMBRE +OMBREE +OMBRELLE +OMBRENT +OMBRER +OMBRERA +OMBRERAI +OMBREREZ +OMBRETTE +OMBREUSE +OMBREUX +OMBREZ +OMBRIEN +OMBRIEZ +OMBRINE +OMEGA +OMELETTE +OMET +OMETTAIT +OMETTANT +OMETTE +OMETTENT +OMETTEZ +OMETTIEZ +OMETTRA +OMETTRAI +OMETTRE +OMETTREZ +OMICRON +OMIRENT +OMISE +OMISSE +OMISSION +OMIT +OMNIUM +OMNIVORE +OMOPLATE +ONAGRE +ONANISME +ONCE +ONCIAL +ONCIALE +ONCLE +ONCOGENE +ONCTION +ONCTUEUX +ONDATRA +ONDE +ONDEE +ONDIN +ONDINE +ONDOIE +ONDOIENT +ONDOIERA +ONDOYA +ONDOYAI +ONDOYAIT +ONDOYANT +ONDOYAT +ONDOYE +ONDOYEE +ONDOYER +ONDOYEZ +ONDOYIEZ +ONDULA +ONDULAI +ONDULAIT +ONDULANT +ONDULAT +ONDULE +ONDULEE +ONDULENT +ONDULER +ONDULERA +ONDULEUX +ONDULEZ +ONDULIEZ +ONEREUSE +ONEREUX +ONGLE +ONGLEE +ONGLET +ONGLETTE +ONGLIER +ONGLON +ONGUENT +ONGULE +ONGULEE +ONIRIQUE +ONIRISME +ONUSIEN +ONYX +ONZAIN +ONZE +ONZIEME +OOCYTE +OOGONE +OOLITHE +OOSPHERE +OOSPORE +OOTHEQUE +OPACIFIA +OPACIFIE +OPACITE +OPALE +OPALIN +OPALINE +OPALISA +OPALISAI +OPALISAT +OPALISE +OPALISEE +OPALISER +OPALISEZ +OPAQUE +OPEN +OPERA +OPERABLE +OPERAI +OPERAIT +OPERANDE +OPERANT +OPERASSE +OPERAT +OPERCULE +OPERE +OPEREE +OPERENT +OPERER +OPERERA +OPERERAI +OPEREREZ +OPERETTE +OPEREZ +OPERIEZ +OPHIDIEN +OPHITE +OPHIURE +OPIACA +OPIACAI +OPIACAIT +OPIACANT +OPIACAT +OPIACE +OPIACEE +OPIACENT +OPIACER +OPIACERA +OPIACEZ +OPIACIEZ +OPIAT +OPINA +OPINAI +OPINAIT +OPINANT +OPINASSE +OPINAT +OPINE +OPINENT +OPINER +OPINERA +OPINERAI +OPINEREZ +OPINEZ +OPINIEZ +OPINION +OPIOMANE +OPIUM +OPOPANAX +OPOSSUM +OPPIDA +OPPIDUM +OPPORTUN +OPPOSA +OPPOSAI +OPPOSAIT +OPPOSANT +OPPOSAT +OPPOSE +OPPOSEE +OPPOSENT +OPPOSER +OPPOSERA +OPPOSEZ +OPPOSIEZ +OPPOSITE +OPPRESSA +OPPRESSE +OPPRIMA +OPPRIMAI +OPPRIMAT +OPPRIME +OPPRIMEE +OPPRIMER +OPPRIMEZ +OPPROBRE +OPTA +OPTAI +OPTAIT +OPTANT +OPTASSE +OPTAT +OPTATIF +OPTATIVE +OPTE +OPTENT +OPTER +OPTERA +OPTERAI +OPTERAIT +OPTERENT +OPTEREZ +OPTERIEZ +OPTEZ +OPTICIEN +OPTIEZ +OPTIMA +OPTIMAL +OPTIMALE +OPTIMISA +OPTIMISE +OPTIMUM +OPTION +OPTIQUE +OPULENCE +OPULENT +OPULENTE +OPUNTIA +OPUSCULE +ORACLE +ORAGE +ORAGEUSE +ORAGEUX +ORAISON +ORAL +ORALE +ORANGE +ORANGEA +ORANGEAI +ORANGEAT +ORANGEE +ORANGENT +ORANGER +ORANGERA +ORANGEZ +ORANGIEZ +ORANT +ORATEUR +ORATOIRE +ORATORIO +ORATRICE +ORBE +ORBICOLE +ORBITA +ORBITAI +ORBITAIT +ORBITAL +ORBITALE +ORBITANT +ORBITAT +ORBITE +ORBITENT +ORBITER +ORBITERA +ORBITEZ +ORBITIEZ +ORCHIDEE +ORCHITE +ORDALIE +ORDINAL +ORDINALE +ORDINAND +ORDO +ORDONNA +ORDONNAI +ORDONNAT +ORDONNE +ORDONNEE +ORDONNER +ORDONNEZ +ORDRE +ORDURE +ORDURIER +OREADE +OREE +OREILLE +OREILLER +OREILLON +ORFEVRE +ORFRAIE +ORFROI +ORGANDI +ORGANE +ORGANEAU +ORGANISA +ORGANISE +ORGANITE +ORGANSIN +ORGASME +ORGE +ORGEAT +ORGELET +ORGIAQUE +ORGIE +ORGUE +ORGUEIL +ORIEL +ORIENT +ORIENTA +ORIENTAI +ORIENTAL +ORIENTAT +ORIENTE +ORIENTEE +ORIENTER +ORIENTEZ +ORIFICE +ORIGAN +ORIGINAL +ORIGINE +ORIGINEL +ORIGNAL +ORILLON +ORIN +ORINGUA +ORINGUAI +ORINGUAT +ORINGUE +ORINGUEE +ORINGUER +ORINGUEZ +ORIPEAU +ORLE +ORLON +ORMAIE +ORME +ORMEAU +ORMILLE +ORMOIE +ORNA +ORNAI +ORNAIT +ORNANT +ORNASSE +ORNAT +ORNE +ORNEE +ORNEMENT +ORNENT +ORNER +ORNERA +ORNERAI +ORNERAIT +ORNERENT +ORNEREZ +ORNERIEZ +ORNEZ +ORNIERE +ORNIEZ +OROBE +OROGENIE +ORONGE +ORPHELIN +ORPHEON +ORPHIE +ORPHIQUE +ORPHISME +ORPIMENT +ORPIN +ORQUE +ORSEILLE +ORTEIL +ORTHOSE +ORTIE +ORTOLAN +ORVALE +ORVET +ORVIETAN +OSAI +OSAIT +OSANT +OSASSE +OSAT +OSCAR +OSCILLA +OSCILLAI +OSCILLAT +OSCILLE +OSCILLER +OSCILLEZ +OSCULE +OSEE +OSEILLE +OSENT +OSER +OSERA +OSERAI +OSERAIE +OSERAIT +OSERENT +OSEREZ +OSERIEZ +OSEZ +OSIDE +OSIER +OSIEZ +OSMIQUE +OSMIUM +OSMONDE +OSMOSE +OSQUE +OSSATURE +OSSEINE +OSSELET +OSSEMENT +OSSEUSE +OSSEUX +OSSIFIA +OSSIFIAI +OSSIFIAT +OSSIFIE +OSSIFIEE +OSSIFIER +OSSIFIEZ +OSSU +OSSUAIRE +OSSUE +OSTEITE +OSTIAK +OSTIOLE +OSTROGOT +OTAGE +OTAI +OTAIT +OTALGIE +OTANT +OTARIE +OTASSE +OTAT +OTEE +OTENT +OTER +OTERA +OTERAI +OTERAIT +OTERENT +OTEREZ +OTERIEZ +OTEZ +OTIEZ +OTIQUE +OTITE +OTOCYON +OTOCYSTE +OTOLITHE +OTOLOGIE +OTORRHEE +OTOSCOPE +OTTOMAN +OTTOMANE +OUABAINE +OUATA +OUATAI +OUATAIT +OUATANT +OUATASSE +OUATAT +OUATE +OUATEE +OUATENT +OUATER +OUATERA +OUATERAI +OUATEREZ +OUATEZ +OUATIEZ +OUATINA +OUATINAI +OUATINAT +OUATINE +OUATINEE +OUATINER +OUATINEZ +OUBLI +OUBLIA +OUBLIAI +OUBLIAIT +OUBLIANT +OUBLIAT +OUBLIE +OUBLIEE +OUBLIENT +OUBLIER +OUBLIERA +OUBLIEUX +OUBLIEZ +OUBLIIEZ +OUCHE +OUED +OUEST +OUGRIEN +OUIE +OUIGHOUR +OUIGOUR +OUILLA +OUILLAI +OUILLAIT +OUILLANT +OUILLAT +OUILLE +OUILLEE +OUILLENT +OUILLER +OUILLERA +OUILLERE +OUILLEZ +OUILLIEZ +OUIR +OUIRA +OUIRAI +OUIRAIT +OUIRENT +OUIREZ +OUIRIEZ +OUIRONT +OUISSE +OUISTITI +OUIT +OUKASE +OULEMA +OURAGAN +OURALIEN +OURDI +OURDIE +OURDIR +OURDIRA +OURDIRAI +OURDIREZ +OURDISSE +OURDIT +OURDOU +OURLA +OURLAI +OURLAIT +OURLANT +OURLASSE +OURLAT +OURLE +OURLEE +OURLENT +OURLER +OURLERA +OURLERAI +OURLEREZ +OURLET +OURLEZ +OURLIEN +OURLIEZ +OURSE +OURSIN +OURSON +OUST +OUSTE +OUTARDE +OUTIL +OUTILLA +OUTILLAI +OUTILLAT +OUTILLE +OUTILLEE +OUTILLER +OUTILLEZ +OUTLAW +OUTPUT +OUTRA +OUTRAGE +OUTRAGEA +OUTRAGEE +OUTRAGER +OUTRAGEZ +OUTRAI +OUTRAIT +OUTRANCE +OUTRANT +OUTRASSE +OUTRAT +OUTRE +OUTREE +OUTREMER +OUTRENT +OUTRER +OUTRERA +OUTRERAI +OUTREREZ +OUTREZ +OUTRIEZ +OUTSIDER +OUVERT +OUVERTE +OUVRA +OUVRABLE +OUVRAGE +OUVRAGEA +OUVRAGEE +OUVRAGER +OUVRAGEZ +OUVRAI +OUVRAIT +OUVRANT +OUVRASSE +OUVRAT +OUVRE +OUVREAU +OUVREE +OUVRENT +OUVRER +OUVRERA +OUVRERAI +OUVREREZ +OUVREUR +OUVREUSE +OUVREZ +OUVRIER +OUVRIERE +OUVRIEZ +OUVRIR +OUVRIRA +OUVRIRAI +OUVRIREZ +OUVRISSE +OUVRIT +OUVROIR +OUZBEK +OVAIRE +OVALE +OVALISA +OVALISAI +OVALISAT +OVALISE +OVALISEE +OVALISER +OVALISEZ +OVARIEN +OVARITE +OVATE +OVATION +OVERDOSE +OVIDUCTE +OVIN +OVINE +OVIPARE +OVNI +OVOCYTE +OVOIDAL +OVOIDALE +OVOIDE +OVULA +OVULAI +OVULAIRE +OVULAIT +OVULANT +OVULASSE +OVULAT +OVULE +OVULENT +OVULER +OVULERA +OVULERAI +OVULEREZ +OVULEZ +OVULIEZ +OXACIDE +OXALATE +OXALIQUE +OXFORD +OXYDA +OXYDABLE +OXYDAI +OXYDAIT +OXYDANT +OXYDASE +OXYDASSE +OXYDAT +OXYDE +OXYDEE +OXYDENT +OXYDER +OXYDERA +OXYDERAI +OXYDEREZ +OXYDEZ +OXYDIEZ +OXYGENA +OXYGENAI +OXYGENAT +OXYGENE +OXYGENEE +OXYGENER +OXYGENEZ +OXYLITHE +OXYMEL +OXYTON +OXYURE +OXYUROSE +OYAT +OZENE +OZONE +OZONEE +OZONISA +OZONISAI +OZONISAT +OZONISE +OZONISEE +OZONISER +OZONISEZ +PACAGE +PACAGEA +PACAGEAI +PACAGEAT +PACAGEE +PACAGENT +PACAGER +PACAGERA +PACAGEZ +PACAGIEZ +PACFUNG +PACHA +PACHALIK +PACHTO +PACIFIA +PACIFIAI +PACIFIAT +PACIFIE +PACIFIEE +PACIFIER +PACIFIEZ +PACK +PACKFUNG +PACQUA +PACQUAGE +PACQUAI +PACQUAIT +PACQUANT +PACQUAT +PACQUE +PACQUEE +PACQUENT +PACQUER +PACQUERA +PACQUEZ +PACQUIEZ +PACSON +PACTE +PACTISA +PACTISAI +PACTISAT +PACTISE +PACTISER +PACTISEZ +PACTOLE +PADDOCK +PADDY +PADICHAH +PADOU +PADOUE +PAELLA +PAGAIE +PAGAIERA +PAGAILLE +PAGANISA +PAGANISE +PAGAYA +PAGAYAI +PAGAYAIT +PAGAYANT +PAGAYAT +PAGAYE +PAGAYENT +PAGAYER +PAGAYERA +PAGAYEUR +PAGAYEZ +PAGAYIEZ +PAGE +PAGEA +PAGEAI +PAGEAIT +PAGEANT +PAGEASSE +PAGEAT +PAGEE +PAGEL +PAGENT +PAGEOT +PAGEOTA +PAGEOTAI +PAGEOTAT +PAGEOTE +PAGEOTEE +PAGEOTER +PAGEOTEZ +PAGER +PAGERA +PAGERAI +PAGERAIT +PAGERENT +PAGEREZ +PAGERIEZ +PAGEZ +PAGIEZ +PAGINA +PAGINAI +PAGINAIT +PAGINANT +PAGINAT +PAGINE +PAGINEE +PAGINENT +PAGINER +PAGINERA +PAGINEZ +PAGINIEZ +PAGNE +PAGNOTA +PAGNOTAI +PAGNOTAT +PAGNOTE +PAGNOTER +PAGNOTEZ +PAGODE +PAGODON +PAGRE +PAGURE +PAIE +PAIEMENT +PAIEN +PAIENNE +PAIERA +PAIERAI +PAIERAIT +PAIEREZ +PAIERIE +PAIERIEZ +PAILLA +PAILLAGE +PAILLAI +PAILLAIT +PAILLANT +PAILLARD +PAILLAT +PAILLE +PAILLEE +PAILLENT +PAILLER +PAILLERA +PAILLET +PAILLETA +PAILLETE +PAILLEUX +PAILLEZ +PAILLIEZ +PAILLON +PAILLOT +PAILLOTE +PAIN +PAIR +PAIRE +PAIRESSE +PAIRIE +PAIRLE +PAISIBLE +PAISSAIT +PAISSANT +PAISSE +PAISSEAU +PAISSELA +PAISSELE +PAIT +PAITRA +PAITRAI +PAITRAIT +PAITRE +PAITREZ +PAITRIEZ +PAITRONT +PAIX +PAJOTA +PAJOTAI +PAJOTAIT +PAJOTANT +PAJOTAT +PAJOTE +PAJOTEE +PAJOTENT +PAJOTER +PAJOTERA +PAJOTEZ +PAJOTIEZ +PALABRA +PALABRAI +PALABRAT +PALABRE +PALABRER +PALABREZ +PALACE +PALADIN +PALAN +PALANCHE +PALANCRA +PALANCRE +PALANGRA +PALANGRE +PALANGUA +PALANGUE +PALANQUA +PALANQUE +PALASTRE +PALATAL +PALATALE +PALATIN +PALATINE +PALE +PALEE +PALEFROI +PALEMON +PALEOSOL +PALERON +PALESTRE +PALET +PALETOT +PALETTA +PALETTAI +PALETTAT +PALETTE +PALETTEE +PALETTER +PALETTEZ +PALEUR +PALI +PALICARE +PALICHON +PALIE +PALIER +PALIERE +PALIKARE +PALIR +PALIRA +PALIRAI +PALIRAIT +PALIRENT +PALIREZ +PALIRIEZ +PALIRONT +PALISSA +PALISSAI +PALISSAT +PALISSE +PALISSEE +PALISSER +PALIT +PALIURE +PALLEAL +PALLEALE +PALLIA +PALLIAI +PALLIAIT +PALLIANT +PALLIAT +PALLIDUM +PALLIE +PALLIEE +PALLIENT +PALLIER +PALLIERA +PALLIEZ +PALLIIEZ +PALLIUM +PALMA +PALMAI +PALMAIRE +PALMAIT +PALMANT +PALMASSE +PALMAT +PALME +PALMEE +PALMENT +PALMER +PALMERA +PALMERAI +PALMEREZ +PALMETTE +PALMEZ +PALMIER +PALMIEZ +PALMISTE +PALMITE +PALMURE +PALOMBE +PALOT +PALOTA +PALOTAI +PALOTAIT +PALOTANT +PALOTAT +PALOTE +PALOTEE +PALOTENT +PALOTER +PALOTERA +PALOTEZ +PALOTIEZ +PALOTTE +PALOURDE +PALPA +PALPABLE +PALPAI +PALPAIT +PALPANT +PALPASSE +PALPAT +PALPE +PALPEE +PALPENT +PALPER +PALPERA +PALPERAI +PALPEREZ +PALPEUR +PALPEZ +PALPIEZ +PALPITA +PALPITAI +PALPITAT +PALPITE +PALPITER +PALPITEZ +PALUCHE +PALUD +PALUDE +PALUDEEN +PALUDIER +PALUDINE +PALUSTRE +PAMA +PAMAI +PAMAIT +PAMANT +PAMASSE +PAMAT +PAME +PAMEE +PAMENT +PAMER +PAMERA +PAMERAI +PAMERAIT +PAMERENT +PAMEREZ +PAMERIEZ +PAMEZ +PAMIEZ +PAMOISON +PAMPA +PAMPERO +PAMPHLET +PAMPILLE +PAMPRE +PANA +PANACEE +PANACHA +PANACHAI +PANACHAT +PANACHE +PANACHEE +PANACHER +PANACHEZ +PANADE +PANAI +PANAIT +PANAMA +PANANT +PANARD +PANARDE +PANASSE +PANAT +PANATELA +PANAX +PANCA +PANCARTE +PANCRACE +PANDA +PANDEMIE +PANDIT +PANDORE +PANE +PANEE +PANEL +PANENT +PANER +PANERA +PANERAI +PANERAIT +PANEREE +PANERENT +PANEREZ +PANERIEZ +PANETIER +PANETON +PANEZ +PANGOLIN +PANIC +PANICAUT +PANICULE +PANIER +PANIERE +PANIEZ +PANIFIA +PANIFIAI +PANIFIAT +PANIFIE +PANIFIEE +PANIFIER +PANIFIEZ +PANIQUA +PANIQUAI +PANIQUAT +PANIQUE +PANIQUEE +PANIQUER +PANIQUEZ +PANKA +PANMIXIE +PANNA +PANNAI +PANNAIT +PANNANT +PANNASSE +PANNAT +PANNE +PANNEAU +PANNEE +PANNENT +PANNER +PANNERA +PANNERAI +PANNEREZ +PANNETON +PANNEZ +PANNIEZ +PANOPLIE +PANORAMA +PANORPE +PANOSSE +PANOUFLE +PANSA +PANSAGE +PANSAI +PANSAIT +PANSANT +PANSASSE +PANSAT +PANSE +PANSEE +PANSENT +PANSER +PANSERA +PANSERAI +PANSEREZ +PANSEZ +PANSIEZ +PANSU +PANSUE +PANTALON +PANTELA +PANTELAI +PANTELAT +PANTELE +PANTELER +PANTELEZ +PANTELLE +PANTENE +PANTENNE +PANTHEON +PANTHERE +PANTIERE +PANTIN +PANTOIRE +PANTOISE +PANTOUM +PANURE +PANZER +PAON +PAONNE +PAPA +PAPABLE +PAPAINE +PAPAL +PAPALE +PAPAUTE +PAPAVER +PAPAYE +PAPAYER +PAPE +PAPEGAI +PAPELARD +PAPESSE +PAPETIER +PAPI +PAPIER +PAPILLE +PAPILLON +PAPION +PAPISME +PAPISTE +PAPOTA +PAPOTAGE +PAPOTAI +PAPOTAIT +PAPOTANT +PAPOTAT +PAPOTE +PAPOTENT +PAPOTER +PAPOTERA +PAPOTEZ +PAPOTIEZ +PAPRIKA +PAPULE +PAPULEUX +PAPY +PAQUE +PAQUEBOT +PAQUET +PARA +PARABASE +PARABOLE +PARACLET +PARADA +PARADAI +PARADAIT +PARADANT +PARADAT +PARADE +PARADENT +PARADER +PARADERA +PARADEUR +PARADEZ +PARADIEZ +PARADOXE +PARAFA +PARAFAI +PARAFAIT +PARAFANT +PARAFAT +PARAFE +PARAFEE +PARAFENT +PARAFER +PARAFERA +PARAFEZ +PARAFIEZ +PARAGE +PARAI +PARAISSE +PARAIT +PARAITRA +PARAITRE +PARALYSA +PARALYSE +PARANGON +PARANOIA +PARANT +PARAPET +PARAPHA +PARAPHAI +PARAPHAT +PARAPHE +PARAPHEE +PARAPHER +PARAPHEZ +PARASITA +PARASITE +PARASOL +PARASSE +PARAT +PARATAXE +PARATRE +PARAVENT +PARBLEU +PARC +PARCAGE +PARCE +PARCELLA +PARCELLE +PARCOURE +PARCOURT +PARCOURU +PARDI +PARDIEU +PARDON +PARDONNA +PARDONNE +PARE +PAREAGE +PAREE +PAREIL +PAREILLE +PARELIE +PAREMENT +PARENT +PARENTAL +PARENTE +PAREO +PARER +PARERA +PARERAI +PARERAT +PARERE +PARERENT +PARESIE +PARESSA +PARESSAI +PARESSAT +PARESSE +PARESSER +PAREUR +PAREUSE +PAREZ +PARFAIRE +PARFAIT +PARFAITE +PARFASSE +PARFERA +PARFERAI +PARFEREZ +PARFILA +PARFILAI +PARFILAT +PARFILE +PARFILEE +PARFILER +PARFILEZ +PARFISSE +PARFIT +PARFOND +PARFONDE +PARFONDU +PARFONT +PARFUM +PARFUMA +PARFUMAI +PARFUMAT +PARFUME +PARFUMEE +PARFUMER +PARFUMEZ +PARHELIE +PARI +PARIA +PARIADE +PARIAGE +PARIAI +PARIAIT +PARIAN +PARIANT +PARIASSE +PARIAT +PARIE +PARIEE +PARIENT +PARIER +PARIERA +PARIERAI +PARIEREZ +PARIETAL +PARIEUR +PARIEUSE +PARIEZ +PARIGOT +PARIGOTE +PARIIEZ +PARISIEN +PARITE +PARJURA +PARJURAI +PARJURAT +PARJURE +PARJUREE +PARJURER +PARJUREZ +PARKA +PARKING +PARLA +PARLAI +PARLAIT +PARLANT +PARLASSE +PARLAT +PARLE +PARLEE +PARLENT +PARLER +PARLERA +PARLERAI +PARLEREZ +PARLEUR +PARLEUSE +PARLEZ +PARLIEZ +PARLOIR +PARLOTA +PARLOTAI +PARLOTAT +PARLOTE +PARLOTER +PARLOTEZ +PARLOTTE +PARME +PARMELIE +PARMESAN +PARMI +PARNASSE +PARODIA +PARODIAI +PARODIAT +PARODIE +PARODIEE +PARODIER +PARODIEZ +PAROI +PAROISSE +PAROLE +PAROLI +PAROLIER +PARONYME +PAROTIDE +PAROUSIE +PARPAING +PARQUA +PARQUAI +PARQUAIT +PARQUANT +PARQUAT +PARQUE +PARQUEE +PARQUENT +PARQUER +PARQUERA +PARQUET +PARQUETA +PARQUETE +PARQUEUR +PARQUEZ +PARQUIEZ +PARRAIN +PARRAINA +PARRAINE +PARSEC +PARSEMA +PARSEMAI +PARSEMAT +PARSEME +PARSEMEE +PARSEMER +PARSEMEZ +PARSI +PARSIE +PARSISME +PART +PARTAGE +PARTAGEA +PARTAGEE +PARTAGER +PARTAGEZ +PARTAIT +PARTANCE +PARTANT +PARTE +PARTENT +PARTERRE +PARTEZ +PARTI +PARTIAL +PARTIALE +PARTIE +PARTIEL +PARTIEZ +PARTIR +PARTIRA +PARTIRAI +PARTIREZ +PARTISAN +PARTISSE +PARTIT +PARTITIF +PARTON +PARTOUSE +PARTOUT +PARTOUZE +PARU +PARUE +PARULIE +PARURE +PARURENT +PARURIER +PARUSSE +PARUT +PARUTION +PARVENEZ +PARVENIR +PARVENU +PARVENUE +PARVIENT +PARVINT +PASCAL +PASCALE +PASQUIN +PASSA +PASSABLE +PASSADE +PASSAGE +PASSAGER +PASSAI +PASSAIT +PASSANT +PASSASSE +PASSAT +PASSE +PASSEE +PASSER +PASSERA +PASSERAI +PASSEREZ +PASSEUR +PASSEUSE +PASSIBLE +PASSIF +PASSIM +PASSION +PASSIVE +PASSOIRE +PASTEL +PASTELLA +PASTELLE +PASTEQUE +PASTEUR +PASTICHA +PASTICHE +PASTILLA +PASTILLE +PASTORAL +PATA +PATACHE +PATACHON +PATAI +PATAIT +PATANT +PATAPOUF +PATARD +PATASSE +PATAT +PATATE +PATAUD +PATAUDE +PATAUGE +PATAUGEA +PATAUGER +PATAUGEZ +PATE +PATEE +PATELIN +PATELINA +PATELINE +PATELLE +PATENE +PATENT +PATENTA +PATENTAI +PATENTAT +PATENTE +PATENTEE +PATENTER +PATENTEZ +PATER +PATERA +PATERAI +PATERAIT +PATERE +PATERENT +PATEREZ +PATERIEZ +PATERNE +PATERNEL +PATEUSE +PATEUX +PATEZ +PATI +PATIENCE +PATIENT +PATIENTA +PATIENTE +PATIEZ +PATINA +PATINAGE +PATINAI +PATINAIT +PATINANT +PATINAT +PATINE +PATINEE +PATINENT +PATINER +PATINERA +PATINEUR +PATINEZ +PATINIEZ +PATIO +PATIR +PATIRA +PATIRAI +PATIRAIT +PATIRENT +PATIREZ +PATIRIEZ +PATIRONT +PATISSA +PATISSAI +PATISSAT +PATISSE +PATISSEE +PATISSER +PATISSON +PATIT +PATOCHE +PATOISA +PATOISAI +PATOISAT +PATOISE +PATOISER +PATOISEZ +PATON +PATRAQUE +PATRE +PATRICE +PATRIE +PATRIOTE +PATRON +PATRONAL +PATRONAT +PATRONNA +PATRONNE +PATTA +PATTAI +PATTAIT +PATTANT +PATTASSE +PATTAT +PATTE +PATTEE +PATTENT +PATTER +PATTERA +PATTERAI +PATTEREZ +PATTERN +PATTEZ +PATTIEZ +PATTU +PATTUE +PATURA +PATURAGE +PATURAI +PATURAIT +PATURANT +PATURAT +PATURE +PATUREE +PATURENT +PATURER +PATURERA +PATUREZ +PATURIEZ +PATURIN +PATURON +PAULETTE +PAULIEN +PAULISTE +PAUMA +PAUMAI +PAUMAIT +PAUMANT +PAUMASSE +PAUMAT +PAUME +PAUMEE +PAUMELLE +PAUMENT +PAUMER +PAUMERA +PAUMERAI +PAUMEREZ +PAUMEZ +PAUMIER +PAUMIEZ +PAUMOIE +PAUMOYA +PAUMOYAI +PAUMOYAT +PAUMOYE +PAUMOYEE +PAUMOYER +PAUMOYEZ +PAUMURE +PAUPIERE +PAUSA +PAUSAI +PAUSAIT +PAUSANT +PAUSASSE +PAUSAT +PAUSE +PAUSENT +PAUSER +PAUSERA +PAUSERAI +PAUSEREZ +PAUSEZ +PAUSIEZ +PAUVRE +PAUVRET +PAUVRETE +PAVA +PAVAGE +PAVAI +PAVAIT +PAVANA +PAVANAI +PAVANAIT +PAVANANT +PAVANAT +PAVANE +PAVANEE +PAVANENT +PAVANER +PAVANERA +PAVANEZ +PAVANIEZ +PAVANT +PAVASSE +PAVAT +PAVE +PAVEE +PAVEMENT +PAVENT +PAVER +PAVERA +PAVERAI +PAVERAIT +PAVERENT +PAVEREZ +PAVERIEZ +PAVEUR +PAVEZ +PAVIE +PAVIEZ +PAVILLON +PAVOISA +PAVOISAI +PAVOISAT +PAVOISE +PAVOISEE +PAVOISER +PAVOISEZ +PAVOT +PAYA +PAYABLE +PAYAI +PAYAIT +PAYANT +PAYASSE +PAYAT +PAYE +PAYEE +PAYEMENT +PAYENT +PAYER +PAYERA +PAYERAI +PAYERAIT +PAYERENT +PAYEREZ +PAYERIEZ +PAYEUR +PAYEUSE +PAYEZ +PAYIEZ +PAYSAGE +PAYSAGER +PAYSAN +PAYSANNE +PAYSE +PEAGE +PEAGEER +PEAGEERE +PEAGISTE +PEAN +PEAU +PEAUCIER +PEAUFINA +PEAUFINE +PEAUSSA +PEAUSSAI +PEAUSSAT +PEAUSSE +PEAUSSER +PEBRINE +PEBROC +PEBROQUE +PECAIRE +PECARI +PECCABLE +PECHA +PECHAI +PECHAIT +PECHANT +PECHASSE +PECHAT +PECHE +PECHEE +PECHENT +PECHER +PECHERA +PECHERAI +PECHEREZ +PECHERIE +PECHETTE +PECHEUR +PECHEUSE +PECHEUX +PECHEZ +PECHIEZ +PECLOTA +PECLOTAI +PECLOTAT +PECLOTE +PECLOTER +PECLOTEZ +PECNOT +PECORE +PECTEN +PECTINE +PECTINEE +PECTIQUE +PECTORAL +PECULAT +PECULE +PEDALA +PEDALAI +PEDALAIT +PEDALANT +PEDALAT +PEDALE +PEDALENT +PEDALER +PEDALERA +PEDALEUR +PEDALEZ +PEDALIER +PEDALIEZ +PEDALO +PEDANT +PEDESTRE +PEDIATRE +PEDICULE +PEDICURE +PEDIEUSE +PEDIEUX +PEDIGREE +PEDIMANE +PEDIMENT +PEDUM +PEELING +PEGASE +PEGRE +PEHLVI +PEIGNA +PEIGNAGE +PEIGNAI +PEIGNAIT +PEIGNANT +PEIGNAT +PEIGNE +PEIGNEE +PEIGNENT +PEIGNER +PEIGNERA +PEIGNEUR +PEIGNEZ +PEIGNIER +PEIGNIEZ +PEIGNIT +PEIGNOIR +PEILLE +PEINA +PEINAI +PEINAIT +PEINANT +PEINARD +PEINARDE +PEINASSE +PEINAT +PEINDRA +PEINDRAI +PEINDRE +PEINDREZ +PEINE +PEINEE +PEINENT +PEINER +PEINERA +PEINERAI +PEINEREZ +PEINEZ +PEINIEZ +PEINT +PEINTE +PEINTRE +PEINTURA +PEINTURE +PEKAN +PEKIN +PEKINE +PEKINEE +PELA +PELADE +PELAGE +PELAGIEN +PELAI +PELAIT +PELAMIDE +PELAMYDE +PELANT +PELARD +PELASSE +PELAT +PELE +PELEE +PELEEN +PELEENNE +PELENT +PELER +PELERA +PELERAI +PELERAIT +PELERENT +PELEREZ +PELERIEZ +PELERIN +PELERINE +PELEZ +PELIADE +PELICAN +PELIEZ +PELISSE +PELLAGRE +PELLE +PELLET +PELLETA +PELLETAI +PELLETAT +PELLETE +PELLETEE +PELLETER +PELLETEZ +PELLETTE +PELOBATE +PELODYTE +PELOTA +PELOTAGE +PELOTAI +PELOTAIT +PELOTANT +PELOTARI +PELOTAT +PELOTE +PELOTEE +PELOTENT +PELOTER +PELOTERA +PELOTEUR +PELOTEZ +PELOTIEZ +PELOTON +PELOUSE +PELTA +PELTASTE +PELTE +PELTEE +PELUCHA +PELUCHAI +PELUCHAT +PELUCHE +PELUCHEE +PELUCHER +PELUCHEZ +PELURE +PELVIEN +PEMMICAN +PENAL +PENALE +PENALISA +PENALISE +PENALITE +PENALTY +PENARD +PENARDE +PENAUD +PENAUDE +PENCHA +PENCHAI +PENCHAIT +PENCHANT +PENCHAT +PENCHE +PENCHEE +PENCHENT +PENCHER +PENCHERA +PENCHEZ +PENCHIEZ +PEND +PENDABLE +PENDAGE +PENDAIT +PENDANT +PENDARD +PENDE +PENDENT +PENDERIE +PENDEZ +PENDIEZ +PENDILLA +PENDILLE +PENDISSE +PENDIT +PENDOIR +PENDRA +PENDRAI +PENDRAIT +PENDRE +PENDREZ +PENDRIEZ +PENDRONT +PENDU +PENDUE +PENDULA +PENDULAI +PENDULAT +PENDULE +PENDULER +PENDULEZ +PENE +PENETRA +PENETRAI +PENETRAT +PENETRE +PENETREE +PENETRER +PENETREZ +PENIBLE +PENICHE +PENIEN +PENIENNE +PENIL +PENITENT +PENNAGE +PENNE +PENNEE +PENNON +PENNY +PENOMBRE +PENON +PENSA +PENSABLE +PENSAI +PENSAIT +PENSANT +PENSASSE +PENSAT +PENSE +PENSEE +PENSENT +PENSER +PENSERA +PENSERAI +PENSEREZ +PENSEUR +PENSEUSE +PENSEZ +PENSIEZ +PENSIF +PENSION +PENSIVE +PENSUM +PENTACLE +PENTANE +PENTAPOL +PENTE +PENTHODE +PENTODE +PENTOSE +PENTU +PENTUE +PENTURE +PENURIE +PEON +PEOTTE +PEPE +PEPERE +PEPIA +PEPIAI +PEPIAIT +PEPIANT +PEPIASSE +PEPIAT +PEPIE +PEPIENT +PEPIER +PEPIERA +PEPIERAI +PEPIEREZ +PEPIEZ +PEPIIEZ +PEPIN +PEPITE +PEPLUM +PEPON +PEPONIDE +PEPSINE +PEPTIDE +PEPTIQUE +PEPTONE +PEQUENOT +PEQUIN +PEQUISTE +PERAMELE +PERCA +PERCAGE +PERCAI +PERCAIT +PERCALE +PERCANT +PERCASSE +PERCAT +PERCE +PERCEE +PERCENT +PERCEPT +PERCER +PERCERA +PERCERAI +PERCEREZ +PERCEUR +PERCEUSE +PERCEVEZ +PERCEVRA +PERCEZ +PERCHA +PERCHAI +PERCHAIT +PERCHANT +PERCHAT +PERCHE +PERCHEE +PERCHENT +PERCHER +PERCHERA +PERCHEUR +PERCHEZ +PERCHIEZ +PERCHMAN +PERCHMEN +PERCHOIR +PERCIEZ +PERCLUSE +PERCOIT +PERCOIVE +PERCU +PERCUE +PERCUSSE +PERCUT +PERCUTA +PERCUTAI +PERCUTAT +PERCUTE +PERCUTEE +PERCUTER +PERCUTEZ +PERD +PERDABLE +PERDAIT +PERDANT +PERDE +PERDENT +PERDEZ +PERDIEZ +PERDISSE +PERDIT +PERDRA +PERDRAI +PERDRAIT +PERDRE +PERDREAU +PERDREZ +PERDRIEZ +PERDRIX +PERDRONT +PERDU +PERDUE +PERDURA +PERDURAI +PERDURAT +PERDURE +PERDURER +PERDUREZ +PERE +PERENNE +PERFIDE +PERFIDIE +PERFOLIE +PERFORA +PERFORAI +PERFORAT +PERFORE +PERFOREE +PERFORER +PERFOREZ +PERFUSA +PERFUSAI +PERFUSAT +PERFUSE +PERFUSEE +PERFUSER +PERFUSEZ +PERGOLA +PERI +PERIDOT +PERIGEE +PERIL +PERIMA +PERIMAI +PERIMAIT +PERIMANT +PERIMAT +PERIME +PERIMEE +PERIMENT +PERIMER +PERIMERA +PERIMEZ +PERIMIEZ +PERINEAL +PERINEE +PERIODE +PERIOSTE +PERIPLE +PERIR +PERIRA +PERIRAI +PERIRAIT +PERIRENT +PERIREZ +PERIRIEZ +PERIRONT +PERISSE +PERIT +PERLA +PERLAI +PERLAIT +PERLANT +PERLASSE +PERLAT +PERLE +PERLECHE +PERLEE +PERLENT +PERLER +PERLERA +PERLERAI +PERLEREZ +PERLEZ +PERLIER +PERLIERE +PERLIEZ +PERLON +PERLOT +PERLOUSE +PERLOUZE +PERMET +PERMETTE +PERMIEN +PERMISE +PERMISSE +PERMIT +PERMUTA +PERMUTAI +PERMUTAT +PERMUTE +PERMUTEE +PERMUTER +PERMUTEZ +PERONE +PERONIER +PERORA +PERORAI +PERORAIT +PERORANT +PERORAT +PERORE +PERORENT +PERORER +PERORERA +PEROREUR +PEROREZ +PERORIEZ +PEROT +PEROXYDA +PEROXYDE +PERPETRA +PERPETRE +PERPETUA +PERPETUE +PERPLEXE +PERRON +PERRUCHE +PERRUQUE +PERSAN +PERSANE +PERSE +PERSEL +PERSICOT +PERSIFLA +PERSIFLE +PERSIL +PERSILLA +PERSILLE +PERSISTA +PERSISTE +PERSONNE +PERSUADA +PERSUADE +PERTE +PERTURBA +PERTURBE +PERUVIEN +PERVERSE +PERVERTI +PERVIBRA +PERVIBRE +PESA +PESADE +PESAGE +PESAI +PESAIT +PESANT +PESASSE +PESAT +PESE +PESEE +PESENT +PESER +PESERA +PESERAI +PESERAIT +PESERENT +PESEREZ +PESERIEZ +PESETA +PESETTE +PESEUR +PESEUSE +PESEZ +PESIEZ +PESO +PESON +PESSAIRE +PESSE +PESTA +PESTAI +PESTAIT +PESTANT +PESTASSE +PESTAT +PESTE +PESTENT +PESTER +PESTERA +PESTERAI +PESTEREZ +PESTEUSE +PESTEUX +PESTEZ +PESTIEZ +PETA +PETAI +PETAIT +PETALE +PETANQUE +PETANT +PETARADA +PETARADE +PETARD +PETARDA +PETARDAI +PETARDAT +PETARDE +PETARDEE +PETARDER +PETARDEZ +PETASE +PETASSE +PETAT +PETE +PETECHIE +PETEE +PETENT +PETER +PETERA +PETERAI +PETERAIT +PETERENT +PETEREZ +PETERIEZ +PETEUR +PETEUSE +PETEUX +PETEZ +PETIEZ +PETILLA +PETILLAI +PETILLAT +PETILLE +PETILLER +PETILLEZ +PETIOLE +PETIOLEE +PETIOT +PETIOTE +PETIT +PETITE +PETITION +PETOCHE +PETOIRE +PETON +PETONCLE +PETRE +PETREE +PETREL +PETREUSE +PETREUX +PETRI +PETRIE +PETRIFIA +PETRIFIE +PETRIN +PETRIR +PETRIRA +PETRIRAI +PETRIREZ +PETRISSE +PETRIT +PETROLE +PETULANT +PETUN +PETUNA +PETUNAI +PETUNAIT +PETUNANT +PETUNAT +PETUNE +PETUNENT +PETUNER +PETUNERA +PETUNEZ +PETUNIA +PETUNIEZ +PEUCEDAN +PEUCHERE +PEUH +PEUL +PEULVEN +PEUPLA +PEUPLADE +PEUPLAI +PEUPLAIT +PEUPLANT +PEUPLAT +PEUPLE +PEUPLEE +PEUPLENT +PEUPLER +PEUPLERA +PEUPLEZ +PEUPLIER +PEUPLIEZ +PEUR +PEUREUSE +PEUREUX +PEUT +PEUVENT +PEUX +PEYOTL +PEZE +PEZIZE +PFENNIG +PFFT +PHAGE +PHALANGE +PHALENE +PHALERE +PHALLINE +PHANERE +PHANIE +PHARAON +PHARE +PHARYNGE +PHARYNX +PHASE +PHASME +PHENATE +PHENIQUE +PHENIX +PHENOL +PHILO +PHILTRE +PHLEBITE +PHLEGMON +PHLOX +PHOBIE +PHOBIQUE +PHOCEEN +PHOENIX +PHOLADE +PHOLIOTE +PHONE +PHONEME +PHONIE +PHONIQUE +PHONO +PHOQUE +PHORMIUM +PHOSGENE +PHOTO +PHOTON +PHRASA +PHRASAI +PHRASAIT +PHRASANT +PHRASAT +PHRASE +PHRASEE +PHRASENT +PHRASER +PHRASERA +PHRASEUR +PHRASEZ +PHRASIEZ +PHRATRIE +PHRYGANE +PHRYGIEN +PHTISIE +PHYLLADE +PHYLLIE +PHYLUM +PHYSALIE +PHYSIQUE +PIAF +PIAFFA +PIAFFAI +PIAFFAIT +PIAFFANT +PIAFFAT +PIAFFE +PIAFFENT +PIAFFER +PIAFFERA +PIAFFEUR +PIAFFEZ +PIAFFIEZ +PIAILLA +PIAILLAI +PIAILLAT +PIAILLE +PIAILLER +PIAILLEZ +PIAN +PIANISTE +PIANO +PIANOTA +PIANOTAI +PIANOTAT +PIANOTE +PIANOTEE +PIANOTER +PIANOTEZ +PIASSAVA +PIASTRE +PIAULA +PIAULAI +PIAULAIT +PIAULANT +PIAULAT +PIAULE +PIAULENT +PIAULER +PIAULERA +PIAULEZ +PIAULIEZ +PIBALE +PIBROCK +PICA +PICADOR +PICAGE +PICARD +PICARDAN +PICARDE +PICAREL +PICCOLO +PICHET +PICOLA +PICOLAI +PICOLAIT +PICOLANT +PICOLAT +PICOLE +PICOLEE +PICOLENT +PICOLER +PICOLERA +PICOLEUR +PICOLEZ +PICOLIEZ +PICOLO +PICORA +PICORAI +PICORAIT +PICORANT +PICORAT +PICORE +PICOREE +PICORENT +PICORER +PICORERA +PICOREZ +PICORIEZ +PICOT +PICOTA +PICOTAI +PICOTAIT +PICOTANT +PICOTAT +PICOTE +PICOTEE +PICOTENT +PICOTER +PICOTERA +PICOTEZ +PICOTIEZ +PICOTIN +PICPOUL +PICRATE +PICRIQUE +PICTURAL +PIDGIN +PIECE +PIECETTE +PIED +PIEDROIT +PIEFORT +PIEGE +PIEGEA +PIEGEAGE +PIEGEAI +PIEGEAIT +PIEGEANT +PIEGEAT +PIEGEE +PIEGENT +PIEGER +PIEGERA +PIEGERAI +PIEGEREZ +PIEGEUR +PIEGEZ +PIEGIEZ +PIEMONT +PIERIDE +PIERRA +PIERRAI +PIERRAIT +PIERRANT +PIERRAT +PIERRE +PIERREE +PIERRENT +PIERRER +PIERRERA +PIERREUX +PIERREZ +PIERRIER +PIERRIEZ +PIERROT +PIETA +PIETAI +PIETAIT +PIETANT +PIETASSE +PIETAT +PIETE +PIETEE +PIETENT +PIETER +PIETERA +PIETERAI +PIETEREZ +PIETEZ +PIETIEZ +PIETIN +PIETINA +PIETINAI +PIETINAT +PIETINE +PIETINEE +PIETINER +PIETINEZ +PIETISME +PIETISTE +PIETON +PIETONNE +PIETRE +PIEU +PIEUSE +PIEUTA +PIEUTAI +PIEUTAIT +PIEUTANT +PIEUTAT +PIEUTE +PIEUTEE +PIEUTENT +PIEUTER +PIEUTERA +PIEUTEZ +PIEUTIEZ +PIEUVRE +PIEUX +PIEZE +PIFA +PIFAI +PIFAIT +PIFANT +PIFASSE +PIFAT +PIFE +PIFEE +PIFENT +PIFER +PIFERA +PIFERAI +PIFERAIT +PIFERENT +PIFEREZ +PIFERIEZ +PIFEZ +PIFFA +PIFFAI +PIFFAIT +PIFFANT +PIFFASSE +PIFFAT +PIFFE +PIFFEE +PIFFENT +PIFFER +PIFFERA +PIFFERAI +PIFFEREZ +PIFFEZ +PIFFIEZ +PIFIEZ +PIGE +PIGEA +PIGEAI +PIGEAIT +PIGEANT +PIGEASSE +PIGEAT +PIGEE +PIGENT +PIGEON +PIGEONNA +PIGEONNE +PIGER +PIGERA +PIGERAI +PIGERAIT +PIGERENT +PIGEREZ +PIGERIEZ +PIGEZ +PIGIEZ +PIGISTE +PIGMENT +PIGMENTA +PIGMENTE +PIGNADA +PIGNADE +PIGNE +PIGNOCHA +PIGNOCHE +PIGNON +PIGNOUF +PILA +PILAF +PILAGE +PILAI +PILAIRE +PILAIT +PILANT +PILASSE +PILASTRE +PILAT +PILCHARD +PILE +PILEE +PILENT +PILER +PILERA +PILERAI +PILERAIT +PILERENT +PILEREZ +PILERIEZ +PILET +PILEUR +PILEUSE +PILEUX +PILEZ +PILIER +PILIEZ +PILIFERE +PILLA +PILLAGE +PILLAI +PILLAIT +PILLANT +PILLARD +PILLARDE +PILLASSE +PILLAT +PILLE +PILLEE +PILLENT +PILLER +PILLERA +PILLERAI +PILLEREZ +PILLEUR +PILLEUSE +PILLEUX +PILLEZ +PILLIEZ +PILON +PILONNA +PILONNAI +PILONNAT +PILONNE +PILONNEE +PILONNER +PILONNEZ +PILORI +PILOSITE +PILOTA +PILOTAGE +PILOTAI +PILOTAIT +PILOTANT +PILOTAT +PILOTE +PILOTEE +PILOTENT +PILOTER +PILOTERA +PILOTEZ +PILOTIEZ +PILOTIN +PILOU +PILULE +PILULIER +PILUM +PIMBECHE +PIMENT +PIMENTA +PIMENTAI +PIMENTAT +PIMENTE +PIMENTEE +PIMENTER +PIMENTEZ +PIMPANT +PINACLE +PINAILLA +PINAILLE +PINARD +PINASSE +PINASTRE +PINCA +PINCAI +PINCAIT +PINCANT +PINCASSE +PINCAT +PINCE +PINCEAU +PINCEE +PINCENT +PINCER +PINCERA +PINCERAI +PINCEREZ +PINCETTE +PINCEZ +PINCHARD +PINCIEZ +PINCON +PINEAL +PINEALE +PINEAU +PINEDE +PINERAIE +PINGOUIN +PINGRE +PINIERE +PINNE +PINNULE +PINOT +PINSON +PINTA +PINTADE +PINTAI +PINTAIT +PINTANT +PINTASSE +PINTAT +PINTE +PINTEE +PINTENT +PINTER +PINTERA +PINTERAI +PINTEREZ +PINTEZ +PINTIEZ +PINYIN +PIOCHA +PIOCHAGE +PIOCHAI +PIOCHAIT +PIOCHANT +PIOCHAT +PIOCHE +PIOCHEE +PIOCHENT +PIOCHER +PIOCHERA +PIOCHEUR +PIOCHEZ +PIOCHIEZ +PIOLET +PION +PIONCA +PIONCAI +PIONCAIT +PIONCANT +PIONCAT +PIONCE +PIONCENT +PIONCER +PIONCERA +PIONCEZ +PIONCIEZ +PIONNA +PIONNAI +PIONNAIT +PIONNANT +PIONNAT +PIONNE +PIONNENT +PIONNER +PIONNERA +PIONNEZ +PIONNIER +PIONNIEZ +PIOUPIOU +PIPA +PIPAI +PIPAIT +PIPANT +PIPASSE +PIPAT +PIPE +PIPEAU +PIPEE +PIPELET +PIPELINE +PIPENT +PIPER +PIPERA +PIPERADE +PIPERAI +PIPERAIT +PIPERENT +PIPEREZ +PIPERIE +PIPERIEZ +PIPERINE +PIPETTE +PIPEUR +PIPEUSE +PIPEZ +PIPI +PIPIER +PIPIERE +PIPIEZ +PIPIT +PIQUA +PIQUAGE +PIQUAI +PIQUAIT +PIQUANT +PIQUASSE +PIQUAT +PIQUE +PIQUEE +PIQUENT +PIQUER +PIQUERA +PIQUERAI +PIQUEREZ +PIQUET +PIQUETA +PIQUETAI +PIQUETAT +PIQUETE +PIQUETEE +PIQUETER +PIQUETEZ +PIQUETTE +PIQUEUR +PIQUEUSE +PIQUEUX +PIQUEZ +PIQUIER +PIQUIEZ +PIQURE +PIRANHA +PIRATA +PIRATAGE +PIRATAI +PIRATAIT +PIRATANT +PIRATAT +PIRATE +PIRATENT +PIRATER +PIRATERA +PIRATEZ +PIRATIEZ +PIRAYA +PIRE +PIROGUE +PIROJKI +PIROLE +PISCINE +PISE +PISSA +PISSAI +PISSAIT +PISSANT +PISSASSE +PISSAT +PISSE +PISSEE +PISSER +PISSERA +PISSERAI +PISSEREZ +PISSETTE +PISSEUR +PISSEUSE +PISSEUX +PISSOIR +PISTA +PISTACHA +PISTACHE +PISTAGE +PISTAI +PISTAIT +PISTANT +PISTARD +PISTASSE +PISTAT +PISTE +PISTEE +PISTENT +PISTER +PISTERA +PISTERAI +PISTEREZ +PISTEUR +PISTEZ +PISTIEZ +PISTIL +PISTOLE +PISTOLET +PISTON +PISTONNA +PISTONNE +PISTOU +PITANCE +PITCHPIN +PITE +PITEUSE +PITEUX +PITIE +PITON +PITONNA +PITONNAI +PITONNAT +PITONNE +PITONNER +PITONNEZ +PITRE +PITRERIE +PITUITE +PIVE +PIVERT +PIVOINE +PIVOT +PIVOTA +PIVOTAI +PIVOTAIT +PIVOTANT +PIVOTAT +PIVOTE +PIVOTEE +PIVOTENT +PIVOTER +PIVOTERA +PIVOTEZ +PIVOTIEZ +PIZZA +PIZZERIA +PLACA +PLACAGE +PLACAI +PLACAIT +PLACANT +PLACARD +PLACARDA +PLACARDE +PLACASSE +PLACAT +PLACE +PLACEBO +PLACEE +PLACENT +PLACENTA +PLACER +PLACERA +PLACERAI +PLACEREZ +PLACET +PLACETTE +PLACEUR +PLACEUSE +PLACEZ +PLACIDE +PLACIER +PLACIEZ +PLAFOND +PLAFONNA +PLAFONNE +PLAGAL +PLAGALE +PLAGE +PLAGIA +PLAGIAI +PLAGIAIT +PLAGIANT +PLAGIAT +PLAGIE +PLAGIEE +PLAGIENT +PLAGIER +PLAGIERA +PLAGIEZ +PLAGIIEZ +PLAGISTE +PLAID +PLAIDA +PLAIDAI +PLAIDAIT +PLAIDANT +PLAIDAT +PLAIDE +PLAIDEE +PLAIDENT +PLAIDER +PLAIDERA +PLAIDEUR +PLAIDEZ +PLAIDIEZ +PLAIE +PLAIGNE +PLAIGNEZ +PLAIGNIT +PLAINA +PLAINAI +PLAINAIT +PLAINANT +PLAINAT +PLAINDRA +PLAINDRE +PLAINE +PLAINEE +PLAINENT +PLAINER +PLAINERA +PLAINEZ +PLAINIEZ +PLAINT +PLAINTE +PLAINTIF +PLAIRA +PLAIRAI +PLAIRAIT +PLAIRE +PLAIREZ +PLAIRIEZ +PLAIRONT +PLAISAIT +PLAISANT +PLAISE +PLAISENT +PLAISEZ +PLAISIEZ +PLAISIR +PLAIT +PLAN +PLANA +PLANAGE +PLANAI +PLANAIRE +PLANAIT +PLANANT +PLANASSE +PLANAT +PLANCHA +PLANCHAI +PLANCHAT +PLANCHE +PLANCHER +PLANCHEZ +PLANCTON +PLANE +PLANEE +PLANEITE +PLANENT +PLANER +PLANERA +PLANERAI +PLANEREZ +PLANETE +PLANEUR +PLANEUSE +PLANEZ +PLANEZE +PLANIEZ +PLANIFIA +PLANIFIE +PLANISME +PLANNING +PLANOIR +PLANORBE +PLANQUA +PLANQUAI +PLANQUAT +PLANQUE +PLANQUEE +PLANQUER +PLANQUEZ +PLANT +PLANTA +PLANTAGE +PLANTAI +PLANTAIN +PLANTAIT +PLANTANT +PLANTAT +PLANTEE +PLANTENT +PLANTER +PLANTERA +PLANTEUR +PLANTEZ +PLANTIEZ +PLANTOIR +PLANTON +PLANTULE +PLAQUA +PLAQUAGE +PLAQUAI +PLAQUAIT +PLAQUANT +PLAQUAT +PLAQUE +PLAQUEE +PLAQUENT +PLAQUER +PLAQUERA +PLAQUEUR +PLAQUEZ +PLAQUIEZ +PLASMA +PLASMODE +PLASTE +PLASTIC +PLASTIE +PLASTRON +PLAT +PLATANE +PLATE +PLATEAU +PLATEE +PLATIERE +PLATINA +PLATINAI +PLATINAT +PLATINE +PLATINEE +PLATINER +PLATINEZ +PLATRA +PLATRAGE +PLATRAI +PLATRAIT +PLATRANT +PLATRAT +PLATRE +PLATREE +PLATRENT +PLATRER +PLATRERA +PLATREUX +PLATREZ +PLATRIER +PLATRIEZ +PLAYON +PLEBAN +PLEBE +PLEBEIEN +PLECTRE +PLEIADE +PLEIN +PLEINE +PLENIER +PLENIERE +PLETHORE +PLEUR +PLEURA +PLEURAGE +PLEURAI +PLEURAIT +PLEURAL +PLEURALE +PLEURANT +PLEURARD +PLEURAT +PLEURE +PLEUREE +PLEURENT +PLEURER +PLEURERA +PLEUREUR +PLEUREZ +PLEURIEZ +PLEURITE +PLEUROTE +PLEUT +PLEUTRE +PLEUVAIT +PLEUVE +PLEUVENT +PLEUVINA +PLEUVINE +PLEUVOIR +PLEUVOTA +PLEUVOTE +PLEUVRA +PLEVRE +PLEYON +PLIA +PLIABLE +PLIAGE +PLIAI +PLIAIT +PLIANT +PLIASSE +PLIAT +PLIE +PLIEE +PLIEMENT +PLIENT +PLIER +PLIERA +PLIERAI +PLIERAIT +PLIERENT +PLIEREZ +PLIERIEZ +PLIEUR +PLIEUSE +PLIEZ +PLIIEZ +PLINTHE +PLIOCENE +PLIOIR +PLIQUE +PLISSA +PLISSAGE +PLISSAI +PLISSAIT +PLISSANT +PLISSAT +PLISSE +PLISSEE +PLISSER +PLISSERA +PLISSEUR +PLISSURE +PLIURE +PLOC +PLOIE +PLOIENT +PLOIERA +PLOIERAI +PLOIEREZ +PLOMB +PLOMBA +PLOMBAGE +PLOMBAI +PLOMBAIT +PLOMBANT +PLOMBAT +PLOMBE +PLOMBEE +PLOMBENT +PLOMBER +PLOMBERA +PLOMBEUR +PLOMBEZ +PLOMBIER +PLOMBIEZ +PLOMBOIR +PLOMBURE +PLOMMEE +PLONGE +PLONGEA +PLONGEAI +PLONGEAT +PLONGEE +PLONGENT +PLONGEON +PLONGER +PLONGERA +PLONGEUR +PLONGEZ +PLONGIEZ +PLOQUA +PLOQUAI +PLOQUAIT +PLOQUANT +PLOQUAT +PLOQUE +PLOQUEE +PLOQUENT +PLOQUER +PLOQUERA +PLOQUEZ +PLOQUIEZ +PLOT +PLOUC +PLOUF +PLOUK +PLOYA +PLOYABLE +PLOYAI +PLOYAIT +PLOYANT +PLOYASSE +PLOYAT +PLOYE +PLOYEE +PLOYER +PLOYEZ +PLOYIEZ +PLUCHA +PLUCHAI +PLUCHAIT +PLUCHANT +PLUCHAT +PLUCHE +PLUCHENT +PLUCHER +PLUCHERA +PLUCHEUX +PLUCHEZ +PLUCHIEZ +PLUIE +PLUMA +PLUMAGE +PLUMAI +PLUMAIT +PLUMANT +PLUMARD +PLUMASSE +PLUMAT +PLUME +PLUMEAU +PLUMEE +PLUMENT +PLUMER +PLUMERA +PLUMERAI +PLUMEREZ +PLUMET +PLUMETE +PLUMETEE +PLUMEUR +PLUMEUSE +PLUMEUX +PLUMEZ +PLUMIER +PLUMIEZ +PLUMITIF +PLUMULE +PLUPART +PLURAL +PLURALE +PLURENT +PLURIEL +PLUSSE +PLUT +PLUTON +PLUTOT +PLUVIAL +PLUVIALE +PLUVIAN +PLUVIER +PLUVIEUX +PLUVINA +PLUVINAT +PLUVINE +PLUVINER +PLUVIOSE +PNEU +PNEUMO +POCHA +POCHADE +POCHAI +POCHAIT +POCHANT +POCHARD +POCHARDE +POCHASSE +POCHAT +POCHE +POCHEE +POCHENT +POCHER +POCHERA +POCHERAI +POCHEREZ +POCHETEE +POCHETTE +POCHEUSE +POCHEZ +POCHIEZ +POCHOIR +POCHON +POCHOUSE +PODAGRE +PODAIRE +PODESTAT +PODIUM +PODZOL +POECILE +POELA +POELAI +POELAIT +POELANT +POELASSE +POELAT +POELE +POELEE +POELENT +POELER +POELERA +POELERAI +POELEREZ +POELEZ +POELIEZ +POELON +POEME +POESIE +POETE +POETESSE +POETIQUE +POETISA +POETISAI +POETISAT +POETISE +POETISEE +POETISER +POETISEZ +POGNE +POGNON +POGROM +POGROME +POIGNAIT +POIGNANT +POIGNARD +POIGNE +POIGNEE +POIGNENT +POIGNET +POIGNEZ +POIGNIEZ +POIGNIT +POIL +POILA +POILAI +POILAIT +POILANT +POILASSE +POILAT +POILE +POILEE +POILENT +POILER +POILERA +POILERAI +POILEREZ +POILEZ +POILIEZ +POILU +POILUE +POINCON +POINDRA +POINDRAI +POINDRE +POINDREZ +POING +POINT +POINTA +POINTAGE +POINTAI +POINTAIT +POINTAL +POINTANT +POINTAT +POINTE +POINTEAU +POINTEE +POINTENT +POINTER +POINTERA +POINTEUR +POINTEZ +POINTIEZ +POINTU +POINTUE +POINTURE +POIRE +POIREAU +POIRIER +POIROTA +POIROTAI +POIROTAT +POIROTE +POIROTER +POIROTEZ +POISE +POISON +POISSA +POISSAI +POISSAIT +POISSANT +POISSARD +POISSAT +POISSE +POISSEE +POISSER +POISSERA +POISSEUX +POISSON +POITEVIN +POITRAIL +POITRINE +POIVRA +POIVRADE +POIVRAI +POIVRAIT +POIVRANT +POIVRAT +POIVRE +POIVREE +POIVRENT +POIVRER +POIVRERA +POIVREZ +POIVRIER +POIVRIEZ +POIVRON +POIVROT +POIVROTE +POIX +POKER +POLACRE +POLAIRE +POLAQUE +POLAR +POLARISA +POLARISE +POLARITE +POLAROID +POLDER +POLE +POLENTA +POLI +POLICA +POLICAI +POLICAIT +POLICANT +POLICAT +POLICE +POLICEE +POLICENT +POLICER +POLICERA +POLICEZ +POLICIER +POLICIEZ +POLIE +POLIMENT +POLIO +POLIR +POLIRA +POLIRAI +POLIRAIT +POLIRENT +POLIREZ +POLIRIEZ +POLIRONT +POLISSE +POLISSON +POLIT +POLITISA +POLITISE +POLKA +POLLEN +POLLUA +POLLUAI +POLLUAIT +POLLUANT +POLLUAT +POLLUE +POLLUEE +POLLUENT +POLLUER +POLLUERA +POLLUEUR +POLLUEZ +POLLUIEZ +POLO +POLOCHON +POLONIUM +POLTRON +POLYEDRE +POLYGALA +POLYGALE +POLYGAME +POLYGONE +POLYNOME +POLYPE +POLYPEUX +POLYPIER +POLYPODE +POLYPORE +POLYSOC +POLYTRIC +POLYURIE +POMELO +POMMA +POMMADA +POMMADAI +POMMADAT +POMMADE +POMMADEE +POMMADER +POMMADEZ +POMMAI +POMMAIT +POMMANT +POMMARD +POMMASSE +POMMAT +POMME +POMMEAU +POMMELA +POMMELAI +POMMELAT +POMMELE +POMMELEE +POMMELER +POMMELEZ +POMMELLE +POMMENT +POMMER +POMMERA +POMMERAI +POMMERAT +POMMETE +POMMETEE +POMMETTE +POMMEZ +POMMIER +POMMIEZ +POMPA +POMPAGE +POMPAI +POMPAIT +POMPANT +POMPASSE +POMPAT +POMPE +POMPEE +POMPEIEN +POMPENT +POMPER +POMPERA +POMPERAI +POMPEREZ +POMPETTE +POMPEUR +POMPEUSE +POMPEUX +POMPEZ +POMPIER +POMPIERE +POMPIEZ +POMPILE +POMPISTE +POMPON +POMPONNA +POMPONNE +PONANT +PONCA +PONCAGE +PONCAI +PONCAIT +PONCANT +PONCASSE +PONCAT +PONCE +PONCEAU +PONCEE +PONCELET +PONCENT +PONCER +PONCERA +PONCERAI +PONCEREZ +PONCEUR +PONCEUSE +PONCEUX +PONCEZ +PONCHO +PONCIEZ +PONCIF +PONCTION +PONCTUA +PONCTUAI +PONCTUAT +PONCTUE +PONCTUEE +PONCTUEL +PONCTUER +PONCTUEZ +POND +PONDAIT +PONDANT +PONDE +PONDENT +PONDERA +PONDERAI +PONDERAL +PONDERAT +PONDERE +PONDEREE +PONDERER +PONDEREZ +PONDEUR +PONDEUSE +PONDEZ +PONDIEZ +PONDISSE +PONDIT +PONDOIR +PONDRA +PONDRAI +PONDRAIT +PONDRE +PONDREZ +PONDRIEZ +PONDRONT +PONDU +PONDUE +PONEY +PONGE +PONGEE +PONGISTE +PONT +PONTA +PONTAGE +PONTAI +PONTAIT +PONTANT +PONTASSE +PONTAT +PONTE +PONTEE +PONTENT +PONTER +PONTERA +PONTERAI +PONTEREZ +PONTET +PONTEZ +PONTIER +PONTIEZ +PONTIFE +PONTIFIA +PONTIFIE +PONTIL +PONTILLA +PONTILLE +PONTON +POOL +POPE +POPELINE +POPLITE +POPLITEE +POPOTE +POPOTIN +POPULACE +POPULAGE +POPULEUM +POPULEUX +POPULO +POQUA +POQUAI +POQUAIT +POQUANT +POQUASSE +POQUAT +POQUE +POQUENT +POQUER +POQUERA +POQUERAI +POQUEREZ +POQUET +POQUEZ +POQUIEZ +PORC +PORCELET +PORCHE +PORCHER +PORCHERE +PORCIN +PORCINE +PORE +POREUSE +POREUX +PORION +PORNO +POROSITE +PORPHYRE +PORQUE +PORREAU +PORRIDGE +PORT +PORTA +PORTABLE +PORTAGE +PORTAI +PORTAIL +PORTAIT +PORTANCE +PORTANT +PORTASSE +PORTAT +PORTATIF +PORTE +PORTEE +PORTENT +PORTER +PORTERA +PORTERAI +PORTEREZ +PORTERIE +PORTEUR +PORTEUSE +PORTEZ +PORTIER +PORTIERE +PORTIEZ +PORTION +PORTIQUE +PORTLAND +PORTO +PORTOR +PORTRAIT +PORTULAN +PORTUNE +POSA +POSADA +POSAI +POSAIT +POSANT +POSASSE +POSAT +POSE +POSEE +POSEMENT +POSENT +POSER +POSERA +POSERAI +POSERAIT +POSERENT +POSEREZ +POSERIEZ +POSEUR +POSEUSE +POSEZ +POSIEZ +POSITIF +POSITION +POSITIVE +POSITON +POSITRON +POSSEDA +POSSEDAI +POSSEDAT +POSSEDE +POSSEDEE +POSSEDER +POSSEDEZ +POSSIBLE +POSTA +POSTAGE +POSTAI +POSTAIT +POSTAL +POSTALE +POSTANT +POSTASSE +POSTAT +POSTCURE +POSTDATA +POSTDATE +POSTE +POSTEE +POSTENT +POSTER +POSTERA +POSTERAI +POSTEREZ +POSTEZ +POSTFACE +POSTHITE +POSTHUME +POSTICHA +POSTICHE +POSTIER +POSTIERE +POSTIEZ +POSTPOSA +POSTPOSE +POSTULA +POSTULAI +POSTULAT +POSTULE +POSTULEE +POSTULER +POSTULEZ +POSTURAL +POSTURE +POTABLE +POTACHE +POTAGE +POTAGER +POTAGERE +POTAMOT +POTARD +POTASSA +POTASSAI +POTASSAT +POTASSE +POTASSEE +POTASSER +POTE +POTEAU +POTEE +POTELE +POTELEE +POTENCE +POTENCEE +POTENTAT +POTERIE +POTERNE +POTICHE +POTIER +POTIERE +POTIN +POTINA +POTINAI +POTINAIT +POTINANT +POTINAT +POTINE +POTINENT +POTINER +POTINERA +POTINEZ +POTINIER +POTINIEZ +POTION +POTIRON +POTLATCH +POUACRE +POUAH +POUBELLE +POUCE +POUCIER +POUDING +POUDRA +POUDRAGE +POUDRAI +POUDRAIT +POUDRANT +POUDRAT +POUDRE +POUDREE +POUDRENT +POUDRER +POUDRERA +POUDREUX +POUDREZ +POUDRIER +POUDRIEZ +POUDROIE +POUDROYA +POUDROYE +POUF +POUFFA +POUFFAI +POUFFAIT +POUFFANT +POUFFAT +POUFFE +POUFFENT +POUFFER +POUFFERA +POUFFEZ +POUFFIEZ +POUILLE +POUILLOT +POULAIN +POULAINE +POULARDE +POULBOT +POULE +POULET +POULETTE +POULICHE +POULIE +POULINA +POULINAI +POULINAT +POULINE +POULINER +POULINEZ +POULIOT +POULOT +POULOTE +POULPE +POUMON +POUPE +POUPEE +POUPIN +POUPINE +POUPON +POUPONNA +POUPONNE +POUR +POURCEAU +POURFEND +POURPIER +POURPRA +POURPRAI +POURPRAT +POURPRE +POURPREE +POURPRER +POURPREZ +POURQUOI +POURRA +POURRAI +POURRAIT +POURREZ +POURRI +POURRIE +POURRIEZ +POURRIR +POURRIRA +POURRIT +POURRONT +POURSUIT +POURTANT +POURTOUR +POURVOI +POURVOIE +POURVOIR +POURVOIT +POURVU +POURVUE +POURVUT +POUSSA +POUSSAGE +POUSSAH +POUSSAI +POUSSAIT +POUSSANT +POUSSAT +POUSSE +POUSSEE +POUSSER +POUSSERA +POUSSEUR +POUSSIER +POUSSIF +POUSSIN +POUSSINE +POUSSIVE +POUSSOIR +POUTRE +POUTSA +POUTSAI +POUTSAIT +POUTSANT +POUTSAT +POUTSE +POUTSEE +POUTSENT +POUTSER +POUTSERA +POUTSEZ +POUTSIEZ +POUTURE +POUVAIT +POUVANT +POUVEZ +POUVIEZ +POUVOIR +POUX +PRAIRE +PRAIRIAL +PRAIRIE +PRALIN +PRALINA +PRALINAI +PRALINAT +PRALINE +PRALINEE +PRALINER +PRALINEZ +PRAME +PRATIQUA +PRATIQUE +PREALPIN +PREAU +PREAVISA +PREAVISE +PREBENDE +PRECAIRE +PRECEDA +PRECEDAI +PRECEDAT +PRECEDE +PRECEDEE +PRECEDER +PRECEDEZ +PRECEPTE +PRECHA +PRECHAI +PRECHAIT +PRECHANT +PRECHAT +PRECHE +PRECHEE +PRECHENT +PRECHER +PRECHERA +PRECHEUR +PRECHEZ +PRECHIEZ +PRECIEUX +PRECIPUT +PRECISA +PRECISAI +PRECISAT +PRECISE +PRECISEE +PRECISER +PRECISEZ +PRECITE +PRECITEE +PRECOCE +PRECONCU +PRECUIT +PRECUITE +PREDICAT +PREDIQUA +PREDIQUE +PREDIRA +PREDIRAI +PREDIRE +PREDIREZ +PREDISE +PREDISSE +PREDIT +PREDITE +PREEMPTA +PREEMPTE +PREFACA +PREFACAI +PREFACAT +PREFACE +PREFACEE +PREFACER +PREFACEZ +PREFERA +PREFERAI +PREFERAT +PREFERE +PREFEREE +PREFERER +PREFEREZ +PREFET +PREFIXA +PREFIXAI +PREFIXAT +PREFIXE +PREFIXEE +PREFIXER +PREFIXEZ +PREFORMA +PREFORME +PREGNANT +PREJUGE +PREJUGEA +PREJUGEE +PREJUGER +PREJUGEZ +PRELART +PRELASSA +PRELASSE +PRELAT +PRELATIN +PRELE +PRELEVA +PRELEVAI +PRELEVAT +PRELEVE +PRELEVEE +PRELEVER +PRELEVEZ +PRELUDA +PRELUDAI +PRELUDAT +PRELUDE +PRELUDER +PRELUDEZ +PREMIER +PREMIERE +PREMISSE +PREMUNI +PREMUNIE +PREMUNIR +PREMUNIT +PRENABLE +PRENAIT +PRENANT +PRENATAL +PREND +PRENDRA +PRENDRAI +PRENDRE +PRENDREZ +PRENEUR +PRENEZ +PRENIEZ +PRENNE +PRENNENT +PRENOM +PRENOMMA +PRENOMME +PREORAL +PREORALE +PREPAIE +PREPARA +PREPARAI +PREPARAT +PREPARE +PREPAREE +PREPARER +PREPAREZ +PREPAYA +PREPAYAI +PREPAYAT +PREPAYE +PREPAYEE +PREPAYER +PREPAYEZ +PREPOSA +PREPOSAI +PREPOSAT +PREPOSE +PREPOSEE +PREPOSER +PREPOSEZ +PREPUCE +PREREGLA +PREREGLE +PRESAGE +PRESAGEA +PRESAGEE +PRESAGER +PRESAGEZ +PRESBYTE +PRESCRIT +PRESENCE +PRESENT +PRESENTA +PRESENTE +PRESERIE +PRESERVA +PRESERVE +PRESIDA +PRESIDAI +PRESIDAT +PRESIDE +PRESIDEE +PRESIDER +PRESIDEZ +PRESQUE +PRESSA +PRESSAGE +PRESSAI +PRESSAIT +PRESSANT +PRESSAT +PRESSE +PRESSEE +PRESSER +PRESSERA +PRESSEUR +PRESSIER +PRESSING +PRESSION +PRESSOIR +PRESSURA +PRESSURE +PRESTANT +PRESTE +PRESTIGE +PRESTO +PRESUMA +PRESUMAI +PRESUMAT +PRESUME +PRESUMEE +PRESUMER +PRESUMEZ +PRESURA +PRESURAI +PRESURAT +PRESURE +PRESUREE +PRESURER +PRESUREZ +PRET +PRETA +PRETAI +PRETAIT +PRETANT +PRETASSE +PRETAT +PRETE +PRETEE +PRETEND +PRETENDE +PRETENDU +PRETENT +PRETER +PRETERA +PRETERAI +PRETEREZ +PRETERIT +PRETEUR +PRETEUSE +PRETEXTA +PRETEXTE +PRETEZ +PRETIEZ +PRETOIRE +PRETRE +PRETRISE +PREUVE +PREUX +PREVALE +PREVALEZ +PREVALU +PREVALUE +PREVALUT +PREVAUT +PREVENEZ +PREVENIR +PREVENU +PREVENUE +PREVERBE +PREVIENT +PREVINT +PREVISSE +PREVIT +PREVOIE +PREVOIR +PREVOIRA +PREVOIT +PREVOT +PREVOTAL +PREVOTE +PREVOYEZ +PREVU +PREVUE +PRIA +PRIAI +PRIAIT +PRIANT +PRIAPEE +PRIASSE +PRIAT +PRIE +PRIEE +PRIENT +PRIER +PRIERA +PRIERAI +PRIERAIT +PRIERE +PRIERENT +PRIEREZ +PRIERIEZ +PRIEUR +PRIEURE +PRIEZ +PRIIEZ +PRIMA +PRIMAGE +PRIMAI +PRIMAIRE +PRIMAIT +PRIMANT +PRIMASSE +PRIMAT +PRIMATE +PRIMATIE +PRIMAUTE +PRIME +PRIMEE +PRIMENT +PRIMER +PRIMERA +PRIMERAI +PRIMEREZ +PRIMEUR +PRIMEZ +PRIMIDI +PRIMIEZ +PRIMITIF +PRIMO +PRINCE +PRINCIER +PRINCIPE +PRIORAT +PRIORI +PRIORITE +PRIRENT +PRISA +PRISAI +PRISAIT +PRISANT +PRISASSE +PRISAT +PRISE +PRISEE +PRISENT +PRISER +PRISERA +PRISERAI +PRISEREZ +PRISEUR +PRISEUSE +PRISEZ +PRISIEZ +PRISME +PRISON +PRISSE +PRIT +PRIVA +PRIVAI +PRIVAIT +PRIVANT +PRIVASSE +PRIVAT +PRIVATIF +PRIVAUTE +PRIVE +PRIVEE +PRIVENT +PRIVER +PRIVERA +PRIVERAI +PRIVEREZ +PRIVEZ +PRIVIEZ +PRIX +PROBABLE +PROBANT +PROBE +PROBITE +PROBLEME +PROCEDA +PROCEDAI +PROCEDAT +PROCEDE +PROCEDER +PROCEDEZ +PROCHAIN +PROCHE +PROCLAMA +PROCLAME +PROCREA +PROCREAI +PROCREAT +PROCREE +PROCREEE +PROCREER +PROCREEZ +PROCTITE +PROCURA +PROCURAI +PROCURAT +PROCURE +PROCUREE +PROCURER +PROCUREZ +PRODIGE +PRODIGUA +PRODIGUE +PRODROME +PRODUIRA +PRODUIRE +PRODUISE +PRODUIT +PRODUITE +PROF +PROFANA +PROFANAI +PROFANAT +PROFANE +PROFANEE +PROFANER +PROFANEZ +PROFERA +PROFERAI +PROFERAT +PROFERE +PROFEREE +PROFERER +PROFEREZ +PROFESSA +PROFESSE +PROFIL +PROFILA +PROFILAI +PROFILAT +PROFILE +PROFILEE +PROFILER +PROFILEZ +PROFIT +PROFITA +PROFITAI +PROFITAT +PROFITE +PROFITER +PROFITEZ +PROFOND +PROFONDE +PROFUSE +PROHIBA +PROHIBAI +PROHIBAT +PROHIBE +PROHIBEE +PROHIBER +PROHIBEZ +PROIE +PROJET +PROJETA +PROJETAI +PROJETAT +PROJETE +PROJETEE +PROJETER +PROJETEZ +PROJETTE +PROLAN +PROLEPSE +PROLIXE +PROLO +PROLOGUE +PROLONGE +PROMENA +PROMENAI +PROMENAT +PROMENE +PROMENEE +PROMENER +PROMENEZ +PROMESSE +PROMET +PROMETTE +PROMEUT +PROMEUVE +PROMISE +PROMISSE +PROMIT +PROMO +PROMPT +PROMPTE +PROMU +PROMUSSE +PROMUT +PRONA +PRONAI +PRONAIT +PRONANT +PRONASSE +PRONAT +PRONE +PRONEE +PRONENT +PRONER +PRONERA +PRONERAI +PRONEREZ +PRONEUR +PRONEUSE +PRONEZ +PRONIEZ +PRONOM +PRONONCA +PRONONCE +PROPAGE +PROPAGEA +PROPAGEE +PROPAGER +PROPAGEZ +PROPANE +PROPENE +PROPHASE +PROPHETE +PROPICE +PROPOSA +PROPOSAI +PROPOSAT +PROPOSE +PROPOSEE +PROPOSER +PROPOSEZ +PROPRE +PROPRET +PROPRETE +PROPRIO +PROPULSA +PROPULSE +PROPYLEE +PRORATA +PROROGE +PROROGEA +PROROGEE +PROROGER +PROROGEZ +PROSCRIT +PROSE +PROSODIA +PROSODIE +PROSPECT +PROSPERA +PROSPERE +PROSTATE +PROSTRE +PROSTREE +PROSTYLE +PROTASE +PROTE +PROTEASE +PROTEE +PROTEGE +PROTEGEA +PROTEGEE +PROTEGER +PROTEGEZ +PROTEIDE +PROTEINE +PROTELE +PROTESTA +PROTESTE +PROTET +PROTHESE +PROTIDE +PROTON +PROU +PROUE +PROUESSE +PROUVA +PROUVAI +PROUVAIT +PROUVANT +PROUVAT +PROUVE +PROUVEE +PROUVENT +PROUVER +PROUVERA +PROUVEZ +PROUVIEZ +PROVENDE +PROVENEZ +PROVENIR +PROVENU +PROVENUE +PROVERBE +PROVIENT +PROVIGNA +PROVIGNE +PROVIN +PROVINCE +PROVINT +PROVO +PROVOQUA +PROVOQUE +PROXIMAL +PROYER +PRUDE +PRUDENCE +PRUDENT +PRUDENTE +PRUDERIE +PRUINE +PRUNE +PRUNEAU +PRUNELEE +PRUNELLE +PRUNIER +PRURIGO +PRURIT +PRUSSIEN +PRYTANE +PRYTANEE +PSAUME +PSAUTIER +PSCHENT +PSEUDO +PSITT +PSOQUE +PSYCHE +PSYCHOSE +PTOMAINE +PTOSE +PTYALINE +PUAI +PUAIT +PUANT +PUANTEUR +PUASSE +PUAT +PUBERE +PUBERTE +PUBIEN +PUBIENNE +PUBLIA +PUBLIAI +PUBLIAIT +PUBLIANT +PUBLIAT +PUBLIC +PUBLIE +PUBLIEE +PUBLIENT +PUBLIER +PUBLIERA +PUBLIEZ +PUBLIIEZ +PUBLIQUE +PUCCINIA +PUCCINIE +PUCE +PUCEAU +PUCELAGE +PUCERON +PUCHE +PUCHEUX +PUCIER +PUDDING +PUDDLAGE +PUDDLEUR +PUDEUR +PUDIBOND +PUDICITE +PUDIQUE +PUEE +PUENT +PUER +PUERA +PUERAI +PUERAIT +PUERENT +PUEREZ +PUERIEZ +PUERIL +PUERILE +PUEZ +PUFFIN +PUGILAT +PUGNACE +PUIEZ +PUINE +PUINEE +PUISA +PUISAGE +PUISAI +PUISAIT +PUISANT +PUISARD +PUISASSE +PUISAT +PUISE +PUISEE +PUISENT +PUISER +PUISERA +PUISERAI +PUISEREZ +PUISETTE +PUISEZ +PUISIEZ +PUISQUE +PUISSANT +PUISSE +PULL +PULLMAN +PULLULA +PULLULAI +PULLULAT +PULLULE +PULLULER +PULLULEZ +PULPAIRE +PULPE +PULPEUSE +PULPEUX +PULQUE +PULSA +PULSAI +PULSAIT +PULSANT +PULSAR +PULSASSE +PULSAT +PULSE +PULSEE +PULSENT +PULSER +PULSERA +PULSERAI +PULSEREZ +PULSEZ +PULSIEZ +PULSION +PULTACE +PULTACEE +PULVERIN +PUMA +PUNA +PUNAISA +PUNAISAI +PUNAISAT +PUNAISE +PUNAISEE +PUNAISER +PUNAISEZ +PUNCH +PUNCHEUR +PUNI +PUNIE +PUNIQUE +PUNIR +PUNIRA +PUNIRAI +PUNIRAIT +PUNIRENT +PUNIREZ +PUNIRIEZ +PUNIRONT +PUNISSE +PUNIT +PUNITIF +PUNITION +PUNITIVE +PUNK +PUPAZZI +PUPAZZO +PUPE +PUPILLE +PUPITRE +PURE +PUREAU +PUREE +PUREMENT +PURENT +PURETE +PURGATIF +PURGE +PURGEA +PURGEAI +PURGEAIT +PURGEANT +PURGEAT +PURGEE +PURGENT +PURGEOIR +PURGER +PURGERA +PURGERAI +PURGEREZ +PURGEUR +PURGEZ +PURGIEZ +PURIFIA +PURIFIAI +PURIFIAT +PURIFIE +PURIFIEE +PURIFIER +PURIFIEZ +PURIN +PURINE +PURISME +PURISTE +PURITAIN +PUROT +PUROTIN +PURPURA +PURPURIN +PURULENT +PUSSE +PUSTULE +PUTAIN +PUTATIF +PUTATIVE +PUTE +PUTIER +PUTIET +PUTREFIA +PUTREFIE +PUTRIDE +PUTSCH +PUTTI +PUTTO +PUZZLE +PYCNOSE +PYELITE +PYGARGUE +PYGMEE +PYJAMA +PYLONE +PYLORE +PYOGENE +PYORRHEE +PYRALE +PYRAMIDA +PYRAMIDE +PYRENE +PYRENEEN +PYRETHRE +PYREX +PYREXIE +PYRITE +PYROGENE +PYROLYSE +PYROMANE +PYROXYLE +PYRROL +PYRROLE +PYTHIE +PYTHIEN +PYTHON +PYURIE +PYXIDE +QUADRANT +QUADRIGE +QUAI +QUAKER +QUALIFIA +QUALIFIE +QUALITE +QUAND +QUANT +QUANTA +QUANTITE +QUANTUM +QUARK +QUARRA +QUARRAI +QUARRAIT +QUARRANT +QUARRAT +QUARRE +QUARREE +QUARRENT +QUARRER +QUARRERA +QUARREZ +QUARRIEZ +QUART +QUARTA +QUARTAGE +QUARTAI +QUARTAIT +QUARTANT +QUARTAT +QUARTAUT +QUARTE +QUARTEE +QUARTENT +QUARTER +QUARTERA +QUARTEZ +QUARTIDI +QUARTIER +QUARTIEZ +QUARTILE +QUARTO +QUARTZ +QUASAR +QUASI +QUASSIA +QUASSIER +QUASSINE +QUATER +QUATERNE +QUATORZE +QUATRAIN +QUATRE +QUATUOR +QUEL +QUELLE +QUELQUE +QUEMANDA +QUEMANDE +QUENELLE +QUENOTTE +QUERABLE +QUERELLA +QUERELLE +QUERIR +QUESTEUR +QUESTION +QUESTURE +QUETA +QUETAI +QUETAIT +QUETANT +QUETASSE +QUETAT +QUETE +QUETEE +QUETENT +QUETER +QUETERA +QUETERAI +QUETEREZ +QUETEUR +QUETEUSE +QUETEZ +QUETIEZ +QUETSCHE +QUEUE +QUEUSOT +QUEUTA +QUEUTAI +QUEUTAIT +QUEUTANT +QUEUTAT +QUEUTE +QUEUTENT +QUEUTER +QUEUTERA +QUEUTEZ +QUEUTIEZ +QUEUX +QUICHE +QUICHUA +QUIDAM +QUIDDITE +QUIET +QUIETE +QUIETUDE +QUIGNON +QUILLE +QUILLEUR +QUILLIER +QUILLON +QUINAIRE +QUINAUD +QUINAUDE +QUINE +QUINEE +QUININE +QUINOA +QUINQUET +QUINT +QUINTAL +QUINTE +QUINTEUX +QUINTIDI +QUINTO +QUINZE +QUIPO +QUIPOU +QUIPU +QUIRITE +QUISCALE +QUITTA +QUITTAI +QUITTAIT +QUITTANT +QUITTAT +QUITTE +QUITTEE +QUITTENT +QUITTER +QUITTERA +QUITTEZ +QUITTIEZ +QUOI +QUOIQUE +QUOLIBET +QUORUM +QUOTA +QUOTIENT +QUOTITE +QUOTTA +QUOTTAI +QUOTTAIT +QUOTTANT +QUOTTAT +QUOTTE +QUOTTENT +QUOTTER +QUOTTERA +QUOTTEZ +QUOTTIEZ +RABACHA +RABACHAI +RABACHAT +RABACHE +RABACHEE +RABACHER +RABACHEZ +RABAISSA +RABAISSE +RABAN +RABANE +RABANTA +RABANTAI +RABANTAT +RABANTEE +RABANTER +RABANTEZ +RABAT +RABATTE +RABATTEZ +RABATTIT +RABATTRA +RABATTRE +RABATTU +RABATTUE +RABBI +RABBIN +RABBINAT +RABIOT +RABIOTA +RABIOTAI +RABIOTAT +RABIOTE +RABIOTEE +RABIOTER +RABIOTEZ +RABIQUE +RABLA +RABLAI +RABLAIT +RABLANT +RABLASSE +RABLAT +RABLE +RABLEE +RABLENT +RABLER +RABLERA +RABLERAI +RABLEREZ +RABLEZ +RABLIEZ +RABLURE +RABONNI +RABONNIE +RABONNIR +RABONNIT +RABOT +RABOTA +RABOTAGE +RABOTAI +RABOTAIT +RABOTANT +RABOTAT +RABOTE +RABOTEE +RABOTENT +RABOTER +RABOTERA +RABOTEUR +RABOTEUX +RABOTEZ +RABOTIEZ +RABOUGRI +RABOUTA +RABOUTAI +RABOUTAT +RABOUTE +RABOUTEE +RABOUTER +RABOUTEZ +RABROUA +RABROUAI +RABROUAT +RABROUE +RABROUEE +RABROUER +RABROUEZ +RACAILLE +RACCORD +RACCORDA +RACCORDE +RACCROC +RACE +RACEE +RACER +RACHAT +RACHETA +RACHETAI +RACHETAT +RACHETE +RACHETEE +RACHETER +RACHETEZ +RACIAL +RACIALE +RACINA +RACINAGE +RACINAI +RACINAIT +RACINAL +RACINANT +RACINAT +RACINE +RACINEE +RACINENT +RACINER +RACINERA +RACINEZ +RACINIEN +RACINIEZ +RACISME +RACISTE +RACKET +RACLA +RACLAGE +RACLAI +RACLAIT +RACLANT +RACLASSE +RACLAT +RACLE +RACLEE +RACLENT +RACLER +RACLERA +RACLERAI +RACLEREZ +RACLETTE +RACLEUR +RACLEUSE +RACLEZ +RACLIEZ +RACLOIR +RACLURE +RACOLA +RACOLAGE +RACOLAI +RACOLAIT +RACOLANT +RACOLAT +RACOLE +RACOLEE +RACOLENT +RACOLER +RACOLERA +RACOLEUR +RACOLEZ +RACOLIEZ +RACONTA +RACONTAI +RACONTAR +RACONTAT +RACONTE +RACONTEE +RACONTER +RACONTEZ +RACORNI +RACORNIE +RACORNIR +RACORNIT +RADA +RADAI +RADAIT +RADANT +RADAR +RADASSE +RADAT +RADE +RADEAU +RADEE +RADENT +RADER +RADERA +RADERAI +RADERAIT +RADERENT +RADEREZ +RADERIEZ +RADEUSE +RADEZ +RADIA +RADIAI +RADIAIRE +RADIAIT +RADIAL +RADIALE +RADIAN +RADIANCE +RADIANT +RADIASSE +RADIAT +RADIATIF +RADICAL +RADICALE +RADICANT +RADIE +RADIEE +RADIENT +RADIER +RADIERA +RADIERAI +RADIEREZ +RADIEUSE +RADIEUX +RADIEZ +RADIIEZ +RADIN +RADINA +RADINAI +RADINAIT +RADINANT +RADINAT +RADINE +RADINEE +RADINENT +RADINER +RADINERA +RADINEZ +RADINIEZ +RADIO +RADIUM +RADJAH +RADOME +RADOTA +RADOTAGE +RADOTAI +RADOTAIT +RADOTANT +RADOTAT +RADOTE +RADOTENT +RADOTER +RADOTERA +RADOTEUR +RADOTEZ +RADOTIEZ +RADOUB +RADOUBA +RADOUBAI +RADOUBAT +RADOUBE +RADOUBEE +RADOUBER +RADOUBEZ +RADOUCI +RADOUCIE +RADOUCIR +RADOUCIT +RAFALE +RAFFERMI +RAFFINA +RAFFINAI +RAFFINAT +RAFFINE +RAFFINEE +RAFFINER +RAFFINEZ +RAFFOLA +RAFFOLAI +RAFFOLAT +RAFFOLE +RAFFOLEE +RAFFOLER +RAFFOLEZ +RAFFUT +RAFFUTA +RAFFUTAI +RAFFUTAT +RAFFUTE +RAFFUTEE +RAFFUTER +RAFFUTEZ +RAFIOT +RAFLA +RAFLAI +RAFLAIT +RAFLANT +RAFLASSE +RAFLAT +RAFLE +RAFLEE +RAFLENT +RAFLER +RAFLERA +RAFLERAI +RAFLEREZ +RAFLEZ +RAFLIEZ +RAGE +RAGEA +RAGEAI +RAGEAIT +RAGEANT +RAGEASSE +RAGEAT +RAGENT +RAGER +RAGERA +RAGERAI +RAGERAIT +RAGERENT +RAGEREZ +RAGERIEZ +RAGEUR +RAGEUSE +RAGEZ +RAGIEZ +RAGLAN +RAGONDIN +RAGOT +RAGOTA +RAGOTAI +RAGOTAIT +RAGOTANT +RAGOTAT +RAGOTE +RAGOTENT +RAGOTER +RAGOTERA +RAGOTEZ +RAGOTIEZ +RAGOUT +RAGOUTA +RAGOUTAI +RAGOUTAT +RAGOUTE +RAGOUTEE +RAGOUTER +RAGOUTEZ +RAGRAFA +RAGRAFAI +RAGRAFAT +RAGRAFE +RAGRAFEE +RAGRAFER +RAGRAFEZ +RAGREA +RAGREAI +RAGREAIT +RAGREANT +RAGREAT +RAGREE +RAGREEE +RAGREENT +RAGREER +RAGREERA +RAGREEZ +RAGREIEZ +RAGUA +RAGUAI +RAGUAIT +RAGUANT +RAGUASSE +RAGUAT +RAGUE +RAGUEE +RAGUENT +RAGUER +RAGUERA +RAGUERAI +RAGUEREZ +RAGUEZ +RAGUIEZ +RAIA +RAID +RAIDE +RAIDER +RAIDEUR +RAIDI +RAIDIE +RAIDIR +RAIDIRA +RAIDIRAI +RAIDIRAT +RAIDISSE +RAIDIT +RAIE +RAIERA +RAIERAI +RAIERAIT +RAIEREZ +RAIERIEZ +RAIFORT +RAIL +RAILLA +RAILLAI +RAILLAIT +RAILLANT +RAILLAT +RAILLE +RAILLEE +RAILLENT +RAILLER +RAILLERA +RAILLEUR +RAILLEZ +RAILLIEZ +RAINA +RAINAI +RAINAIT +RAINANT +RAINASSE +RAINAT +RAINE +RAINEE +RAINENT +RAINER +RAINERA +RAINERAI +RAINEREZ +RAINETA +RAINETAI +RAINETAT +RAINETE +RAINETEE +RAINETER +RAINETEZ +RAINETTE +RAINEZ +RAINIEZ +RAINURA +RAINURAI +RAINURAT +RAINURE +RAINUREE +RAINURER +RAINUREZ +RAISIN +RAISINE +RAISON +RAISONNA +RAISONNE +RAJA +RAJAH +RAJEUNI +RAJEUNIE +RAJEUNIR +RAJEUNIT +RAJOUT +RAJOUTA +RAJOUTAI +RAJOUTAT +RAJOUTE +RAJOUTEE +RAJOUTER +RAJOUTEZ +RAJUSTA +RAJUSTAI +RAJUSTAT +RAJUSTE +RAJUSTEE +RAJUSTER +RAJUSTEZ +RAKI +RALA +RALAI +RALAIT +RALANT +RALASSE +RALAT +RALE +RALEMENT +RALENT +RALENTI +RALENTIE +RALENTIR +RALENTIT +RALER +RALERA +RALERAI +RALERAIT +RALERENT +RALEREZ +RALERIEZ +RALEUR +RALEUSE +RALEZ +RALIEZ +RALINGUA +RALINGUE +RALLEGE +RALLEGEA +RALLEGER +RALLEGEZ +RALLIA +RALLIAI +RALLIAIT +RALLIANT +RALLIAT +RALLIE +RALLIEE +RALLIENT +RALLIER +RALLIERA +RALLIEZ +RALLIIEZ +RALLONGE +RALLUMA +RALLUMAI +RALLUMAT +RALLUME +RALLUMEE +RALLUMER +RALLUMEZ +RALLYE +RAMA +RAMADAN +RAMAGE +RAMAGEA +RAMAGEAI +RAMAGEAT +RAMAGEE +RAMAGENT +RAMAGER +RAMAGERA +RAMAGEZ +RAMAGIEZ +RAMAI +RAMAILLA +RAMAILLE +RAMAIT +RAMANDA +RAMANDAI +RAMANDAT +RAMANDE +RAMANDEE +RAMANDER +RAMANDEZ +RAMANT +RAMARRA +RAMARRAI +RAMARRAT +RAMARRE +RAMARREE +RAMARRER +RAMARREZ +RAMASSA +RAMASSAI +RAMASSAT +RAMASSE +RAMASSEE +RAMASSER +RAMAT +RAMBARDE +RAMBOUR +RAMDAM +RAME +RAMEAU +RAMEE +RAMENA +RAMENAI +RAMENAIT +RAMENANT +RAMENAT +RAMENDA +RAMENDAI +RAMENDAT +RAMENDE +RAMENDEE +RAMENDER +RAMENDEZ +RAMENE +RAMENEE +RAMENENT +RAMENER +RAMENERA +RAMENEZ +RAMENIEZ +RAMENT +RAMEQUIN +RAMER +RAMERA +RAMERAI +RAMERAIT +RAMEREAU +RAMERENT +RAMEREZ +RAMERIEZ +RAMEROT +RAMETTE +RAMEUR +RAMEUSE +RAMEUTA +RAMEUTAI +RAMEUTAT +RAMEUTE +RAMEUTEE +RAMEUTER +RAMEUTEZ +RAMEUX +RAMEZ +RAMI +RAMIE +RAMIER +RAMIEZ +RAMIFIA +RAMIFIAI +RAMIFIAT +RAMIFIE +RAMIFIEE +RAMIFIER +RAMIFIEZ +RAMILLE +RAMINGUE +RAMOLLI +RAMOLLIE +RAMOLLIR +RAMOLLIT +RAMOLLO +RAMONA +RAMONAGE +RAMONAI +RAMONAIT +RAMONANT +RAMONAT +RAMONE +RAMONEE +RAMONENT +RAMONER +RAMONERA +RAMONEUR +RAMONEZ +RAMONIEZ +RAMPA +RAMPAI +RAMPAIT +RAMPANT +RAMPASSE +RAMPAT +RAMPE +RAMPEAU +RAMPENT +RAMPER +RAMPERA +RAMPERAI +RAMPEREZ +RAMPEZ +RAMPIEZ +RAMURE +RANATRE +RANCARD +RANCARDA +RANCARDE +RANCART +RANCE +RANCH +RANCHE +RANCHER +RANCI +RANCIE +RANCIO +RANCIR +RANCIRA +RANCIRAI +RANCIREZ +RANCISSE +RANCIT +RANCOEUR +RANCON +RANCONNA +RANCONNE +RANCUNE +RANDONNA +RANDONNE +RANG +RANGE +RANGEA +RANGEAI +RANGEAIT +RANGEANT +RANGEAT +RANGEE +RANGENT +RANGER +RANGERA +RANGERAI +RANGEREZ +RANGEZ +RANGIEZ +RANI +RANIMA +RANIMAI +RANIMAIT +RANIMANT +RANIMAT +RANIME +RANIMEE +RANIMENT +RANIMER +RANIMERA +RANIMEZ +RANIMIEZ +RANZ +RAOUT +RAPA +RAPACE +RAPACITE +RAPAGE +RAPAI +RAPAIT +RAPANT +RAPASSE +RAPAT +RAPATRIA +RAPATRIE +RAPE +RAPEE +RAPENT +RAPER +RAPERA +RAPERAI +RAPERAIT +RAPERENT +RAPEREZ +RAPERIE +RAPERIEZ +RAPEUSE +RAPEUX +RAPEZ +RAPHIA +RAPIAT +RAPIATE +RAPIDE +RAPIDITE +RAPIECA +RAPIECAI +RAPIECAT +RAPIECE +RAPIECEE +RAPIECER +RAPIECEZ +RAPIERE +RAPIEZ +RAPIN +RAPINA +RAPINAI +RAPINAIT +RAPINANT +RAPINAT +RAPINE +RAPINEE +RAPINENT +RAPINER +RAPINERA +RAPINEZ +RAPINIEZ +RAPLATI +RAPLATIE +RAPLATIR +RAPLATIT +RAPOINTI +RAPPARIA +RAPPARIE +RAPPEL +RAPPELA +RAPPELAI +RAPPELAT +RAPPELE +RAPPELEE +RAPPELER +RAPPELEZ +RAPPELLE +RAPPORT +RAPPORTA +RAPPORTE +RAPPREND +RAPPRETA +RAPPRETE +RAPPRISE +RAPPRIT +RAPSODE +RAPSODIE +RAPT +RAPURE +RAQUA +RAQUAI +RAQUAIT +RAQUANT +RAQUASSE +RAQUAT +RAQUE +RAQUEE +RAQUENT +RAQUER +RAQUERA +RAQUERAI +RAQUEREZ +RAQUETTE +RAQUEZ +RAQUIEZ +RARE +RAREFIA +RAREFIAI +RAREFIAT +RAREFIE +RAREFIEE +RAREFIER +RAREFIEZ +RAREMENT +RARETE +RASA +RASADE +RASAGE +RASAI +RASAIT +RASANCE +RASANT +RASASSE +RASAT +RASCASSE +RASE +RASEE +RASENT +RASER +RASERA +RASERAI +RASERAIT +RASERENT +RASEREZ +RASERIEZ +RASETTE +RASEUR +RASEUSE +RASEZ +RASH +RASIEZ +RASOIR +RASSASIA +RASSASIE +RASSEOIR +RASSEYE +RASSEYEZ +RASSIED +RASSIERA +RASSISE +RASSISSE +RASSIT +RASSOIE +RASSOIT +RASSORTI +RASSOYEZ +RASSURA +RASSURAI +RASSURAT +RASSURE +RASSUREE +RASSURER +RASSUREZ +RASTA +RATA +RATAFIA +RATAGE +RATAI +RATAIT +RATANT +RATAPLAN +RATASSE +RATAT +RATATINA +RATATINE +RATE +RATEAU +RATEE +RATEL +RATELA +RATELAGE +RATELAI +RATELAIT +RATELANT +RATELAT +RATELE +RATELEE +RATELER +RATELEUR +RATELEZ +RATELIER +RATELIEZ +RATELLE +RATENT +RATER +RATERA +RATERAI +RATERAIT +RATERENT +RATEREZ +RATERIEZ +RATEZ +RATICHON +RATIER +RATIERE +RATIEZ +RATIFIA +RATIFIE +RATIFIEE +RATIFIER +RATIFIEZ +RATINA +RATINAGE +RATINAI +RATINAIT +RATINANT +RATINAT +RATINE +RATINEE +RATINENT +RATINER +RATINERA +RATINEZ +RATINIEZ +RATIO +RATION +RATIONAL +RATIONNA +RATIONNE +RATISSA +RATISSAI +RATISSAT +RATISSE +RATISSEE +RATISSER +RATON +RATTACHA +RATTACHE +RATTRAPA +RATTRAPE +RATURA +RATURAGE +RATURAI +RATURAIT +RATURANT +RATURAT +RATURE +RATUREE +RATURENT +RATURER +RATURERA +RATUREZ +RATURIEZ +RAUCHEUR +RAUCITE +RAUQUE +RAVAGE +RAVAGEA +RAVAGEAI +RAVAGEAT +RAVAGEE +RAVAGENT +RAVAGER +RAVAGERA +RAVAGEUR +RAVAGEZ +RAVAGIEZ +RAVALA +RAVALAI +RAVALAIT +RAVALANT +RAVALAT +RAVALE +RAVALEE +RAVALENT +RAVALER +RAVALERA +RAVALEUR +RAVALEZ +RAVALIEZ +RAVAUDA +RAVAUDAI +RAVAUDAT +RAVAUDE +RAVAUDEE +RAVAUDER +RAVAUDEZ +RAVE +RAVELIN +RAVENALA +RAVI +RAVIE +RAVIER +RAVIERE +RAVIGOTA +RAVIGOTE +RAVILI +RAVILIE +RAVILIR +RAVILIRA +RAVILIT +RAVIN +RAVINA +RAVINAI +RAVINAIT +RAVINANT +RAVINAT +RAVINE +RAVINEE +RAVINENT +RAVINER +RAVINERA +RAVINEZ +RAVINIEZ +RAVIOLI +RAVIR +RAVIRA +RAVIRAI +RAVIRAIT +RAVIRENT +RAVIREZ +RAVIRIEZ +RAVIRONT +RAVISA +RAVISAI +RAVISAIT +RAVISANT +RAVISAT +RAVISE +RAVISEE +RAVISENT +RAVISER +RAVISERA +RAVISEZ +RAVISIEZ +RAVISSE +RAVIT +RAVIVA +RAVIVAGE +RAVIVAI +RAVIVAIT +RAVIVANT +RAVIVAT +RAVIVE +RAVIVEE +RAVIVENT +RAVIVER +RAVIVERA +RAVIVEZ +RAVIVIEZ +RAVOIR +RAYA +RAYAGE +RAYAI +RAYAIT +RAYANT +RAYASSE +RAYAT +RAYE +RAYEE +RAYENT +RAYER +RAYERA +RAYERAI +RAYERAIT +RAYERE +RAYERENT +RAYEREZ +RAYERIEZ +RAYEZ +RAYIEZ +RAYON +RAYONNA +RAYONNAI +RAYONNAT +RAYONNE +RAYONNEE +RAYONNER +RAYONNEZ +RAYURE +RAZZIA +RAZZIAI +RAZZIAIT +RAZZIANT +RAZZIAT +RAZZIE +RAZZIEE +RAZZIENT +RAZZIER +RAZZIERA +RAZZIEZ +RAZZIIEZ +REABONNA +REABONNE +REAC +REACTEUR +REACTIF +REACTION +REACTIVA +REACTIVE +READAPTA +READAPTE +READMET +READMISE +READMIT +REAFFUTA +REAFFUTE +REAGI +REAGIR +REAGIRA +REAGIRAI +REAGIREZ +REAGISSE +REAGIT +REAI +REAIT +REAJUSTA +REAJUSTE +REAL +REALE +REALESA +REALESAI +REALESAT +REALESE +REALESEE +REALESER +REALESEZ +REALGAR +REALIGNA +REALIGNE +REALISA +REALISAI +REALISAT +REALISE +REALISEE +REALISER +REALISEZ +REALISME +REALISTE +REALITE +REAMORCA +REAMORCE +REANIMA +REANIMAI +REANIMAT +REANIME +REANIMEE +REANIMER +REANIMEZ +REANT +REAPPARU +REAPPRIT +REARMA +REARMAI +REARMAIT +REARMANT +REARMAT +REARME +REARMEE +REARMENT +REARMER +REARMERA +REARMEZ +REARMIEZ +REASSE +REASSURA +REASSURE +REAT +REBAB +REBAISSA +REBAISSE +REBANDA +REBANDAI +REBANDAT +REBANDE +REBANDEE +REBANDER +REBANDEZ +REBAT +REBATI +REBATIE +REBATIR +REBATIRA +REBATIT +REBATTE +REBATTEZ +REBATTIT +REBATTRA +REBATTRE +REBATTU +REBATTUE +REBEC +REBELLA +REBELLAI +REBELLAT +REBELLE +REBELLEE +REBELLER +REBELLEZ +REBIFFA +REBIFFAI +REBIFFAT +REBIFFE +REBIFFEE +REBIFFER +REBIFFEZ +REBIQUA +REBIQUAI +REBIQUAT +REBIQUE +REBIQUEE +REBIQUER +REBIQUEZ +REBOISA +REBOISAI +REBOISAT +REBOISE +REBOISEE +REBOISER +REBOISEZ +REBOND +REBONDI +REBONDIR +REBONDIT +REBORD +REBORDA +REBORDAI +REBORDAT +REBORDE +REBORDEE +REBORDER +REBORDEZ +REBOUCHA +REBOUCHE +REBOUTA +REBOUTAI +REBOUTAT +REBOUTE +REBOUTEE +REBOUTER +REBOUTEZ +REBRODA +REBRODAI +REBRODAT +REBRODE +REBRODEE +REBRODER +REBRODEZ +REBRULA +REBRULAI +REBRULAT +REBRULE +REBRULEE +REBRULER +REBRULEZ +REBUT +REBUTA +REBUTAI +REBUTAIT +REBUTANT +REBUTAT +REBUTE +REBUTEE +REBUTENT +REBUTER +REBUTERA +REBUTEZ +REBUTIEZ +RECALA +RECALAI +RECALAIT +RECALANT +RECALAT +RECALE +RECALEE +RECALENT +RECALER +RECALERA +RECALEZ +RECALIEZ +RECARDA +RECARDAI +RECARDAT +RECARDE +RECARDEE +RECARDER +RECARDEZ +RECASA +RECASAI +RECASAIT +RECASANT +RECASAT +RECASE +RECASEE +RECASENT +RECASER +RECASERA +RECASEZ +RECASIEZ +RECAUSA +RECAUSAI +RECAUSAT +RECAUSE +RECAUSER +RECAUSEZ +RECEDA +RECEDAI +RECEDAIT +RECEDANT +RECEDAT +RECEDE +RECEDEE +RECEDENT +RECEDER +RECEDERA +RECEDEZ +RECEDIEZ +RECEL +RECELA +RECELAI +RECELAIT +RECELANT +RECELAT +RECELE +RECELEE +RECELENT +RECELER +RECELERA +RECELEUR +RECELEZ +RECELIEZ +RECENSA +RECENSAI +RECENSAT +RECENSE +RECENSEE +RECENSER +RECENSEZ +RECENT +RECENTE +RECENTRA +RECENTRE +RECEPA +RECEPAGE +RECEPAI +RECEPAIT +RECEPANT +RECEPAT +RECEPE +RECEPEE +RECEPENT +RECEPER +RECEPERA +RECEPEZ +RECEPIEZ +RECEPTIF +RECERCLA +RECERCLE +RECESSIF +RECETTE +RECEVAIT +RECEVANT +RECEVEUR +RECEVEZ +RECEVIEZ +RECEVOIR +RECEVRA +RECEVRAI +RECEVREZ +RECEZ +RECHAMPI +RECHANGE +RECHANTA +RECHAPA +RECHAPAI +RECHAPAT +RECHAPE +RECHAPEE +RECHAPER +RECHAPEZ +RECHAPPA +RECHAPPE +RECHARGE +RECHASSA +RECHASSE +RECHAUD +RECHE +RECHIGNA +RECHIGNE +RECHUTA +RECHUTAI +RECHUTAT +RECHUTE +RECHUTER +RECHUTEZ +RECIDIVA +RECIDIVE +RECIF +RECIFAL +RECIFALE +RECIT +RECITA +RECITAI +RECITAIT +RECITAL +RECITANT +RECITAT +RECITE +RECITEE +RECITENT +RECITER +RECITERA +RECITEZ +RECITIEZ +RECLAMA +RECLAMAI +RECLAMAT +RECLAME +RECLAMEE +RECLAMER +RECLAMEZ +RECLASSA +RECLASSE +RECLINA +RECLINAI +RECLINAT +RECLINE +RECLINER +RECLINEZ +RECLOUA +RECLOUAI +RECLOUAT +RECLOUE +RECLOUEE +RECLOUER +RECLOUEZ +RECLURE +RECLUSE +RECOIFFA +RECOIFFE +RECOIN +RECOIT +RECOIVE +RECOLA +RECOLAI +RECOLAIT +RECOLANT +RECOLAT +RECOLE +RECOLEE +RECOLENT +RECOLER +RECOLERA +RECOLEZ +RECOLIEZ +RECOLLA +RECOLLAI +RECOLLAT +RECOLLE +RECOLLEE +RECOLLER +RECOLLET +RECOLLEZ +RECOLORA +RECOLORE +RECOLTA +RECOLTAI +RECOLTAT +RECOLTE +RECOLTEE +RECOLTER +RECOLTEZ +RECOMPTA +RECOMPTE +RECONNU +RECONNUE +RECONNUT +RECOPIA +RECOPIAI +RECOPIAT +RECOPIE +RECOPIEE +RECOPIER +RECOPIEZ +RECORD +RECORDA +RECORDAI +RECORDAT +RECORDE +RECORDEE +RECORDER +RECORDEZ +RECOUCHA +RECOUCHE +RECOUD +RECOUDRA +RECOUDRE +RECOUPA +RECOUPAI +RECOUPAT +RECOUPE +RECOUPEE +RECOUPER +RECOUPEZ +RECOURBA +RECOURBE +RECOURE +RECOUREZ +RECOURIR +RECOURRA +RECOURT +RECOURU +RECOURUE +RECOURUT +RECOUSE +RECOUSEZ +RECOUSIT +RECOUSU +RECOUSUE +RECOUVRA +RECOUVRE +RECOUVRU +RECRACHA +RECRACHE +RECREA +RECREAI +RECREAIT +RECREANT +RECREAT +RECREE +RECREEE +RECREENT +RECREER +RECREERA +RECREEZ +RECREIEZ +RECREPI +RECREPIE +RECREPIR +RECREPIT +RECREUSA +RECREUSE +RECRIA +RECRIAI +RECRIAIT +RECRIANT +RECRIAT +RECRIE +RECRIEE +RECRIENT +RECRIER +RECRIERA +RECRIEZ +RECRIIEZ +RECRIRA +RECRIRAI +RECRIRE +RECRIREZ +RECRIT +RECRITE +RECRIVE +RECRIVEZ +RECRIVIT +RECROISE +RECROIT +RECRU +RECRUE +RECRUSSE +RECRUT +RECRUTA +RECRUTAI +RECRUTAT +RECRUTE +RECRUTEE +RECRUTER +RECRUTEZ +RECTA +RECTAL +RECTALE +RECTEUR +RECTIFIA +RECTIFIE +RECTION +RECTITE +RECTO +RECTORAL +RECTORAT +RECTRICE +RECTUM +RECU +RECUE +RECUEIL +RECUIRA +RECUIRAI +RECUIRE +RECUIREZ +RECUISE +RECUISEZ +RECUISIT +RECUIT +RECUITE +RECUL +RECULA +RECULADE +RECULAI +RECULAIT +RECULANT +RECULAT +RECULE +RECULEE +RECULENT +RECULER +RECULERA +RECULEZ +RECULIEZ +RECUPERA +RECUPERE +RECURA +RECURAGE +RECURAI +RECURAIT +RECURANT +RECURAT +RECURE +RECUREE +RECURENT +RECURER +RECURERA +RECUREZ +RECURIEZ +RECURSIF +RECUSA +RECUSAI +RECUSAIT +RECUSANT +RECUSAT +RECUSE +RECUSEE +RECUSENT +RECUSER +RECUSERA +RECUSEZ +RECUSIEZ +RECUSSE +RECUT +RECYCLA +RECYCLAI +RECYCLAT +RECYCLE +RECYCLEE +RECYCLER +RECYCLEZ +REDAN +REDEFAIT +REDEFERA +REDEFINI +REDEFIT +REDEFONT +REDEMOLI +REDENT +REDENTE +REDENTEE +REDEVAIT +REDEVANT +REDEVENU +REDEVEZ +REDEVIEZ +REDEVINT +REDEVOIR +REDEVRA +REDEVRAI +REDEVREZ +REDIE +REDIGE +REDIGEA +REDIGEAI +REDIGEAT +REDIGEE +REDIGENT +REDIGER +REDIGERA +REDIGEZ +REDIGIEZ +REDIMA +REDIMAI +REDIMAIT +REDIMANT +REDIMAT +REDIME +REDIMEE +REDIMENT +REDIMER +REDIMERA +REDIMEZ +REDIMIEZ +REDIRA +REDIRAI +REDIRAIT +REDIRE +REDIRENT +REDIREZ +REDIRIEZ +REDIRONT +REDISAIT +REDISANT +REDISE +REDISENT +REDISIEZ +REDISSE +REDIT +REDITE +REDOIT +REDOIVE +REDONDA +REDONDAI +REDONDAT +REDONDE +REDONDER +REDONDEZ +REDONNA +REDONNAI +REDONNAT +REDONNE +REDONNEE +REDONNER +REDONNEZ +REDORA +REDORAI +REDORAIT +REDORANT +REDORAT +REDORE +REDOREE +REDORENT +REDORER +REDORERA +REDOREZ +REDORIEZ +REDOUBLA +REDOUBLE +REDOUTA +REDOUTAI +REDOUTAT +REDOUTE +REDOUTEE +REDOUTER +REDOUTEZ +REDOUX +REDRESSA +REDRESSE +REDU +REDUE +REDUIRA +REDUIRAI +REDUIRE +REDUIREZ +REDUISE +REDUISEZ +REDUISIT +REDUIT +REDUITE +REDURENT +REDUSSE +REDUT +REDUVE +REECOUTA +REECOUTE +REEDIFIA +REEDIFIE +REEDITA +REEDITAI +REEDITAT +REEDITE +REEDITEE +REEDITER +REEDITEZ +REEDUQUA +REEDUQUE +REEL +REELIRA +REELIRAI +REELIRE +REELIREZ +REELISE +REELISEZ +REELIT +REELLE +REELU +REELUE +REELUSSE +REELUT +REEMPLOI +REENGAGE +REENT +REER +REERA +REERAI +REERAIT +REERENT +REEREZ +REERIEZ +REESSAIE +REESSAYA +REESSAYE +REEVALUA +REEVALUE +REEXAMEN +REEZ +REFAIRE +REFAIT +REFAITE +REFASSE +REFEND +REFENDE +REFENDEZ +REFENDIT +REFENDRA +REFENDRE +REFENDU +REFENDUE +REFERA +REFERAI +REFERAIT +REFERANT +REFERAT +REFERE +REFEREE +REFERENT +REFERER +REFERERA +REFEREZ +REFERIEZ +REFERMA +REFERMAI +REFERMAT +REFERME +REFERMEE +REFERMER +REFERMEZ +REFILA +REFILAI +REFILAIT +REFILANT +REFILAT +REFILE +REFILEE +REFILENT +REFILER +REFILERA +REFILEZ +REFILIEZ +REFIRENT +REFISSE +REFIT +REFLECHI +REFLET +REFLETA +REFLETAI +REFLETAT +REFLETE +REFLETEE +REFLETER +REFLETEZ +REFLEURI +REFLEX +REFLEXE +REFLEXIF +REFLUA +REFLUAI +REFLUAIT +REFLUANT +REFLUAT +REFLUE +REFLUENT +REFLUER +REFLUERA +REFLUEZ +REFLUIEZ +REFLUX +REFOND +REFONDE +REFONDEZ +REFONDIT +REFONDRA +REFONDRE +REFONDU +REFONDUE +REFONT +REFONTE +REFORGE +REFORGEA +REFORGEE +REFORGER +REFORGEZ +REFORMA +REFORMAI +REFORMAT +REFORME +REFORMEE +REFORMER +REFORMEZ +REFOULA +REFOULAI +REFOULAT +REFOULE +REFOULEE +REFOULER +REFOULEZ +REFOURRA +REFOURRE +REFRACTA +REFRACTE +REFRAIN +REFRENA +REFRENAI +REFRENAT +REFRENE +REFRENEE +REFRENER +REFRENEZ +REFROIDI +REFUGE +REFUGIA +REFUGIAI +REFUGIAT +REFUGIE +REFUGIEE +REFUGIER +REFUGIEZ +REFUSA +REFUSAI +REFUSAIT +REFUSANT +REFUSAT +REFUSE +REFUSEE +REFUSENT +REFUSER +REFUSERA +REFUSEZ +REFUSIEZ +REFUTA +REFUTAI +REFUTAIT +REFUTANT +REFUTAT +REFUTE +REFUTEE +REFUTENT +REFUTER +REFUTERA +REFUTEZ +REFUTIEZ +REFUZNIK +REGAGNA +REGAGNAI +REGAGNAT +REGAGNE +REGAGNEE +REGAGNER +REGAGNEZ +REGAIN +REGAL +REGALA +REGALADE +REGALAGE +REGALAI +REGALAIT +REGALANT +REGALAT +REGALE +REGALEE +REGALENT +REGALER +REGALERA +REGALEZ +REGALIEN +REGALIEZ +REGARD +REGARDA +REGARDAI +REGARDAT +REGARDE +REGARDEE +REGARDER +REGARDEZ +REGARNI +REGARNIE +REGARNIR +REGARNIT +REGATA +REGATAI +REGATAIT +REGATANT +REGATAT +REGATE +REGATENT +REGATER +REGATERA +REGATEZ +REGATIER +REGATIEZ +REGENCE +REGENERA +REGENERE +REGENT +REGENTA +REGENTAI +REGENTAT +REGENTE +REGENTEE +REGENTER +REGENTEZ +REGGAE +REGI +REGICIDE +REGIE +REGIMBA +REGIMBAI +REGIMBAT +REGIMBE +REGIMBEE +REGIMBER +REGIMBEZ +REGIME +REGIMENT +REGION +REGIONAL +REGIR +REGIRA +REGIRAI +REGIRAIT +REGIRENT +REGIREZ +REGIRIEZ +REGIRONT +REGISSE +REGISTRA +REGISTRE +REGIT +REGLA +REGLABLE +REGLAGE +REGLAI +REGLAIT +REGLANT +REGLASSE +REGLAT +REGLE +REGLEE +REGLENT +REGLER +REGLERA +REGLERAI +REGLEREZ +REGLET +REGLETTE +REGLEUR +REGLEUSE +REGLEZ +REGLIEZ +REGLISSE +REGLO +REGLOIR +REGLURE +REGNA +REGNAI +REGNAIT +REGNANT +REGNASSE +REGNAT +REGNE +REGNENT +REGNER +REGNERA +REGNERAI +REGNEREZ +REGNEZ +REGNIEZ +REGONFLA +REGONFLE +REGORGE +REGORGEA +REGORGER +REGORGEZ +REGRAT +REGRATTA +REGRATTE +REGREA +REGREAI +REGREAIT +REGREANT +REGREAT +REGREE +REGREEE +REGREENT +REGREER +REGREERA +REGREEZ +REGREFFA +REGREFFE +REGREIEZ +REGRESSA +REGRESSE +REGRET +REGRETTA +REGRETTE +REGRIMPA +REGRIMPE +REGROSSI +REGROUPA +REGROUPE +REGULE +REGULIER +REHAUSSA +REHAUSSE +REHAUT +REIEZ +REIFIA +REIFIAI +REIFIAIT +REIFIANT +REIFIAT +REIFIE +REIFIEE +REIFIENT +REIFIER +REIFIERA +REIFIEZ +REIFIIEZ +REIMPOSA +REIMPOSE +REIN +REINE +REINETTE +REINSERA +REINSERE +REINVITA +REINVITE +REITERA +REITERAI +REITERAT +REITERE +REITEREE +REITERER +REITEREZ +REITRE +REJAILLI +REJET +REJETA +REJETAI +REJETAIT +REJETANT +REJETAT +REJETE +REJETEE +REJETER +REJETEZ +REJETIEZ +REJETON +REJETTE +REJOIGNE +REJOINT +REJOINTE +REJOUA +REJOUAI +REJOUAIT +REJOUANT +REJOUAT +REJOUE +REJOUEE +REJOUENT +REJOUER +REJOUERA +REJOUEZ +REJOUI +REJOUIE +REJOUIEZ +REJOUIR +REJOUIRA +REJOUIT +REJUGE +REJUGEA +REJUGEAI +REJUGEAT +REJUGEE +REJUGENT +REJUGER +REJUGERA +REJUGEZ +REJUGIEZ +RELACHA +RELACHAI +RELACHAT +RELACHE +RELACHEE +RELACHER +RELACHEZ +RELAIE +RELAIERA +RELAISSA +RELAISSE +RELANCA +RELANCAI +RELANCAT +RELANCE +RELANCEE +RELANCER +RELANCEZ +RELAPSE +RELARGI +RELARGIE +RELARGIR +RELARGIT +RELATA +RELATAI +RELATAIT +RELATANT +RELATAT +RELATE +RELATEE +RELATENT +RELATER +RELATERA +RELATEZ +RELATIEZ +RELATIF +RELATION +RELATIVE +RELAVA +RELAVAI +RELAVAIT +RELAVANT +RELAVAT +RELAVE +RELAVEE +RELAVENT +RELAVER +RELAVERA +RELAVEZ +RELAVIEZ +RELAX +RELAXA +RELAXAI +RELAXAIT +RELAXANT +RELAXAT +RELAXE +RELAXEE +RELAXENT +RELAXER +RELAXERA +RELAXEZ +RELAXIEZ +RELAYA +RELAYAI +RELAYAIT +RELAYANT +RELAYAT +RELAYE +RELAYEE +RELAYENT +RELAYER +RELAYERA +RELAYEUR +RELAYEZ +RELAYIEZ +RELEGUA +RELEGUAI +RELEGUAT +RELEGUE +RELEGUEE +RELEGUER +RELEGUEZ +RELENT +RELEVA +RELEVAI +RELEVAIT +RELEVANT +RELEVAT +RELEVE +RELEVEE +RELEVENT +RELEVER +RELEVERA +RELEVEUR +RELEVEZ +RELEVIEZ +RELIA +RELIAI +RELIAIT +RELIANT +RELIASSE +RELIAT +RELIE +RELIEE +RELIEF +RELIENT +RELIER +RELIERA +RELIERAI +RELIEREZ +RELIEUR +RELIEUSE +RELIEZ +RELIGION +RELIIEZ +RELIQUAT +RELIQUE +RELIRA +RELIRAI +RELIRAIT +RELIRE +RELIREZ +RELIRIEZ +RELIRONT +RELISAIT +RELISANT +RELISE +RELISENT +RELISEZ +RELISIEZ +RELIT +RELIURE +RELOGE +RELOGEA +RELOGEAI +RELOGEAT +RELOGEE +RELOGENT +RELOGER +RELOGERA +RELOGEZ +RELOGIEZ +RELOUA +RELOUAI +RELOUAIT +RELOUANT +RELOUAT +RELOUE +RELOUEE +RELOUENT +RELOUER +RELOUERA +RELOUEZ +RELOUIEZ +RELU +RELUE +RELUIRA +RELUIRAI +RELUIRE +RELUIREZ +RELUISE +RELUISEZ +RELUISIT +RELUIT +RELUITE +RELUQUA +RELUQUAI +RELUQUAT +RELUQUE +RELUQUEE +RELUQUER +RELUQUEZ +RELURENT +RELUSSE +RELUT +REMACHA +REMACHAI +REMACHAT +REMACHE +REMACHEE +REMACHER +REMACHEZ +REMAILLA +REMAILLE +REMAKE +REMANENT +REMANGE +REMANGEA +REMANGEE +REMANGER +REMANGEZ +REMANIA +REMANIAI +REMANIAT +REMANIE +REMANIEE +REMANIER +REMANIEZ +REMARCHA +REMARCHE +REMARIA +REMARIAI +REMARIAT +REMARIE +REMARIEE +REMARIER +REMARIEZ +REMARQUA +REMARQUE +REMBALLA +REMBALLE +REMBARRA +REMBARRE +REMBINA +REMBINAI +REMBINAT +REMBINE +REMBINEE +REMBINER +REMBINEZ +REMBLAI +REMBLAIE +REMBLAVA +REMBLAVE +REMBLAYA +REMBLAYE +REMBOITA +REMBOITE +REMBOUGE +REMBRUNI +REMBUCHA +REMBUCHE +REMEDE +REMEDIA +REMEDIAI +REMEDIAT +REMEDIE +REMEDIER +REMEDIEZ +REMEMBRA +REMEMBRE +REMEMORA +REMEMORE +REMERCIA +REMERCIE +REMERE +REMET +REMETTE +REMETTEZ +REMETTRA +REMETTRE +REMEUBLA +REMEUBLE +REMIGE +REMIRENT +REMISA +REMISAGE +REMISAI +REMISAIT +REMISANT +REMISAT +REMISE +REMISEE +REMISENT +REMISER +REMISERA +REMISEZ +REMISIER +REMISIEZ +REMISSE +REMIT +REMIZ +REMMENA +REMMENAI +REMMENAT +REMMENE +REMMENEE +REMMENER +REMMENEZ +REMODELA +REMODELE +REMONTA +REMONTAI +REMONTAT +REMONTE +REMONTEE +REMONTER +REMONTEZ +REMONTRA +REMONTRE +REMORA +REMORD +REMORDE +REMORDEZ +REMORDIT +REMORDRA +REMORDRE +REMORDU +REMORDUE +REMORQUA +REMORQUE +REMOUCHA +REMOUCHE +REMOUD +REMOUDRA +REMOUDRE +REMOULE +REMOULEZ +REMOULU +REMOULUE +REMOULUT +REMPARA +REMPARAI +REMPARAT +REMPARE +REMPAREE +REMPARER +REMPAREZ +REMPART +REMPIETA +REMPIETE +REMPILA +REMPILAI +REMPILAT +REMPILE +REMPILEE +REMPILER +REMPILEZ +REMPLACA +REMPLACE +REMPLAGE +REMPLI +REMPLIA +REMPLIAI +REMPLIAT +REMPLIE +REMPLIEE +REMPLIER +REMPLIEZ +REMPLIR +REMPLIRA +REMPLIT +REMPLOI +REMPLOIE +REMPLOYA +REMPLOYE +REMPLUMA +REMPLUME +REMPOCHA +REMPOCHE +REMPORTA +REMPORTE +REMPOTA +REMPOTAI +REMPOTAT +REMPOTE +REMPOTEE +REMPOTER +REMPOTEZ +REMUA +REMUAI +REMUAIT +REMUANT +REMUASSE +REMUAT +REMUE +REMUEE +REMUENT +REMUER +REMUERA +REMUERAI +REMUEREZ +REMUEZ +REMUGLE +REMUIEZ +REMUNERA +REMUNERE +RENACLA +RENACLAI +RENACLAT +RENACLE +RENACLER +RENACLEZ +RENAISSE +RENAIT +RENAITRA +RENAITRE +RENAL +RENALE +RENAQUIT +RENARD +RENARDA +RENARDAI +RENARDAT +RENARDE +RENARDER +RENARDEZ +RENAUDA +RENAUDAI +RENAUDAT +RENAUDE +RENAUDER +RENAUDEZ +RENCARD +RENCARDA +RENCARDE +RENCART +RENCHERI +RENCOGNA +RENCOGNE +REND +RENDAIT +RENDANT +RENDE +RENDENT +RENDEZ +RENDIEZ +RENDISSE +RENDIT +RENDORME +RENDORMI +RENDORT +RENDOSSA +RENDOSSE +RENDRA +RENDRAI +RENDRAIT +RENDRE +RENDREZ +RENDRIEZ +RENDRONT +RENDU +RENDUE +RENE +RENEE +RENEGAT +RENEGATE +RENEIGE +RENEIGEA +RENEIGER +RENETTE +RENFAITA +RENFAITE +RENFERMA +RENFERME +RENFILA +RENFILAI +RENFILAT +RENFILE +RENFILEE +RENFILER +RENFILEZ +RENFLA +RENFLAI +RENFLAIT +RENFLANT +RENFLAT +RENFLE +RENFLEE +RENFLENT +RENFLER +RENFLERA +RENFLEZ +RENFLIEZ +RENFLOUA +RENFLOUE +RENFONCA +RENFONCE +RENFORCA +RENFORCE +RENFORMI +RENFORT +RENGAGE +RENGAGEA +RENGAGEE +RENGAGER +RENGAGEZ +RENGAINA +RENGAINE +RENGORGE +RENGRENA +RENGRENE +RENIA +RENIAI +RENIAIT +RENIANT +RENIASSE +RENIAT +RENIE +RENIEE +RENIENT +RENIER +RENIERA +RENIERAI +RENIEREZ +RENIEZ +RENIFLA +RENIFLAI +RENIFLAT +RENIFLE +RENIFLEE +RENIFLER +RENIFLEZ +RENIIEZ +RENNE +RENOM +RENOMMA +RENOMMAI +RENOMMAT +RENOMME +RENOMMEE +RENOMMER +RENOMMEZ +RENONCA +RENONCAI +RENONCAT +RENONCE +RENONCEE +RENONCER +RENONCEZ +RENOUA +RENOUAI +RENOUAIT +RENOUANT +RENOUAT +RENOUE +RENOUEE +RENOUENT +RENOUER +RENOUERA +RENOUEZ +RENOUIEZ +RENOVA +RENOVAI +RENOVAIT +RENOVANT +RENOVAT +RENOVE +RENOVEE +RENOVENT +RENOVER +RENOVERA +RENOVEZ +RENOVIEZ +RENTA +RENTABLE +RENTAI +RENTAIT +RENTAMA +RENTAMAI +RENTAMAT +RENTAME +RENTAMEE +RENTAMER +RENTAMEZ +RENTANT +RENTASSE +RENTAT +RENTE +RENTEE +RENTENT +RENTER +RENTERA +RENTERAI +RENTEREZ +RENTEZ +RENTIER +RENTIERE +RENTIEZ +RENTOILA +RENTOILE +RENTRA +RENTRAI +RENTRAIT +RENTRANT +RENTRAT +RENTRE +RENTREE +RENTRENT +RENTRER +RENTRERA +RENTREZ +RENTRIEZ +RENVERGE +RENVERRA +RENVERSA +RENVERSE +RENVIA +RENVIAI +RENVIAIT +RENVIANT +RENVIAT +RENVIDA +RENVIDAI +RENVIDAT +RENVIDE +RENVIDEE +RENVIDER +RENVIDEZ +RENVIE +RENVIEE +RENVIENT +RENVIER +RENVIERA +RENVIEZ +RENVIIEZ +RENVOI +RENVOIE +RENVOYA +RENVOYAI +RENVOYAT +RENVOYE +RENVOYEE +RENVOYER +RENVOYEZ +REOCCUPA +REOCCUPE +REOPERA +REOPERAI +REOPERAT +REOPERE +REOPEREE +REOPERER +REOPEREZ +REPAIE +REPAIERA +REPAIRA +REPAIRAI +REPAIRAT +REPAIRE +REPAIRER +REPAIREZ +REPAISSE +REPAIT +REPAITRA +REPAITRE +REPAND +REPANDE +REPANDEZ +REPANDIT +REPANDRA +REPANDRE +REPANDU +REPANDUE +REPARA +REPARAI +REPARAIT +REPARANT +REPARAT +REPARE +REPAREE +REPARENT +REPARER +REPARERA +REPAREZ +REPARIEZ +REPARLA +REPARLAI +REPARLAT +REPARLE +REPARLER +REPARLEZ +REPART +REPARTE +REPARTEZ +REPARTI +REPARTIE +REPARTIR +REPARTIT +REPARU +REPARUE +REPARUT +REPASSA +REPASSAI +REPASSAT +REPASSE +REPASSEE +REPASSER +REPATINA +REPATINE +REPAVA +REPAVAI +REPAVAIT +REPAVANT +REPAVAT +REPAVE +REPAVEE +REPAVENT +REPAVER +REPAVERA +REPAVEZ +REPAVIEZ +REPAYA +REPAYAI +REPAYAIT +REPAYANT +REPAYAT +REPAYE +REPAYEE +REPAYENT +REPAYER +REPAYERA +REPAYEZ +REPAYIEZ +REPECHA +REPECHAI +REPECHAT +REPECHE +REPECHEE +REPECHER +REPECHEZ +REPEIGNA +REPEIGNE +REPEINT +REPEINTE +REPEND +REPENDE +REPENDEZ +REPENDIT +REPENDRA +REPENDRE +REPENDU +REPENDUE +REPENSA +REPENSAI +REPENSAT +REPENSE +REPENSEE +REPENSER +REPENSEZ +REPENT +REPENTE +REPENTEZ +REPENTI +REPENTIE +REPENTIR +REPENTIT +REPERA +REPERAGE +REPERAI +REPERAIT +REPERANT +REPERAT +REPERCA +REPERCAI +REPERCAT +REPERCE +REPERCEE +REPERCER +REPERCEZ +REPERD +REPERDE +REPERDEZ +REPERDIT +REPERDRA +REPERDRE +REPERDU +REPERDUE +REPERE +REPEREE +REPERENT +REPERER +REPERERA +REPEREZ +REPERIEZ +REPETA +REPETAI +REPETAIT +REPETANT +REPETAT +REPETE +REPETEE +REPETENT +REPETER +REPETERA +REPETEUR +REPETEZ +REPETIEZ +REPEUPLA +REPEUPLE +REPIC +REPINCA +REPINCAI +REPINCAT +REPINCE +REPINCEE +REPINCER +REPINCEZ +REPIQUA +REPIQUAI +REPIQUAT +REPIQUE +REPIQUEE +REPIQUER +REPIQUEZ +REPIT +REPLACA +REPLACAI +REPLACAT +REPLACE +REPLACEE +REPLACER +REPLACEZ +REPLANTA +REPLATRA +REPLATRE +REPLET +REPLETE +REPLETIF +REPLEUT +REPLEUVE +REPLI +REPLIA +REPLIAI +REPLIAIT +REPLIANT +REPLIAT +REPLIE +REPLIEE +REPLIENT +REPLIER +REPLIERA +REPLIEZ +REPLIIEZ +REPLIQUA +REPLIQUE +REPLISSA +REPLISSE +REPLOIE +REPLONGE +REPLOYA +REPLOYAI +REPLOYAT +REPLOYE +REPLOYEE +REPLOYER +REPLOYEZ +REPLU +REPLUT +REPOLI +REPOLIE +REPOLIR +REPOLIRA +REPOLIT +REPOND +REPONDE +REPONDEZ +REPONDIT +REPONDRA +REPONDRE +REPONDU +REPONDUE +REPONSE +REPORT +REPORTA +REPORTAI +REPORTAT +REPORTE +REPORTEE +REPORTER +REPORTEZ +REPOSA +REPOSAI +REPOSAIT +REPOSANT +REPOSAT +REPOSE +REPOSEE +REPOSENT +REPOSER +REPOSERA +REPOSEZ +REPOSIEZ +REPOSOIR +REPOUSSA +REPOUSSE +REPREND +REPRENEZ +REPRENNE +REPRIMA +REPRIMAI +REPRIMAT +REPRIME +REPRIMEE +REPRIMER +REPRIMEZ +REPRISA +REPRISAI +REPRISAT +REPRISE +REPRISEE +REPRISER +REPRISEZ +REPRISSE +REPRIT +REPROCHA +REPROCHE +REPROUVA +REPROUVE +REPTILE +REPU +REPUDIA +REPUDIAI +REPUDIAT +REPUDIE +REPUDIEE +REPUDIER +REPUDIEZ +REPUE +REPUGNA +REPUGNAI +REPUGNAT +REPUGNE +REPUGNER +REPUGNEZ +REPURENT +REPUSSE +REPUT +REPUTA +REPUTAI +REPUTAIT +REPUTANT +REPUTAT +REPUTE +REPUTEE +REPUTENT +REPUTER +REPUTERA +REPUTEZ +REPUTIEZ +REQUEREZ +REQUERIR +REQUERRA +REQUERU +REQUERUE +REQUETE +REQUIEM +REQUIERE +REQUIERT +REQUIN +REQUISE +REQUISIT +REQUISSE +REQUIT +REROISA +REROISAI +REROISAT +RESALA +RESALAI +RESALAIT +RESALANT +RESALAT +RESALE +RESALEE +RESALENT +RESALER +RESALERA +RESALEZ +RESALI +RESALIE +RESALIEZ +RESALIR +RESALIRA +RESALUA +RESALUAI +RESALUAT +RESALUE +RESALUEE +RESALUER +RESALUEZ +RESCAPE +RESCAPEE +RESCINDA +RESCINDE +RESCRIT +RESEAU +RESEDA +RESEQUA +RESEQUAI +RESEQUAT +RESEQUE +RESEQUEE +RESEQUER +RESEQUEZ +RESERVA +RESERVAI +RESERVAT +RESERVE +RESERVEE +RESERVER +RESERVEZ +RESIDA +RESIDAI +RESIDAIT +RESIDANT +RESIDAT +RESIDE +RESIDENT +RESIDER +RESIDERA +RESIDEZ +RESIDIEZ +RESIDU +RESIDUEL +RESIGNA +RESIGNAI +RESIGNAT +RESIGNE +RESIGNEE +RESIGNER +RESIGNEZ +RESILIA +RESILIAI +RESILIAT +RESILIE +RESILIEE +RESILIER +RESILIEZ +RESILLE +RESINA +RESINAI +RESINAIT +RESINANT +RESINAT +RESINE +RESINEE +RESINENT +RESINER +RESINERA +RESINEUX +RESINEZ +RESINIER +RESINIEZ +RESISTA +RESISTAI +RESISTAT +RESISTE +RESISTER +RESISTEZ +RESOLU +RESOLUE +RESOLUT +RESOLVE +RESOLVEZ +RESONANT +RESONNA +RESONNAI +RESONNAT +RESONNE +RESONNER +RESONNEZ +RESORBA +RESORBAI +RESORBAT +RESORBE +RESORBEE +RESORBER +RESORBEZ +RESOUDRA +RESOUDRE +RESOUT +RESOUTE +RESPECT +RESPECTA +RESPECTE +RESPIRA +RESPIRAI +RESPIRAT +RESPIRE +RESPIREE +RESPIRER +RESPIREZ +RESSAC +RESSAIE +RESSAISI +RESSASSA +RESSASSE +RESSAUT +RESSAUTA +RESSAUTE +RESSAYA +RESSAYAI +RESSAYAT +RESSAYE +RESSAYEE +RESSAYER +RESSAYEZ +RESSEMA +RESSEMAI +RESSEMAT +RESSEME +RESSEMEE +RESSEMER +RESSEMEZ +RESSENTE +RESSENTI +RESSERRA +RESSERRE +RESSERT +RESSERVE +RESSERVI +RESSORT +RESSORTE +RESSORTI +RESSOUDA +RESSOUDE +RESSUA +RESSUAI +RESSUAIT +RESSUANT +RESSUAT +RESSUE +RESSUENT +RESSUER +RESSUERA +RESSUEZ +RESSUI +RESSUIE +RESSUIEZ +RESSURGI +RESSUYA +RESSUYAI +RESSUYAT +RESSUYE +RESSUYEE +RESSUYER +RESSUYEZ +RESTA +RESTAI +RESTAIT +RESTANT +RESTASSE +RESTAT +RESTAURA +RESTAURE +RESTE +RESTEE +RESTENT +RESTER +RESTERA +RESTERAI +RESTEREZ +RESTEZ +RESTIEZ +RESTITUA +RESTITUE +RESUCEE +RESULTA +RESULTAT +RESULTE +RESULTER +RESUMA +RESUMAI +RESUMAIT +RESUMANT +RESUMAT +RESUME +RESUMEE +RESUMENT +RESUMER +RESUMERA +RESUMEZ +RESUMIEZ +RESURGI +RESURGIR +RESURGIT +RETABLE +RETABLI +RETABLIE +RETABLIR +RETABLIT +RETAILLA +RETAILLE +RETAMA +RETAMAGE +RETAMAI +RETAMAIT +RETAMANT +RETAMAT +RETAME +RETAMEE +RETAMENT +RETAMER +RETAMERA +RETAMEUR +RETAMEZ +RETAMIEZ +RETAPA +RETAPAI +RETAPAIT +RETAPANT +RETAPAT +RETAPE +RETAPEE +RETAPENT +RETAPER +RETAPERA +RETAPEZ +RETAPIEZ +RETARD +RETARDA +RETARDAI +RETARDAT +RETARDE +RETARDEE +RETARDER +RETARDEZ +RETATA +RETATAI +RETATAIT +RETATANT +RETATAT +RETATE +RETATEE +RETATENT +RETATER +RETATERA +RETATEZ +RETATIEZ +RETEIGNE +RETEINT +RETEINTE +RETENAIT +RETENANT +RETEND +RETENDE +RETENDEZ +RETENDIT +RETENDRA +RETENDRE +RETENDU +RETENDUE +RETENEZ +RETENIEZ +RETENIR +RETENTA +RETENTAI +RETENTAT +RETENTE +RETENTEE +RETENTER +RETENTEZ +RETENTI +RETENTIR +RETENTIT +RETENU +RETENUE +RETERCA +RETERCAI +RETERCAT +RETERCE +RETERCEE +RETERCER +RETERCEZ +RETERSA +RETERSAI +RETERSAT +RETERSE +RETERSEE +RETERSER +RETERSEZ +RETIAIRE +RETICENT +RETICULA +RETICULE +RETIENNE +RETIENT +RETIF +RETINE +RETINIEN +RETINITE +RETINSSE +RETINT +RETIRA +RETIRAGE +RETIRAI +RETIRAIT +RETIRANT +RETIRAT +RETIRE +RETIREE +RETIRENT +RETIRER +RETIRERA +RETIREZ +RETIRIEZ +RETISSA +RETISSAI +RETISSAT +RETISSE +RETISSEE +RETISSER +RETIVE +RETIVITE +RETOMBA +RETOMBAI +RETOMBAT +RETOMBE +RETOMBEE +RETOMBER +RETOMBEZ +RETOND +RETONDE +RETONDEZ +RETONDIT +RETONDRA +RETONDRE +RETONDU +RETONDUE +RETORD +RETORDE +RETORDEZ +RETORDIT +RETORDRA +RETORDRE +RETORDU +RETORDUE +RETORQUA +RETORQUE +RETOUCHA +RETOUCHE +RETOUR +RETOURNA +RETOURNE +RETRACA +RETRACAI +RETRACAT +RETRACE +RETRACEE +RETRACER +RETRACEZ +RETRACTA +RETRACTE +RETRAIE +RETRAIRA +RETRAIRE +RETRAIT +RETRAITA +RETRAITE +RETRAYEZ +RETRECI +RETRECIE +RETRECIR +RETRECIT +RETREMPA +RETREMPE +RETRIBUA +RETRIBUE +RETRO +RETROAGI +RETROUVA +RETROUVE +REUNI +REUNIE +REUNIFIA +REUNIFIE +REUNION +REUNIR +REUNIRA +REUNIRAI +REUNIREZ +REUNISSE +REUNIT +REUSSI +REUSSIE +REUSSIR +REUSSIRA +REUSSIT +REUSSITE +REVA +REVAI +REVAILLE +REVAIT +REVALAIT +REVALANT +REVALENT +REVALEZ +REVALIEZ +REVALOIR +REVALU +REVALUE +REVALUT +REVANCHA +REVANCHE +REVANT +REVASSA +REVASSAI +REVASSAT +REVASSE +REVASSER +REVAT +REVAUDRA +REVAUT +REVE +REVECHE +REVECUT +REVEE +REVEIL +REVEILLA +REVEILLE +REVELA +REVELAI +REVELAIT +REVELANT +REVELAT +REVELE +REVELEE +REVELENT +REVELER +REVELERA +REVELEZ +REVELIEZ +REVENAIT +REVENANT +REVEND +REVENDE +REVENDEZ +REVENDIT +REVENDRA +REVENDRE +REVENDU +REVENDUE +REVENEZ +REVENIEZ +REVENIR +REVENT +REVENTE +REVENU +REVENUE +REVER +REVERA +REVERAI +REVERAIT +REVERANT +REVERAT +REVERCHA +REVERCHE +REVERDI +REVERDIE +REVERDIR +REVERDIT +REVERE +REVEREE +REVEREND +REVERENT +REVERER +REVERERA +REVEREZ +REVERIE +REVERIEZ +REVERNI +REVERNIE +REVERNIR +REVERNIT +REVERRA +REVERRAI +REVERREZ +REVERSA +REVERSAI +REVERSAT +REVERSE +REVERSEE +REVERSER +REVERSEZ +REVET +REVETAIT +REVETANT +REVETE +REVETENT +REVETEZ +REVETIEZ +REVETIR +REVETIRA +REVETIT +REVETU +REVETUE +REVEUR +REVEUSE +REVEUT +REVEUX +REVEZ +REVIENNE +REVIENT +REVIEZ +REVIGORA +REVIGORE +REVINSSE +REVINT +REVIRA +REVIRAI +REVIRAIT +REVIRANT +REVIRAT +REVIRE +REVIRENT +REVIRER +REVIRERA +REVIREZ +REVIRIEZ +REVISA +REVISAI +REVISAIT +REVISANT +REVISAT +REVISE +REVISEE +REVISENT +REVISER +REVISERA +REVISEUR +REVISEZ +REVISIEZ +REVISION +REVISSA +REVISSAI +REVISSAT +REVISSE +REVISSEE +REVISSER +REVIT +REVIVAIT +REVIVANT +REVIVE +REVIVENT +REVIVEZ +REVIVIEZ +REVIVRA +REVIVRAI +REVIVRE +REVIVREZ +REVOIE +REVOIENT +REVOIR +REVOIT +REVOLA +REVOLAI +REVOLAIT +REVOLANT +REVOLAT +REVOLE +REVOLENT +REVOLER +REVOLERA +REVOLEZ +REVOLIEZ +REVOLTA +REVOLTAI +REVOLTAT +REVOLTE +REVOLTEE +REVOLTER +REVOLTEZ +REVOLU +REVOLUE +REVOLVER +REVOQUA +REVOQUAI +REVOQUAT +REVOQUE +REVOQUEE +REVOQUER +REVOQUEZ +REVOTA +REVOTAI +REVOTAIT +REVOTANT +REVOTAT +REVOTE +REVOTEE +REVOTENT +REVOTER +REVOTERA +REVOTEZ +REVOTIEZ +REVOUDRA +REVOULEZ +REVOULU +REVOULUE +REVOULUT +REVOYAIT +REVOYANT +REVOYEZ +REVOYIEZ +REVOYURE +REVU +REVUE +REVULSA +REVULSAI +REVULSAT +REVULSE +REVULSEE +REVULSER +REVULSEZ +REVULSIF +REWRITER +RHABILLA +RHABILLE +RHAPSODE +RHENAN +RHENANE +RHENIUM +RHEOBASE +RHEOSTAT +RHETEUR +RHETIEN +RHETIQUE +RHINITE +RHIZOME +RHODIA +RHODIE +RHODIEE +RHODINOL +RHODITE +RHODIUM +RHODOID +RHOMBE +RHOVYL +RHUBARBE +RHUM +RHUMA +RHUMAI +RHUMAIT +RHUMANT +RHUMASSE +RHUMAT +RHUMB +RHUME +RHUMEE +RHUMENT +RHUMER +RHUMERA +RHUMERAI +RHUMEREZ +RHUMERIE +RHUMEZ +RHUMIEZ +RHYOLITE +RIAIT +RIAL +RIANT +RIBAUD +RIBAUDE +RIBLA +RIBLAGE +RIBLAI +RIBLAIT +RIBLANT +RIBLASSE +RIBLAT +RIBLE +RIBLEE +RIBLENT +RIBLER +RIBLERA +RIBLERAI +RIBLEREZ +RIBLEZ +RIBLIEZ +RIBLON +RIBOSE +RIBOSOME +RIBOTE +RIBOULA +RIBOULAI +RIBOULAT +RIBOULE +RIBOULER +RIBOULEZ +RICAIN +RICAINE +RICANA +RICANAI +RICANAIT +RICANANT +RICANAT +RICANE +RICANENT +RICANER +RICANERA +RICANEUR +RICANEZ +RICANIEZ +RICCIE +RICHARD +RICHARDE +RICHE +RICHESSE +RICIN +RICINE +RICINEE +RICOCHA +RICOCHAI +RICOCHAT +RICOCHE +RICOCHER +RICOCHET +RICOCHEZ +RIDA +RIDAGE +RIDAI +RIDAIT +RIDANT +RIDASSE +RIDAT +RIDE +RIDEAU +RIDEE +RIDELLE +RIDEMENT +RIDENT +RIDER +RIDERA +RIDERAI +RIDERAIT +RIDERENT +RIDEREZ +RIDERIEZ +RIDEZ +RIDICULE +RIDIEZ +RIDOIR +RIDULE +RIEL +RIEN +RIENT +RIESLING +RIEUR +RIEUSE +RIEZ +RIFFAUDA +RIFFAUDE +RIFFLE +RIFIFI +RIFLA +RIFLAI +RIFLAIT +RIFLANT +RIFLARD +RIFLASSE +RIFLAT +RIFLE +RIFLEE +RIFLENT +RIFLER +RIFLERA +RIFLERAI +RIFLEREZ +RIFLETTE +RIFLEZ +RIFLIEZ +RIFLOIR +RIFT +RIGAUDON +RIGIDE +RIGIDITE +RIGODON +RIGOLA +RIGOLADE +RIGOLAGE +RIGOLAI +RIGOLAIT +RIGOLANT +RIGOLARD +RIGOLAT +RIGOLE +RIGOLENT +RIGOLER +RIGOLERA +RIGOLEUR +RIGOLEZ +RIGOLIEZ +RIGOLO +RIGOLOTE +RIGOTTE +RIGUEUR +RIIEZ +RIKIKI +RILSAN +RIMA +RIMAI +RIMAILLA +RIMAILLE +RIMAIT +RIMANT +RIMASSE +RIMAT +RIMAYE +RIME +RIMEE +RIMENT +RIMER +RIMERA +RIMERAI +RIMERAIT +RIMERENT +RIMEREZ +RIMERIEZ +RIMEUR +RIMEUSE +RIMEZ +RIMIEZ +RIMMEL +RINCA +RINCAGE +RINCAI +RINCAIT +RINCANT +RINCASSE +RINCAT +RINCE +RINCEAU +RINCEE +RINCENT +RINCER +RINCERA +RINCERAI +RINCEREZ +RINCETTE +RINCEUR +RINCEUSE +RINCEZ +RINCIEZ +RINCURE +RING +RINGARD +RINGARDA +RINGARDE +RIPA +RIPAGE +RIPAI +RIPAILLA +RIPAILLE +RIPAIT +RIPANT +RIPASSE +RIPAT +RIPATON +RIPE +RIPEE +RIPENT +RIPER +RIPERA +RIPERAI +RIPERAIT +RIPERENT +RIPEREZ +RIPERIEZ +RIPEZ +RIPIENO +RIPIEZ +RIPOLIN +RIPOLINA +RIPOLINE +RIPOSTA +RIPOSTAI +RIPOSTAT +RIPOSTE +RIPOSTER +RIPOSTEZ +RIPPER +RIPUAIRE +RIQUIQUI +RIRA +RIRAI +RIRAIT +RIRE +RIRENT +RIREZ +RIRIEZ +RIRONT +RISBAN +RISBERME +RISEE +RISETTE +RISIBLE +RISOTTO +RISQUA +RISQUAI +RISQUAIT +RISQUANT +RISQUAT +RISQUE +RISQUEE +RISQUENT +RISQUER +RISQUERA +RISQUEZ +RISQUIEZ +RISSE +RISSOLA +RISSOLAI +RISSOLAT +RISSOLE +RISSOLEE +RISSOLER +RISSOLEZ +RITAL +RITE +RITUEL +RITUELLE +RIVA +RIVAGE +RIVAI +RIVAIT +RIVAL +RIVALE +RIVALISA +RIVALISE +RIVALITE +RIVANT +RIVASSE +RIVAT +RIVE +RIVEE +RIVENT +RIVER +RIVERA +RIVERAI +RIVERAIN +RIVERAIT +RIVERENT +RIVEREZ +RIVERIEZ +RIVET +RIVETA +RIVETAGE +RIVETAI +RIVETAIT +RIVETANT +RIVETAT +RIVETE +RIVETEE +RIVETER +RIVETEZ +RIVETIEZ +RIVETTE +RIVEUR +RIVEUSE +RIVEZ +RIVIERE +RIVIEZ +RIVOIR +RIVULAIR +RIVURE +RIXDALE +RIXE +RIZERIE +RIZIERE +ROADSTER +ROBA +ROBAGE +ROBAI +ROBAIT +ROBANT +ROBASSE +ROBAT +ROBE +ROBEE +ROBELAGE +ROBENT +ROBER +ROBERA +ROBERAI +ROBERAIT +ROBERENT +ROBEREZ +ROBERIEZ +ROBERT +ROBEZ +ROBIEZ +ROBIN +ROBINET +ROBINIER +ROBOT +ROBOTISA +ROBOTISE +ROBUSTE +ROCADE +ROCAILLE +ROCHAGE +ROCHE +ROCHER +ROCHET +ROCHEUSE +ROCHEUX +ROCHIER +ROCK +ROCKER +ROCKET +ROCKEUSE +ROCOCO +ROCOU +ROCOUA +ROCOUAI +ROCOUAIT +ROCOUANT +ROCOUAT +ROCOUE +ROCOUEE +ROCOUENT +ROCOUER +ROCOUERA +ROCOUEZ +ROCOUIEZ +ROCOUYER +ROCQUA +ROCQUAI +ROCQUAIT +ROCQUANT +ROCQUAT +ROCQUE +ROCQUENT +ROCQUER +ROCQUERA +ROCQUEZ +ROCQUIEZ +RODA +RODAGE +RODAI +RODAILLA +RODAILLE +RODAIT +RODANT +RODASSE +RODAT +RODE +RODEE +RODENT +RODEO +RODER +RODERA +RODERAI +RODERAIT +RODERENT +RODEREZ +RODERIEZ +RODEUR +RODEUSE +RODEZ +RODIEZ +RODOIR +RODOMONT +ROENTGEN +ROGATON +ROGNA +ROGNAGE +ROGNAI +ROGNAIT +ROGNANT +ROGNASSE +ROGNAT +ROGNE +ROGNEE +ROGNENT +ROGNER +ROGNERA +ROGNERAI +ROGNEREZ +ROGNEUR +ROGNEUSE +ROGNEZ +ROGNIEZ +ROGNON +ROGNONNA +ROGNONNE +ROGNURE +ROGOMME +ROGUE +ROGUEE +ROHART +ROIDE +ROIDEUR +ROIDI +ROIDIE +ROIDIR +ROIDIRA +ROIDIRAI +ROIDIREZ +ROIDISSE +ROIDIT +ROITELET +ROLE +ROLLIER +ROMAIN +ROMAINE +ROMAN +ROMANCA +ROMANCAI +ROMANCAT +ROMANCE +ROMANCEE +ROMANCER +ROMANCEZ +ROMANCHE +ROMAND +ROMANDE +ROMANE +ROMANI +ROMANISA +ROMANISE +ROMANITE +ROMANO +ROMARIN +ROMBIERE +ROMPAIT +ROMPANT +ROMPE +ROMPENT +ROMPEZ +ROMPIEZ +ROMPISSE +ROMPIT +ROMPRA +ROMPRAI +ROMPRAIT +ROMPRE +ROMPREZ +ROMPRIEZ +ROMPRONT +ROMPT +ROMPU +ROMPUE +ROMSTECK +RONCE +RONCEUSE +RONCEUX +RONCHON +RONCIER +RONCIERE +ROND +RONDACHE +RONDE +RONDEAU +RONDELET +RONDELLE +RONDEUR +RONDI +RONDIE +RONDIER +RONDIN +RONDIR +RONDIRA +RONDIRAI +RONDIREZ +RONDISSE +RONDIT +RONDO +RONEO +RONFLA +RONFLAI +RONFLAIT +RONFLANT +RONFLAT +RONFLE +RONFLENT +RONFLER +RONFLERA +RONFLEUR +RONFLEZ +RONFLIEZ +RONGE +RONGEA +RONGEAI +RONGEAIT +RONGEANT +RONGEAT +RONGEE +RONGENT +RONGER +RONGERA +RONGERAI +RONGEREZ +RONGEUR +RONGEUSE +RONGEZ +RONGIEZ +RONRON +RONRONNA +RONRONNE +ROOKERIE +ROQUA +ROQUAI +ROQUAIT +ROQUANT +ROQUASSE +ROQUAT +ROQUE +ROQUENT +ROQUER +ROQUERA +ROQUERAI +ROQUEREZ +ROQUERIE +ROQUET +ROQUETTE +ROQUEZ +ROQUIEZ +RORQUAL +ROSA +ROSACE +ROSACEE +ROSAGE +ROSAI +ROSAIRE +ROSAIT +ROSALBIN +ROSANT +ROSASSE +ROSAT +ROSATRE +ROSBIF +ROSE +ROSEAU +ROSEE +ROSELET +ROSELIER +ROSENT +ROSEOLE +ROSER +ROSERA +ROSERAI +ROSERAIE +ROSERAIT +ROSERENT +ROSEREZ +ROSERIEZ +ROSETTE +ROSEZ +ROSI +ROSIE +ROSIER +ROSIERE +ROSIEZ +ROSIR +ROSIRA +ROSIRAI +ROSIRAIT +ROSIRENT +ROSIREZ +ROSIRIEZ +ROSIRONT +ROSISSE +ROSIT +ROSSA +ROSSAI +ROSSAIT +ROSSANT +ROSSARD +ROSSASSE +ROSSAT +ROSSE +ROSSEE +ROSSER +ROSSERA +ROSSERAI +ROSSEREZ +ROSSERIE +ROSTRAL +ROSTRALE +ROSTRE +ROTA +ROTACE +ROTACEE +ROTAI +ROTAIT +ROTANG +ROTANT +ROTARIEN +ROTARY +ROTASSE +ROTAT +ROTATEUR +ROTATIF +ROTATION +ROTATIVE +ROTE +ROTENGLE +ROTENONE +ROTENT +ROTER +ROTERA +ROTERAI +ROTERAIT +ROTERENT +ROTEREZ +ROTERIEZ +ROTEZ +ROTI +ROTIE +ROTIEZ +ROTIFERE +ROTIN +ROTIR +ROTIRA +ROTIRAI +ROTIRAIT +ROTIRENT +ROTIREZ +ROTIRIEZ +ROTIRONT +ROTISSE +ROTIT +ROTONDE +ROTOR +ROTULE +ROTULIEN +ROTURE +ROTURIER +ROUA +ROUAGE +ROUAI +ROUAIT +ROUAN +ROUANNE +ROUANT +ROUASSE +ROUAT +ROUBLARD +ROUBLE +ROUCHI +ROUCOULA +ROUCOULE +ROUE +ROUEE +ROUELLE +ROUENT +ROUER +ROUERA +ROUERAI +ROUERAIT +ROUERENT +ROUEREZ +ROUERIE +ROUERIEZ +ROUET +ROUETTE +ROUEZ +ROUF +ROUGE +ROUGEAUD +ROUGEOIE +ROUGEOLE +ROUGEOYA +ROUGEOYE +ROUGET +ROUGEUR +ROUGI +ROUGIE +ROUGIR +ROUGIRA +ROUGIRAI +ROUGIREZ +ROUGISSE +ROUGIT +ROUI +ROUIE +ROUIEZ +ROUILLA +ROUILLAI +ROUILLAT +ROUILLE +ROUILLEE +ROUILLER +ROUILLEZ +ROUIR +ROUIRA +ROUIRAI +ROUIRAIT +ROUIRENT +ROUIREZ +ROUIRIEZ +ROUIRONT +ROUISSE +ROUIT +ROULA +ROULADE +ROULAGE +ROULAI +ROULAIT +ROULANT +ROULASSE +ROULAT +ROULE +ROULEAU +ROULEE +ROULENT +ROULER +ROULERA +ROULERAI +ROULEREZ +ROULETTE +ROULEUR +ROULEZ +ROULIER +ROULIEZ +ROULOIR +ROULOTTA +ROULOTTE +ROULURE +ROUMAIN +ROUMAINE +ROUMI +ROUND +ROUPIE +ROUPILLA +ROUPILLE +ROUQUIN +ROUQUINE +ROUSPETA +ROUSPETE +ROUSSE +ROUSSEAU +ROUSSEUR +ROUSSI +ROUSSIE +ROUSSIN +ROUSSIR +ROUSSIRA +ROUSSIT +ROUSTI +ROUSTIE +ROUSTIR +ROUSTIRA +ROUSTIT +ROUTA +ROUTAGE +ROUTAI +ROUTAIT +ROUTANT +ROUTARD +ROUTARDE +ROUTASSE +ROUTAT +ROUTE +ROUTEE +ROUTENT +ROUTER +ROUTERA +ROUTERAI +ROUTEREZ +ROUTEZ +ROUTIER +ROUTIERE +ROUTIEZ +ROUTINE +ROUVERIN +ROUVERT +ROUVERTE +ROUVIEUX +ROUVRAIE +ROUVRAIT +ROUVRANT +ROUVRE +ROUVRENT +ROUVREZ +ROUVRIEZ +ROUVRIR +ROUVRIRA +ROUVRIT +ROUVRU +ROUVRUE +ROUX +ROWING +ROYAL +ROYALE +ROYAUME +ROYAUTE +RUADE +RUAI +RUAIT +RUANT +RUASSE +RUAT +RUBAN +RUBANA +RUBANAI +RUBANAIT +RUBANANT +RUBANAT +RUBANE +RUBANEE +RUBANENT +RUBANER +RUBANERA +RUBANEZ +RUBANIER +RUBANIEZ +RUBATO +RUBEFIA +RUBEFIAI +RUBEFIAT +RUBEFIE +RUBEFIEE +RUBEFIER +RUBEFIEZ +RUBEOLE +RUBIACE +RUBIACEE +RUBICAN +RUBICOND +RUBIDIUM +RUBIETTE +RUBRIQUE +RUCHA +RUCHAI +RUCHAIT +RUCHANT +RUCHASSE +RUCHAT +RUCHE +RUCHEE +RUCHENT +RUCHER +RUCHERA +RUCHERAI +RUCHEREZ +RUCHEZ +RUCHIEZ +RUDE +RUDEMENT +RUDENTA +RUDENTAI +RUDENTAT +RUDENTE +RUDENTEE +RUDENTER +RUDENTEZ +RUDERAL +RUDERALE +RUDESSE +RUDIMENT +RUDOIE +RUDOIENT +RUDOIERA +RUDOYA +RUDOYAI +RUDOYAIT +RUDOYANT +RUDOYAT +RUDOYE +RUDOYEE +RUDOYER +RUDOYEZ +RUDOYIEZ +RUEE +RUELLE +RUENT +RUER +RUERA +RUERAI +RUERAIT +RUERENT +RUEREZ +RUERIEZ +RUEZ +RUFFIAN +RUFIAN +RUGBY +RUGBYMAN +RUGBYMEN +RUGI +RUGIR +RUGIRA +RUGIRAI +RUGIRAIT +RUGIRENT +RUGIREZ +RUGIRIEZ +RUGIRONT +RUGISSE +RUGIT +RUGOSITE +RUGUEUSE +RUGUEUX +RUIEZ +RUILA +RUILAI +RUILAIT +RUILANT +RUILASSE +RUILAT +RUILE +RUILEE +RUILENT +RUILER +RUILERA +RUILERAI +RUILEREZ +RUILEZ +RUILIEZ +RUINA +RUINAI +RUINAIT +RUINANT +RUINASSE +RUINAT +RUINE +RUINEE +RUINENT +RUINER +RUINERA +RUINERAI +RUINEREZ +RUINEUSE +RUINEUX +RUINEZ +RUINIEZ +RUINISTE +RUINURE +RUISSEAU +RUISSELA +RUISSELE +RUMBA +RUMEN +RUMEUR +RUMEX +RUMINA +RUMINAI +RUMINAIT +RUMINANT +RUMINAT +RUMINE +RUMINEE +RUMINENT +RUMINER +RUMINERA +RUMINEZ +RUMINIEZ +RUMSTECK +RUNABOUT +RUOLZ +RUPESTRE +RUPICOLE +RUPIN +RUPINA +RUPINAI +RUPINAIT +RUPINANT +RUPINAT +RUPINE +RUPINENT +RUPINER +RUPINERA +RUPINEZ +RUPINIEZ +RUPTEUR +RUPTURE +RURAL +RURALE +RUSA +RUSAI +RUSAIT +RUSANT +RUSASSE +RUSAT +RUSE +RUSEE +RUSENT +RUSER +RUSERA +RUSERAI +RUSERAIT +RUSERENT +RUSEREZ +RUSERIEZ +RUSEZ +RUSH +RUSIEZ +RUSSE +RUSSIFIA +RUSSIFIE +RUSSULE +RUSTAUD +RUSTAUDE +RUSTINE +RUSTIQUA +RUSTIQUE +RUSTRE +RUTABAGA +RUTILA +RUTILAI +RUTILAIT +RUTILANT +RUTILAT +RUTILE +RUTILENT +RUTILER +RUTILERA +RUTILEZ +RUTILIEZ +RYTHMA +RYTHMAI +RYTHMAIT +RYTHMANT +RYTHMAT +RYTHME +RYTHMEE +RYTHMENT +RYTHMER +RYTHMERA +RYTHMEZ +RYTHMIEZ +SABAYON +SABBAT +SABEEN +SABEENNE +SABEISME +SABELLE +SABINE +SABIR +SABLA +SABLAGE +SABLAI +SABLAIT +SABLANT +SABLASSE +SABLAT +SABLE +SABLEE +SABLENT +SABLER +SABLERA +SABLERAI +SABLEREZ +SABLERIE +SABLEUR +SABLEUSE +SABLEUX +SABLEZ +SABLIER +SABLIERE +SABLIEZ +SABLON +SABLONNA +SABLONNE +SABORD +SABORDA +SABORDAI +SABORDAT +SABORDE +SABORDEE +SABORDER +SABORDEZ +SABOT +SABOTA +SABOTAGE +SABOTAI +SABOTAIT +SABOTANT +SABOTAT +SABOTE +SABOTEE +SABOTENT +SABOTER +SABOTERA +SABOTEUR +SABOTEZ +SABOTIER +SABOTIEZ +SABOULA +SABOULAI +SABOULAT +SABOULE +SABOULEE +SABOULER +SABOULEZ +SABRA +SABRAGE +SABRAIT +SABRANT +SABRE +SABREE +SABRENT +SABRER +SABRERA +SABRERAI +SABREREZ +SABREUR +SABREUSE +SABREZ +SABRIEZ +SABURRAL +SABURRE +SACAGNA +SACAGNAI +SACAGNAT +SACAGNE +SACAGNEE +SACAGNER +SACAGNEZ +SACCADA +SACCADAI +SACCADAT +SACCADE +SACCADEE +SACCADER +SACCADEZ +SACCAGE +SACCAGEA +SACCAGEE +SACCAGER +SACCAGEZ +SACCULE +SACHANT +SACHE +SACHEM +SACHENT +SACHET +SACHEZ +SACHIEZ +SACOCHE +SACOLEVA +SACOLEVE +SACOME +SACQUA +SACQUAI +SACQUAIT +SACQUANT +SACQUAT +SACQUE +SACQUEE +SACQUENT +SACQUER +SACQUERA +SACQUEZ +SACQUIEZ +SACRA +SACRAI +SACRAIT +SACRAL +SACRALE +SACRANT +SACRASSE +SACRAT +SACRE +SACREE +SACRENT +SACRER +SACRERA +SACRERAI +SACREREZ +SACRET +SACREZ +SACRIEZ +SACRIFIA +SACRIFIE +SACRISTI +SACRUM +SADIQUE +SADISME +SADUCEEN +SAFARI +SAFRAN +SAFRANA +SAFRANAI +SAFRANAT +SAFRANE +SAFRANEE +SAFRANER +SAFRANEZ +SAFRE +SAGA +SAGACE +SAGACITE +SAGAIE +SAGE +SAGEMENT +SAGESSE +SAGETTE +SAGITTAL +SAGITTE +SAGITTEE +SAGOU +SAGOUIN +SAGUM +SAHARIEN +SAHEL +SAHELIEN +SAIGA +SAIGNA +SAIGNAI +SAIGNAIT +SAIGNANT +SAIGNAT +SAIGNE +SAIGNEE +SAIGNENT +SAIGNER +SAIGNERA +SAIGNEUR +SAIGNEUX +SAIGNEZ +SAIGNIEZ +SAIGNOIR +SAILLAIT +SAILLANT +SAILLE +SAILLENT +SAILLEZ +SAILLI +SAILLIE +SAILLIEZ +SAILLIR +SAILLIRA +SAILLIT +SAIMIRI +SAIN +SAINDOUX +SAINE +SAINFOIN +SAINT +SAINTE +SAINTETE +SAISI +SAISIE +SAISINE +SAISIR +SAISIRA +SAISIRAI +SAISIREZ +SAISISSE +SAISIT +SAISON +SAISONNA +SAISONNE +SAIT +SAITE +SAJOU +SAKE +SAKI +SALA +SALACE +SALACITE +SALADE +SALADERO +SALADIER +SALAGE +SALAI +SALAIRE +SALAISON +SALAIT +SALAMI +SALANT +SALARIA +SALARIAI +SALARIAL +SALARIAT +SALARIE +SALARIEE +SALARIER +SALARIEZ +SALASSE +SALAT +SALAUD +SALE +SALEE +SALEMENT +SALENT +SALEP +SALER +SALERA +SALERAI +SALERAIT +SALERENT +SALEREZ +SALERIEZ +SALERON +SALESIEN +SALETE +SALEUR +SALEUSE +SALEZ +SALI +SALICINE +SALICOLE +SALIE +SALIEN +SALIENNE +SALIERE +SALIEZ +SALIFERE +SALIFIA +SALIFIAI +SALIFIAT +SALIFIE +SALIFIEE +SALIFIER +SALIFIEZ +SALIGAUD +SALIGNON +SALIN +SALINAGE +SALINE +SALINITE +SALIQUE +SALIR +SALIRA +SALIRAI +SALIRAIT +SALIRENT +SALIREZ +SALIRIEZ +SALIRONT +SALISSE +SALISSON +SALIT +SALIVA +SALIVAI +SALIVAIT +SALIVANT +SALIVAT +SALIVE +SALIVENT +SALIVER +SALIVERA +SALIVEZ +SALIVIEZ +SALLE +SALOIR +SALOL +SALON +SALONARD +SALOON +SALOP +SALOPA +SALOPAI +SALOPAIT +SALOPANT +SALOPARD +SALOPAT +SALOPE +SALOPEE +SALOPENT +SALOPER +SALOPERA +SALOPEZ +SALOPIEZ +SALOPIOT +SALPETRA +SALPETRE +SALPICON +SALSA +SALSE +SALUA +SALUAI +SALUAIT +SALUANT +SALUASSE +SALUAT +SALUBRE +SALUE +SALUEE +SALUENT +SALUER +SALUERA +SALUERAI +SALUEREZ +SALUEZ +SALUIEZ +SALURE +SALUT +SALVE +SAMARE +SAMARIUM +SAMBA +SAMEDI +SAMIT +SAMOURAI +SAMOVAR +SAMOYEDE +SAMPAN +SAMPANG +SAMPI +SAMPOT +SAMURAI +SANA +SANCERRE +SANCTION +SANDALE +SANDJAK +SANDOW +SANDRE +SANDWICH +SANG +SANGLA +SANGLAI +SANGLAIT +SANGLANT +SANGLAT +SANGLE +SANGLEE +SANGLENT +SANGLER +SANGLERA +SANGLEZ +SANGLIER +SANGLIEZ +SANGLOT +SANGLOTA +SANGLOTE +SANGRIA +SANGSUE +SANGUIN +SANGUINE +SANICLE +SANIE +SANIEUSE +SANIEUX +SANSCRIT +SANSKRIT +SANTAL +SANTON +SANTONNA +SANTONNE +SANVE +SANZA +SAOUDIEN +SAOUDITE +SAOUL +SAOULA +SAOULAI +SAOULAIT +SAOULANT +SAOULAT +SAOULE +SAOULEE +SAOULENT +SAOULER +SAOULERA +SAOULEZ +SAOULIEZ +SAPA +SAPAI +SAPAIT +SAPAJOU +SAPANT +SAPASSE +SAPAT +SAPE +SAPEE +SAPEMENT +SAPENT +SAPEQUE +SAPER +SAPERA +SAPERAI +SAPERAIT +SAPERDE +SAPERENT +SAPEREZ +SAPERIEZ +SAPEUR +SAPEZ +SAPHENE +SAPHIQUE +SAPHIR +SAPHISME +SAPIDE +SAPIDITE +SAPIENCE +SAPIEZ +SAPIN +SAPINE +SAPONACE +SAPONINE +SAPOTIER +SAPRISTI +SAQUA +SAQUAI +SAQUAIT +SAQUANT +SAQUASSE +SAQUAT +SAQUE +SAQUEE +SAQUENT +SAQUER +SAQUERA +SAQUERAI +SAQUEREZ +SAQUEZ +SAQUIEZ +SARCASME +SARCELLE +SARCLA +SARCLAGE +SARCLAI +SARCLAIT +SARCLANT +SARCLAT +SARCLE +SARCLEE +SARCLENT +SARCLER +SARCLERA +SARCLEUR +SARCLEZ +SARCLIEZ +SARCLOIR +SARCOIDE +SARCOME +SARCOPTE +SARDANE +SARDE +SARDINE +SARDOINE +SARDONYX +SARGASSE +SARI +SARIGUE +SARISSE +SARMENT +SARMENTA +SARMENTE +SARONG +SARRASIN +SARRAU +SARRETTE +SASSA +SASSAI +SASSAIT +SASSANT +SASSASSE +SASSAT +SASSE +SASSEE +SASSER +SASSERA +SASSERAI +SASSEREZ +SASSEUR +SASSEUSE +SATANA +SATANAI +SATANAIT +SATANANT +SATANAT +SATANE +SATANEE +SATANENT +SATANER +SATANERA +SATANEZ +SATANIEZ +SATI +SATIETE +SATIN +SATINA +SATINAGE +SATINAI +SATINAIT +SATINANT +SATINAT +SATINE +SATINEE +SATINENT +SATINER +SATINERA +SATINEUR +SATINEZ +SATINIEZ +SATIRE +SATIRISA +SATIRISE +SATISFIT +SATONNA +SATONNAI +SATONNAT +SATONNE +SATONNEE +SATONNER +SATONNEZ +SATRAPE +SATRAPIE +SATURA +SATURAI +SATURAIT +SATURANT +SATURAT +SATURE +SATUREE +SATURENT +SATURER +SATURERA +SATUREZ +SATURIEZ +SATURNE +SATURNIE +SATURNIN +SATYRE +SAUCA +SAUCAI +SAUCAIT +SAUCANT +SAUCASSE +SAUCAT +SAUCE +SAUCEE +SAUCENT +SAUCER +SAUCERA +SAUCERAI +SAUCEREZ +SAUCEZ +SAUCIER +SAUCIERE +SAUCIEZ +SAUCISSE +SAUF +SAUGE +SAUGRENU +SAULAIE +SAULE +SAULEE +SAUMATRE +SAUMON +SAUMONE +SAUMONEE +SAUMURA +SAUMURAI +SAUMURAT +SAUMURE +SAUMUREE +SAUMURER +SAUMUREZ +SAUNA +SAUNAGE +SAUNAI +SAUNAIT +SAUNANT +SAUNASSE +SAUNAT +SAUNE +SAUNENT +SAUNER +SAUNERA +SAUNERAI +SAUNEREZ +SAUNEZ +SAUNIER +SAUNIERE +SAUNIEZ +SAUR +SAURA +SAURAI +SAURAIT +SAURANT +SAURASSE +SAURAT +SAURE +SAUREE +SAURENT +SAURER +SAURERA +SAURERAI +SAUREREZ +SAUREZ +SAURI +SAURIE +SAURIEN +SAURIEZ +SAURIN +SAURIR +SAURIRA +SAURIRAI +SAURIREZ +SAURISSE +SAURIT +SAURONT +SAUSSAIE +SAUT +SAUTA +SAUTAI +SAUTAIT +SAUTANT +SAUTASSE +SAUTAT +SAUTE +SAUTEE +SAUTELLE +SAUTENT +SAUTER +SAUTERA +SAUTERAI +SAUTEREZ +SAUTERIE +SAUTEUR +SAUTEUSE +SAUTEZ +SAUTIEZ +SAUTILLA +SAUTILLE +SAUTOIR +SAUVA +SAUVAGE +SAUVAGIN +SAUVAI +SAUVAIT +SAUVANT +SAUVASSE +SAUVAT +SAUVE +SAUVEE +SAUVENT +SAUVER +SAUVERA +SAUVERAI +SAUVEREZ +SAUVETE +SAUVETTE +SAUVEUR +SAUVEZ +SAUVIEZ +SAVAIT +SAVANE +SAVANT +SAVARIN +SAVART +SAVATE +SAVENT +SAVETIER +SAVEUR +SAVEZ +SAVIEZ +SAVOIR +SAVON +SAVONNA +SAVONNAI +SAVONNAT +SAVONNE +SAVONNEE +SAVONNER +SAVONNEZ +SAVOURA +SAVOURAI +SAVOURAT +SAVOURE +SAVOUREE +SAVOURER +SAVOUREZ +SAVOYARD +SAXATILE +SAXE +SAXHORN +SAXICOLE +SAXO +SAXON +SAXONNE +SAYNETE +SAYON +SBIRE +SCABIEUX +SCABREUX +SCALAIRE +SCALDE +SCALENE +SCALP +SCALPA +SCALPAI +SCALPAIT +SCALPANT +SCALPAT +SCALPE +SCALPEE +SCALPEL +SCALPENT +SCALPER +SCALPERA +SCALPEZ +SCALPIEZ +SCAMPI +SCANDA +SCANDAI +SCANDAIT +SCANDALE +SCANDANT +SCANDAT +SCANDE +SCANDEE +SCANDENT +SCANDER +SCANDERA +SCANDEZ +SCANDIEZ +SCANDIUM +SCANNER +SCANSION +SCAPHITE +SCARABEE +SCARE +SCARIEUX +SCAROLE +SCAT +SCEAU +SCELERAT +SCELLA +SCELLAGE +SCELLAI +SCELLAIT +SCELLANT +SCELLAT +SCELLE +SCELLEE +SCELLENT +SCELLER +SCELLERA +SCELLEZ +SCELLIEZ +SCENARIO +SCENE +SCENIQUE +SCEPTRE +SCHAH +SCHAKO +SCHAPPE +SCHAPSKA +SCHEIDA +SCHEIDAI +SCHEIDAT +SCHEIDE +SCHEIDEE +SCHEIDER +SCHEIDEZ +SCHEIK +SCHELEM +SCHEMA +SCHEOL +SCHERZO +SCHISME +SCHISTE +SCHLAGUE +SCHLAMM +SCHLEU +SCHLICH +SCHLITTA +SCHLITTE +SCHNOCK +SCHNOQUE +SCHNOUFF +SCHOFAR +SCHOONER +SCHORRE +SCHUPO +SCIA +SCIABLE +SCIAGE +SCIAI +SCIAIT +SCIANT +SCIASSE +SCIAT +SCIE +SCIEE +SCIENCE +SCIENE +SCIENT +SCIER +SCIERA +SCIERAI +SCIERAIT +SCIERENT +SCIEREZ +SCIERIE +SCIERIEZ +SCIEUR +SCIEUSE +SCIEZ +SCIIEZ +SCILLE +SCINDA +SCINDAI +SCINDAIT +SCINDANT +SCINDAT +SCINDE +SCINDEE +SCINDENT +SCINDER +SCINDERA +SCINDEZ +SCINDIEZ +SCION +SCIOTTA +SCIOTTAI +SCIOTTAT +SCIOTTE +SCIOTTEE +SCIOTTER +SCIOTTEZ +SCIRPE +SCISSILE +SCISSION +SCISSURE +SCIURE +SCLEREUX +SCLEROSA +SCLEROSE +SCOLAIRE +SCOLEX +SCOLIE +SCOLIOSE +SCOLYTE +SCONSE +SCOOP +SCOOTER +SCOPIE +SCORBUT +SCORE +SCORIACE +SCORIE +SCORPION +SCOTCH +SCOTCHA +SCOTCHAI +SCOTCHAT +SCOTCHE +SCOTCHEE +SCOTCHER +SCOTCHEZ +SCOTIE +SCOTISME +SCOTISTE +SCOTTISH +SCOURED +SCOUT +SCOUTE +SCRABBLE +SCRAPER +SCRATCH +SCRATCHA +SCRATCHE +SCRIBAN +SCRIBE +SCRIPT +SCRIPTE +SCROFULE +SCRUBBER +SCRUPULE +SCRUTA +SCRUTAI +SCRUTAIT +SCRUTANT +SCRUTAT +SCRUTE +SCRUTEE +SCRUTENT +SCRUTER +SCRUTERA +SCRUTEZ +SCRUTIEZ +SCRUTIN +SCULL +SCULPTA +SCULPTAI +SCULPTAT +SCULPTE +SCULPTEE +SCULPTER +SCULPTEZ +SCUTA +SCUTUM +SCYTHE +SEANCE +SEANT +SEAU +SEBACE +SEBACEE +SEBASTE +SEBILE +SEBKA +SEBKHA +SEBUM +SECABLE +SECANT +SECATEUR +SECHA +SECHAGE +SECHAI +SECHAIT +SECHANT +SECHASSE +SECHAT +SECHE +SECHEE +SECHENT +SECHER +SECHERA +SECHERAI +SECHEREZ +SECHERIE +SECHEUR +SECHEUSE +SECHEZ +SECHIEZ +SECHOIR +SECOND +SECONDA +SECONDAI +SECONDAT +SECONDE +SECONDEE +SECONDER +SECONDEZ +SECOUA +SECOUAI +SECOUAIT +SECOUANT +SECOUAT +SECOUE +SECOUEE +SECOUENT +SECOUER +SECOUERA +SECOUEUR +SECOUEZ +SECOUIEZ +SECOURE +SECOUREZ +SECOURIR +SECOURRA +SECOURT +SECOURU +SECOURUE +SECOURUT +SECOUSSE +SECRET +SECRETA +SECRETAI +SECRETAT +SECRETE +SECRETEE +SECRETER +SECRETEZ +SECTAIRE +SECTE +SECTEUR +SECTION +SECULIER +SECUNDO +SECURISA +SECURISE +SECURITE +SEDATIF +SEDATIVE +SEDIMENT +SEDITION +SEDUIRA +SEDUIRAI +SEDUIRE +SEDUIREZ +SEDUISE +SEDUISEZ +SEDUISIT +SEDUIT +SEDUITE +SEFARADE +SEGALA +SEGMENT +SEGMENTA +SEGMENTE +SEGREGEE +SEGUIA +SEICHE +SEIDE +SEIGLE +SEIGNEUR +SEILLE +SEILLON +SEIME +SEIN +SEINE +SEING +SEISME +SEIZE +SEIZIEME +SEJOUR +SEJOURNA +SEJOURNE +SELACIEN +SELECT +SELECTIF +SELENITE +SELENIUM +SELF +SELLA +SELLAI +SELLAIT +SELLANT +SELLASSE +SELLAT +SELLE +SELLEE +SELLENT +SELLER +SELLERA +SELLERAI +SELLEREZ +SELLERIE +SELLETTE +SELLEZ +SELLIER +SELLIEZ +SELON +SELTZ +SELVE +SEMA +SEMAI +SEMAINE +SEMAIT +SEMANT +SEMASSE +SEMAT +SEMBLA +SEMBLAI +SEMBLAIT +SEMBLANT +SEMBLAT +SEMBLE +SEMBLENT +SEMBLER +SEMBLERA +SEMBLEZ +SEMBLIEZ +SEME +SEMEE +SEMELLE +SEMENCE +SEMENT +SEMER +SEMERA +SEMERAI +SEMERAIT +SEMERENT +SEMEREZ +SEMERIEZ +SEMESTRE +SEMEUR +SEMEUSE +SEMEZ +SEMIEZ +SEMILLON +SEMINAL +SEMINALE +SEMITE +SEMOIR +SEMONCA +SEMONCAI +SEMONCAT +SEMONCE +SEMONCEE +SEMONCER +SEMONCEZ +SEMOULE +SEMPLE +SENAT +SENATEUR +SENAU +SENE +SENECHAL +SENESTRE +SENEVE +SENILE +SENILITE +SENIOR +SENNE +SENSE +SENSEE +SENSEUR +SENSIBLE +SENSITIF +SENSUEL +SENT +SENTAIT +SENTANT +SENTE +SENTENCE +SENTENT +SENTEUR +SENTEZ +SENTI +SENTIE +SENTIER +SENTIEZ +SENTINE +SENTIR +SENTIRA +SENTIRAI +SENTIREZ +SENTISSE +SENTIT +SEOIR +SEPALE +SEPARA +SEPARAI +SEPARAIT +SEPARANT +SEPARAT +SEPARE +SEPAREE +SEPARENT +SEPARER +SEPARERA +SEPAREZ +SEPARIEZ +SEPIA +SEPT +SEPTAIN +SEPTIDI +SEPTIEME +SEPTIME +SEPTIMO +SEPTIQUE +SEPTUM +SEPTUOR +SEPTUPLA +SEPTUPLE +SEPULCRE +SEQUELLE +SEQUENCE +SEQUIN +SEQUOIA +SERA +SERAC +SERAI +SERAIL +SERAIT +SERANCA +SERANCAI +SERANCAT +SERANCE +SERANCEE +SERANCER +SERANCEZ +SERAPHIN +SERBE +SERDEAU +SEREIN +SEREINE +SERENADE +SERENITE +SEREUSE +SEREUX +SEREZ +SERF +SERFOUI +SERFOUIE +SERFOUIR +SERFOUIT +SERGE +SERGENT +SERGETTE +SERIA +SERIAI +SERIAIT +SERIANT +SERIASSE +SERIAT +SERIE +SERIEE +SERIEL +SERIELLE +SERIENT +SERIER +SERIERA +SERIERAI +SERIEREZ +SERIEUSE +SERIEUX +SERIEZ +SERIIEZ +SERIN +SERINA +SERINAI +SERINAIT +SERINANT +SERINAT +SERINE +SERINEE +SERINENT +SERINER +SERINERA +SERINEZ +SERINGA +SERINGAT +SERINGUA +SERINGUE +SERINIEZ +SERIQUE +SERMENT +SERMON +SERMONNA +SERMONNE +SEROSITE +SERPE +SERPENT +SERPENTA +SERPENTE +SERPETTE +SERPOLET +SERPULE +SERRA +SERRAGE +SERRAI +SERRAIT +SERRAN +SERRANT +SERRASSE +SERRAT +SERRATE +SERRE +SERREE +SERRENT +SERRER +SERRERA +SERRERAI +SERREREZ +SERREZ +SERRIEZ +SERRURE +SERT +SERTE +SERTI +SERTIE +SERTIR +SERTIRA +SERTIRAI +SERTIREZ +SERTISSE +SERTIT +SERUM +SERVAGE +SERVAIT +SERVAL +SERVANT +SERVE +SERVENT +SERVEUR +SERVEUSE +SERVEZ +SERVI +SERVICE +SERVIE +SERVIEZ +SERVILE +SERVIR +SERVIRA +SERVIRAI +SERVIREZ +SERVISSE +SERVIT +SESAME +SESBANIA +SESBANIE +SESSILE +SESSION +SESTERCE +SETACE +SETACEE +SETIER +SETON +SETTER +SEUIL +SEUL +SEULE +SEULET +SEULETTE +SEVE +SEVERE +SEVERITE +SEVI +SEVIR +SEVIRA +SEVIRAI +SEVIRAIT +SEVIRENT +SEVIREZ +SEVIRIEZ +SEVIRONT +SEVISSE +SEVIT +SEVRA +SEVRAGE +SEVRAI +SEVRAIT +SEVRANT +SEVRASSE +SEVRAT +SEVRE +SEVREE +SEVRENT +SEVRER +SEVRERA +SEVRERAI +SEVREREZ +SEVREZ +SEVRIEZ +SEXE +SEXISME +SEXISTE +SEXTANT +SEXTE +SEXTIDI +SEXTINE +SEXTO +SEXTOLET +SEXTUPLA +SEXTUPLE +SEXUE +SEXUEE +SEXUEL +SEXUELLE +SEXY +SEYAIT +SEYANT +SEZIGUE +SFUMATO +SHAH +SHAKER +SHAKO +SHANTUNG +SHERIF +SHERRY +SHETLAND +SHILLING +SHIMMY +SHINTO +SHOCKING +SHOGOUN +SHOGUN +SHOOT +SHOOTA +SHOOTAI +SHOOTAIT +SHOOTANT +SHOOTAT +SHOOTE +SHOOTEE +SHOOTENT +SHOOTER +SHOOTERA +SHOOTEZ +SHOOTIEZ +SHOPING +SHOPPING +SHORT +SHOW +SHRAPNEL +SHUNT +SHUNTA +SHUNTAI +SHUNTAIT +SHUNTANT +SHUNTAT +SHUNTE +SHUNTEE +SHUNTENT +SHUNTER +SHUNTERA +SHUNTEZ +SHUNTIEZ +SIAL +SIAMOISE +SIBERIEN +SIBILANT +SIBYLLE +SIBYLLIN +SICAIRE +SICCATIF +SICCITE +SICILIEN +SICLE +SIDERA +SIDERAI +SIDERAIT +SIDERAL +SIDERALE +SIDERANT +SIDERAT +SIDERE +SIDEREE +SIDERENT +SIDERER +SIDERERA +SIDEREZ +SIDERIEZ +SIDERITE +SIDEROSE +SIECLE +SIED +SIEE +SIEENT +SIEGE +SIEGEA +SIEGEAI +SIEGEAIT +SIEGEANT +SIEGEAT +SIEGENT +SIEGER +SIEGERA +SIEGERAI +SIEGEREZ +SIEGEZ +SIEGIEZ +SIEN +SIENNE +SIERA +SIERAIT +SIERRA +SIESTE +SIEUR +SIFFLA +SIFFLAGE +SIFFLAI +SIFFLAIT +SIFFLANT +SIFFLAT +SIFFLE +SIFFLEE +SIFFLENT +SIFFLER +SIFFLERA +SIFFLET +SIFFLEUR +SIFFLEZ +SIFFLIEZ +SIFFLOTA +SIFFLOTE +SIFILET +SIGILLE +SIGILLEE +SIGISBEE +SIGLE +SIGMA +SIGMOIDE +SIGNA +SIGNAI +SIGNAIT +SIGNAL +SIGNALA +SIGNALAI +SIGNALAT +SIGNALE +SIGNALEE +SIGNALER +SIGNALEZ +SIGNANT +SIGNASSE +SIGNAT +SIGNE +SIGNEE +SIGNENT +SIGNER +SIGNERA +SIGNERAI +SIGNEREZ +SIGNET +SIGNEZ +SIGNIEZ +SIGNIFIA +SIGNIFIE +SILENCE +SILENE +SILEX +SILICATE +SILICE +SILICEUX +SILICIUM +SILICONA +SILICONE +SILICOSE +SILICULE +SILIONNE +SILIQUE +SILLAGE +SILLET +SILLON +SILLONNA +SILLONNE +SILO +SILOTAGE +SILPHE +SILURE +SILURIEN +SIMA +SIMAGREE +SIMARRE +SIMARUBA +SIMBLEAU +SIMIEN +SIMIENNE +SIMILI +SIMILISA +SIMILISE +SIMILOR +SIMONIE +SIMOUN +SIMPLE +SIMPLET +SIMPLEXE +SIMULA +SIMULAI +SIMULAIT +SIMULANT +SIMULAT +SIMULE +SIMULEE +SIMULENT +SIMULER +SIMULERA +SIMULEZ +SIMULIEZ +SINAPISE +SINCERE +SINCIPUT +SINECURE +SINGE +SINGEA +SINGEAI +SINGEAIT +SINGEANT +SINGEAT +SINGEE +SINGENT +SINGER +SINGERA +SINGERAI +SINGEREZ +SINGERIE +SINGEZ +SINGIEZ +SINGLE +SINISA +SINISAI +SINISAIT +SINISANT +SINISAT +SINISE +SINISEE +SINISENT +SINISER +SINISERA +SINISEZ +SINISIEZ +SINISTRE +SINITE +SINON +SINUEUSE +SINUEUX +SINUSITE +SIONISME +SIONISTE +SIOUX +SIPHOIDE +SIPHON +SIPHONNA +SIPHONNE +SIRDAR +SIRE +SIRENE +SIREX +SIRLI +SIROCCO +SIROCO +SIROP +SIROTA +SIROTAI +SIROTAIT +SIROTANT +SIROTAT +SIROTE +SIROTEE +SIROTENT +SIROTER +SIROTERA +SIROTEZ +SIROTIEZ +SIRUPEUX +SIRVENTE +SISAL +SISE +SISMAL +SISMALE +SISMIQUE +SISTRE +SISYMBRE +SITAR +SITE +SITOT +SITTELLE +SITUA +SITUAI +SITUAIT +SITUANT +SITUASSE +SITUAT +SITUE +SITUEE +SITUENT +SITUER +SITUERA +SITUERAI +SITUEREZ +SITUEZ +SITUIEZ +SIUM +SIXAIN +SIXIEME +SIXTE +SIZAIN +SIZERIN +SKAI +SKATE +SKATING +SKETCH +SKIA +SKIABLE +SKIAI +SKIAIT +SKIANT +SKIASSE +SKIAT +SKIE +SKIENT +SKIER +SKIERA +SKIERAI +SKIERAIT +SKIERENT +SKIEREZ +SKIERIEZ +SKIEUR +SKIEUSE +SKIEZ +SKIF +SKIFF +SKIIEZ +SKIPPER +SLALOM +SLALOMA +SLALOMAI +SLALOMAT +SLALOME +SLALOMER +SLALOMEZ +SLANG +SLAVE +SLAVISA +SLAVISAI +SLAVISAT +SLAVISE +SLAVISEE +SLAVISER +SLAVISEZ +SLAVISTE +SLAVON +SLEEPING +SLIP +SLOGAN +SLOOP +SLOUGHI +SLOVAQUE +SLOVENE +SLOW +SMALA +SMALT +SMALTINE +SMART +SMASH +SMASHA +SMASHAI +SMASHAIT +SMASHANT +SMASHAT +SMASHE +SMASHEE +SMASHENT +SMASHER +SMASHERA +SMASHEZ +SMASHIEZ +SMICARD +SMICARDE +SMILAX +SMILLA +SMILLAGE +SMILLAI +SMILLAIT +SMILLANT +SMILLAT +SMILLE +SMILLEE +SMILLENT +SMILLER +SMILLERA +SMILLEZ +SMILLIEZ +SMOG +SMOKING +SMOLT +SMURF +SNACK +SNIFF +SNIFFA +SNIFFAI +SNIFFAIT +SNIFFANT +SNIFFAT +SNIFFE +SNIFFEE +SNIFFENT +SNIFFER +SNIFFERA +SNIFFEZ +SNIFFIEZ +SNOB +SNOBA +SNOBAI +SNOBAIT +SNOBANT +SNOBASSE +SNOBAT +SNOBE +SNOBEE +SNOBENT +SNOBER +SNOBERA +SNOBERAI +SNOBEREZ +SNOBEZ +SNOBIEZ +SNOBISME +SOBRE +SOBRIETE +SOCIABLE +SOCIAL +SOCIALE +SOCIETE +SOCLE +SOCQUE +SODA +SODE +SODEE +SODIQUE +SODIUM +SODOKU +SODOMIE +SODOMISA +SODOMISE +SODOMITE +SOEUR +SOFA +SOFFITE +SOFTWARE +SOIE +SOIENT +SOIERIE +SOIF +SOIFFARD +SOIGNA +SOIGNAI +SOIGNAIT +SOIGNANT +SOIGNAT +SOIGNE +SOIGNEE +SOIGNENT +SOIGNER +SOIGNERA +SOIGNEUR +SOIGNEUX +SOIGNEZ +SOIGNIEZ +SOIN +SOIR +SOIREE +SOIT +SOJA +SOLAIRE +SOLARISA +SOLARISE +SOLARIUM +SOLDA +SOLDAI +SOLDAIT +SOLDANT +SOLDASSE +SOLDAT +SOLDATE +SOLDE +SOLDEE +SOLDENT +SOLDER +SOLDERA +SOLDERAI +SOLDEREZ +SOLDEUR +SOLDEUSE +SOLDEZ +SOLDIEZ +SOLE +SOLEAIRE +SOLEIL +SOLEN +SOLENNEL +SOLERET +SOLEX +SOLFEGE +SOLFIA +SOLFIAI +SOLFIAIT +SOLFIANT +SOLFIAT +SOLFIE +SOLFIEE +SOLFIENT +SOLFIER +SOLFIERA +SOLFIEZ +SOLFIIEZ +SOLIDAGE +SOLIDE +SOLIDITE +SOLIFLUA +SOLIFLUE +SOLIN +SOLIPEDE +SOLISTE +SOLITUDE +SOLIVE +SOLIVEAU +SOLMISA +SOLMISAI +SOLMISAT +SOLMISE +SOLMISEE +SOLMISER +SOLMISEZ +SOLO +SOLSTICE +SOLUBLE +SOLUTE +SOLUTION +SOLVABLE +SOLVANT +SOMA +SOMATION +SOMATISA +SOMATISE +SOMBRA +SOMBRAI +SOMBRAIT +SOMBRANT +SOMBRAT +SOMBRE +SOMBRENT +SOMBRER +SOMBRERA +SOMBRERO +SOMBREZ +SOMBRIEZ +SOMITE +SOMMA +SOMMAI +SOMMAIRE +SOMMAIT +SOMMANT +SOMMASSE +SOMMAT +SOMME +SOMMEE +SOMMEIL +SOMMENT +SOMMER +SOMMERA +SOMMERAI +SOMMEREZ +SOMMET +SOMMEZ +SOMMIER +SOMMIEZ +SOMMITAL +SOMMITE +SOMNOLA +SOMNOLAI +SOMNOLAT +SOMNOLE +SOMNOLER +SOMNOLEZ +SONAR +SONATE +SONATINE +SONDA +SONDAGE +SONDAI +SONDAIT +SONDANT +SONDASSE +SONDAT +SONDE +SONDEE +SONDENT +SONDER +SONDERA +SONDERAI +SONDEREZ +SONDEUR +SONDEUSE +SONDEZ +SONDIEZ +SONGE +SONGEA +SONGEAI +SONGEAIT +SONGEANT +SONGEAT +SONGENT +SONGER +SONGERA +SONGERAI +SONGEREZ +SONGERIE +SONGEUR +SONGEUSE +SONGEZ +SONGIEZ +SONIQUE +SONNA +SONNAI +SONNAIT +SONNANT +SONNASSE +SONNAT +SONNE +SONNEE +SONNENT +SONNER +SONNERA +SONNERAI +SONNEREZ +SONNERIE +SONNET +SONNETTE +SONNEUR +SONNEZ +SONNIEZ +SONO +SONORE +SONORISA +SONORISE +SONORITE +SONT +SOPHISME +SOPHISTE +SOPHORA +SOPRANI +SOPRANO +SORBE +SORBET +SORBIER +SORBITOL +SORCIER +SORCIERE +SORDIDE +SORE +SORGHO +SORGUA +SORGUAI +SORGUAIT +SORGUANT +SORGUAT +SORGUE +SORGUENT +SORGUER +SORGUERA +SORGUEZ +SORGUIEZ +SORNETTE +SORORAL +SORORALE +SORT +SORTABLE +SORTAIT +SORTANT +SORTE +SORTENT +SORTEZ +SORTI +SORTIE +SORTIEZ +SORTIR +SORTIRA +SORTIRAI +SORTIREZ +SORTISSE +SORTIT +SOSIE +SOTCH +SOTIE +SOTTE +SOTTISE +SOUAHELI +SOUCHE +SOUCHET +SOUCHETA +SOUCHETE +SOUCHEVA +SOUCHEVE +SOUCI +SOUCIA +SOUCIAI +SOUCIAIT +SOUCIANT +SOUCIAT +SOUCIE +SOUCIEE +SOUCIENT +SOUCIER +SOUCIERA +SOUCIEUX +SOUCIEZ +SOUCIIEZ +SOUCOUPE +SOUDA +SOUDABLE +SOUDAGE +SOUDAI +SOUDAIN +SOUDAINE +SOUDAIT +SOUDAN +SOUDANT +SOUDARD +SOUDASSE +SOUDAT +SOUDE +SOUDEE +SOUDENT +SOUDER +SOUDERA +SOUDERAI +SOUDEREZ +SOUDEUR +SOUDEUSE +SOUDEZ +SOUDIER +SOUDIERE +SOUDIEZ +SOUDOIE +SOUDOYA +SOUDOYAI +SOUDOYAT +SOUDOYE +SOUDOYEE +SOUDOYER +SOUDOYEZ +SOUDURE +SOUE +SOUFFERT +SOUFFLA +SOUFFLAI +SOUFFLAT +SOUFFLE +SOUFFLEE +SOUFFLER +SOUFFLET +SOUFFLEZ +SOUFFRE +SOUFFREZ +SOUFFRIR +SOUFFRIT +SOUFISME +SOUFRA +SOUFRAGE +SOUFRAI +SOUFRAIT +SOUFRANT +SOUFRAT +SOUFRE +SOUFREE +SOUFRENT +SOUFRER +SOUFRERA +SOUFREUR +SOUFREZ +SOUFRIEZ +SOUFROIR +SOUHAIT +SOUHAITA +SOUHAITE +SOUILLA +SOUILLAI +SOUILLAT +SOUILLE +SOUILLEE +SOUILLER +SOUILLEZ +SOUILLON +SOUK +SOUL +SOULA +SOULAGE +SOULAGEA +SOULAGEE +SOULAGER +SOULAGEZ +SOULAI +SOULAIT +SOULANE +SOULANT +SOULARD +SOULARDE +SOULASSE +SOULAT +SOULAUD +SOULAUDE +SOULE +SOULEE +SOULENT +SOULER +SOULERA +SOULERAI +SOULEREZ +SOULERIE +SOULEVA +SOULEVAI +SOULEVAT +SOULEVE +SOULEVEE +SOULEVER +SOULEVEZ +SOULEZ +SOULIER +SOULIEZ +SOULIGNA +SOULIGNE +SOULOT +SOULOTE +SOULTE +SOUMET +SOUMETTE +SOUMISE +SOUMISSE +SOUMIT +SOUPA +SOUPAI +SOUPAIT +SOUPANT +SOUPAPE +SOUPASSE +SOUPAT +SOUPCON +SOUPE +SOUPENT +SOUPENTE +SOUPER +SOUPERA +SOUPERAI +SOUPEREZ +SOUPESA +SOUPESAI +SOUPESAT +SOUPESE +SOUPESEE +SOUPESER +SOUPESEZ +SOUPEUR +SOUPEUSE +SOUPEZ +SOUPIERE +SOUPIEZ +SOUPIR +SOUPIRA +SOUPIRAI +SOUPIRAT +SOUPIRE +SOUPIRER +SOUPIREZ +SOUPLE +SOUQUA +SOUQUAI +SOUQUAIT +SOUQUANT +SOUQUAT +SOUQUE +SOUQUEE +SOUQUENT +SOUQUER +SOUQUERA +SOUQUEZ +SOUQUIEZ +SOURATE +SOURCE +SOURCIER +SOURCIL +SOURD +SOURDE +SOURDINA +SOURDINE +SOURI +SOURIAIT +SOURIANT +SOURIE +SOURIENT +SOURIEZ +SOURIIEZ +SOURIRA +SOURIRAI +SOURIRE +SOURIREZ +SOURISSE +SOURIT +SOUSCRIT +SOUTACHA +SOUTACHE +SOUTANE +SOUTE +SOUTENEZ +SOUTENIR +SOUTENU +SOUTENUE +SOUTIEN +SOUTIENT +SOUTIER +SOUTINT +SOUTIRA +SOUTIRAI +SOUTIRAT +SOUTIRE +SOUTIREE +SOUTIRER +SOUTIREZ +SOUVENEZ +SOUVENIR +SOUVENT +SOUVENU +SOUVENUE +SOUVIENT +SOUVINT +SOVIET +SOVKHOZE +SOYA +SOYER +SOYEUSE +SOYEUX +SOYEZ +SPACIEUX +SPADICE +SPAHI +SPALAX +SPALTER +SPARDECK +SPART +SPARTE +SPASME +SPATH +SPATHE +SPATIAL +SPATIALE +SPATULE +SPEAKER +SPECIAL +SPECIALE +SPECIEUX +SPECIFIA +SPECIFIE +SPECIMEN +SPECTRAL +SPECTRE +SPECULA +SPECULAI +SPECULAT +SPECULE +SPECULER +SPECULEZ +SPECULUM +SPEECH +SPENCER +SPERGULE +SPERME +SPHACELA +SPHACELE +SPHAIGNE +SPHERE +SPHEX +SPHINX +SPIDER +SPINAL +SPINALE +SPINELLE +SPIRACLE +SPIRAL +SPIRALE +SPIRANT +SPIRE +SPIREE +SPIRIFER +SPIRILLE +SPIRITE +SPIRORBE +SPITANT +SPITTA +SPITTAI +SPITTAIT +SPITTANT +SPITTAT +SPITTE +SPITTEE +SPITTENT +SPITTER +SPITTERA +SPITTEZ +SPITTIEZ +SPLEEN +SPLITTA +SPLITTAI +SPLITTAT +SPLITTE +SPLITTEE +SPLITTER +SPLITTEZ +SPOLIA +SPOLIAI +SPOLIAIT +SPOLIANT +SPOLIAT +SPOLIE +SPOLIEE +SPOLIENT +SPOLIER +SPOLIERA +SPOLIEZ +SPOLIIEZ +SPONDEE +SPONSOR +SPONTANE +SPORANGE +SPORE +SPORT +SPORTIF +SPORTIVE +SPORTULE +SPORULA +SPORULAI +SPORULAT +SPORULE +SPORULER +SPORULEZ +SPOT +SPOUTNIK +SPRAT +SPRAY +SPRINT +SPRINTA +SPRINTAI +SPRINTAT +SPRINTE +SPRINTER +SPRINTEZ +SPRUE +SPUMEUSE +SPUMEUX +SQUALE +SQUAME +SQUAMEUX +SQUAMULE +SQUARE +SQUASH +SQUAT +SQUATINE +SQUATTA +SQUATTAI +SQUATTAT +SQUATTE +SQUATTEE +SQUATTER +SQUATTEZ +SQUAW +SQUILLE +SQUIRRE +SQUIRRHE +STABLE +STACCATO +STADE +STADIA +STAFF +STAFFA +STAFFAI +STAFFAIT +STAFFANT +STAFFAT +STAFFE +STAFFEE +STAFFENT +STAFFER +STAFFERA +STAFFEUR +STAFFEZ +STAFFIEZ +STAGE +STAGNA +STAGNAI +STAGNAIT +STAGNANT +STAGNAT +STAGNE +STAGNENT +STAGNER +STAGNERA +STAGNEZ +STAGNIEZ +STAKNING +STALAG +STALLE +STAMINAL +STAMINE +STAMINEE +STANCE +STAND +STANDARD +STANDING +STAR +STARIE +STARIFIA +STARIFIE +STARISA +STARISAI +STARISAT +STARISE +STARISEE +STARISER +STARISEZ +STAROSTE +STARTER +STASE +STATERE +STATICE +STATIF +STATION +STATIQUE +STATIVE +STATOR +STATUA +STATUAI +STATUAIT +STATUANT +STATUAT +STATUE +STATUEE +STATUENT +STATUER +STATUERA +STATUEZ +STATUFIA +STATUFIE +STATUIEZ +STATURE +STATUT +STAWUG +STAYER +STEAK +STEAMER +STEARATE +STEARINE +STEATITE +STEATOSE +STEEPLE +STELE +STELLAGE +STEM +STEMM +STENCIL +STENO +STENOPE +STENOSE +STENTOR +STEPPAGE +STEPPE +STEPPER +STEPPEUR +STERA +STERAI +STERAIT +STERANT +STERASSE +STERAT +STERE +STEREE +STERENT +STEREO +STERER +STERERA +STERERAI +STEREREZ +STEREZ +STERIDE +STERIEZ +STERILE +STERILET +STERIQUE +STERLET +STERLING +STERNAL +STERNALE +STERNE +STERNUM +STEROIDE +STEROL +STEWARD +STHENE +STIBIE +STIBIEE +STIBINE +STICK +STIGMATE +STIMULA +STIMULAI +STIMULAT +STIMULE +STIMULEE +STIMULER +STIMULEZ +STIPE +STIPITE +STIPITEE +STIPLE +STIPULA +STIPULAI +STIPULAT +STIPULE +STIPULEE +STIPULER +STIPULEZ +STOCK +STOCKA +STOCKAGE +STOCKAI +STOCKAIT +STOCKANT +STOCKAT +STOCKE +STOCKEE +STOCKENT +STOCKER +STOCKERA +STOCKEZ +STOCKIEZ +STOICIEN +STOIQUE +STOKER +STOLON +STOMACAL +STOMATE +STOMOXE +STOP +STOPPA +STOPPAGE +STOPPAI +STOPPAIT +STOPPANT +STOPPAT +STOPPE +STOPPEE +STOPPENT +STOPPER +STOPPERA +STOPPEUR +STOPPEZ +STOPPIEZ +STORAX +STORE +STORISTE +STOUT +STRADIOT +STRATE +STRATEGE +STRATUM +STRESSA +STRESSAI +STRESSAT +STRESSE +STRESSEE +STRESSER +STRETCH +STRETTE +STRIA +STRIAI +STRIAIT +STRIANT +STRIASSE +STRIAT +STRICT +STRICTE +STRIDENT +STRIDOR +STRIDULA +STRIDULE +STRIE +STRIEE +STRIENT +STRIER +STRIERA +STRIERAI +STRIEREZ +STRIEZ +STRIGE +STRIGILE +STRIIEZ +STRING +STRIPAGE +STRIPPA +STRIPPAI +STRIPPAT +STRIPPE +STRIPPEE +STRIPPER +STRIPPEZ +STRIQUA +STRIQUAI +STRIQUAT +STRIQUE +STRIQUEE +STRIQUER +STRIQUEZ +STRIURE +STRIX +STROBILE +STROMA +STROMBE +STRONGLE +STROPHE +STRUME +STRYGE +STUC +STUCAGE +STUDETTE +STUDIEUX +STUDIO +STUPEFIA +STUPEFIE +STUPEUR +STUPIDE +STUPRE +STUQUA +STUQUAI +STUQUAIT +STUQUANT +STUQUAT +STUQUE +STUQUEE +STUQUENT +STUQUER +STUQUERA +STUQUEZ +STUQUIEZ +STYLA +STYLAI +STYLAIT +STYLANT +STYLASSE +STYLAT +STYLE +STYLEE +STYLENT +STYLER +STYLERA +STYLERAI +STYLEREZ +STYLET +STYLEZ +STYLIEZ +STYLISA +STYLISAI +STYLISAT +STYLISE +STYLISEE +STYLISER +STYLISEZ +STYLISME +STYLISTE +STYLITE +STYLO +STYLOIDE +STYRAX +STYRENE +SUAGE +SUAI +SUAIRE +SUAIT +SUANT +SUASSE +SUAT +SUAVE +SUAVITE +SUBAIGU +SUBAIGUE +SUBALPIN +SUBER +SUBEREUX +SUBERINE +SUBI +SUBIE +SUBIR +SUBIRA +SUBIRAI +SUBIRAIT +SUBIRENT +SUBIREZ +SUBIRIEZ +SUBIRONT +SUBISSE +SUBIT +SUBITE +SUBITO +SUBJUGUA +SUBJUGUE +SUBLIMA +SUBLIMAI +SUBLIMAT +SUBLIME +SUBLIMEE +SUBLIMER +SUBLIMEZ +SUBMERGE +SUBODORA +SUBODORE +SUBORNA +SUBORNAI +SUBORNAT +SUBORNE +SUBORNEE +SUBORNER +SUBORNEZ +SUBROGE +SUBROGEA +SUBROGEE +SUBROGER +SUBROGEZ +SUBSIDE +SUBSISTA +SUBSISTE +SUBSTRAT +SUBTIL +SUBTILE +SUBULE +SUBULEE +SUBVENEZ +SUBVENIR +SUBVENU +SUBVENUE +SUBVERTI +SUBVIENT +SUBVINT +SUCA +SUCAI +SUCAIT +SUCANT +SUCASSE +SUCAT +SUCCEDA +SUCCEDAI +SUCCEDAT +SUCCEDE +SUCCEDEE +SUCCEDER +SUCCEDEZ +SUCCIN +SUCCINCT +SUCCION +SUCCOMBA +SUCCOMBE +SUCCUBE +SUCE +SUCEE +SUCEMENT +SUCENT +SUCER +SUCERA +SUCERAI +SUCERAIT +SUCERENT +SUCEREZ +SUCERIEZ +SUCETTE +SUCEUR +SUCEUSE +SUCEZ +SUCIEZ +SUCOIR +SUCON +SUCOTA +SUCOTAI +SUCOTAIT +SUCOTANT +SUCOTAT +SUCOTE +SUCOTEE +SUCOTENT +SUCOTER +SUCOTERA +SUCOTEZ +SUCOTIEZ +SUCRA +SUCRAGE +SUCRAI +SUCRAIT +SUCRANT +SUCRASE +SUCRASSE +SUCRAT +SUCRATE +SUCRE +SUCREE +SUCRENT +SUCRER +SUCRERA +SUCRERAI +SUCREREZ +SUCRERIE +SUCREZ +SUCRIER +SUCRIERE +SUCRIEZ +SUCRIN +SUDATION +SUDISTE +SUDORAL +SUDORALE +SUEDE +SUEDEE +SUEDINE +SUEDOISE +SUEE +SUENT +SUER +SUERA +SUERAI +SUERAIT +SUERENT +SUEREZ +SUERIEZ +SUETTE +SUEUR +SUEZ +SUFFETE +SUFFIRA +SUFFIRAI +SUFFIRE +SUFFIREZ +SUFFISE +SUFFISEZ +SUFFISSE +SUFFIT +SUFFITE +SUFFIXA +SUFFIXAI +SUFFIXAL +SUFFIXAT +SUFFIXE +SUFFIXEE +SUFFIXER +SUFFIXEZ +SUFFOQUA +SUFFOQUE +SUFFRAGE +SUGGERA +SUGGERAI +SUGGERAT +SUGGERE +SUGGEREE +SUGGERER +SUGGEREZ +SUICIDA +SUICIDAI +SUICIDAT +SUICIDE +SUICIDEE +SUICIDER +SUICIDEZ +SUIE +SUIEZ +SUIF +SUIFA +SUIFAI +SUIFAIT +SUIFANT +SUIFASSE +SUIFAT +SUIFE +SUIFEE +SUIFENT +SUIFER +SUIFERA +SUIFERAI +SUIFEREZ +SUIFEZ +SUIFFA +SUIFFAI +SUIFFAIT +SUIFFANT +SUIFFAT +SUIFFE +SUIFFEE +SUIFFENT +SUIFFER +SUIFFERA +SUIFFEUX +SUIFFEZ +SUIFFIEZ +SUIFIEZ +SUINT +SUINTA +SUINTAI +SUINTAIT +SUINTANT +SUINTAT +SUINTE +SUINTEE +SUINTENT +SUINTER +SUINTERA +SUINTEZ +SUINTIEZ +SUISSE +SUIT +SUITE +SUITEE +SUIVAIT +SUIVANT +SUIVE +SUIVENT +SUIVEUR +SUIVEUSE +SUIVEZ +SUIVI +SUIVIE +SUIVIEZ +SUIVISME +SUIVISSE +SUIVISTE +SUIVIT +SUIVRA +SUIVRAI +SUIVRAIT +SUIVRE +SUIVREZ +SUIVRIEZ +SUIVRONT +SUJET +SUJETION +SUJETTE +SULFATA +SULFATAI +SULFATAT +SULFATE +SULFATEE +SULFATER +SULFATEZ +SULFITA +SULFITAI +SULFITAT +SULFITE +SULFITEE +SULFITER +SULFITEZ +SULFONA +SULFONAI +SULFONAT +SULFONE +SULFONEE +SULFONER +SULFONEZ +SULFOSEL +SULFURA +SULFURAI +SULFURAT +SULFURE +SULFUREE +SULFURER +SULFUREZ +SULKY +SULTAN +SULTANAT +SULTANE +SUMAC +SUMERIEN +SUMMUM +SUNLIGHT +SUNNA +SUNNITE +SUPER +SUPERBE +SUPERE +SUPERFIN +SUPERFLU +SUPERMAN +SUPERMEN +SUPIN +SUPPLEA +SUPPLEAI +SUPPLEAT +SUPPLEE +SUPPLEEE +SUPPLEER +SUPPLEEZ +SUPPLIA +SUPPLIAI +SUPPLIAT +SUPPLICE +SUPPLIE +SUPPLIEE +SUPPLIER +SUPPLIEZ +SUPPORT +SUPPORTA +SUPPORTE +SUPPOSA +SUPPOSAI +SUPPOSAT +SUPPOSE +SUPPOSEE +SUPPOSER +SUPPOSEZ +SUPPOT +SUPPRIMA +SUPPRIME +SUPPURA +SUPPURAI +SUPPURAT +SUPPURE +SUPPURER +SUPPUREZ +SUPPUTA +SUPPUTAI +SUPPUTAT +SUPPUTE +SUPPUTEE +SUPPUTER +SUPPUTEZ +SUPRA +SUPREME +SURAH +SURAIGU +SURAIGUE +SURANNE +SURANNEE +SURATE +SURBOUM +SURCHOIX +SURCOUPA +SURCOUPE +SURCROIT +SURDENT +SURDITE +SURDORA +SURDORAI +SURDORAT +SURDORE +SURDOREE +SURDORER +SURDOREZ +SURDOUE +SURDOUEE +SURE +SUREAU +SURELEVA +SURELEVE +SUREMENT +SURENT +SURET +SURETE +SURETTE +SURF +SURFA +SURFACA +SURFACAI +SURFACAT +SURFACE +SURFACEE +SURFACER +SURFACEZ +SURFAI +SURFAIRE +SURFAIT +SURFAITE +SURFANT +SURFASSE +SURFAT +SURFE +SURFENT +SURFER +SURFERA +SURFERAI +SURFEREZ +SURFEZ +SURFIEZ +SURFIL +SURFILA +SURFILAI +SURFILAT +SURFILE +SURFILEE +SURFILER +SURFILEZ +SURFIN +SURFINE +SURFISSE +SURFIT +SURFONDU +SURFONT +SURGELA +SURGELAI +SURGELAT +SURGELE +SURGELEE +SURGELER +SURGELEZ +SURGEON +SURGI +SURGIR +SURGIRA +SURGIRAI +SURGIREZ +SURGISSE +SURGIT +SURGLACA +SURGLACE +SURHOMME +SURI +SURICATE +SURIKATE +SURIN +SURINA +SURINAI +SURINAIT +SURINANT +SURINAT +SURINE +SURINEE +SURINENT +SURINER +SURINERA +SURINEZ +SURINIEZ +SURIR +SURIRA +SURIRAI +SURIRAIT +SURIRENT +SURIREZ +SURIRIEZ +SURIRONT +SURISSE +SURIT +SURJALA +SURJALAI +SURJALAT +SURJALE +SURJALER +SURJALEZ +SURJET +SURJETA +SURJETAI +SURJETAT +SURJETE +SURJETEE +SURJETER +SURJETEZ +SURJETTE +SURLIA +SURLIAI +SURLIAIT +SURLIANT +SURLIAT +SURLIE +SURLIEE +SURLIENT +SURLIER +SURLIERA +SURLIEZ +SURLIIEZ +SURLONGE +SURLOUA +SURLOUAI +SURLOUAT +SURLOUE +SURLOUEE +SURLOUER +SURLOUEZ +SURLOYER +SURMENA +SURMENAI +SURMENAT +SURMENE +SURMENEE +SURMENER +SURMENEZ +SURMOI +SURMONTA +SURMONTE +SURMOULA +SURMOULE +SURMULET +SURMULOT +SURNAGE +SURNAGEA +SURNAGER +SURNAGEZ +SURNOM +SURNOMMA +SURNOMME +SUROFFRE +SUROIT +SUROXYDA +SUROXYDE +SURPAIE +SURPASSA +SURPASSE +SURPAYA +SURPAYAI +SURPAYAT +SURPAYE +SURPAYEE +SURPAYER +SURPAYEZ +SURPIQUA +SURPIQUE +SURPLACE +SURPLOMB +SURPREND +SURPRIME +SURPRISE +SURPRIT +SURSAUT +SURSAUTA +SURSAUTE +SURSEMA +SURSEMAI +SURSEMAT +SURSEME +SURSEMEE +SURSEMER +SURSEMEZ +SURSEOIR +SURSISE +SURSISSE +SURSIT +SURSOIE +SURSOIT +SURSOYEZ +SURTAXA +SURTAXAI +SURTAXAT +SURTAXE +SURTAXEE +SURTAXER +SURTAXEZ +SURTONTE +SURTOUT +SURVECU +SURVECUE +SURVECUT +SURVENEZ +SURVENIR +SURVENTE +SURVENU +SURVENUE +SURVIE +SURVIENT +SURVINT +SURVIRA +SURVIRAI +SURVIRAT +SURVIRE +SURVIRER +SURVIREZ +SURVIT +SURVIVE +SURVIVEZ +SURVIVRA +SURVIVRE +SURVOL +SURVOLA +SURVOLAI +SURVOLAT +SURVOLE +SURVOLEE +SURVOLER +SURVOLEZ +SURVOLTA +SURVOLTE +SUSCITA +SUSCITAI +SUSCITAT +SUSCITE +SUSCITEE +SUSCITER +SUSCITEZ +SUSDIT +SUSDITE +SUSHI +SUSNOMME +SUSPECT +SUSPECTA +SUSPECTE +SUSPEND +SUSPENDE +SUSPENDU +SUSPENSE +SUSPENTE +SUSSE +SUSTENTA +SUSTENTE +SUSURRA +SUSURRAI +SUSURRAT +SUSURRE +SUSURREE +SUSURRER +SUSURREZ +SUSVISE +SUSVISEE +SUTRA +SUTURA +SUTURAI +SUTURAIT +SUTURAL +SUTURALE +SUTURANT +SUTURAT +SUTURE +SUTUREE +SUTURENT +SUTURER +SUTURERA +SUTUREZ +SUTURIEZ +SUZERAIN +SVASTIKA +SVELTE +SWAHELI +SWAHELIE +SWAHILI +SWAHILIE +SWAP +SWASTIKA +SWEATER +SWING +SWINGUA +SWINGUAI +SWINGUAT +SWINGUE +SWINGUER +SWINGUEZ +SYBARITE +SYCOMORE +SYENITE +SYLLABA +SYLLABAI +SYLLABAT +SYLLABE +SYLLABEE +SYLLABER +SYLLABEZ +SYLLEPSE +SYLPHE +SYLPHIDE +SYLVAIN +SYLVE +SYMBIOSE +SYMBIOTE +SYMBOLE +SYMETRIE +SYMPA +SYMPHYSE +SYMPTOME +SYNAPSE +SYNCOPA +SYNCOPAI +SYNCOPAL +SYNCOPAT +SYNCOPE +SYNCOPEE +SYNCOPER +SYNCOPEZ +SYNDIC +SYNDICAL +SYNDICAT +SYNDIQUA +SYNDIQUE +SYNDROME +SYNECHIE +SYNERESE +SYNERGIE +SYNODAL +SYNODALE +SYNODE +SYNONYME +SYNOPSE +SYNOPSIE +SYNOVIE +SYNTAGME +SYNTAXE +SYNTHESE +SYNTONE +SYNTONIE +SYRIAQUE +SYRIEN +SYRIENNE +SYRINGE +SYRINX +SYRPHE +SYSTEME +SYSTYLE +TABAC +TABAGIE +TABAR +TABARD +TABASSA +TABASSAI +TABASSAT +TABASSE +TABASSEE +TABASSER +TABLA +TABLAI +TABLAIT +TABLANT +TABLAR +TABLASSE +TABLAT +TABLE +TABLEAU +TABLEE +TABLENT +TABLER +TABLERA +TABLERAI +TABLEREZ +TABLETTE +TABLEUR +TABLEZ +TABLIER +TABLIEZ +TABLOID +TABOR +TABOU +TABOUE +TABOURET +TABULA +TABULAI +TABULAIT +TABULANT +TABULAT +TABULE +TABULENT +TABULER +TABULERA +TABULEZ +TABULIEZ +TACCA +TACET +TACHA +TACHAI +TACHAIT +TACHANT +TACHASSE +TACHAT +TACHE +TACHEE +TACHENT +TACHER +TACHERA +TACHERAI +TACHEREZ +TACHERON +TACHETA +TACHETAI +TACHETAT +TACHETE +TACHETEE +TACHETER +TACHETEZ +TACHETTE +TACHEZ +TACHIEZ +TACHINE +TACHISME +TACHISTE +TACHYON +TACITE +TACON +TACOT +TACT +TACTILE +TACTIQUE +TACTISME +TADORNE +TAENIA +TAFIA +TAGAL +TAGETE +TAGETTE +TAHITIEN +TAIAUT +TAIE +TAIGA +TAILLA +TAILLADA +TAILLADE +TAILLAGE +TAILLAI +TAILLAIT +TAILLANT +TAILLAT +TAILLE +TAILLEE +TAILLENT +TAILLER +TAILLERA +TAILLEUR +TAILLEZ +TAILLIEZ +TAILLOIR +TAILLOLE +TAIN +TAIRA +TAIRAI +TAIRAIT +TAIRE +TAIREZ +TAIRIEZ +TAIRONT +TAISAIT +TAISANT +TAISE +TAISENT +TAISEUSE +TAISEUX +TAISEZ +TAISIEZ +TAIT +TAJINE +TALA +TALAI +TALAIT +TALANT +TALASSE +TALAT +TALC +TALE +TALEE +TALENT +TALER +TALERA +TALERAI +TALERAIT +TALERENT +TALEREZ +TALERIEZ +TALETH +TALEZ +TALIEZ +TALION +TALISMAN +TALITRE +TALLA +TALLAGE +TALLAI +TALLAIT +TALLANT +TALLASSE +TALLAT +TALLE +TALLENT +TALLER +TALLERA +TALLERAI +TALLEREZ +TALLETH +TALLEZ +TALLIEZ +TALLIPOT +TALMOUSE +TALMUD +TALOCHA +TALOCHAI +TALOCHAT +TALOCHE +TALOCHEE +TALOCHER +TALOCHEZ +TALON +TALONNA +TALONNAI +TALONNAT +TALONNE +TALONNEE +TALONNER +TALONNEZ +TALPACK +TALQUA +TALQUAI +TALQUAIT +TALQUANT +TALQUAT +TALQUE +TALQUEE +TALQUENT +TALQUER +TALQUERA +TALQUEUX +TALQUEZ +TALQUIEZ +TALURE +TALWEG +TAMANDUA +TAMANOIR +TAMARIN +TAMARIX +TAMBOUR +TAMIA +TAMIER +TAMIL +TAMISA +TAMISAGE +TAMISAI +TAMISAIT +TAMISANT +TAMISAT +TAMISE +TAMISEE +TAMISENT +TAMISER +TAMISERA +TAMISEUR +TAMISEZ +TAMISIER +TAMISIEZ +TAMOUL +TAMOULE +TAMPICO +TAMPON +TAMPONNA +TAMPONNE +TANAGRA +TANAISIE +TANCA +TANCAI +TANCAIT +TANCANT +TANCASSE +TANCAT +TANCE +TANCEE +TANCENT +TANCER +TANCERA +TANCERAI +TANCEREZ +TANCEZ +TANCHE +TANCIEZ +TANDEM +TANGAGE +TANGARA +TANGENCE +TANGENT +TANGENTE +TANGIBLE +TANGO +TANGON +TANGUA +TANGUAI +TANGUAIT +TANGUANT +TANGUAT +TANGUE +TANGUENT +TANGUER +TANGUERA +TANGUEZ +TANGUIEZ +TANIERE +TANIN +TANISA +TANISAGE +TANISAI +TANISAIT +TANISANT +TANISAT +TANISE +TANISEE +TANISENT +TANISER +TANISERA +TANISEZ +TANISIEZ +TANK +TANKER +TANKISTE +TANNA +TANNAGE +TANNAI +TANNAIT +TANNANT +TANNASSE +TANNAT +TANNE +TANNEE +TANNENT +TANNER +TANNERA +TANNERAI +TANNEREZ +TANNERIE +TANNEUR +TANNEUSE +TANNEZ +TANNIEZ +TANNIN +TANNIQUE +TANNISA +TANNISAI +TANNISAT +TANNISE +TANNISEE +TANNISER +TANNISEZ +TANREC +TANT +TANTALE +TANTIEME +TANTINE +TANTINET +TANTOT +TAOISME +TAOISTE +TAON +TAPA +TAPAGE +TAPAGEA +TAPAGEAI +TAPAGEAT +TAPAGENT +TAPAGER +TAPAGERA +TAPAGEUR +TAPAGEZ +TAPAGIEZ +TAPAI +TAPAIT +TAPANT +TAPASSE +TAPAT +TAPE +TAPECUL +TAPEE +TAPEMENT +TAPENADE +TAPENT +TAPER +TAPERA +TAPERAI +TAPERAIT +TAPERENT +TAPEREZ +TAPERIEZ +TAPETTE +TAPEUR +TAPEUSE +TAPEZ +TAPI +TAPIE +TAPIEZ +TAPIN +TAPINA +TAPINAI +TAPINAIT +TAPINANT +TAPINAT +TAPINE +TAPINENT +TAPINER +TAPINERA +TAPINEZ +TAPINIEZ +TAPIOCA +TAPIR +TAPIRA +TAPIRAI +TAPIRAIT +TAPIRENT +TAPIREZ +TAPIRIEZ +TAPIRONT +TAPISSA +TAPISSAI +TAPISSAT +TAPISSE +TAPISSEE +TAPISSER +TAPIT +TAPON +TAPONNA +TAPONNAI +TAPONNAT +TAPONNE +TAPONNEE +TAPONNER +TAPONNEZ +TAPOTA +TAPOTAGE +TAPOTAI +TAPOTAIT +TAPOTANT +TAPOTAT +TAPOTE +TAPOTEE +TAPOTENT +TAPOTER +TAPOTERA +TAPOTEZ +TAPOTIEZ +TAQUA +TAQUAI +TAQUAIT +TAQUANT +TAQUASSE +TAQUAT +TAQUE +TAQUEE +TAQUENT +TAQUER +TAQUERA +TAQUERAI +TAQUEREZ +TAQUET +TAQUEZ +TAQUIEZ +TAQUIN +TAQUINA +TAQUINAI +TAQUINAT +TAQUINE +TAQUINEE +TAQUINER +TAQUINEZ +TAQUOIR +TARA +TARAGE +TARAI +TARAIT +TARAMA +TARANT +TARARAGE +TARARE +TARASQUE +TARASSE +TARAT +TARATATA +TARAUD +TARAUDA +TARAUDAI +TARAUDAT +TARAUDE +TARAUDEE +TARAUDER +TARAUDEZ +TARBOUCH +TARD +TARDA +TARDAI +TARDAIT +TARDANT +TARDASSE +TARDAT +TARDE +TARDENT +TARDER +TARDERA +TARDERAI +TARDEREZ +TARDEZ +TARDIEZ +TARDIF +TARDIVE +TARE +TAREE +TARENT +TARENTE +TARER +TARERA +TARERAI +TARERAIT +TARERENT +TAREREZ +TARERIEZ +TARET +TAREZ +TARGE +TARGETTE +TARGUA +TARGUAI +TARGUAIT +TARGUANT +TARGUAT +TARGUE +TARGUEE +TARGUENT +TARGUER +TARGUERA +TARGUEZ +TARGUI +TARGUIE +TARGUIEZ +TARI +TARIE +TARIERE +TARIEZ +TARIF +TARIFA +TARIFAI +TARIFAIT +TARIFANT +TARIFAT +TARIFE +TARIFEE +TARIFENT +TARIFER +TARIFERA +TARIFEZ +TARIFIA +TARIFIAI +TARIFIAT +TARIFIE +TARIFIEE +TARIFIER +TARIFIEZ +TARIN +TARIR +TARIRA +TARIRAI +TARIRAIT +TARIRENT +TARIREZ +TARIRIEZ +TARIRONT +TARISSE +TARIT +TAROT +TAROTE +TAROTEE +TARPAN +TARPON +TARSAL +TARSALE +TARSE +TARSIEN +TARSIER +TARTAN +TARTANE +TARTARE +TARTARIN +TARTE +TARTI +TARTINA +TARTINAI +TARTINAT +TARTINE +TARTINEE +TARTINER +TARTINEZ +TARTIR +TARTIRA +TARTIRAI +TARTIREZ +TARTISSE +TARTIT +TARTRATE +TARTRE +TARTREUX +TARTUFE +TARTUFFE +TARZAN +TASSA +TASSAGE +TASSAI +TASSAIT +TASSANT +TASSASSE +TASSAT +TASSE +TASSEAU +TASSEE +TASSER +TASSERA +TASSERAI +TASSEREZ +TASSETTE +TASSILI +TATA +TATAI +TATAIT +TATAMI +TATANE +TATANT +TATARE +TATASSE +TATAT +TATE +TATEE +TATENT +TATER +TATERA +TATERAI +TATERAIT +TATERENT +TATEREZ +TATERIEZ +TATEUR +TATEZ +TATIEZ +TATILLON +TATONNA +TATONNAI +TATONNAT +TATONNE +TATONNER +TATONNEZ +TATOU +TATOUA +TATOUAGE +TATOUAI +TATOUAIT +TATOUANT +TATOUAT +TATOUE +TATOUEE +TATOUENT +TATOUER +TATOUERA +TATOUEUR +TATOUEZ +TATOUIEZ +TAULARD +TAULARDE +TAULE +TAULIER +TAULIERE +TAUPE +TAUPEE +TAUPIER +TAUPIERE +TAUPIN +TAURE +TAUREAU +TAURIN +TAURINE +TAUZIN +TAVELA +TAVELAI +TAVELAIT +TAVELANT +TAVELAT +TAVELE +TAVELEE +TAVELER +TAVELEZ +TAVELIEZ +TAVELLA +TAVELLAI +TAVELLAT +TAVELLE +TAVELLEE +TAVELLER +TAVELLEZ +TAVELURE +TAVERNE +TAVILLON +TAXA +TAXABLE +TAXAI +TAXAIT +TAXANT +TAXASSE +TAXAT +TAXATEUR +TAXATIF +TAXATION +TAXATIVE +TAXE +TAXEE +TAXENT +TAXER +TAXERA +TAXERAI +TAXERAIT +TAXERENT +TAXEREZ +TAXERIEZ +TAXEZ +TAXI +TAXIE +TAXIEZ +TAXIWAY +TAXODIUM +TAXON +TCHADOR +TCHAO +TCHEQUE +TCHITOLA +TECHNISA +TECHNISE +TECK +TECKEL +TECTRICE +TEFLON +TEGUMENT +TEIGNAIT +TEIGNANT +TEIGNE +TEIGNENT +TEIGNEUX +TEIGNEZ +TEIGNIEZ +TEIGNIT +TEILLA +TEILLAGE +TEILLAI +TEILLAIT +TEILLANT +TEILLAT +TEILLE +TEILLEE +TEILLENT +TEILLER +TEILLERA +TEILLEUR +TEILLEZ +TEILLIEZ +TEINDRA +TEINDRAI +TEINDRE +TEINDREZ +TEINT +TEINTA +TEINTAI +TEINTAIT +TEINTANT +TEINTAT +TEINTE +TEINTEE +TEINTENT +TEINTER +TEINTERA +TEINTEZ +TEINTIEZ +TEINTURE +TELAMON +TELE +TELEFILM +TELEGA +TELEMARK +TELESKI +TELETYPE +TELEVISA +TELEVISE +TELEX +TELEXA +TELEXAI +TELEXAIT +TELEXANT +TELEXAT +TELEXE +TELEXEE +TELEXENT +TELEXER +TELEXERA +TELEXEZ +TELEXIEZ +TELL +TELLE +TELLIERE +TELLURE +TELSON +TEMERITE +TEMOIGNA +TEMOIGNE +TEMOIN +TEMPE +TEMPERA +TEMPERAI +TEMPERAT +TEMPERE +TEMPEREE +TEMPERER +TEMPEREZ +TEMPETA +TEMPETAI +TEMPETAT +TEMPETE +TEMPETER +TEMPETEZ +TEMPLE +TEMPLIER +TEMPO +TEMPORAL +TEMPOREL +TENABLE +TENACE +TENACITE +TENAILLA +TENAILLE +TENAIT +TENANT +TEND +TENDAIT +TENDANCE +TENDANT +TENDE +TENDELLE +TENDENT +TENDER +TENDERIE +TENDEUR +TENDEUSE +TENDEZ +TENDIEZ +TENDISSE +TENDIT +TENDOIR +TENDON +TENDRA +TENDRAI +TENDRAIT +TENDRE +TENDRETE +TENDREZ +TENDRIEZ +TENDRON +TENDRONT +TENDU +TENDUE +TENEMENT +TENESME +TENEUR +TENEUSE +TENEZ +TENIA +TENIEZ +TENIFUGE +TENIR +TENON +TENONNA +TENONNAI +TENONNAT +TENONNE +TENONNEE +TENONNER +TENONNEZ +TENOR +TENORINO +TENORISA +TENORISE +TENORITE +TENREC +TENSION +TENSON +TENTA +TENTAI +TENTAIT +TENTANT +TENTASSE +TENTAT +TENTE +TENTEE +TENTENT +TENTER +TENTERA +TENTERAI +TENTEREZ +TENTEZ +TENTIEZ +TENTURE +TENU +TENUE +TENUITE +TENURE +TENUTO +TEORBE +TEQUILA +TERBINE +TERBIUM +TERCA +TERCAI +TERCAIT +TERCANT +TERCASSE +TERCAT +TERCE +TERCEE +TERCENT +TERCER +TERCERA +TERCERAI +TERCEREZ +TERCET +TERCEZ +TERCIEZ +TERGAL +TERME +TERMINA +TERMINAI +TERMINAL +TERMINAT +TERMINE +TERMINEE +TERMINER +TERMINEZ +TERMITE +TERNAIRE +TERNE +TERNI +TERNIE +TERNIR +TERNIRA +TERNIRAI +TERNIREZ +TERNISSE +TERNIT +TERPENE +TERPINE +TERPINOL +TERRA +TERRAGE +TERRAI +TERRAIN +TERRAIT +TERRANT +TERRAQUE +TERRASSA +TERRASSE +TERRAT +TERRE +TERREAU +TERREE +TERRENT +TERRER +TERRERA +TERRERAI +TERREREZ +TERREUR +TERREUSE +TERREUX +TERREZ +TERRI +TERRIBLE +TERRIEN +TERRIER +TERRIEZ +TERRIFIA +TERRIFIE +TERRIL +TERRINE +TERRIR +TERRIRA +TERRIRAI +TERRIREZ +TERRISSE +TERRIT +TERROIR +TERSA +TERSAI +TERSAIT +TERSANT +TERSASSE +TERSAT +TERSE +TERSEE +TERSENT +TERSER +TERSERA +TERSERAI +TERSEREZ +TERSEZ +TERSIEZ +TERTIO +TERTRE +TERZETTO +TESSON +TEST +TESTA +TESTABLE +TESTACE +TESTACEE +TESTAGE +TESTAI +TESTAIT +TESTANT +TESTASSE +TESTAT +TESTE +TESTEE +TESTENT +TESTER +TESTERA +TESTERAI +TESTEREZ +TESTEUR +TESTEZ +TESTIEZ +TESTON +TETA +TETAI +TETAIT +TETANIE +TETANISA +TETANISE +TETANT +TETARD +TETASSE +TETAT +TETE +TETEAU +TETEE +TETENT +TETER +TETERA +TETERAI +TETERAIT +TETERENT +TETEREZ +TETERIEZ +TETEZ +TETIERE +TETIEZ +TETIN +TETINE +TETON +TETRA +TETRADE +TETRODON +TETTE +TETU +TETUE +TEUTON +TEUTONNE +TEXAN +TEXANE +TEXTE +TEXTILE +TEXTUEL +TEXTURA +TEXTURAI +TEXTURAT +TEXTURE +TEXTUREE +TEXTURER +TEXTUREZ +THAIE +THALER +THALLE +THALLIUM +THALWEG +THEATIN +THEATRAL +THEATRE +THEBAIDE +THEBAIN +THEBAINE +THEIER +THEIERE +THEINE +THEISME +THEISTE +THEME +THENAR +THEORBE +THEOREME +THEORIE +THEORISA +THEORISE +THEQUE +THERAPIE +THERMAL +THERMALE +THERMIE +THERMITE +THESARD +THESARDE +THESE +THETA +THETIQUE +THEURGIE +THIAMINE +THIBAUDE +THOMISTE +THON +THONAIRE +THONIER +THORA +THORAX +THORINE +THORITE +THORIUM +THORON +THRENE +THRIDACE +THRILLER +THULIUM +THUNE +THUYA +THYM +THYMIE +THYMINE +THYMIQUE +THYMOL +THYROIDE +THYRSE +TIAN +TIARE +TIBETAIN +TIBIA +TIBIAL +TIBIALE +TICKET +TICTAQUA +TICTAQUE +TIEDASSE +TIEDE +TIEDEUR +TIEDI +TIEDIE +TIEDIR +TIEDIRA +TIEDIRAI +TIEDIREZ +TIEDISSE +TIEDIT +TIEN +TIENDRA +TIENDRAI +TIENDREZ +TIENNE +TIENNENT +TIENT +TIERCA +TIERCAI +TIERCAIT +TIERCANT +TIERCAT +TIERCE +TIERCEE +TIERCENT +TIERCER +TIERCERA +TIERCEZ +TIERCIEZ +TIFFE +TIGE +TIGELLE +TIGETTE +TIGLON +TIGNASSE +TIGRA +TIGRAI +TIGRAIT +TIGRANT +TIGRASSE +TIGRAT +TIGRE +TIGREE +TIGRENT +TIGRER +TIGRERA +TIGRERAI +TIGREREZ +TIGRESSE +TIGREZ +TIGRIDIE +TIGRIEZ +TIGRON +TILBURY +TILDE +TILLA +TILLAC +TILLAGE +TILLAI +TILLAIT +TILLANT +TILLASSE +TILLAT +TILLE +TILLEE +TILLENT +TILLER +TILLERA +TILLERAI +TILLEREZ +TILLEUL +TILLEZ +TILLIEZ +TILT +TIMBALE +TIMBRA +TIMBRAGE +TIMBRAI +TIMBRAIT +TIMBRANT +TIMBRAT +TIMBRE +TIMBREE +TIMBRENT +TIMBRER +TIMBRERA +TIMBREZ +TIMBRIEZ +TIMIDE +TIMIDITE +TIMING +TIMON +TIMONIER +TIMORE +TIMOREE +TINAMOU +TINCAL +TINETTE +TINRENT +TINSSE +TINT +TINTA +TINTAI +TINTAIT +TINTANT +TINTASSE +TINTAT +TINTE +TINTEE +TINTENT +TINTER +TINTERA +TINTERAI +TINTEREZ +TINTEZ +TINTIEZ +TINTIN +TINTOUIN +TIPULE +TIQUA +TIQUAI +TIQUAIT +TIQUANT +TIQUASSE +TIQUAT +TIQUE +TIQUENT +TIQUER +TIQUERA +TIQUERAI +TIQUEREZ +TIQUETE +TIQUETEE +TIQUEUR +TIQUEUSE +TIQUEZ +TIQUIEZ +TIRA +TIRADE +TIRAGE +TIRAI +TIRAILLA +TIRAILLE +TIRAIT +TIRANT +TIRASSE +TIRAT +TIRE +TIREE +TIRELIRE +TIRENT +TIRER +TIRERA +TIRERAI +TIRERAIT +TIRERENT +TIREREZ +TIRERIEZ +TIRET +TIRETTE +TIREUR +TIREUSE +TIREZ +TIRIEZ +TIROIR +TISA +TISAI +TISAIT +TISANE +TISANT +TISASSE +TISAT +TISE +TISEE +TISENT +TISER +TISERA +TISERAI +TISERAIT +TISERENT +TISEREZ +TISERIEZ +TISEZ +TISIEZ +TISON +TISONNA +TISONNAI +TISONNAT +TISONNE +TISONNEE +TISONNER +TISONNEZ +TISSA +TISSAGE +TISSAI +TISSAIT +TISSANT +TISSASSE +TISSAT +TISSE +TISSEE +TISSER +TISSERA +TISSERAI +TISSEREZ +TISSERIN +TISSEUR +TISSEUSE +TISSU +TISSURE +TITAN +TITANE +TITI +TITILLA +TITILLAI +TITILLAT +TITILLE +TITILLEE +TITILLER +TITILLEZ +TITRA +TITRAGE +TITRAI +TITRAIT +TITRANT +TITRASSE +TITRAT +TITRE +TITREE +TITRENT +TITRER +TITRERA +TITRERAI +TITREREZ +TITREZ +TITRIEZ +TITUBA +TITUBAI +TITUBAIT +TITUBANT +TITUBAT +TITUBE +TITUBENT +TITUBER +TITUBERA +TITUBEZ +TITUBIEZ +TMESE +TOAST +TOASTA +TOASTAI +TOASTAIT +TOASTANT +TOASTAT +TOASTE +TOASTEE +TOASTENT +TOASTER +TOASTERA +TOASTEUR +TOASTEZ +TOASTIEZ +TOBOGGAN +TOCADE +TOCARD +TOCARDE +TOCCATA +TOCSIN +TOGE +TOILA +TOILAI +TOILAIT +TOILANT +TOILASSE +TOILAT +TOILE +TOILEE +TOILENT +TOILER +TOILERA +TOILERAI +TOILEREZ +TOILERIE +TOILETTA +TOILETTE +TOILEZ +TOILIEZ +TOISA +TOISAI +TOISAIT +TOISANT +TOISASSE +TOISAT +TOISE +TOISEE +TOISENT +TOISER +TOISERA +TOISERAI +TOISEREZ +TOISEZ +TOISIEZ +TOISON +TOIT +TOITURE +TOKAI +TOKAY +TOLE +TOLEE +TOLERA +TOLERAI +TOLERAIT +TOLERANT +TOLERAT +TOLERE +TOLEREE +TOLERENT +TOLERER +TOLERERA +TOLEREZ +TOLERIE +TOLERIEZ +TOLET +TOLIER +TOLIERE +TOLITE +TOLLE +TOLU +TOLUENE +TOLUOL +TOMA +TOMAHAWK +TOMAI +TOMAISON +TOMAIT +TOMANT +TOMASSE +TOMAT +TOMATE +TOMBA +TOMBAC +TOMBAI +TOMBAIT +TOMBAL +TOMBALE +TOMBANT +TOMBASSE +TOMBAT +TOMBE +TOMBEAU +TOMBEE +TOMBELLE +TOMBENT +TOMBER +TOMBERA +TOMBERAI +TOMBEREZ +TOMBEUR +TOMBEZ +TOMBIEZ +TOMBOLA +TOME +TOMEE +TOMENT +TOMER +TOMERA +TOMERAI +TOMERAIT +TOMERENT +TOMEREZ +TOMERIEZ +TOMETTE +TOMEZ +TOMIEZ +TOMME +TOMMETTE +TOMMY +TONAL +TONALE +TONALITE +TOND +TONDAGE +TONDAIT +TONDANT +TONDE +TONDENT +TONDEUR +TONDEUSE +TONDEZ +TONDIEZ +TONDISSE +TONDIT +TONDRA +TONDRAI +TONDRAIT +TONDRE +TONDREZ +TONDRIEZ +TONDRONT +TONDU +TONDUE +TONICITE +TONIE +TONIFIA +TONIFIAI +TONIFIAT +TONIFIE +TONIFIEE +TONIFIER +TONIFIEZ +TONIQUE +TONITRUA +TONITRUE +TONKA +TONNA +TONNAGE +TONNAIT +TONNANT +TONNE +TONNEAU +TONNELET +TONNELLE +TONNENT +TONNER +TONNERA +TONNERAI +TONNEREZ +TONNERRE +TONNEZ +TONNIEZ +TONSURA +TONSURAI +TONSURAT +TONSURE +TONSUREE +TONSURER +TONSUREZ +TONTE +TONTINA +TONTINAI +TONTINAT +TONTINE +TONTINEE +TONTINER +TONTINEZ +TONTISSE +TONTON +TONTURE +TOPA +TOPAI +TOPAIT +TOPANT +TOPASSE +TOPAT +TOPAZE +TOPE +TOPENT +TOPER +TOPERA +TOPERAI +TOPERAIT +TOPERENT +TOPEREZ +TOPERIEZ +TOPETTE +TOPEZ +TOPIEZ +TOPIQUE +TOPO +TOPONYME +TOQUA +TOQUADE +TOQUAI +TOQUAIT +TOQUANT +TOQUARD +TOQUASSE +TOQUAT +TOQUE +TOQUEE +TOQUENT +TOQUER +TOQUERA +TOQUERAI +TOQUEREZ +TOQUET +TOQUEZ +TOQUIEZ +TORAH +TORCHA +TORCHAI +TORCHAIT +TORCHANT +TORCHAT +TORCHE +TORCHEE +TORCHENT +TORCHER +TORCHERA +TORCHERE +TORCHEZ +TORCHIEZ +TORCHON +TORCOL +TORD +TORDAGE +TORDAIT +TORDANT +TORDE +TORDENT +TORDEUR +TORDEUSE +TORDEZ +TORDIEZ +TORDISSE +TORDIT +TORDOIR +TORDRA +TORDRAI +TORDRAIT +TORDRE +TORDREZ +TORDRIEZ +TORDRONT +TORDU +TORDUE +TOREA +TOREADOR +TOREAI +TOREAIT +TOREANT +TOREASSE +TOREAT +TOREE +TOREENT +TOREER +TOREERA +TOREERAI +TOREEREZ +TOREEZ +TOREIEZ +TORERO +TORGNOLE +TORII +TORIL +TORNADE +TORON +TORONNA +TORONNAI +TORONNAT +TORONNE +TORONNER +TORONNEZ +TORPEDO +TORPEUR +TORPIDE +TORPILLA +TORPILLE +TORQUE +TORREFIA +TORREFIE +TORRENT +TORRIDE +TORSADA +TORSADAI +TORSADAT +TORSADE +TORSADEE +TORSADER +TORSADEZ +TORSE +TORSEUR +TORSION +TORT +TORTIL +TORTILLA +TORTILLE +TORTORA +TORTORAI +TORTORAT +TORTORE +TORTOREE +TORTORER +TORTOREZ +TORTUE +TORTUEUX +TORTURA +TORTURAI +TORTURAT +TORTURE +TORTUREE +TORTURER +TORTUREZ +TORVE +TORY +TORYSME +TOSCAN +TOSCANE +TOTAL +TOTALE +TOTALISA +TOTALISE +TOTALITE +TOTEM +TOTO +TOTON +TOUA +TOUAGE +TOUAI +TOUAILLE +TOUAIT +TOUANT +TOUAREG +TOUASSE +TOUAT +TOUBIB +TOUCAN +TOUCHA +TOUCHAI +TOUCHAIT +TOUCHANT +TOUCHAT +TOUCHAU +TOUCHE +TOUCHEE +TOUCHENT +TOUCHER +TOUCHERA +TOUCHEUR +TOUCHEZ +TOUCHIEZ +TOUE +TOUEE +TOUENT +TOUER +TOUERA +TOUERAI +TOUERAIT +TOUERENT +TOUEREZ +TOUERIEZ +TOUEUR +TOUEZ +TOUFFE +TOUFFEUR +TOUFFU +TOUFFUE +TOUIEZ +TOUILLA +TOUILLAI +TOUILLAT +TOUILLE +TOUILLEE +TOUILLER +TOUILLEZ +TOULOUPE +TOUNDRA +TOUPET +TOUPIE +TOUPILLA +TOUPILLE +TOUQUE +TOUR +TOURBA +TOURBAI +TOURBAIT +TOURBANT +TOURBAT +TOURBE +TOURBENT +TOURBER +TOURBERA +TOURBEUX +TOURBEZ +TOURBIER +TOURBIEZ +TOURD +TOURELLE +TOURET +TOURIE +TOURIER +TOURIERE +TOURISME +TOURISTE +TOURMENT +TOURNA +TOURNAGE +TOURNAI +TOURNAIT +TOURNANT +TOURNAT +TOURNE +TOURNEE +TOURNENT +TOURNER +TOURNERA +TOURNEUR +TOURNEZ +TOURNIEZ +TOURNOI +TOURNOIE +TOURNOYA +TOURNOYE +TOURNURE +TOURON +TOURTE +TOURTEAU +TOUSELLE +TOUSSA +TOUSSAI +TOUSSAIT +TOUSSANT +TOUSSAT +TOUSSE +TOUSSER +TOUSSERA +TOUSSEUR +TOUSSOTA +TOUSSOTE +TOUT +TOUTE +TOUTIM +TOUTIME +TOUTOU +TOUX +TOXEMIE +TOXICITE +TOXICOSE +TOXINE +TOXIQUE +TRABE +TRABEE +TRABOULA +TRABOULE +TRAC +TRACA +TRACAGE +TRACAI +TRACAIT +TRACANA +TRACANAI +TRACANAT +TRACANE +TRACANEE +TRACANER +TRACANEZ +TRACANT +TRACASSA +TRACASSE +TRACAT +TRACE +TRACEE +TRACENT +TRACER +TRACERA +TRACERAI +TRACERET +TRACEREZ +TRACEUR +TRACEUSE +TRACEZ +TRACHEAL +TRACHEE +TRACHEEN +TRACHOME +TRACHYTE +TRACIEZ +TRACT +TRACTA +TRACTAI +TRACTAIT +TRACTANT +TRACTAT +TRACTE +TRACTEE +TRACTENT +TRACTER +TRACTERA +TRACTEUR +TRACTEZ +TRACTIEZ +TRACTIF +TRACTION +TRACTIVE +TRADUIRA +TRADUIRE +TRADUISE +TRADUIT +TRADUITE +TRAFIC +TRAFIQUA +TRAFIQUE +TRAGEDIE +TRAGIQUE +TRAHI +TRAHIE +TRAHIR +TRAHIRA +TRAHIRAI +TRAHIREZ +TRAHISON +TRAHISSE +TRAHIT +TRAIE +TRAILLE +TRAIN +TRAINA +TRAINAGE +TRAINAI +TRAINAIT +TRAINANT +TRAINARD +TRAINAT +TRAINE +TRAINEAU +TRAINEE +TRAINENT +TRAINER +TRAINERA +TRAINEUR +TRAINEZ +TRAINIEZ +TRAINING +TRAIRA +TRAIRAI +TRAIRAIT +TRAIRE +TRAIREZ +TRAIRIEZ +TRAIRONT +TRAIT +TRAITA +TRAITAI +TRAITAIT +TRAITANT +TRAITAT +TRAITE +TRAITEE +TRAITENT +TRAITER +TRAITERA +TRAITEUR +TRAITEZ +TRAITIEZ +TRAITRE +TRAJET +TRALALA +TRAM +TRAMA +TRAMAI +TRAMAIL +TRAMAIT +TRAMANT +TRAMASSE +TRAMAT +TRAME +TRAMEE +TRAMENT +TRAMER +TRAMERA +TRAMERAI +TRAMEREZ +TRAMEZ +TRAMIEZ +TRAMINOT +TRAMWAY +TRANCHA +TRANCHAI +TRANCHAT +TRANCHE +TRANCHEE +TRANCHER +TRANCHET +TRANCHEZ +TRANSAT +TRANSE +TRANSEPT +TRANSFO +TRANSI +TRANSIE +TRANSIGE +TRANSIR +TRANSIRA +TRANSIT +TRANSITA +TRANSITE +TRANSMET +TRANSMIT +TRANSMUA +TRANSMUE +TRANTRAN +TRAPEZE +TRAPPE +TRAPPEUR +TRAPU +TRAPUE +TRAQUA +TRAQUAI +TRAQUAIT +TRAQUANT +TRAQUAT +TRAQUE +TRAQUEE +TRAQUENT +TRAQUER +TRAQUERA +TRAQUET +TRAQUEUR +TRAQUEZ +TRAQUIEZ +TRAUMA +TRAVAIL +TRAVEE +TRAVELO +TRAVERSA +TRAVERSE +TRAVESTI +TRAYAIT +TRAYANT +TRAYEUR +TRAYEUSE +TRAYEZ +TRAYIEZ +TRAYON +TREBUCHA +TREBUCHE +TREFILA +TREFILAI +TREFILAT +TREFILE +TREFILEE +TREFILER +TREFILEZ +TREFLE +TREFLEE +TREILLE +TREIZE +TREKKING +TREMA +TREMAIL +TREMATA +TREMATAI +TREMATAT +TREMATE +TREMATER +TREMATEZ +TREMBLA +TREMBLAI +TREMBLAT +TREMBLE +TREMBLEE +TREMBLER +TREMBLEZ +TREMELLE +TREMIE +TREMIERE +TREMOLO +TREMPA +TREMPAGE +TREMPAI +TREMPAIT +TREMPANT +TREMPAT +TREMPE +TREMPEE +TREMPENT +TREMPER +TREMPERA +TREMPEZ +TREMPIEZ +TREMPLIN +TREMULA +TREMULAI +TREMULAT +TREMULE +TREMULEE +TREMULER +TREMULEZ +TRENTAIN +TRENTE +TREPAN +TREPANA +TREPANAI +TREPANAT +TREPANE +TREPANEE +TREPANER +TREPANEZ +TREPANG +TREPASSA +TREPASSE +TREPHONE +TREPIDA +TREPIDAI +TREPIDAT +TREPIDE +TREPIDEE +TREPIDER +TREPIDEZ +TREPIED +TREPIGNA +TREPIGNE +TRESOR +TRESSA +TRESSAGE +TRESSAI +TRESSAIT +TRESSANT +TRESSAT +TRESSE +TRESSEE +TRESSER +TRESSERA +TRETEAU +TREUIL +TREUILLA +TREUILLE +TREVE +TREVIRA +TREVIRAI +TREVIRAT +TREVIRE +TREVIREE +TREVIRER +TREVIREZ +TRIA +TRIACIDE +TRIADE +TRIAGE +TRIAI +TRIAIRE +TRIAIT +TRIAL +TRIANGLE +TRIANT +TRIASSE +TRIAT +TRIBADE +TRIBAL +TRIBALE +TRIBALLA +TRIBALLE +TRIBART +TRIBORD +TRIBU +TRIBUN +TRIBUNAL +TRIBUNAT +TRIBUNE +TRIBUT +TRICHA +TRICHAI +TRICHAIT +TRICHANT +TRICHAT +TRICHE +TRICHENT +TRICHER +TRICHERA +TRICHEUR +TRICHEZ +TRICHIEZ +TRICHINE +TRICHITE +TRICHOMA +TRICHOME +TRICORNE +TRICOT +TRICOTA +TRICOTAI +TRICOTAT +TRICOTE +TRICOTEE +TRICOTER +TRICOTEZ +TRICOUNI +TRICTRAC +TRICYCLE +TRIDACNE +TRIDENT +TRIDENTE +TRIDI +TRIE +TRIEE +TRIENNAL +TRIENT +TRIER +TRIERA +TRIERAI +TRIERAIT +TRIERE +TRIERENT +TRIEREZ +TRIERIEZ +TRIEUR +TRIEUSE +TRIEZ +TRIFIDE +TRIGLE +TRIGLYPH +TRIGONE +TRIIEZ +TRILLA +TRILLAI +TRILLAIT +TRILLANT +TRILLAT +TRILLE +TRILLENT +TRILLER +TRILLERA +TRILLEZ +TRILLIEZ +TRILLION +TRILOBE +TRILOBEE +TRILOGIE +TRIMA +TRIMAI +TRIMAIT +TRIMANT +TRIMARAN +TRIMARD +TRIMARDA +TRIMARDE +TRIMASSE +TRIMAT +TRIMBALA +TRIMBALE +TRIME +TRIMEE +TRIMENT +TRIMER +TRIMERA +TRIMERAI +TRIMERE +TRIMEREZ +TRIMETRE +TRIMEZ +TRIMIEZ +TRIN +TRINE +TRINERVE +TRINGLA +TRINGLAI +TRINGLAT +TRINGLE +TRINGLEE +TRINGLER +TRINGLEZ +TRINGLOT +TRINITE +TRINQUA +TRINQUAI +TRINQUAT +TRINQUE +TRINQUEE +TRINQUER +TRINQUEZ +TRIO +TRIODE +TRIOL +TRIOLET +TRIOMPHA +TRIOMPHE +TRIONYX +TRIP +TRIPALE +TRIPANG +TRIPARTI +TRIPE +TRIPERIE +TRIPETTE +TRIPHASE +TRIPIER +TRIPIERE +TRIPLA +TRIPLACE +TRIPLAI +TRIPLAIT +TRIPLANT +TRIPLAT +TRIPLE +TRIPLEE +TRIPLENT +TRIPLER +TRIPLERA +TRIPLEX +TRIPLEZ +TRIPLIEZ +TRIPLURE +TRIPODIE +TRIPOLI +TRIPOT +TRIPOTA +TRIPOTAI +TRIPOTAT +TRIPOTE +TRIPOTEE +TRIPOTER +TRIPOTEZ +TRIPOUX +TRIQUA +TRIQUAI +TRIQUAIT +TRIQUANT +TRIQUAT +TRIQUE +TRIQUEE +TRIQUENT +TRIQUER +TRIQUERA +TRIQUET +TRIQUEZ +TRIQUIEZ +TRIREGNE +TRIREME +TRISEQUA +TRISEQUE +TRISME +TRISOC +TRISOMIE +TRISSA +TRISSAI +TRISSAIT +TRISSANT +TRISSAT +TRISSE +TRISSEE +TRISSER +TRISSERA +TRISTE +TRITIUM +TRITON +TRITURA +TRITURAI +TRITURAT +TRITURE +TRITUREE +TRITURER +TRITUREZ +TRIUMVIR +TRIVALVE +TRIVIAL +TRIVIALE +TROC +TROCART +TROCHE +TROCHEE +TROCHET +TROCHILE +TROCHIN +TROCHLEE +TROCHURE +TROENE +TROGNE +TROGNON +TROIKA +TROLL +TROLLEY +TROMBE +TROMBINE +TROMBLON +TROMBONE +TROMMEL +TROMPA +TROMPAI +TROMPAIT +TROMPANT +TROMPAT +TROMPE +TROMPEE +TROMPENT +TROMPER +TROMPERA +TROMPETA +TROMPETE +TROMPEUR +TROMPEZ +TROMPIEZ +TRONA +TRONAI +TRONAIT +TRONANT +TRONASSE +TRONAT +TRONC +TRONCHE +TRONCHET +TRONCON +TRONE +TRONENT +TRONER +TRONERA +TRONERAI +TRONEREZ +TRONEZ +TRONIEZ +TRONQUA +TRONQUAI +TRONQUAT +TRONQUE +TRONQUEE +TRONQUER +TRONQUEZ +TROP +TROPE +TROPHEE +TROPICAL +TROPIQUE +TROPISME +TROQUA +TROQUAI +TROQUAIT +TROQUANT +TROQUAT +TROQUE +TROQUEE +TROQUENT +TROQUER +TROQUERA +TROQUET +TROQUEUR +TROQUEZ +TROQUIEZ +TROT +TROTTA +TROTTAI +TROTTAIT +TROTTANT +TROTTAT +TROTTE +TROTTEE +TROTTENT +TROTTER +TROTTERA +TROTTEUR +TROTTEZ +TROTTIEZ +TROTTIN +TROTTINA +TROTTINE +TROTTOIR +TROU +TROUA +TROUAI +TROUAIT +TROUANT +TROUASSE +TROUAT +TROUBADE +TROUBLA +TROUBLAI +TROUBLAT +TROUBLE +TROUBLEE +TROUBLER +TROUBLEZ +TROUE +TROUEE +TROUENT +TROUER +TROUERA +TROUERAI +TROUEREZ +TROUEZ +TROUFION +TROUIEZ +TROUILLE +TROUPE +TROUPEAU +TROUPIER +TROUSSA +TROUSSAI +TROUSSAT +TROUSSE +TROUSSEE +TROUSSER +TROUVA +TROUVAI +TROUVAIT +TROUVANT +TROUVAT +TROUVE +TROUVEE +TROUVENT +TROUVER +TROUVERA +TROUVERE +TROUVEUR +TROUVEZ +TROUVIEZ +TROYEN +TROYENNE +TRUAND +TRUANDA +TRUANDAI +TRUANDAT +TRUANDE +TRUANDEE +TRUANDER +TRUANDEZ +TRUBLE +TRUBLION +TRUC +TRUCAGE +TRUCIDA +TRUCIDAI +TRUCIDAT +TRUCIDE +TRUCIDEE +TRUCIDER +TRUCIDEZ +TRUDGEON +TRUELLE +TRUELLEE +TRUFFA +TRUFFAI +TRUFFAIT +TRUFFANT +TRUFFAT +TRUFFE +TRUFFEE +TRUFFENT +TRUFFER +TRUFFERA +TRUFFEZ +TRUFFIER +TRUFFIEZ +TRUIE +TRUISME +TRUITE +TRUITEE +TRULLI +TRULLO +TRUMEAU +TRUQUA +TRUQUAGE +TRUQUAI +TRUQUAIT +TRUQUANT +TRUQUAT +TRUQUE +TRUQUEE +TRUQUENT +TRUQUER +TRUQUERA +TRUQUEUR +TRUQUEZ +TRUQUIEZ +TRUSQUIN +TRUST +TRUSTA +TRUSTAI +TRUSTAIT +TRUSTANT +TRUSTAT +TRUSTE +TRUSTEE +TRUSTENT +TRUSTER +TRUSTERA +TRUSTEUR +TRUSTEZ +TRUSTIEZ +TRYPSINE +TSAR +TSARINE +TSARISME +TSARISTE +TSIGANE +TSUNAMI +TUABLE +TUAGE +TUAI +TUAIT +TUANT +TUASSE +TUAT +TUBA +TUBAGE +TUBAI +TUBAIRE +TUBAIT +TUBANT +TUBARD +TUBARDE +TUBASSE +TUBAT +TUBE +TUBEE +TUBENT +TUBER +TUBERA +TUBERACE +TUBERAI +TUBERAIT +TUBERENT +TUBEREUX +TUBEREZ +TUBERIEZ +TUBERISE +TUBEZ +TUBICOLE +TUBIEZ +TUBIFEX +TUBIPORE +TUBISTE +TUBULE +TUBULEE +TUBULEUX +TUBULURE +TUDESQUE +TUDIEU +TUEE +TUENT +TUER +TUERA +TUERAI +TUERAIT +TUERENT +TUEREZ +TUERIE +TUERIEZ +TUEUR +TUEUSE +TUEZ +TUFEAU +TUFFEAU +TUFIER +TUFIERE +TUIEZ +TUILA +TUILAI +TUILAIT +TUILANT +TUILASSE +TUILAT +TUILE +TUILEAU +TUILEE +TUILENT +TUILER +TUILERA +TUILERAI +TUILEREZ +TUILERIE +TUILETTE +TUILEZ +TUILIER +TUILIERE +TUILIEZ +TULIPE +TULIPIER +TULLE +TULLERIE +TULLIER +TULLIERE +TULLISTE +TUMEFIA +TUMEFIAI +TUMEFIAT +TUMEFIE +TUMEFIEE +TUMEFIER +TUMEFIEZ +TUMEUR +TUMORAL +TUMORALE +TUMULTE +TUNE +TUNER +TUNGAR +TUNIQUE +TUNIQUEE +TUNISIEN +TUNNEL +TUPAJA +TUPI +TUQUE +TURBAN +TURBE +TURBEH +TURBIDE +TURBIN +TURBINA +TURBINAI +TURBINAT +TURBINE +TURBINEE +TURBINER +TURBINEZ +TURBITH +TURBOT +TURBOTIN +TURC +TURCIQUE +TURCO +TURENT +TURF +TURFISTE +TURGIDE +TURION +TURKMENE +TURLUTTE +TURNE +TURNEP +TURONIEN +TURPIDE +TURQUE +TURQUIN +TUSSAH +TUSSE +TUSSOR +TUSSORE +TUTELLE +TUTEUR +TUTEURA +TUTEURAI +TUTEURAT +TUTEURE +TUTEUREE +TUTEURER +TUTEUREZ +TUTHIE +TUTIE +TUTOIE +TUTOIENT +TUTOIERA +TUTOYA +TUTOYAI +TUTOYAIT +TUTOYANT +TUTOYAT +TUTOYE +TUTOYEE +TUTOYER +TUTOYEUR +TUTOYEZ +TUTOYIEZ +TUTRICE +TUTTI +TUTU +TUYAU +TUYAUTA +TUYAUTAI +TUYAUTAT +TUYAUTE +TUYAUTEE +TUYAUTER +TUYAUTEZ +TUYERE +TWEED +TWIST +TWISTA +TWISTAI +TWISTAIT +TWISTANT +TWISTAT +TWISTE +TWISTENT +TWISTER +TWISTERA +TWISTEZ +TWISTIEZ +TYMPAN +TYMPANAL +TYMPANON +TYPA +TYPAI +TYPAIT +TYPANT +TYPASSE +TYPAT +TYPE +TYPEE +TYPENT +TYPER +TYPERA +TYPERAI +TYPERAIT +TYPERENT +TYPEREZ +TYPERIEZ +TYPEZ +TYPHA +TYPHIQUE +TYPHLITE +TYPHOIDE +TYPHON +TYPHOSE +TYPIEZ +TYPIQUE +TYPISA +TYPISAI +TYPISAIT +TYPISANT +TYPISAT +TYPISE +TYPISEE +TYPISENT +TYPISER +TYPISERA +TYPISEZ +TYPISIEZ +TYPO +TYPON +TYRAN +TYRANNIE +TYROLIEN +TYROSINE +TZAR +TZARINE +TZIGANE +UBAC +UBICUITE +UBIQUITE +UBUESQUE +UKASE +ULCERA +ULCERAI +ULCERAIT +ULCERANT +ULCERAT +ULCERE +ULCEREE +ULCERENT +ULCERER +ULCERERA +ULCEREUX +ULCEREZ +ULCERIEZ +ULEMA +ULMAIRE +ULNAIRE +ULTIME +ULTIMO +ULTRA +ULTRASON +ULULA +ULULAI +ULULAIT +ULULANT +ULULASSE +ULULAT +ULULE +ULULENT +ULULER +ULULERA +ULULERAI +ULULEREZ +ULULEZ +ULULIEZ +ULVE +UNANIME +UNAU +UNCINE +UNCINEE +UNGUEAL +UNGUEALE +UNIATE +UNIAXE +UNICAULE +UNICITE +UNICORNE +UNIE +UNIEME +UNIFIA +UNIFIAI +UNIFIAIT +UNIFIANT +UNIFIAT +UNIFIE +UNIFIEE +UNIFIENT +UNIFIER +UNIFIERA +UNIFIEZ +UNIFIIEZ +UNIFLORE +UNIFOLIE +UNIFORME +UNILOBE +UNILOBEE +UNIMENT +UNION +UNIPARE +UNIQUE +UNIR +UNIRA +UNIRAI +UNIRAIT +UNIRENT +UNIREZ +UNIRIEZ +UNIRONT +UNISEXE +UNISEXUE +UNISSAIT +UNISSANT +UNISSE +UNISSON +UNIT +UNITAIRE +UNITE +UNITIF +UNITIVE +UNIVALVE +UNIVOQUE +UPPERCUT +UPSILON +URACILE +URANATE +URANE +URANIE +URANIQUE +URANISME +URANIUM +URANYLE +URATE +URBAIN +URBAINE +URBANISA +URBANISE +URBANITE +URCEOLE +URCEOLEE +UREE +UREIDE +UREMIE +UREMIQUE +URETERAL +URETERE +URETRAL +URETRALE +URETRE +URETRITE +URGE +URGEA +URGEAIT +URGEAT +URGENCE +URGENT +URGENTE +URGER +URGERA +URGERAIT +URICEMIE +URINA +URINAI +URINAIRE +URINAIT +URINAL +URINANT +URINASSE +URINAT +URINE +URINENT +URINER +URINERA +URINERAI +URINEREZ +URINEUSE +URINEUX +URINEZ +URINIEZ +URINOIR +URIQUE +URNE +UROLOGIE +UROLOGUE +UROMETRE +UROPODE +URSULINE +URTICANT +URUBU +USAGE +USAGEE +USAGER +USAI +USAIT +USANT +USASSE +USAT +USEE +USENT +USER +USERA +USERAI +USERAIT +USERENT +USEREZ +USERIEZ +USEZ +USIEZ +USINA +USINAGE +USINAI +USINAIT +USINANT +USINASSE +USINAT +USINE +USINEE +USINENT +USINER +USINERA +USINERAI +USINEREZ +USINEZ +USINIER +USINIERE +USINIEZ +USITE +USITEE +USNEE +USUEL +USUELLE +USUFRUIT +USURAIRE +USURE +USURIER +USURIERE +USURPA +USURPAI +USURPAIT +USURPANT +USURPAT +USURPE +USURPEE +USURPENT +USURPER +USURPERA +USURPEZ +USURPIEZ +UTERIN +UTERINE +UTILE +UTILISA +UTILISAI +UTILISAT +UTILISE +UTILISEE +UTILISER +UTILISEZ +UTILITE +UTOPIE +UTOPIQUE +UTOPISTE +UTRICULE +UVAL +UVALE +UVEE +UVEITE +UVULA +UVULAIRE +UVULE +VACANCE +VACANT +VACARME +VACATION +VACCAIRE +VACCIN +VACCINA +VACCINAI +VACCINAL +VACCINAT +VACCINE +VACCINEE +VACCINER +VACCINEZ +VACHARD +VACHARDE +VACHE +VACHER +VACHERE +VACHERIE +VACHERIN +VACHETTE +VACILLA +VACILLAI +VACILLAT +VACILLE +VACILLER +VACILLEZ +VACIVE +VACUITE +VACUOLE +VACUOME +VACUUM +VAGABOND +VAGI +VAGIN +VAGINAL +VAGINALE +VAGINITE +VAGIR +VAGIRA +VAGIRAI +VAGIRAIT +VAGIREZ +VAGIRIEZ +VAGIRONT +VAGISSE +VAGIT +VAGUA +VAGUAI +VAGUAIT +VAGUANT +VAGUASSE +VAGUAT +VAGUE +VAGUENT +VAGUER +VAGUERA +VAGUERAI +VAGUEREZ +VAGUEZ +VAGUIEZ +VAHINE +VAIGRAGE +VAIGRE +VAILLANT +VAILLE +VAILLENT +VAIN +VAINC +VAINCRA +VAINCRAI +VAINCRE +VAINCREZ +VAINCU +VAINCUE +VAINE +VAINQUE +VAINQUEZ +VAINQUIT +VAIR +VAIRE +VAIREE +VAIRON +VAIRONNA +VAIRONNE +VAISSEAU +VALABLE +VALAIT +VALANT +VALENCE +VALENT +VALET +VALETA +VALETAI +VALETAIT +VALETANT +VALETAT +VALETE +VALETER +VALETERA +VALETEZ +VALETIEZ +VALETTE +VALEUR +VALEZ +VALIDA +VALIDAI +VALIDAIT +VALIDANT +VALIDAT +VALIDE +VALIDEE +VALIDENT +VALIDER +VALIDERA +VALIDEZ +VALIDIEZ +VALIDITE +VALIEZ +VALINE +VALISA +VALISAI +VALISAIT +VALISANT +VALISAT +VALISE +VALISEE +VALISENT +VALISER +VALISERA +VALISEZ +VALISIEZ +VALKYRIE +VALLEE +VALLEUSE +VALLON +VALLONNA +VALLONNE +VALOCHE +VALOIR +VALORISA +VALORISE +VALOUSA +VALOUSAI +VALOUSAT +VALOUSE +VALOUSEE +VALOUSER +VALOUSEZ +VALSA +VALSAI +VALSAIT +VALSANT +VALSASSE +VALSAT +VALSE +VALSEE +VALSENT +VALSER +VALSERA +VALSERAI +VALSEREZ +VALSEUR +VALSEUSE +VALSEZ +VALSIEZ +VALU +VALUE +VALURENT +VALUSSE +VALUT +VALVAIRE +VALVE +VALVEE +VALVULE +VAMP +VAMPA +VAMPAI +VAMPAIT +VAMPANT +VAMPASSE +VAMPAT +VAMPE +VAMPEE +VAMPENT +VAMPER +VAMPERA +VAMPERAI +VAMPEREZ +VAMPEZ +VAMPIEZ +VAMPIRE +VANADIUM +VANDA +VANDALE +VANDOISE +VANESSE +VANILLE +VANILLEE +VANILLON +VANITE +VANITEUX +VANNA +VANNAGE +VANNAI +VANNAIT +VANNANT +VANNASSE +VANNAT +VANNE +VANNEAU +VANNEE +VANNELLE +VANNENT +VANNER +VANNERA +VANNERAI +VANNEREZ +VANNERIE +VANNEUR +VANNEUSE +VANNEZ +VANNIER +VANNIERE +VANNIEZ +VANNURE +VANTA +VANTAI +VANTAIL +VANTAIT +VANTANT +VANTARD +VANTARDE +VANTASSE +VANTAT +VANTEE +VANTENT +VANTER +VANTERA +VANTERAI +VANTEREZ +VANTERIE +VANTEZ +VANTIEZ +VAPE +VAPEUR +VAPOREUX +VAPORISA +VAPORISE +VAQUA +VAQUAI +VAQUAIT +VAQUANT +VAQUASSE +VAQUAT +VAQUE +VAQUENT +VAQUER +VAQUERA +VAQUERAI +VAQUEREZ +VAQUEZ +VAQUIEZ +VARAIGNE +VARAN +VARANGUE +VARAPPA +VARAPPAI +VARAPPAT +VARAPPE +VARAPPER +VARAPPEZ +VARECH +VAREUSE +VARHEURE +VARIA +VARIABLE +VARIAI +VARIAIT +VARIANCE +VARIANT +VARIASSE +VARIAT +VARICE +VARIE +VARIEE +VARIENT +VARIER +VARIERA +VARIERAI +VARIEREZ +VARIETAL +VARIETE +VARIEZ +VARIIEZ +VARIOLE +VARIOLEE +VARIORUM +VARLET +VARLOPA +VARLOPAI +VARLOPAT +VARLOPE +VARLOPEE +VARLOPER +VARLOPEZ +VARRON +VARVE +VASARD +VASARDE +VASE +VASELINA +VASELINE +VASEUSE +VASEUX +VASIERE +VASQUE +VASSAL +VASSALE +VASTE +VATICANE +VATICINA +VATICINE +VAUDOISE +VAUDOU +VAUDOUE +VAUDRA +VAUDRAI +VAUDRAIT +VAUDREZ +VAUDRIEZ +VAUDRONT +VAURIEN +VAUT +VAUTOUR +VAUTRA +VAUTRAI +VAUTRAIT +VAUTRANT +VAUTRAT +VAUTRE +VAUTREE +VAUTRENT +VAUTRER +VAUTRERA +VAUTREZ +VAUTRIEZ +VEAU +VECTEUR +VECU +VECUE +VECURENT +VECUSSE +VECUT +VEDA +VEDETTE +VEDIQUE +VEDISME +VEGETA +VEGETAI +VEGETAIT +VEGETAL +VEGETALE +VEGETANT +VEGETAT +VEGETE +VEGETENT +VEGETER +VEGETERA +VEGETEZ +VEGETIEZ +VEHEMENT +VEHICULA +VEHICULE +VEILLA +VEILLAI +VEILLAIT +VEILLANT +VEILLAT +VEILLE +VEILLEE +VEILLENT +VEILLER +VEILLERA +VEILLEUR +VEILLEZ +VEILLIEZ +VEINA +VEINAI +VEINAIT +VEINANT +VEINARD +VEINARDE +VEINASSE +VEINAT +VEINE +VEINEE +VEINENT +VEINER +VEINERA +VEINERAI +VEINEREZ +VEINETTE +VEINEUSE +VEINEUX +VEINEZ +VEINIEZ +VEINULE +VEINURE +VELA +VELAGE +VELAI +VELAIRE +VELAIT +VELANT +VELAR +VELARISA +VELARISE +VELASSE +VELAT +VELCHE +VELD +VELE +VELEMENT +VELENT +VELER +VELERA +VELERAI +VELERAIT +VELERENT +VELEREZ +VELERIEZ +VELEZ +VELIE +VELIEZ +VELIN +VELIQUE +VELITE +VELIVOLE +VELLEITE +VELO +VELOCE +VELOCITE +VELOSKI +VELOT +VELOUTA +VELOUTAI +VELOUTAT +VELOUTE +VELOUTEE +VELOUTER +VELOUTEZ +VELTE +VELU +VELUE +VELUM +VENAISON +VENAIT +VENAL +VENALE +VENALITE +VENANT +VEND +VENDABLE +VENDAIT +VENDANGE +VENDANT +VENDE +VENDEEN +VENDENT +VENDETTA +VENDEUR +VENDEUSE +VENDEZ +VENDIEZ +VENDISSE +VENDIT +VENDRA +VENDRAI +VENDRAIT +VENDRE +VENDREDI +VENDREZ +VENDRIEZ +VENDRONT +VENDU +VENDUE +VENELLE +VENENEUX +VENERA +VENERAI +VENERAIT +VENERANT +VENERAT +VENERE +VENEREE +VENERENT +VENERER +VENERERA +VENEREZ +VENERIE +VENERIEN +VENERIEZ +VENET +VENETTE +VENEUR +VENEZ +VENGE +VENGEA +VENGEAI +VENGEAIT +VENGEANT +VENGEAT +VENGEE +VENGENT +VENGER +VENGERA +VENGERAI +VENGEREZ +VENGEUR +VENGEZ +VENGIEZ +VENIEL +VENIELLE +VENIEZ +VENIMEUX +VENIN +VENIR +VENITIEN +VENT +VENTA +VENTAGE +VENTAIL +VENTAIT +VENTAT +VENTE +VENTER +VENTERA +VENTEUSE +VENTEUX +VENTILA +VENTILAI +VENTILAT +VENTILE +VENTILEE +VENTILER +VENTILEZ +VENTOSE +VENTOUSA +VENTOUSE +VENTRAL +VENTRALE +VENTRE +VENTREE +VENTRU +VENTRUE +VENTURI +VENU +VENUE +VENUSIEN +VENUSTE +VERACITE +VERAISON +VERANDA +VERATRE +VERBAL +VERBALE +VERBE +VERBEUSE +VERBEUX +VERBIAGE +VERDAGE +VERDATRE +VERDELET +VERDET +VERDEUR +VERDI +VERDICT +VERDIE +VERDIER +VERDIR +VERDIRA +VERDIRAI +VERDIREZ +VERDISSE +VERDIT +VERDOIE +VERDOYA +VERDOYAI +VERDOYAT +VERDOYE +VERDOYER +VERDOYEZ +VERDURE +VEREUSE +VEREUX +VERGE +VERGEE +VERGENCE +VERGER +VERGETE +VERGETTE +VERGEURE +VERGLACA +VERGLACE +VERGNE +VERGOGNE +VERGUE +VERIFIA +VERIFIAI +VERIFIAT +VERIFIE +VERIFIEE +VERIFIER +VERIFIEZ +VERIN +VERINE +VERISME +VERISTE +VERITE +VERJUTA +VERJUTAI +VERJUTAT +VERJUTE +VERJUTEE +VERJUTER +VERJUTEZ +VERLAN +VERMEE +VERMEIL +VERMET +VERMILLA +VERMILLE +VERMINE +VERMOULA +VERMOULE +VERMOULU +VERMOUT +VERMOUTH +VERNAL +VERNALE +VERNI +VERNIE +VERNIER +VERNIR +VERNIRA +VERNIRAI +VERNIREZ +VERNISSA +VERNISSE +VERNIT +VEROLE +VEROLEE +VERONAL +VERRA +VERRAI +VERRAIT +VERRANNE +VERRAT +VERRE +VERREE +VERRERIE +VERREZ +VERRIER +VERRIERE +VERRIEZ +VERRINE +VERRONT +VERROU +VERRUE +VERSA +VERSAI +VERSAIT +VERSANT +VERSASSE +VERSAT +VERSE +VERSEAU +VERSEE +VERSENT +VERSER +VERSERA +VERSERAI +VERSEREZ +VERSET +VERSEUR +VERSEUSE +VERSEZ +VERSIEZ +VERSIFIA +VERSIFIE +VERSION +VERSO +VERSOIR +VERSTE +VERT +VERTE +VERTEBRE +VERTEX +VERTICAL +VERTIGE +VERTIGO +VERTU +VERTUEUX +VERVE +VERVEINE +VERVELLE +VERVEUSE +VERVEUX +VESANIE +VESCE +VESICAL +VESICALE +VESICANT +VESICULE +VESPA +VESPERAL +VESSA +VESSAI +VESSAIT +VESSANT +VESSASSE +VESSAT +VESSE +VESSER +VESSERA +VESSERAI +VESSEREZ +VESSIE +VESSIGON +VESTALE +VESTE +VESTIGE +VESTON +VETAIT +VETANT +VETE +VETEMENT +VETENT +VETERAN +VETEZ +VETIEZ +VETILLA +VETILLAI +VETILLAT +VETILLE +VETILLER +VETILLEZ +VETIR +VETIRA +VETIRAI +VETIRAIT +VETIRENT +VETIREZ +VETIRIEZ +VETIRONT +VETISSE +VETIT +VETIVER +VETO +VETU +VETUE +VETURE +VETUSTE +VEUF +VEUILLE +VEUILLEZ +VEULE +VEULENT +VEULERIE +VEUT +VEUVAGE +VEUVE +VEUX +VEVEYSAN +VEXA +VEXAI +VEXAIT +VEXANT +VEXASSE +VEXAT +VEXATEUR +VEXATION +VEXE +VEXEE +VEXENT +VEXER +VEXERA +VEXERAI +VEXERAIT +VEXERENT +VEXEREZ +VEXERIEZ +VEXEZ +VEXIEZ +VEXILLE +VIABLE +VIADUC +VIAGER +VIAGERE +VIANDA +VIANDAI +VIANDAIT +VIANDANT +VIANDAT +VIANDE +VIANDEE +VIANDENT +VIANDER +VIANDERA +VIANDEZ +VIANDIEZ +VIATIQUE +VIBORD +VIBRA +VIBRAGE +VIBRAI +VIBRAIT +VIBRANT +VIBRASSE +VIBRAT +VIBRATO +VIBRE +VIBREE +VIBRENT +VIBRER +VIBRERA +VIBRERAI +VIBREREZ +VIBREUR +VIBREZ +VIBRIEZ +VIBRION +VIBRISSE +VICAIRE +VICARIAL +VICARIAT +VICE +VICENNAL +VICHY +VICIA +VICIABLE +VICIAI +VICIAIT +VICIANT +VICIASSE +VICIAT +VICIE +VICIEE +VICIENT +VICIER +VICIERA +VICIERAI +VICIEREZ +VICIEUSE +VICIEUX +VICIEZ +VICIIEZ +VICINAL +VICINALE +VICOMTAL +VICOMTE +VICTIME +VICTOIRE +VICTORIA +VIDA +VIDAGE +VIDAI +VIDAIT +VIDAME +VIDAMIE +VIDANGE +VIDANGEA +VIDANGEE +VIDANGER +VIDANGEZ +VIDANT +VIDASSE +VIDAT +VIDE +VIDEE +VIDELLE +VIDENT +VIDEO +VIDEOTEX +VIDER +VIDERA +VIDERAI +VIDERAIT +VIDERENT +VIDEREZ +VIDERIEZ +VIDEUR +VIDEUSE +VIDEZ +VIDIEZ +VIDIMA +VIDIMAI +VIDIMAIT +VIDIMANT +VIDIMAT +VIDIME +VIDIMEE +VIDIMENT +VIDIMER +VIDIMERA +VIDIMEZ +VIDIMIEZ +VIDOIR +VIDUITE +VIDURE +VIEIL +VIEILLE +VIEILLI +VIEILLIE +VIEILLIR +VIEILLIT +VIEILLOT +VIELLA +VIELLAI +VIELLAIT +VIELLANT +VIELLAT +VIELLE +VIELLENT +VIELLER +VIELLERA +VIELLEUR +VIELLEUX +VIELLEZ +VIELLIEZ +VIENDRA +VIENDRAI +VIENDREZ +VIENNE +VIENNENT +VIENT +VIERGE +VIEUX +VIGIE +VIGILANT +VIGILE +VIGNE +VIGNEAU +VIGNERON +VIGNETTE +VIGNOBLE +VIGNOT +VIGOGNE +VIGUERIE +VIGUEUR +VIGUIER +VIKING +VILAIN +VILAINE +VILE +VILEMENT +VILENIE +VILLA +VILLAGE +VILLE +VINA +VINAGE +VINAI +VINAIGRA +VINAIGRE +VINAIRE +VINAIT +VINANT +VINASSE +VINAT +VINDICTE +VINE +VINEE +VINENT +VINER +VINERA +VINERAI +VINERAIT +VINERENT +VINEREZ +VINERIEZ +VINEUSE +VINEUX +VINEZ +VINGT +VINICOLE +VINIEZ +VINIFERE +VINIFIA +VINIFIAI +VINIFIAT +VINIFIE +VINIFIEE +VINIFIER +VINIFIEZ +VINIQUE +VINOSITE +VINRENT +VINSSE +VINT +VINYLE +VINYLITE +VIOC +VIOL +VIOLA +VIOLACA +VIOLACAI +VIOLACAT +VIOLACE +VIOLACEE +VIOLACER +VIOLACEZ +VIOLAI +VIOLAIT +VIOLANT +VIOLASSE +VIOLAT +VIOLATRE +VIOLE +VIOLEE +VIOLENCE +VIOLENT +VIOLENTA +VIOLENTE +VIOLER +VIOLERA +VIOLERAI +VIOLEREZ +VIOLET +VIOLETTE +VIOLEUR +VIOLEUSE +VIOLEZ +VIOLIER +VIOLIEZ +VIOLINE +VIOLISTE +VIOLON +VIOLONA +VIOLONAI +VIOLONAT +VIOLONE +VIOLONER +VIOLONEZ +VIOQUE +VIOQUI +VIOQUIR +VIOQUIRA +VIOQUIT +VIORNE +VIPERE +VIPEREAU +VIPERIN +VIPERINE +VIRA +VIRAGE +VIRAGO +VIRAI +VIRAIT +VIRAL +VIRALE +VIRANT +VIRASSE +VIRAT +VIRE +VIREE +VIRELAI +VIREMENT +VIRENT +VIRER +VIRERA +VIRERAI +VIRERAIT +VIRERENT +VIREREZ +VIRERIEZ +VIRETON +VIREUR +VIREUSE +VIREUX +VIREZ +VIRGINAL +VIRGINIE +VIRGULA +VIRGULAI +VIRGULAT +VIRGULE +VIRGULEE +VIRGULER +VIRGULEZ +VIRIEZ +VIRIL +VIRILE +VIRILISA +VIRILISE +VIRILITE +VIRION +VIROLA +VIROLAGE +VIROLAI +VIROLAIT +VIROLANT +VIROLAT +VIROLE +VIROLEE +VIROLENT +VIROLER +VIROLERA +VIROLEZ +VIROLIER +VIROLIEZ +VIROSE +VIRTUEL +VIRTUOSE +VIRULENT +VIRURE +VISA +VISAGE +VISAI +VISAIT +VISANT +VISASSE +VISAT +VISCACHE +VISCERAL +VISCERE +VISCOSE +VISE +VISEE +VISENT +VISER +VISERA +VISERAI +VISERAIT +VISERENT +VISEREZ +VISERIEZ +VISEUR +VISEUSE +VISEUX +VISEZ +VISIBLE +VISIERE +VISIEZ +VISION +VISIONNA +VISIONNE +VISITA +VISITAI +VISITAIT +VISITANT +VISITAT +VISITE +VISITEE +VISITENT +VISITER +VISITERA +VISITEUR +VISITEZ +VISITIEZ +VISNAGE +VISON +VISQUEUX +VISSA +VISSAGE +VISSAI +VISSAIT +VISSANT +VISSASSE +VISSAT +VISSE +VISSEE +VISSER +VISSERA +VISSERAI +VISSEREZ +VISSERIE +VISSEUSE +VISUEL +VISUELLE +VITAE +VITAL +VITALE +VITALITE +VITAMINE +VITE +VITELLIN +VITESSE +VITICOLE +VITILIGO +VITRA +VITRAGE +VITRAI +VITRAIL +VITRAIT +VITRANT +VITRASSE +VITRAT +VITRE +VITREE +VITRENT +VITRER +VITRERA +VITRERAI +VITREREZ +VITRERIE +VITREUSE +VITREUX +VITREZ +VITRIER +VITRIERE +VITRIEZ +VITRIFIA +VITRIFIE +VITRINE +VITRIOL +VITRIOLA +VITRIOLE +VITUPERA +VITUPERE +VIVABLE +VIVACE +VIVACITE +VIVAIT +VIVANT +VIVARIUM +VIVAT +VIVE +VIVEMENT +VIVENDI +VIVENT +VIVEUR +VIVEUSE +VIVEZ +VIVIER +VIVIEZ +VIVIFIA +VIVIFIAI +VIVIFIAT +VIVIFIE +VIVIFIEE +VIVIFIER +VIVIFIEZ +VIVIPARE +VIVOTA +VIVOTAI +VIVOTAIT +VIVOTANT +VIVOTAT +VIVOTE +VIVOTENT +VIVOTER +VIVOTERA +VIVOTEZ +VIVOTIEZ +VIVRA +VIVRAI +VIVRAIT +VIVRE +VIVREE +VIVREZ +VIVRIER +VIVRIERE +VIVRIEZ +VIVRONT +VIZIR +VIZIRAT +VLAN +VOCABLE +VOCAL +VOCALE +VOCALISA +VOCALISE +VOCATIF +VOCATION +VOCIFERA +VOCIFERE +VODKA +VOEU +VOEUX +VOGOUL +VOGOULE +VOGUA +VOGUAI +VOGUAIT +VOGUANT +VOGUASSE +VOGUAT +VOGUE +VOGUENT +VOGUER +VOGUERA +VOGUERAI +VOGUEREZ +VOGUEZ +VOGUIEZ +VOICI +VOIE +VOIENT +VOILA +VOILAGE +VOILAI +VOILAIT +VOILANT +VOILASSE +VOILAT +VOILE +VOILEE +VOILENT +VOILER +VOILERA +VOILERAI +VOILEREZ +VOILERIE +VOILETTE +VOILEZ +VOILIER +VOILIEZ +VOILURE +VOIR +VOIRE +VOIRIE +VOISIN +VOISINA +VOISINAI +VOISINAT +VOISINE +VOISINER +VOISINEZ +VOIT +VOITURA +VOITURAI +VOITURAT +VOITURE +VOITUREE +VOITURER +VOITUREZ +VOITURIN +VOIVODAT +VOIVODE +VOIVODIE +VOIX +VOLA +VOLABLE +VOLAGE +VOLAI +VOLAILLE +VOLAIT +VOLANT +VOLAPUK +VOLASSE +VOLAT +VOLATIL +VOLATILE +VOLATISE +VOLCAN +VOLE +VOLEE +VOLENT +VOLER +VOLERA +VOLERAI +VOLERAIT +VOLERENT +VOLEREZ +VOLERIE +VOLERIEZ +VOLET +VOLETA +VOLETAI +VOLETAIT +VOLETANT +VOLETAT +VOLETE +VOLETER +VOLETEZ +VOLETIEZ +VOLETTE +VOLEUR +VOLEUSE +VOLEZ +VOLIERE +VOLIEZ +VOLIGE +VOLIGEA +VOLIGEAI +VOLIGEAT +VOLIGEE +VOLIGENT +VOLIGER +VOLIGERA +VOLIGEZ +VOLIGIEZ +VOLITIF +VOLITION +VOLITIVE +VOLLEY +VOLONTE +VOLT +VOLTA +VOLTAGE +VOLTAI +VOLTAIRE +VOLTAIT +VOLTANT +VOLTASSE +VOLTAT +VOLTE +VOLTENT +VOLTER +VOLTERA +VOLTERAI +VOLTEREZ +VOLTEZ +VOLTIEZ +VOLTIGE +VOLTIGEA +VOLTIGER +VOLTIGEZ +VOLUBILE +VOLUME +VOLUPTE +VOLUTE +VOLVAIRE +VOLVE +VOLVOX +VOMER +VOMERIEN +VOMI +VOMIE +VOMIQUE +VOMIR +VOMIRA +VOMIRAI +VOMIRAIT +VOMIRENT +VOMIREZ +VOMIRIEZ +VOMIRONT +VOMISSE +VOMIT +VOMITIF +VOMITIVE +VONT +VORACE +VORACITE +VORTEX +VOTA +VOTAI +VOTAIT +VOTANT +VOTASSE +VOTAT +VOTATION +VOTE +VOTEE +VOTENT +VOTER +VOTERA +VOTERAI +VOTERAIT +VOTERENT +VOTEREZ +VOTERIEZ +VOTEZ +VOTIEZ +VOTIF +VOTIVE +VOTRE +VOUA +VOUAI +VOUAIT +VOUANT +VOUASSE +VOUAT +VOUDRA +VOUDRAI +VOUDRAIT +VOUDREZ +VOUDRIEZ +VOUDRONT +VOUE +VOUEE +VOUENT +VOUER +VOUERA +VOUERAI +VOUERAIT +VOUERENT +VOUEREZ +VOUERIEZ +VOUEZ +VOUGE +VOUIEZ +VOUIVRE +VOULAIT +VOULANT +VOULEZ +VOULIEZ +VOULOIR +VOULU +VOULUE +VOULUSSE +VOULUT +VOUSOIE +VOUSOYA +VOUSOYAI +VOUSOYAT +VOUSOYE +VOUSOYEE +VOUSOYER +VOUSOYEZ +VOUSSEAU +VOUSSOIE +VOUSSOIR +VOUSSOYA +VOUSSOYE +VOUSSURE +VOUTA +VOUTAI +VOUTAIT +VOUTANT +VOUTASSE +VOUTAT +VOUTE +VOUTEE +VOUTENT +VOUTER +VOUTERA +VOUTERAI +VOUTEREZ +VOUTEZ +VOUTIEZ +VOUVOIE +VOUVOYA +VOUVOYAI +VOUVOYAT +VOUVOYE +VOUVOYEE +VOUVOYER +VOUVOYEZ +VOYAGE +VOYAGEA +VOYAGEAI +VOYAGEAT +VOYAGENT +VOYAGER +VOYAGERA +VOYAGEUR +VOYAGEZ +VOYAGIEZ +VOYAIT +VOYANCE +VOYANT +VOYELLE +VOYER +VOYEUR +VOYEUSE +VOYEZ +VOYIEZ +VOYOU +VRAC +VRAI +VRAIE +VRAIMENT +VRAQUIER +VRENELI +VRILLA +VRILLAGE +VRILLAI +VRILLAIT +VRILLANT +VRILLAT +VRILLE +VRILLEE +VRILLENT +VRILLER +VRILLERA +VRILLEZ +VRILLIEZ +VROMBI +VROMBIR +VROMBIRA +VROMBIT +VULCAIN +VULGAIRE +VULGATE +VULGO +VULPIN +VULVAIRE +VULVE +WADING +WAGAGE +WAGON +WAGONNEE +WAGONNET +WALKMAN +WALKYRIE +WALLABY +WALLON +WALLONNE +WAPITI +WARGAME +WARRANT +WARRANTA +WATT +WATTMAN +WATTMEN +WEBER +WELCHE +WELTER +WERGELD +WESTERN +WHARF +WHIG +WHIPCORD +WHISKY +WHIST +WIGWAM +WILAYA +WINCH +WISHBONE +WITLOOF +WOLFRAM +WOMBAT +WOOFER +WORMIEN +WURMIEN +XANTHIE +XANTHINE +XANTHOME +XENON +XIMENIE +XIPHO +XIPHOIDE +XYLENE +XYLIDINE +XYLOCOPE +XYSTE +YACHT +YACHTING +YACHTMAN +YACHTMEN +YACK +YANG +YANKEE +YAOURT +YARD +YATAGAN +YEARLING +YEBLE +YEOMAN +YEOMEN +YEUSE +YEUX +YIDDISH +YOGA +YOGHOURT +YOGI +YOGOURT +YOLE +YOUPIN +YOUPINE +YOURTE +YOUYOU +YPERITE +YPREAU +YSOPET +YTTRIA +YTTRIQUE +YTTRIUM +YUCCA +ZABRE +ZAIN +ZAIROISE +ZAKOUSKI +ZAMBIEN +ZANCLE +ZANI +ZANNI +ZANZI +ZANZIBAR +ZAOUIA +ZARZUELA +ZAZOU +ZEBRA +ZEBRAI +ZEBRAIT +ZEBRANT +ZEBRASSE +ZEBRAT +ZEBRE +ZEBREE +ZEBRENT +ZEBRER +ZEBRERA +ZEBRERAI +ZEBREREZ +ZEBREZ +ZEBRIEZ +ZEBRURE +ZEBU +ZELATEUR +ZELE +ZELEE +ZELLIGE +ZELOTE +ZENANA +ZEND +ZENITH +ZENITHAL +ZEOLITE +ZEOLITHE +ZEPHYR +ZEPPELIN +ZERO +ZEROTAGE +ZERUMBET +ZESTA +ZESTAI +ZESTAIT +ZESTANT +ZESTASSE +ZESTAT +ZESTE +ZESTEE +ZESTENT +ZESTER +ZESTERA +ZESTERAI +ZESTEREZ +ZESTEZ +ZESTIEZ +ZETA +ZETETE +ZEUGMA +ZEUGME +ZEUZERE +ZEZAIE +ZEZAIERA +ZEZAYA +ZEZAYAI +ZEZAYAIT +ZEZAYANT +ZEZAYAT +ZEZAYE +ZEZAYEE +ZEZAYENT +ZEZAYER +ZEZAYERA +ZEZAYEZ +ZEZAYIEZ +ZIBA +ZIBAI +ZIBAIT +ZIBANT +ZIBASSE +ZIBAT +ZIBE +ZIBEE +ZIBELINE +ZIBENT +ZIBER +ZIBERA +ZIBERAI +ZIBERAIT +ZIBERENT +ZIBEREZ +ZIBERIEZ +ZIBEZ +ZIBIEZ +ZIEUTA +ZIEUTAI +ZIEUTAIT +ZIEUTANT +ZIEUTAT +ZIEUTE +ZIEUTEE +ZIEUTENT +ZIEUTER +ZIEUTERA +ZIEUTEZ +ZIEUTIEZ +ZIGOTEAU +ZIGOTO +ZIGUA +ZIGUAI +ZIGUAIT +ZIGUANT +ZIGUASSE +ZIGUAT +ZIGUE +ZIGUEE +ZIGUENT +ZIGUER +ZIGUERA +ZIGUERAI +ZIGUEREZ +ZIGUEZ +ZIGUIEZ +ZIGZAG +ZIGZAGUA +ZIGZAGUE +ZINC +ZINCAGE +ZINGAGE +ZINGARI +ZINGARO +ZINGUA +ZINGUAI +ZINGUAIT +ZINGUANT +ZINGUAT +ZINGUE +ZINGUEE +ZINGUENT +ZINGUER +ZINGUERA +ZINGUEUR +ZINGUEZ +ZINGUIEZ +ZINNIA +ZINZIN +ZINZOLIN +ZIPPA +ZIPPAI +ZIPPAIT +ZIPPANT +ZIPPASSE +ZIPPAT +ZIPPE +ZIPPEE +ZIPPENT +ZIPPER +ZIPPERA +ZIPPERAI +ZIPPEREZ +ZIPPEZ +ZIPPIEZ +ZIRCON +ZIRCONE +ZIZANIE +ZIZI +ZLOTY +ZODIACAL +ZODIAQUE +ZOILE +ZOMBI +ZOMBIE +ZONA +ZONAGE +ZONAI +ZONAIT +ZONAL +ZONALE +ZONANT +ZONARD +ZONARDE +ZONASSE +ZONAT +ZONE +ZONEE +ZONENT +ZONER +ZONERA +ZONERAI +ZONERAIT +ZONERENT +ZONEREZ +ZONERIEZ +ZONEZ +ZONIER +ZONIEZ +ZONURE +ZOOGLEE +ZOOIDE +ZOOLATRE +ZOOLITE +ZOOLITHE +ZOOLOGIE +ZOOM +ZOONOSE +ZOOPHILE +ZOOPHORE +ZOOPHYTE +ZOOPSIE +ZOOSPORE +ZOOTAXIE +ZORILLE +ZOSTERE +ZOUAVE +ZOZO +ZOZOTA +ZOZOTAI +ZOZOTAIT +ZOZOTANT +ZOZOTAT +ZOZOTE +ZOZOTENT +ZOZOTER +ZOZOTERA +ZOZOTEZ +ZOZOTIEZ +ZUCHETTE +ZUTIQUE +ZUTISTE +ZWANZE +ZYGENE +ZYGOMA +ZYGOTE +ZYMASE +ZYTHON +ZYTHUM diff --git a/openclassrooms-trainings/zpendu/donnees.py b/openclassrooms-trainings/zpendu/donnees.py new file mode 100644 index 0000000..bc967c4 --- /dev/null +++ b/openclassrooms-trainings/zpendu/donnees.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# donnee.py : donnee du fichier pendu.py + +""" Rassemble les donnee du script pendu.py """ + +# Constantes +SCORES_FILE = ".scores" +WORD_LIST_FILE = "dicolight.txt" +MAX_TURNS = 12 +MAX_NAME_LEN = 7 +MIN_NAME_LEN = 2 +MSG_DISCLAMER = "Bienvenue au zPendu!\nLe but du jeu est de deviner"+\ + " un mot de 8 lettres max en moins de {} tours.".format(MAX_TURNS) +ASK_NAME = "Votre nom ({} à {} caratères) : ".format(MIN_NAME_LEN, MAX_NAME_LEN) +ASK_LETTER = "Choisissez une lettre : " +ERR_WORD_LIST_FILE = "\t#!@?# Oups… Le dictionnaire n'est pas accesible! #?@!#" +ERR_LETTER_LEN = "\t#!@?# Oups… Saisie trop courte ou trop longue! #?@!#" +ERR_LETTER_ALPHA = "\t#!@?# Oups… Il faut saisir une lettre! #?@!#" +ERR_LETTER_USED = "\t#!@?# Oups… Cette lettre à déjà été jouée! #?@!#" +MSG_END_GAME = "Partie terminée avec {} point(s).\nLe mot mystère était : \n" +MSG_1ST_GAME = "C'était votre 1ère partie ;-)" +MSG_SCORES = "\n-== Les Scores : ==-" + +# Variables +game_continue = True +player_name = str() +letter = str() +turns = 0 +alphabet = [ + 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', + 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' +] diff --git a/openclassrooms-trainings/zpendu/fonctions.py b/openclassrooms-trainings/zpendu/fonctions.py new file mode 100644 index 0000000..04f87c9 --- /dev/null +++ b/openclassrooms-trainings/zpendu/fonctions.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# fonction.py : fonctions du fichier pendu.py + +""" Rassemble les fonctions du script pendu.py """ + + +def check_letter(letter, target): + """ + Verifie la presence de **letter** dans **target** + Retourne la liste des positions de la letter ou False + @letter str + @target list of letters + """ + if len(letter) != 1 or len(target) < 2 and letter is not str: + return False + + else: + return [k for k, v in enumerate(target) if letter == v] + + +def cls(): + """ Efface l'historique de la console """ + import os + os.system('clear') + return + + +def stringalise (letter_list): + """ + Convertit un liste en une chaine + @letter_list list() + @return string() + """ + stringalised = str() + for letter in letter_list: + stringalised = stringalised + ' ' + letter + + return stringalised + + +if __name__ == "__main__": + # Tests de la fonction + print(check_letter('A', ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) + print(check_letter('M', ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) + print(check_letter('o', ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) + print(check_letter('À', ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) + print(check_letter(1, ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) + print(check_letter(False, ['M', 'A', 'M', 'O', 'U', 'T', 'H'])) diff --git a/openclassrooms-trainings/zpendu/pendu.py b/openclassrooms-trainings/zpendu/pendu.py new file mode 100644 index 0000000..0175974 --- /dev/null +++ b/openclassrooms-trainings/zpendu/pendu.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +import random +import os +import pickle +from donnees import * +from fonctions import * + + #check_letter, cls, stringalise + +# 2.7-zPendu.py: Jeu de pendu avec cumul des scores des differant joueurs + +# OpenClassrooms - Apprenez a programmer en Python - +# https://openclassrooms.com/courses/apprenez-a-programmer-en-python/tp-un-bon-vieux-pendu + +# Le joueur donne son nom au debut (enregistrement du score) +# Le script choisit un mot (8 lettres max) au hasard dans une liste +# Le joueur a chaque tour saisit une lettre +# Si la lettre figure dans le mot, l'ordinateur affiche le mot avec +# les lettres deja trouvees. Celles qui ne le sont pas encore sont +# remplacees par des etoiles (*). Le joueur a autant de chances que +# le nombre de lettre du mot. Au dela, perdu. +# Le score: score courant (0 si aucun score deja enregistre), a +# chaque partie, ajoute le nombre de coups restants (non utilise) + +# intégrer la date de 1ere partie dans le score +# intégrer la partie au plus fort score +# zerofill les scores + +# Constantes +SCORES_FILE = ".scores" +WORD_LIST_FILE = "dicolight.txt" +MAX_TURNS = 12 +MAX_NAME_LEN = 7 +MIN_NAME_LEN = 2 +MSG_DISCLAMER = "Bienvenue au zPendu!\nLe but du jeu est de deviner" + \ + " un mot de 8 lettres max en moins de {} tours.".format(MAX_TURNS) +ASK_NAME = "Votre nom ({} à {} caratères) : "\ + .format(MIN_NAME_LEN, MAX_NAME_LEN) +ASK_LETTER = "Choisissez une lettre : " +ERR_WORD_LIST_FILE = "\t#!@?# Oups… Le dictionnaire n'est pas accesible! #?@!#" +ERR_LETTER_LEN = "\t#!@?# Oups… Saisie trop courte ou trop longue! #?@!#" +ERR_LETTER_ALPHA = "\t#!@?# Oups… Il faut saisir une lettre! #?@!#" +ERR_LETTER_USED = "\t#!@?# Oups… Cette lettre à déjà été jouée! #?@!#" +MSG_END_GAME = "Partie terminée avec {} point(s).\nLe mot mystère était : \n" +MSG_1ST_GAME = "C'était votre 1ère partie ;-)" +MSG_SCORES = "\n-== Les Scores : ==-" + +# Variables +game_continue = True +player_name = str() +letter = str() +turns = 0 +alphabet = [ + 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', + 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' +] + +cls() +print(MSG_DISCLAMER) + +while ( + len(player_name) < MIN_NAME_LEN or + len(player_name) > MAX_NAME_LEN or + player_name.isalnum() is False +): # Le joueur donne son nom + player_name = str(input(ASK_NAME)).capitalize() + + if len(player_name) < MIN_NAME_LEN or len(player_name) > MAX_NAME_LEN: + print(ERR_LETTER_LEN) + + if player_name.isalnum() is False: + print(ERR_LETTER_ALPHA) + +if os.path.isfile(WORD_LIST_FILE) is True: # Chargement du dictionnaire + with open(WORD_LIST_FILE, "r") as word_list_file: + word_list = word_list_file.read().splitlines() +else: + raise ValueError(ERR_WORD_LIST_FILE) + +# Choix du mot cible +target_word = list(word_list[random.randrange(0, len(word_list))]) +player_word = list("*" * len(target_word)) + +# Debut de partie +while game_continue is True: + + while ( + len(letter) != 1 + or letter.isalpha() is False + or alphabet.count(letter) != 1 + ): # Le joueur choisi une lettre + + letter = str(input(ASK_LETTER)).upper() + + if len(letter) != 1: + print(ERR_LETTER_LEN) + + elif letter.isalpha() is False: + print(ERR_LETTER_ALPHA) + + elif alphabet.count(letter) != 1: + print(ERR_LETTER_USED) + + # Presence de la lettre? + if check_letter(letter, target_word) is not False: + positions = check_letter(letter, target_word) + for i in positions: + player_word[i] = letter + + alphabet[alphabet.index(letter)] = '_' + turns += 1 + if turns == MAX_TURNS or player_word.count("*") == 0: # Fin de partie? + game_continue = False + + # Affichage de la fin de tour + cls() + print(stringalise(alphabet)) + print("tour : ", turns, "sur ", MAX_TURNS) + print(stringalise(player_word)) + + +# Fin de partie +points = (MAX_TURNS - turns) + 1 +cls() +print(MSG_END_GAME.format(points)) +print(stringalise(target_word)) + +# Affichage du score de la partie et des highscores +if os.path.isfile(SCORES_FILE) is True: # Ouverture du fichier + with open(SCORES_FILE, "rb") as scores_file: + scores = pickle.Unpickler(scores_file).load() + +else: + scores = {player_name: 0} + print(MSG_1ST_GAME) + +# Calcul du score +if scores.get(player_name, False) is False: # Nouveau joueur + scores.update({player_name: 0}) + +scores[player_name] = scores[player_name] + points + +# Enregistrement du score +with open(SCORES_FILE, "wb") as scores_file: + pickle.Pickler(scores_file).dump(scores) + +print(MSG_SCORES) +for score in sorted( + {(points, player) for player, points in scores.items()}, + reverse=True +): + print("{}\t: {} points".format(score[1], score[0])) diff --git a/stackex-examples/file1.py b/stackex-examples/file1.py new file mode 100644 index 0000000..ab685c3 --- /dev/null +++ b/stackex-examples/file1.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +from file2 import Message + +""" Single variable importation example """ + +WORD_LIST = ["hello","bonjour","ola"] + +Message(1) diff --git a/stackex-examples/file2.py b/stackex-examples/file2.py new file mode 100644 index 0000000..0a731b2 --- /dev/null +++ b/stackex-examples/file2.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Single variable importation example + +:Example: +>>> MyMessage = Message(0) + +>>> type(MyMessage) + +>>> print(MyMessage) +hello world +>>> repr(MyMessage) +"phrase: hello world|wl: ['hello', 'bonjour', 'ola']" +""" + +class Message: + + def __init__(self, index): + from file1 import WORD_LIST + + self._phrase = WORD_LIST[index] + " world" + self._word_list = WORD_LIST + + def __repr__(self): + return "phrase: {}|wl: {}".format(self._phrase, self._word_list) + + def __str__(self): + return self._phrase + +if __name__ == "__main__": + """ Starting doctests """ + import doctest + doctest.testmod() diff --git a/stackex-examples/linttest01.py b/stackex-examples/linttest01.py new file mode 100644 index 0000000..7ccc8a8 --- /dev/null +++ b/stackex-examples/linttest01.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python2 +# by Daniel Rosengren, modified by e-satis +# https://stackoverflow.com/a/1429145/6709630 + +import sys, time +stdout = sys.stdout + +BAILOUT = 16 +MAX_ITERATIONS = 1000 + +class Iterator(object) : + + def __init__(self): + + print 'Rendering...' + for y in xrange(-39, 39): + stdout.write('\n') + for x in xrange(-39, 39): + if self.mandelbrot(x/40.0, y/40.0) : + stdout.write(' ') + else: + stdout.write('*') + + + def mandelbrot(self, x, y): + cr = y - 0.5 + ci = x + zi = 0.0 + zr = 0.0 + + for i in xrange(MAX_ITERATIONS) : + temp = zr * zi + zr2 = zr * zr + zi2 = zi * zi + zr = zr2 - zi2 + cr + zi = temp + temp + ci + + if zi2 + zr2 > BAILOUT: + return i + + return 0 + +t = time.time() +Iterator() +print '\nPython Elapsed %.02f' % (time.time() - t) diff --git a/stackex-examples/linttest02.py b/stackex-examples/linttest02.py new file mode 100644 index 0000000..501d186 --- /dev/null +++ b/stackex-examples/linttest02.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python2 +# by Daniel Rosengren, modified by e-satis +""" +Module doctring +https://stackoverflow.com/a/1429145/6709630 +""" + + +import time +from sys import stdout + +BAILOUT = 16 +MAX_ITERATIONS = 1000 + +def mandelbrot(dim_1, dim_2): + """ + function doc string + """ + cr1 = dim_1 - 0.5 + ci1 = dim_2 + zi1 = 0.0 + zr1 = 0.0 + + for i in xrange(MAX_ITERATIONS) : + temp = zr1 * zi1 + zr2 = zr1 * zr1 + zi2 = zi1 * zi1 + zr1 = zr2 - zi2 + cr1 + zi1 = temp + temp + ci1 + + if zi2 + zr2 > BAILOUT: + return i + + return 0 + +def execute() : + """ + func doc string + """ + print 'Rendering...' + for dim_1 in xrange(-39, 39): + stdout.write('\n') + for dim_2 in xrange(-39, 39): + if mandelbrot(dim_1/40.0, dim_2/40.0) : + stdout.write(' ') + else: + stdout.write('*') + + +START_TIME = time.time() +execute() +print '\nPython Elapsed %.02f' % (time.time() - START_TIME) diff --git a/stackex-examples/readme.md b/stackex-examples/readme.md new file mode 100644 index 0000000..6028a44 --- /dev/null +++ b/stackex-examples/readme.md @@ -0,0 +1,3 @@ +# stackex + +Script posté et/ou trouvé sur[Stack Overflow](https://stackoverflow.com) diff --git a/stackex-examples/sendtofunction.py b/stackex-examples/sendtofunction.py new file mode 100644 index 0000000..0514581 --- /dev/null +++ b/stackex-examples/sendtofunction.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +#https://stackoverflow.com/questions/48729156/how-to-share-values-between-functions-in-python + +from random import randrange + +a = 20 +b = 45 + +def function1(): + coin = randrange(0, 100) + a2 = a + coin + return a2 + + +def function2(coin): + b2 = b + coin + return b2 + +coin = function1() - a +f2 = function2(coin) +print("coin: {}".format(coin)) +print("f2: {}".format(f2)) diff --git a/stackex-examples/testsocketclose.py b/stackex-examples/testsocketclose.py new file mode 100644 index 0000000..53f8f6e --- /dev/null +++ b/stackex-examples/testsocketclose.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +testsocketclose.py + +https://stackoverflow.com/q/32019274/6709630 +""" +import signal, socket, sys, time + +def handler(signum, frame): + """ Catch signal for clean stop""" + print('\nNice exit') + connection.close() + sys.exit(0) + +signal.signal(signal.SIGINT, handler) + +# Creation de la connection +connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +connection.bind(('localhost', 5555)) +connection.listen(5) + +while 1: + print("Socket open:\n{}\nExit with ".format(connection)) + time.sleep(2) diff --git a/stackex-examples/tryexcept.py b/stackex-examples/tryexcept.py new file mode 100644 index 0000000..a60732c --- /dev/null +++ b/stackex-examples/tryexcept.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Author: freezed 2018-02-19 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +Testing conditions in try/except statement + +https://stackoverflow.com/questions/48864496/adding-if-statement-in-a-try-except-bloc +""" +# ? if user_select_map_id is int(): ? + +DEBUG_MODE = [False, True] + +for status in DEBUG_MODE: + print("DEBUG_MODE: {}".format(status)) + number = input("Type a integer: ") + try: + number = int(number) + except ValueError as except_detail: + if status: + print("ValueError: «{}»".format(except_detail)) + else: + print("«{}» is not an integer".format(number)) + else: + print("Your number {} is an integer".format(number)) diff --git a/technical_tests/reorganize_string.py b/technical_tests/reorganize_string.py new file mode 100644 index 0000000..46e2033 --- /dev/null +++ b/technical_tests/reorganize_string.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python3 +# coding: utf8 + +""" +Author: freezed 2020-07-16 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +This file is part of [`free_zed/mypsb`](https://gitlab.com/free_zed/mypsb/) +""" + + +def main(string, n, sep): + """ + This function reorganize `string` by removing spaces & groups by `n` + characters separated by `sep`. + + :Tests: + >>> main("ab c de fgh ijk", 2, "|") + 'ab|cd|ef|gh|ij|k' + >>> main("ab c de fgh ijk", 3, "_") + 'abc_def_ghi_jk' + >>> main("ab c de fgh ijk", 4, "/") + 'abcd/efgh/ijk' + """ + + strings = list() + + stack = "".join(string.split(" ")) + steps = round(len(stack) / n) + + while steps != 0: + strings.append(stack[:n]) + stack = stack[n:] + steps -= 1 + + return sep.join(strings) + + +if __name__ == "__main__": + import doctest + + doctest.testmod() diff --git a/technical_tests/sand_grain_drop.py b/technical_tests/sand_grain_drop.py new file mode 100644 index 0000000..12d2ec6 --- /dev/null +++ b/technical_tests/sand_grain_drop.py @@ -0,0 +1,92 @@ +#!/usr/bin/env python3 +# coding: utf8 + +""" +Author: freezed 2020-07-16 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +This file is part of [`free_zed/mypsb`](https://gitlab.com/free_zed/mypsb/) +""" + + +def main(pile, n): + """ + This function returns the situation of a sand `pile` after droping `n` + sand grain on top of it. + + + 1. Sand pile is a square table of uneven size (viewed from up) + 1. Sand grain is always dropped on center of pile. + 1. When a cell had 4 grains inside, these grains moves on the near 4th cells + 1. Grains going out the pile are losts + + :Tests: + >>> main([[1,1,1],[1,1,1],[1,1,1]],1) + [[1, 1, 1], [1, 2, 1], [1, 1, 1]] + >>> main([[1,1,1],[1,1,1],[1,1,1]],2) + [[1, 1, 1], [1, 3, 1], [1, 1, 1]] + >>> main([[1,1,1],[1,1,1],[1,1,1]],3) + [[1, 2, 1], [2, 0, 2], [1, 2, 1]] + >>> main([[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1]],1) + [[1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 1, 2, 1, 1], [1, 1, 1, 1, 1], [1, 1, 1, 1, 1]] + >>> main([[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1],[1,1,1,1,1]],3) + [[1, 1, 1, 1, 1], [1, 1, 2, 1, 1], [1, 2, 0, 2, 1], [1, 1, 2, 1, 1], [1, 1, 1, 1, 1]] + >>> main([[0,0,3,0,0],[0,0,3,0,0],[3,3,3,3,3],[0,0,3,0,0],[0,0,3,0,0]],1) + [[0, 1, 0, 1, 0], [1, 2, 2, 2, 1], [0, 2, 0, 2, 0], [1, 2, 2, 2, 1], [0, 1, 0, 1, 0]] + """ + + size = len(pile) + center = int((size - 1) / 2) + + while n != 0: + pile[center][center] += 1 + do_propagation(pile) + n -= 1 + + # All sand grain are dropped, let's finish propagations + while True in [4 in row for row in pile]: + do_propagation(pile) + + return pile + + +def do_propagation(pile): + """ + Walk through the pile to propagate sand grains + + :tests: + >>> test_case = [[0,0,4,0,0],[0,2,0,2,0],[4,0,4,0,4],[0,2,0,2,0],[0,0,4,0,0]] + >>> do_propagation(test_case) + >>> print(test_case) + [[0, 1, 0, 1, 0], [1, 2, 2, 2, 1], [0, 2, 0, 2, 0], [1, 2, 2, 2, 1], [0, 1, 0, 1, 0]] + """ + + size = len(pile) + x_max, y_max = size - 1, size - 1 + + # find cells > 3 + for x in range(size): + + for y in range(size): + + if pile[x][y] > 3: + pile[x][y] -= 4 + + # update west neighbor + if x < x_max: + pile[x + 1][y] += 1 + # update east neighbor + if x > 0: + pile[x - 1][y] += 1 + # update north neighbor + if y < y_max: + pile[x][y + 1] += 1 + # update south neighbor + if y > 0: + pile[x][y - 1] += 1 + + +if __name__ == "__main__": + import doctest + + doctest.testmod() diff --git a/xkcd-password.py b/xkcd-password.py new file mode 100644 index 0000000..a6df50f --- /dev/null +++ b/xkcd-password.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 +# coding: utf8 + +""" +Author: freezed 2020-01-16 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ +Inspiration: + - https://docs.python.org/3/library/secrets.html#recipes-and-best-practices + - https://xkcd.com/936/ +""" +import secrets + +with open("/usr/share/dict/words") as f: + words = [word.strip() for word in f if len(word) == 7] + for i in range(10): + password = "-".join(secrets.choice(words) for i in range(5)) + + print(password)