diff --git a/scripts/common/charthelper.py b/scripts/common/charthelper.py index bfbbb39..f4aa794 100644 --- a/scripts/common/charthelper.py +++ b/scripts/common/charthelper.py @@ -1,46 +1,34 @@ import random +import re + def getColor(): r = random.randrange(255) g = random.randrange(255) b = random.randrange(255) - return 'rgb({:0},{:0},{:0})'.format(r,g,b) + return 'rgb({:0},{:0},{:0})'.format(r, g, b) -def createElement(label, color, data) : + +def createElement(label, color, data): return { - "label": label, - "backgroundColor": color, - "data": data + "label": label, + "backgroundColor": color, + "data": data } -def setTopicInfo(tsunamy, messagesDataTopic, id, length): - if tsunamy & Topics.GLOBAL: - messagesDataTopic[Topics.GLOBAL][id] += length - if tsunamy & Topics.PROJECT: - messagesDataTopic[Topics.PROJECT][id] += length - if tsunamy & Topics.DEMOCRACY: - messagesDataTopic[Topics.DEMOCRACY][id] += length - if tsunamy & Topics.ECOLOGY: - messagesDataTopic[Topics.ECOLOGY][id] += length - if tsunamy & Topics.TECHNOLOGY: - messagesDataTopic[Topics.TECHNOLOGY][id] += length +def setTopicsInfo(topics, messagesDataTopic, id, length): + for topic in topics: + if topic not in messagesDataTopic: + messagesDataTopic[topic] = [0] * 30 + messagesDataTopic[topic][id] += length -def getTopic(channel): - value = Topics.GLOBAL - if 'description' in channel: - if channel['description'].find("#projet") != -1: - value |= Topics.PROJECT - if channel['description'].find("#democratie") != -1: - value |= Topics.DEMOCRACY - if channel['description'].find("#ecologie") != -1: - value |= Topics.ECOLOGY - if channel['description'].find("#technologie") != -1: - value |= Topics.TECHNOLOGY - return value +def getTopics(channel): + if 'description' in channel: + topics = re.findall(r"#(\w+)\W?", channel['description']) + if len(topics) == 0: + topics.append('global') + return topics + return ['global'] -class Topics: - GLOBAL = 1 << 0 - PROJECT = 1 << 1 - DEMOCRACY = 1 << 2 - ECOLOGY = 1 << 3 - TECHNOLOGY = 1 << 4 \ No newline at end of file +if __name__ == "__main__": + print("not executable") diff --git a/scripts/generate_chat_stat_daily.py b/scripts/generate_chat_stat_daily.py index 739977c..2ef0df5 100644 --- a/scripts/generate_chat_stat_daily.py +++ b/scripts/generate_chat_stat_daily.py @@ -11,7 +11,7 @@ import random from datetime import datetime, timedelta from common.rocketchathelper import getAllChannels, getAllMessages, Connection from common.savehelper import save -from common.charthelper import createElement, getColor, setTopicInfo, getTopic, Topics +from common.charthelper import createElement, getColor, setTopicsInfo, getTopics begin = datetime.now() end = datetime.now() @@ -25,13 +25,7 @@ def main(): labels = [None] * nbElements messagesByChannel = [] usersByChannel = [] - messagesDataTopic = { - Topics.GLOBAL: [0] * nbElements, - Topics.PROJECT: [0] * nbElements, - Topics.DEMOCRACY: [0] * nbElements, - Topics.ECOLOGY: [0] * nbElements, - Topics.TECHNOLOGY: [0] * nbElements, - } + messagesByTopic = {} usersGlobal = [] now = datetime.now() @@ -42,13 +36,7 @@ def main(): "labels": labels, "messagesByChannel": messagesByChannel, "usersByChannel": usersByChannel, - "messagesByTopic": [ - createElement("global", getColor(), messagesDataTopic[Topics.GLOBAL]), - createElement("project", getColor(), messagesDataTopic[Topics.PROJECT]), - createElement("democratie", getColor(), messagesDataTopic[Topics.DEMOCRACY]), - createElement("ecologie", getColor(), messagesDataTopic[Topics.ECOLOGY]), - createElement("technologie", getColor(), messagesDataTopic[Topics.TECHNOLOGY]) - ], + "messagesByTopic": messagesByTopic, "usersGlobal": usersGlobal } @@ -61,8 +49,8 @@ def main(): begin = date - timedelta(nbElements) end = begin + timedelta(nbElements) - tsunamy = getTopic(channel) - + topics = getTopics(channel) + print(topics) messages = getAllMessages(rocket, channel['_id'], begindate= begin, enddate= end, count= channel["msgs"]) end = begin + timedelta(1) @@ -77,7 +65,7 @@ def main(): dataMess.append(length) if length > 0: - setTopicInfo(tsunamy, messagesDataTopic, id, length) + setTopicsInfo(topics, messagesByTopic, id, length) users = [] for mess in resultMess: diff --git a/scripts/generate_chat_stat_monthly.py b/scripts/generate_chat_stat_monthly.py index d8181b6..91bcfdf 100644 --- a/scripts/generate_chat_stat_monthly.py +++ b/scripts/generate_chat_stat_monthly.py @@ -12,7 +12,7 @@ from datetime import datetime from monthdelta import monthdelta from common.rocketchathelper import getAllChannels, getAllMessages, Connection from common.savehelper import save -from common.charthelper import createElement, getColor, setTopicInfo, Topics, getTopic +from common.charthelper import createElement, getColor, setTopicsInfo, getTopics begin = datetime.now() end = datetime.now() @@ -26,13 +26,7 @@ def main(): labels = [None] * 12 messagesByChannel = [] usersByChannel = [] - messagesDataTopic = { - Topics.GLOBAL: [0] * 12, - Topics.PROJECT: [0] * 12, - Topics.DEMOCRACY: [0] * 12, - Topics.ECOLOGY: [0] * 12, - Topics.TECHNOLOGY: [0] * 12, - } + messagesByTopic = {} usersGlobal = [] now = datetime.now() @@ -43,13 +37,7 @@ def main(): "labels": labels, "messagesByChannel": messagesByChannel, "usersByChannel": usersByChannel, - "messagesByTopic": [ - createElement("global", getColor(), messagesDataTopic[Topics.GLOBAL]), - createElement("project", getColor(), messagesDataTopic[Topics.PROJECT]), - createElement("democratie", getColor(), messagesDataTopic[Topics.DEMOCRACY]), - createElement("ecologie", getColor(), messagesDataTopic[Topics.ECOLOGY]), - createElement("technologie", getColor(), messagesDataTopic[Topics.TECHNOLOGY]) - ], + "messagesByTopic": messagesByTopic, "usersGlobal": usersGlobal } @@ -64,8 +52,8 @@ def main(): messages = getAllMessages(rocket, channel['_id'], begindate= begin, enddate=date, count= channel['msgs']) - tsunamy = getTopic(channel) - + topics = getTopics(channel) + print(topics) for id in range(0, 12): if uniqueUserGlobal[id] == None: uniqueUserGlobal[id] = [] @@ -77,7 +65,7 @@ def main(): dataMess.append(length) if length > 0: - setTopicInfo(tsunamy, messagesDataTopic, id, length) + setTopicsInfo(topics, messagesByTopic, id, length) users = [] for mess in resultMess: diff --git a/site/data/chat_stat_daily.json b/site/data/chat_stat_daily.json index 2f3af96..f537aff 100644 --- a/site/data/chat_stat_daily.json +++ b/site/data/chat_stat_daily.json @@ -1 +1 @@ -{"updated": "08/09/2019", "labels": ["08/09/19", "08/10/19", "08/11/19", "08/12/19", "08/13/19", "08/14/19", "08/15/19", "08/16/19", "08/17/19", "08/18/19", "08/19/19", "08/20/19", "08/21/19", "08/22/19", "08/23/19", "08/24/19", "08/25/19", "08/26/19", "08/27/19", "08/28/19", "08/29/19", "08/30/19", "08/31/19", "09/01/19", "09/02/19", "09/03/19", "09/04/19", "09/05/19", "09/06/19", "09/07/19"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(108,202,143)", "data": [48, 97, 13, 20, 26, 1, 3, 9, 1, 9, 11, 14, 6, 108, 24, 4, 1, 42, 30, 3, 9, 38, 7, 0, 37, 15, 50, 17, 7, 6]}, {"label": "activite-et-travail", "backgroundColor": "rgb(6,20,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "agenda", "backgroundColor": "rgb(200,135,46)", "data": [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 4, 5, 9, 1, 6, 17, 0, 0, 0]}, {"label": "algoculture", "backgroundColor": "rgb(14,248,178)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(116,185,49)", "data": [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 0, 13, 51, 183, 9, 26, 0, 0, 0, 0, 0, 0, 82, 7]}, {"label": "aquaponie", "backgroundColor": "rgb(25,223,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(51,198,55)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(12,191,9)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "avoirouetre", "backgroundColor": "rgb(80,174,121)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(199,133,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(218,241,213)", "data": [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 95, 0, 44, 3, 1, 0, 6, 0, 0]}, {"label": "burn-out", "backgroundColor": "rgb(123,248,37)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(33,117,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(205,10,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(188,19,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 1, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(110,202,40)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(103,102,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(203,241,16)", "data": [0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 0, 26, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(97,227,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(254,136,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(254,10,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 9, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0]}, {"label": "cercle-education", "backgroundColor": "rgb(243,160,229)", "data": [0, 0, 0, 0, 0, 1, 2, 23, 0, 0, 1, 0, 1, 0, 3, 15, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 17, 4]}, {"label": "cercle-electronique", "backgroundColor": "rgb(92,243,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(189,187,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(56,229,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(17,26,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(155,173,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 5, 0, 0, 0, 0]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(91,126,191)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(160,101,222)", "data": [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(99,225,69)", "data": [10, 0, 0, 0, 0, 33, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 11, 52, 22, 240]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(49,15,205)", "data": [0, 0, 0, 6, 2, 13, 1, 11, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 7, 1, 1, 0, 3]}, {"label": "cercle-sante", "backgroundColor": "rgb(244,68,53)", "data": [0, 0, 5, 5, 3, 22, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 5, 6]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(241,27,220)", "data": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(207,212,247)", "data": [2, 0, 0, 0, 2, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 63, 2, 2, 9, 2]}, {"label": "chanvre", "backgroundColor": "rgb(34,195,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(143,191,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(63,149,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(13,126,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(199,112,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(178,32,69)", "data": [0, 0, 5, 6, 3, 2, 8, 2, 1, 0, 29, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 2, 2, 1, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(40,151,230)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(165,131,14)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(213,81,146)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(51,243,68)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 4, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 27, 63, 22, 22]}, {"label": "cohorte-centre", "backgroundColor": "rgb(143,230,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(213,80,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(61,162,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(106,4,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(128,33,247)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(154,212,1)", "data": [1, 0, 0, 7, 31, 0, 0, 0, 16, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 3, 0, 0, 17, 6]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(107,105,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(27,232,249)", "data": [0, 1, 0, 0, 0, 1, 1, 3, 0, 0, 14, 9, 3, 17, 115, 1, 0, 8, 6, 0, 4, 2, 0, 0, 0, 0, 3, 18, 20, 18]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(26,19,240)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(111,169,74)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(232,72,87)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(183,40,79)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(53,197,19)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(133,5,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 2, 0, 0, 0]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(201,132,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(117,240,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(160,144,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(41,54,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(73,224,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(183,210,60)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 187, 173, 16, 26, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(43,58,183)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18, 15, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(147,195,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(136,5,205)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 0, 6, 2]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(179,162,244)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(46,226,215)", "data": [0, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 1, 23, 1, 0, 0, 0, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(126,232,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(80,47,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(35,226,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(197,61,25)", "data": [0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 11, 7, 10, 17, 3, 6, 1, 5, 0, 0, 0, 0, 0, 1, 1, 34, 12, 3, 0, 0]}, {"label": "education-populaire", "backgroundColor": "rgb(149,23,142)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(138,178,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(208,239,115)", "data": [0, 4, 4, 8, 0, 0, 8, 19, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(130,33,168)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(205,38,241)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(65,196,96)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(128,148,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(124,26,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(112,229,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(231,179,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(159,87,100)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(51,139,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(18,143,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(23,220,3)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(37,192,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(217,194,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(71,27,79)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(5,91,184)", "data": [7, 9, 102, 20, 5, 82, 5, 0, 86, 2, 29, 60, 90, 5, 16, 68, 15, 97, 17, 14, 15, 36, 57, 29, 200, 21, 4, 8, 104, 0]}, {"label": "geopolitique", "backgroundColor": "rgb(48,232,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(63,101,154)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(25,15,60)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 8, 0, 4]}, {"label": "godelescherbach", "backgroundColor": "rgb(185,211,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(86,236,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(145,244,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(79,187,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(212,30,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(240,144,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(139,128,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(131,71,74)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 96, 0, 5, 0, 0, 0, 0, 0, 3, 1]}, {"label": "impression-3d", "backgroundColor": "rgb(109,42,76)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(144,110,111)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(59,118,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(144,173,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(185,0,70)", "data": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(81,95,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(229,204,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(182,250,186)", "data": [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(172,205,139)", "data": [0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 9, 3, 9, 0, 0, 0, 0, 0, 2, 0, 0, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(173,88,156)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(149,35,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(205,239,216)", "data": [0, 0, 18, 22, 2, 0, 0, 1, 47, 24, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(7,23,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(228,174,25)", "data": [0, 0, 2, 3, 32, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 2, 7, 2, 0, 0, 0]}, {"label": "libre", "backgroundColor": "rgb(211,93,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 188, 2, 2, 6, 21, 21, 3, 270, 12, 0, 0, 1, 8, 0, 37, 0, 0, 0, 0, 29, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(129,219,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(178,85,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(211,162,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(5,164,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 116, 8, 91, 2, 23, 5, 0, 3, 61]}, {"label": "manuel-terrien", "backgroundColor": "rgb(56,21,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(239,194,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(128,225,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(202,64,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]}, {"label": "meta", "backgroundColor": "rgb(163,123,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(214,94,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(8,36,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(51,96,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(38,61,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(172,95,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(217,25,38)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(14,63,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(191,241,78)", "data": [3, 1, 0, 0, 0, 22, 18, 8, 0, 4, 85, 9, 29, 0, 0, 1, 0, 0, 1, 12, 1, 3, 0, 0, 3, 0, 0, 11, 196, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(84,46,46)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(217,147,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(108,60,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(234,247,59)", "data": [0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(133,155,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(124,103,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "philosophie", "backgroundColor": "rgb(72,155,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(6,44,243)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(208,83,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(199,107,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(222,111,155)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(106,72,198)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 44, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(146,189,76)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(89,148,40)", "data": [109, 11, 0, 8, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 1, 19, 0, 0, 0]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(242,123,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(211,80,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(193,151,167)", "data": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 55, 48]}, {"label": "pub-canaux", "backgroundColor": "rgb(125,26,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(50,103,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(103,169,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(108,175,140)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(88,23,176)", "data": [4, 0, 0, 4, 3, 150, 0, 0, 104, 2, 2, 25, 12, 3, 5, 0, 0, 36, 0, 0, 2, 0, 36, 1, 0, 0, 0, 0, 54, 7]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(107,168,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 129, 48, 10, 22, 63, 94, 94, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(40,239,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(247,84,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(69,92,80)", "data": [3, 225, 41, 5, 0, 0, 0, 0, 6, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(205,84,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(3,141,101)", "data": [31, 28, 56, 40, 53, 30, 10, 50, 21, 24, 16, 23, 63, 33, 31, 0, 0, 62, 33, 68, 20, 47, 14, 112, 7, 118, 13, 4, 13, 9]}, {"label": "siteweb", "backgroundColor": "rgb(62,81,233)", "data": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 24, 3, 48, 8, 16, 28, 4, 38, 20]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(246,80,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "solucracy", "backgroundColor": "rgb(182,144,194)", "data": [8, 43, 0, 0, 9, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 26, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(87,45,43)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(28,179,5)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(70,219,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(89,200,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(112,147,195)", "data": [1, 0, 0, 0, 23, 17, 0, 0, 1, 378, 161, 55, 20, 112, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 32, 28, 0, 0]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(246,63,135)", "data": [0, 8, 5, 10, 10, 1, 13, 39, 0, 0, 14, 12, 0, 0, 0, 0, 2, 79, 0, 0, 0, 5, 10, 0, 0, 1, 0, 0, 0, 1]}, {"label": "testbot", "backgroundColor": "rgb(110,19,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(113,55,139)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 11, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(93,209,194)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(221,83,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(175,147,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(147,220,215)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 39, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(211,100,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(150,14,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(115,175,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(137,72,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(57,59,44)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 44, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(22,2,74)", "data": [0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 7, 1, 2, 35, 0, 9, 0, 0, 0, 5, 0, 2, 7, 0, 0, 0]}, {"label": "zero-dechet", "backgroundColor": "rgb(151,34,231)", "data": [0, 0, 0, 0, 1, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(176,156,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(108,202,143)", "data": [10, 5, 5, 5, 7, 1, 3, 4, 1, 3, 3, 6, 4, 7, 4, 3, 1, 8, 9, 1, 3, 9, 2, 0, 3, 4, 9, 7, 4, 3]}, {"label": "activite-et-travail", "backgroundColor": "rgb(6,20,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "agenda", "backgroundColor": "rgb(200,135,46)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 3, 1, 2, 1, 3, 2, 0, 0, 0]}, {"label": "algoculture", "backgroundColor": "rgb(14,248,178)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(116,185,49)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 3, 5, 7, 3, 7, 0, 0, 0, 0, 0, 0, 5, 2]}, {"label": "aquaponie", "backgroundColor": "rgb(25,223,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(51,198,55)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(12,191,9)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "avoirouetre", "backgroundColor": "rgb(80,174,121)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(199,133,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(218,241,213)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 1, 1, 0, 1, 0, 0]}, {"label": "burn-out", "backgroundColor": "rgb(123,248,37)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(33,117,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(205,10,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(188,19,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 1, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(110,202,40)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(103,102,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(203,241,16)", "data": [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(97,227,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(254,136,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(254,10,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0]}, {"label": "cercle-education", "backgroundColor": "rgb(243,160,229)", "data": [0, 0, 0, 0, 0, 1, 2, 6, 0, 0, 1, 0, 1, 0, 2, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2]}, {"label": "cercle-electronique", "backgroundColor": "rgb(92,243,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(189,187,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(56,229,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(17,26,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(155,173,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 2, 0, 0, 0, 0]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(91,126,191)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(160,101,222)", "data": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(99,225,69)", "data": [3, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 5, 7, 6, 9]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(49,15,205)", "data": [0, 0, 0, 3, 2, 3, 1, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 3, 1, 1, 0, 2]}, {"label": "cercle-sante", "backgroundColor": "rgb(244,68,53)", "data": [0, 0, 1, 3, 2, 3, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 3]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(241,27,220)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(207,212,247)", "data": [1, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 2, 2, 2, 2]}, {"label": "chanvre", "backgroundColor": "rgb(34,195,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(143,191,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(63,149,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(13,126,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(199,112,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(178,32,69)", "data": [0, 0, 4, 4, 1, 2, 2, 2, 1, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 2, 1, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(40,151,230)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(165,131,14)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(213,81,146)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(51,243,68)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 4, 3, 3]}, {"label": "cohorte-centre", "backgroundColor": "rgb(143,230,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(213,80,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(61,162,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(106,4,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(128,33,247)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(154,212,1)", "data": [1, 0, 0, 3, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 3, 1]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(107,105,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(27,232,249)", "data": [0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 3, 3, 2, 2, 5, 1, 0, 4, 1, 0, 2, 2, 0, 0, 0, 0, 2, 3, 5, 3]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(26,19,240)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(111,169,74)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(232,72,87)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(183,40,79)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(53,197,19)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(133,5,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 2, 0, 0, 0]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(201,132,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(117,240,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(160,144,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(41,54,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(73,224,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(183,210,60)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 3, 5, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(43,58,183)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(147,195,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(136,5,205)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 4, 2]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(179,162,244)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(46,226,215)", "data": [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 3, 1, 0, 0, 0, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(126,232,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(80,47,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(35,226,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(197,61,25)", "data": [0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 1, 3, 1, 3, 0, 0, 0, 0, 0, 1, 1, 2, 4, 2, 0, 0]}, {"label": "education-populaire", "backgroundColor": "rgb(149,23,142)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(138,178,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(208,239,115)", "data": [0, 2, 3, 2, 0, 0, 3, 3, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(130,33,168)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(205,38,241)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(65,196,96)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(128,148,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(124,26,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(112,229,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(231,179,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(159,87,100)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(51,139,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(18,143,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(23,220,3)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(37,192,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(217,194,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(71,27,79)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(5,91,184)", "data": [3, 5, 7, 5, 4, 9, 3, 0, 4, 1, 9, 8, 9, 4, 6, 6, 3, 9, 4, 7, 5, 7, 7, 5, 5, 7, 3, 8, 11, 0]}, {"label": "geopolitique", "backgroundColor": "rgb(48,232,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(63,101,154)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(25,15,60)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 4, 0, 1]}, {"label": "godelescherbach", "backgroundColor": "rgb(185,211,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(86,236,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(145,244,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(79,187,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(212,30,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(240,144,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(139,128,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(131,71,74)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 0, 0, 0, 0, 0, 2, 1]}, {"label": "impression-3d", "backgroundColor": "rgb(109,42,76)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(144,110,111)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(59,118,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(144,173,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(185,0,70)", "data": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(81,95,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(229,204,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(182,250,186)", "data": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(172,205,139)", "data": [0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(173,88,156)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(149,35,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(205,239,216)", "data": [0, 0, 3, 4, 2, 0, 0, 1, 7, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(7,23,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(228,174,25)", "data": [0, 0, 1, 2, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0]}, {"label": "libre", "backgroundColor": "rgb(211,93,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 2, 3, 7, 5, 2, 5, 3, 0, 0, 1, 3, 0, 3, 0, 0, 0, 0, 4, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(129,219,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(178,85,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(211,162,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(5,164,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 7, 1, 4, 4, 0, 2, 3]}, {"label": "manuel-terrien", "backgroundColor": "rgb(56,21,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(239,194,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(128,225,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(202,64,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "meta", "backgroundColor": "rgb(163,123,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(214,94,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(8,36,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(51,96,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(38,61,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(172,95,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(217,25,38)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(14,63,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(191,241,78)", "data": [1, 1, 0, 0, 0, 1, 2, 1, 0, 3, 5, 6, 4, 0, 0, 1, 0, 0, 1, 5, 1, 2, 0, 0, 2, 0, 0, 3, 5, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(84,46,46)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(217,147,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(108,60,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(234,247,59)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(133,155,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(124,103,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "philosophie", "backgroundColor": "rgb(72,155,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(6,44,243)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(208,83,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(199,107,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(222,111,155)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(106,72,198)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(146,189,76)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(89,148,40)", "data": [2, 2, 0, 4, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 1, 4, 0, 0, 0]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(242,123,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(211,80,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(193,151,167)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 7]}, {"label": "pub-canaux", "backgroundColor": "rgb(125,26,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(50,103,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(103,169,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(108,175,140)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(88,23,176)", "data": [3, 0, 0, 3, 1, 8, 0, 0, 7, 1, 2, 6, 3, 2, 4, 0, 0, 4, 0, 0, 2, 0, 4, 1, 0, 0, 0, 0, 5, 3]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(107,168,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 2, 3, 4, 7, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(40,239,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(247,84,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(69,92,80)", "data": [1, 9, 4, 2, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(205,84,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(3,141,101)", "data": [5, 6, 6, 7, 6, 5, 3, 6, 5, 9, 4, 6, 7, 5, 7, 0, 0, 6, 5, 7, 4, 8, 4, 5, 2, 4, 3, 2, 4, 4]}, {"label": "siteweb", "backgroundColor": "rgb(62,81,233)", "data": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 3, 3, 3, 3, 3, 3, 3]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(246,80,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "solucracy", "backgroundColor": "rgb(182,144,194)", "data": [2, 6, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(87,45,43)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(28,179,5)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(70,219,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(89,200,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(112,147,195)", "data": [1, 0, 0, 0, 4, 3, 0, 0, 1, 8, 5, 6, 4, 5, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 4, 0, 0]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(246,63,135)", "data": [0, 2, 2, 2, 2, 1, 4, 4, 0, 0, 4, 3, 0, 0, 0, 0, 1, 5, 0, 0, 0, 3, 3, 0, 0, 1, 0, 0, 0, 1]}, {"label": "testbot", "backgroundColor": "rgb(110,19,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(113,55,139)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 5, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(93,209,194)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(221,83,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(175,147,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(147,220,215)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(211,100,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(150,14,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(115,175,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(137,72,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(57,59,44)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(22,2,74)", "data": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 1, 2, 3, 0, 2, 0, 0, 0, 2, 0, 1, 2, 0, 0, 0]}, {"label": "zero-dechet", "backgroundColor": "rgb(151,34,231)", "data": [0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(176,156,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "messagesByTopic": [{"label": "global", "backgroundColor": "rgb(98,21,74)", "data": [252, 746, 253, 190, 220, 394, 91, 169, 447, 859, 476, 308, 340, 504, 444, 116, 301, 654, 359, 580, 406, 463, 172, 401, 340, 337, 265, 274, 747, 493]}, {"label": "project", "backgroundColor": "rgb(33,144,178)", "data": [42, 296, 115, 67, 64, 33, 11, 51, 74, 51, 33, 26, 67, 35, 33, 0, 1, 232, 220, 267, 156, 189, 26, 204, 9, 141, 18, 4, 21, 72]}, {"label": "democratie", "backgroundColor": "rgb(142,157,33)", "data": [15, 209, 1, 10, 17, 165, 3, 34, 111, 47, 9, 33, 14, 30, 9, 16, 1, 73, 9, 38, 13, 3, 38, 4, 4, 74, 21, 11, 86, 23]}, {"label": "ecologie", "backgroundColor": "rgb(175,123,131)", "data": [34, 30, 64, 63, 93, 69, 11, 62, 43, 76, 89, 48, 75, 53, 35, 6, 1, 74, 39, 73, 26, 54, 14, 117, 38, 229, 30, 10, 82, 81]}, {"label": "technologie", "backgroundColor": "rgb(110,82,114)", "data": [8, 251, 59, 28, 2, 22, 20, 9, 63, 31, 92, 11, 31, 4, 2, 4, 7, 1, 6, 26, 97, 3, 7, 0, 4, 2, 4, 11, 196, 0]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [20, 21, 20, 25, 25, 21, 18, 15, 15, 19, 20, 25, 22, 23, 16, 13, 12, 22, 21, 20, 21, 22, 16, 16, 18, 21, 28, 23, 27, 22]}]} \ No newline at end of file +{"updated": "28/09/2019", "labels": ["08/29/19", "08/30/19", "08/31/19", "09/01/19", "09/02/19", "09/03/19", "09/04/19", "09/05/19", "09/06/19", "09/07/19", "09/08/19", "09/09/19", "09/10/19", "09/11/19", "09/12/19", "09/13/19", "09/14/19", "09/15/19", "09/16/19", "09/17/19", "09/18/19", "09/19/19", "09/20/19", "09/21/19", "09/22/19", "09/23/19", "09/24/19", "09/25/19", "09/26/19", "09/27/19"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(144,103,167)", "data": [9, 38, 7, 0, 37, 15, 50, 17, 7, 6, 17, 18, 3, 6, 13, 14, 15, 6, 51, 5, 94, 13, 56, 12, 65, 44, 20, 7, 55, 18]}, {"label": "activite-et-travail", "backgroundColor": "rgb(18,180,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 5, 0, 20, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0]}, {"label": "agenda", "backgroundColor": "rgb(252,108,148)", "data": [3, 4, 5, 9, 1, 6, 17, 0, 0, 0, 21, 10, 18, 3, 0, 2, 3, 0, 0, 2, 3, 2, 4, 4, 42, 18, 14, 11, 0, 5]}, {"label": "algoculture", "backgroundColor": "rgb(43,44,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(171,235,98)", "data": [9, 26, 0, 0, 0, 0, 0, 0, 82, 7, 118, 54, 0, 0, 45, 0, 0, 6, 11, 1, 0, 0, 0, 2, 151, 28, 7, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(202,18,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(20,20,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(107,177,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "autonomie-energetique", "backgroundColor": "rgb(21,54,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "avoirouetre", "backgroundColor": "rgb(124,144,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0]}, {"label": "blockchain-crypto", "backgroundColor": "rgb(146,194,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(150,71,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "bresil", "backgroundColor": "rgb(74,248,126)", "data": [0, 95, 0, 44, 3, 1, 0, 6, 0, 0, 0, 4, 137, 51, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "burn-out", "backgroundColor": "rgb(44,147,215)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(52,148,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(245,227,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(55,103,80)", "data": [2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(141,78,109)", "data": [0, 0, 0, 0, 1, 63, 2, 2, 9, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 34, 8, 68, 10, 11, 2, 0, 0, 11]}, {"label": "chanvre", "backgroundColor": "rgb(201,221,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(3,5,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(149,121,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(195,223,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(203,84,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(215,127,5)", "data": [0, 1, 0, 2, 0, 0, 2, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 6, 4, 0, 0, 0, 0, 15, 4, 0, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,199,134)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(191,118,144)", "data": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 4, 0, 7, 15, 0]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(189,250,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(25,142,139)", "data": [0, 0, 0, 0, 9, 1, 27, 63, 22, 22, 8, 11, 6, 72, 20, 0, 0, 91, 55, 13, 5, 1, 0, 0, 0, 3, 2, 0, 0, 8]}, {"label": "cohorte-centre", "backgroundColor": "rgb(11,147,84)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(175,196,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(195,18,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 0, 2, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(116,40,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(178,82,63)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 57, 0, 8, 5, 6, 14]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(32,235,140)", "data": [0, 0, 0, 0, 3, 3, 0, 0, 17, 6, 12, 0, 0, 11, 0, 9, 6, 0, 3, 1, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(41,105,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(103,105,187)", "data": [4, 2, 0, 0, 0, 0, 3, 18, 20, 18, 3, 4, 3, 8, 3, 4, 20, 4, 15, 11, 17, 19, 2, 0, 6, 0, 18, 0, 0, 0]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(217,195,48)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 2, 0, 0, 2, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(194,138,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]}, {"label": "cohorte-paca", "backgroundColor": "rgb(165,147,85)", "data": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(105,37,137)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(155,32,142)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(122,181,230)", "data": [0, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "collaboratif", "backgroundColor": "rgb(156,93,169)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 153, 4, 1, 0, 2, 0, 0, 0, 0]}, {"label": "collinks", "backgroundColor": "rgb(121,26,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 0, 35]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(156,228,99)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(211,188,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(77,110,233)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(203,68,225)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crabot", "backgroundColor": "rgb(253,102,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 20, 138, 59, 229, 6, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crabot-dev", "backgroundColor": "rgb(28,131,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 44, 6, 1, 101, 3, 0, 0, 0, 1, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(118,30,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(238,8,3)", "data": [16, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 8, 20, 0, 0, 0, 5, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(208,180,32)", "data": [18, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "culture-artistique", "backgroundColor": "rgb(141,31,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(197,194,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "democratie", "backgroundColor": "rgb(25,147,215)", "data": [0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(48,49,9)", "data": [0, 0, 0, 1, 1, 1, 7, 0, 6, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(52,66,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(106,40,213)", "data": [0, 1, 11, 1, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "diversite-culturelle", "backgroundColor": "rgb(104,231,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(71,188,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(76,181,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(77,3,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 50, 4, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 4]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(222,11,198)", "data": [0, 0, 0, 1, 1, 34, 12, 3, 0, 0, 0, 8, 17, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 7]}, {"label": "education", "backgroundColor": "rgb(42,214,134)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 17, 4, 3, 0, 29, 0, 48, 2, 2, 0, 0, 1, 34, 11, 14, 0, 3, 10, 2, 5, 0, 1]}, {"label": "education-populaire", "backgroundColor": "rgb(245,225,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "electronique", "backgroundColor": "rgb(187,6,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(115,216,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(238,240,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(41,158,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(71,111,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 2, 0, 5, 0, 11, 13, 10, 7, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(216,239,126)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "enthousiasme", "backgroundColor": "rgb(14,17,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(25,62,53)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(12,126,232)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(204,17,200)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(109,218,100)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(145,68,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(154,58,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(155,10,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(9,76,61)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fonciere-tla", "backgroundColor": "rgb(220,177,21)", "data": [0, 0, 0, 2, 2, 1, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 6, 0, 35, 5, 0, 0, 0, 0, 2, 2, 1]}, {"label": "foret_bleue", "backgroundColor": "rgb(152,254,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(43,72,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(160,131,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "game-changers", "backgroundColor": "rgb(142,133,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(77,73,251)", "data": [15, 36, 57, 29, 200, 21, 4, 8, 104, 0, 38, 27, 29, 28, 179, 14, 15, 72, 18, 20, 152, 24, 11, 26, 145, 70, 35, 7, 2, 7]}, {"label": "generation-2050", "backgroundColor": "rgb(189,250,94)", "data": [0, 1, 1, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "geopolitique", "backgroundColor": "rgb(150,144,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 8, 0, 4, 0, 2, 155, 2, 2, 5, 2, 4]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(158,28,130)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(76,120,28)", "data": [0, 0, 1, 0, 0, 1, 1, 8, 0, 4, 0, 0, 2, 0, 0, 1, 5, 4, 0, 4, 0, 5, 9, 0, 2, 3, 4, 8, 0, 4]}, {"label": "godelescherbach", "backgroundColor": "rgb(105,93,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(73,192,39)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 6, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(152,120,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(147,65,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(66,251,198)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(16,214,123)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(79,98,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(79,175,204)", "data": [96, 0, 5, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(226,85,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(194,171,224)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(131,5,243)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 14, 13, 2, 1, 0, 22, 37, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(143,171,4)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0]}, {"label": "intergenerationnel", "backgroundColor": "rgb(70,44,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(115,107,145)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(188,49,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(28,26,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 1, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(130,208,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "june-g1", "backgroundColor": "rgb(155,203,47)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 3, 1, 0, 1, 32, 5, 228, 1, 0, 22, 0, 7, 7, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(190,22,3)", "data": [9, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 11, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(212,141,23)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(176,33,62)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(86,189,155)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(11,58,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(185,189,80)", "data": [0, 0, 0, 0, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 49, 0, 0]}, {"label": "libre", "backgroundColor": "rgb(219,225,27)", "data": [1, 8, 0, 37, 0, 0, 0, 0, 29, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 195, 81, 26]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(165,138,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 6, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(185,88,43)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(3,59,254)", "data": [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 113, 0, 0, 0, 0, 0, 15, 16, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(94,155,93)", "data": [78, 116, 8, 91, 2, 23, 5, 0, 3, 61, 35, 45, 64, 4, 0, 45, 56, 24, 10, 4, 11, 6, 0, 210, 10, 4, 0, 1, 20, 1]}, {"label": "manuel-terrien", "backgroundColor": "rgb(5,12,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mare-coussis", "backgroundColor": "rgb(148,225,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 41, 6, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(240,94,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(214,250,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "medusa", "backgroundColor": "rgb(179,209,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(208,31,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(167,178,85)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(33,15,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(137,124,78)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(187,51,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(13,10,64)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(237,176,42)", "data": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 41, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "neurodiversite", "backgroundColor": "rgb(5,72,82)", "data": [2, 0, 0, 1, 0, 0, 11, 52, 22, 240, 262, 8, 2, 139, 2, 77, 1, 0, 6, 113, 27, 68, 26, 10, 3, 4, 0, 0, 0, 73]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(75,126,36)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(132,182,198)", "data": [1, 3, 0, 0, 3, 0, 0, 11, 196, 0, 0, 0, 0, 0, 0, 4, 5, 10, 0, 10, 6, 3, 5, 36, 0, 1, 0, 31, 10, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(105,8,78)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(38,44,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(178,124,218)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(90,233,165)", "data": [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(13,107,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "permaculture", "backgroundColor": "rgb(22,98,109)", "data": [2, 0, 0, 1, 2, 7, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 2, 0, 8]}, {"label": "petite-enfance", "backgroundColor": "rgb(125,190,32)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0]}, {"label": "philosophie", "backgroundColor": "rgb(23,250,38)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 36, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(101,123,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(219,69,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(104,129,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(13,226,125)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 90, 12, 7, 0, 0, 0, 0, 0, 8, 12, 0, 18, 0, 0, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(41,130,247)", "data": [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(226,239,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-casba", "backgroundColor": "rgb(22,10,93)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 63, 30, 11, 10, 0, 0, 0]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(158,96,216)", "data": [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(10,176,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurosciences", "backgroundColor": "rgb(243,156,239)", "data": [0, 0, 0, 0, 22, 0, 0, 0, 55, 48, 28, 3, 1, 2, 10, 9, 4, 46, 4, 1, 14, 7, 0, 0, 41, 0, 9, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(176,119,113)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(112,249,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(87,223,188)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(241,15,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(222,56,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(166,116,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(110,62,216)", "data": [42, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0]}, {"label": "sante", "backgroundColor": "rgb(209,230,1)", "data": [2, 2, 0, 0, 2, 0, 0, 0, 5, 6, 27, 0, 4, 0, 0, 0, 6, 2, 31, 1, 6, 0, 0, 3, 19, 0, 0, 0, 0, 0]}, {"label": "scientifique", "backgroundColor": "rgb(11,150,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 4, 0, 0, 5, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(120,221,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(19,48,14)", "data": [20, 47, 14, 112, 7, 118, 13, 4, 13, 9, 62, 26, 2, 29, 15, 307, 18, 4, 38, 26, 7, 28, 84, 23, 38, 2, 10, 11, 46, 10]}, {"label": "siteweb", "backgroundColor": "rgb(96,39,181)", "data": [14, 24, 3, 48, 8, 16, 28, 4, 38, 20, 27, 16, 44, 32, 9, 2, 19, 0, 7, 0, 1, 69, 0, 1, 2, 0, 0, 0, 0, 0]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(209,156,152)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 1, 0, 0, 5, 8, 55, 0, 1, 2, 0, 12, 22, 0, 0]}, {"label": "solucracy", "backgroundColor": "rgb(8,23,198)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(70,208,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(17,151,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(66,137,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "systeme-monetaire", "backgroundColor": "rgb(131,216,76)", "data": [2, 0, 36, 1, 0, 0, 0, 0, 54, 7, 0, 15, 5, 2, 2, 54, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(84,239,25)", "data": [46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(32,178,176)", "data": [0, 0, 3, 0, 0, 0, 32, 28, 0, 0, 7, 16, 32, 35, 1, 0, 0, 2, 20, 22, 27, 201, 2, 0, 0, 5, 17, 1, 19, 18]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(193,8,92)", "data": [0, 5, 10, 0, 0, 1, 0, 0, 0, 1, 2, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "testbot", "backgroundColor": "rgb(248,131,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 32, 6, 27, 0, 0, 0, 36, 5, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(71,119,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 5, 1, 0, 3, 0, 0, 2, 15, 5, 6, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(181,123,28)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(220,48,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(241,60,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(47,223,112)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 39, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(194,206,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(87,206,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(124,62,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(90,114,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(1,48,218)", "data": [0, 0, 0, 0, 0, 0, 2, 44, 0, 0, 8, 31, 35, 4, 2, 135, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 7, 39, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(194,23,206)", "data": [0, 0, 0, 5, 0, 2, 7, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 12, 1]}, {"label": "zero-dechet", "backgroundColor": "rgb(168,34,248)", "data": [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 9, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(136,43,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(144,103,167)", "data": [3, 9, 2, 0, 3, 4, 9, 7, 4, 3, 5, 4, 1, 2, 4, 3, 6, 4, 5, 2, 10, 5, 11, 7, 9, 13, 6, 5, 8, 7]}, {"label": "activite-et-travail", "backgroundColor": "rgb(18,180,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 4, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "agenda", "backgroundColor": "rgb(252,108,148)", "data": [2, 3, 1, 2, 1, 3, 2, 0, 0, 0, 2, 4, 5, 3, 0, 1, 3, 0, 0, 1, 2, 1, 1, 3, 4, 5, 4, 4, 0, 4]}, {"label": "algoculture", "backgroundColor": "rgb(43,44,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(171,235,98)", "data": [3, 7, 0, 0, 0, 0, 0, 0, 5, 2, 4, 4, 0, 0, 4, 0, 0, 2, 3, 1, 0, 0, 0, 1, 4, 6, 2, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(202,18,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(20,20,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(107,177,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "autonomie-energetique", "backgroundColor": "rgb(21,54,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "avoirouetre", "backgroundColor": "rgb(124,144,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]}, {"label": "blockchain-crypto", "backgroundColor": "rgb(146,194,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(150,71,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "bresil", "backgroundColor": "rgb(74,248,126)", "data": [0, 2, 0, 2, 1, 1, 0, 1, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "burn-out", "backgroundColor": "rgb(44,147,215)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(52,148,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(245,227,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(55,103,80)", "data": [2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(141,78,109)", "data": [0, 0, 0, 0, 1, 4, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 2, 3, 4, 4, 3, 1, 0, 0, 5]}, {"label": "chanvre", "backgroundColor": "rgb(201,221,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(3,5,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(149,121,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(195,223,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(203,84,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(215,127,5)", "data": [0, 1, 0, 1, 0, 0, 1, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 4, 3, 0, 0, 0, 0, 3, 3, 0, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,199,134)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(191,118,144)", "data": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 3, 0, 2, 2, 0]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(189,250,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(25,142,139)", "data": [0, 0, 0, 0, 3, 1, 3, 4, 3, 3, 1, 2, 3, 6, 5, 0, 0, 6, 4, 4, 4, 1, 0, 0, 0, 2, 2, 0, 0, 5]}, {"label": "cohorte-centre", "backgroundColor": "rgb(11,147,84)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(175,196,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(195,18,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(116,40,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(178,82,63)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 3, 0, 3, 3, 4, 3]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(32,235,140)", "data": [0, 0, 0, 0, 2, 1, 0, 0, 3, 1, 2, 0, 0, 1, 0, 2, 3, 0, 3, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(41,105,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(103,105,187)", "data": [2, 2, 0, 0, 0, 0, 2, 3, 5, 3, 3, 2, 2, 4, 2, 1, 4, 2, 3, 4, 4, 7, 2, 0, 3, 0, 6, 0, 0, 0]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(217,195,48)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 2, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(194,138,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(165,147,85)", "data": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(105,37,137)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(155,32,142)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(122,181,230)", "data": [0, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "collaboratif", "backgroundColor": "rgb(156,93,169)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 5, 3, 1, 0, 2, 0, 0, 0, 0]}, {"label": "collinks", "backgroundColor": "rgb(121,26,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(156,228,99)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(211,188,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(77,110,233)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(203,68,225)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crabot", "backgroundColor": "rgb(253,102,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 5, 6, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crabot-dev", "backgroundColor": "rgb(28,131,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1, 3, 2, 0, 0, 0, 1, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(118,30,182)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(238,8,3)", "data": [3, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 0, 0, 0, 3, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(208,180,32)", "data": [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "culture-artistique", "backgroundColor": "rgb(141,31,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(197,194,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "democratie", "backgroundColor": "rgb(25,147,215)", "data": [0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(48,49,9)", "data": [0, 0, 0, 1, 1, 1, 2, 0, 4, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(52,66,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(106,40,213)", "data": [0, 1, 5, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "diversite-culturelle", "backgroundColor": "rgb(104,231,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(71,188,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(76,181,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(77,3,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 2, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(222,11,198)", "data": [0, 0, 0, 1, 1, 2, 4, 2, 0, 0, 0, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4]}, {"label": "education", "backgroundColor": "rgb(42,214,134)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 3, 0, 3, 0, 7, 1, 2, 0, 0, 1, 5, 2, 5, 0, 3, 4, 1, 2, 0, 1]}, {"label": "education-populaire", "backgroundColor": "rgb(245,225,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "electronique", "backgroundColor": "rgb(187,6,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(115,216,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(238,240,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(41,158,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(71,111,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 3, 3, 5, 3, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(216,239,126)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "enthousiasme", "backgroundColor": "rgb(14,17,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(25,62,53)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(12,126,232)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(204,17,200)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(109,218,100)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(145,68,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(154,58,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(155,10,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(9,76,61)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fonciere-tla", "backgroundColor": "rgb(220,177,21)", "data": [0, 0, 0, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 4, 2, 0, 0, 0, 0, 1, 1, 1]}, {"label": "foret_bleue", "backgroundColor": "rgb(152,254,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(43,72,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(160,131,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "game-changers", "backgroundColor": "rgb(142,133,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(77,73,251)", "data": [5, 7, 7, 5, 5, 7, 3, 8, 11, 0, 8, 6, 9, 7, 11, 5, 3, 7, 4, 9, 14, 9, 4, 6, 7, 10, 10, 5, 2, 4]}, {"label": "generation-2050", "backgroundColor": "rgb(189,250,94)", "data": [0, 1, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "geopolitique", "backgroundColor": "rgb(150,144,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 2, 0, 3, 0, 2, 3, 2, 2, 3, 2, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(158,28,130)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(76,120,28)", "data": [0, 0, 1, 0, 0, 1, 1, 4, 0, 1, 0, 0, 2, 0, 0, 1, 2, 2, 0, 3, 0, 3, 2, 0, 1, 2, 3, 3, 0, 2]}, {"label": "godelescherbach", "backgroundColor": "rgb(105,93,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(73,192,39)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(152,120,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(147,65,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(66,251,198)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(16,214,123)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(79,98,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(79,175,204)", "data": [4, 0, 2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(226,85,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(194,171,224)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(131,5,243)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 5, 3, 1, 1, 0, 5, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(143,171,4)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]}, {"label": "intergenerationnel", "backgroundColor": "rgb(70,44,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(115,107,145)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(188,49,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(28,26,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(130,208,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "june-g1", "backgroundColor": "rgb(155,203,47)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 1, 0, 1, 3, 3, 4, 1, 0, 4, 0, 2, 4, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(190,22,3)", "data": [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(212,141,23)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(176,33,62)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(86,189,155)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(11,58,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(185,189,80)", "data": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0]}, {"label": "libre", "backgroundColor": "rgb(219,225,27)", "data": [1, 3, 0, 3, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 6, 7, 6]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(165,138,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(185,88,43)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(3,59,254)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(94,155,93)", "data": [4, 7, 2, 7, 1, 4, 4, 0, 2, 3, 6, 6, 6, 2, 0, 6, 5, 6, 4, 1, 4, 2, 0, 7, 4, 3, 0, 1, 3, 1]}, {"label": "manuel-terrien", "backgroundColor": "rgb(5,12,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mare-coussis", "backgroundColor": "rgb(148,225,205)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 4, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(240,94,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(214,250,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "medusa", "backgroundColor": "rgb(179,209,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(208,31,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(167,178,85)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(33,15,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(137,124,78)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(187,51,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(13,10,64)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(237,176,42)", "data": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "neurodiversite", "backgroundColor": "rgb(5,72,82)", "data": [1, 0, 0, 1, 0, 0, 5, 7, 6, 9, 8, 4, 1, 6, 1, 4, 1, 0, 4, 5, 4, 4, 6, 4, 2, 4, 0, 0, 0, 7]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(75,126,36)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(132,182,198)", "data": [1, 2, 0, 0, 2, 0, 0, 3, 5, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 2, 2, 2, 2, 4, 0, 1, 0, 6, 5, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(105,8,78)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(38,44,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(178,124,218)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(90,233,165)", "data": [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(13,107,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "permaculture", "backgroundColor": "rgb(22,98,109)", "data": [2, 0, 0, 1, 2, 3, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 2, 0, 1]}, {"label": "petite-enfance", "backgroundColor": "rgb(125,190,32)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0]}, {"label": "philosophie", "backgroundColor": "rgb(23,250,38)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(101,123,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(219,69,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(104,129,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(13,226,125)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 5, 3, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(41,130,247)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(226,239,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-casba", "backgroundColor": "rgb(22,10,93)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 7, 3, 4, 0, 0, 0]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(158,96,216)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(10,176,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurosciences", "backgroundColor": "rgb(243,156,239)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 3, 7, 4, 2, 1, 2, 4, 4, 1, 4, 2, 1, 5, 4, 0, 0, 4, 0, 3, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(176,119,113)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(112,249,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(87,223,188)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(241,15,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(222,56,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(166,116,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(110,62,216)", "data": [7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0]}, {"label": "sante", "backgroundColor": "rgb(209,230,1)", "data": [1, 1, 0, 0, 1, 0, 0, 0, 2, 3, 3, 0, 1, 0, 0, 0, 4, 2, 5, 1, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0]}, {"label": "scientifique", "backgroundColor": "rgb(11,150,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(120,221,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(19,48,14)", "data": [4, 8, 4, 5, 2, 4, 3, 2, 4, 4, 4, 6, 1, 6, 3, 6, 6, 2, 5, 6, 2, 7, 6, 5, 8, 1, 2, 3, 5, 3]}, {"label": "siteweb", "backgroundColor": "rgb(96,39,181)", "data": [2, 4, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 0, 3, 0, 1, 4, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(209,156,152)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 0, 0, 2, 2, 6, 0, 1, 2, 0, 4, 2, 0, 0]}, {"label": "solucracy", "backgroundColor": "rgb(8,23,198)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(70,208,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(17,151,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(66,137,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "systeme-monetaire", "backgroundColor": "rgb(131,216,76)", "data": [2, 0, 4, 1, 0, 0, 0, 0, 5, 3, 0, 3, 3, 2, 1, 5, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(84,239,25)", "data": [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(32,178,176)", "data": [0, 0, 1, 0, 0, 0, 5, 4, 0, 0, 4, 2, 5, 4, 1, 0, 0, 2, 4, 4, 4, 6, 2, 0, 0, 3, 6, 1, 4, 3]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(193,8,92)", "data": [0, 3, 3, 0, 0, 1, 0, 0, 0, 1, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "testbot", "backgroundColor": "rgb(248,131,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(71,119,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 1, 0, 2, 0, 0, 2, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(181,123,28)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(220,48,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(241,60,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(47,223,112)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(194,206,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(87,206,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(124,62,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(90,114,246)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(1,48,218)", "data": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 3, 2, 2, 1, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(194,23,206)", "data": [0, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 1]}, {"label": "zero-dechet", "backgroundColor": "rgb(168,34,248)", "data": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(136,43,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "messagesByTopic": {"global": [175, 256, 102, 186, 279, 68, 155, 179, 344, 296, 569, 223, 435, 364, 425, 282, 257, 199, 420, 461, 378, 408, 273, 75, 473, 346, 172, 290, 170, 156], "democratie": [13, 3, 38, 4, 4, 74, 21, 11, 86, 23, 13, 20, 70, 77, 87, 87, 19, 62, 15, 21, 46, 262, 39, 72, 177, 61, 31, 63, 13, 33], "technologie": [97, 3, 7, 0, 4, 2, 4, 11, 196, 0, 4, 18, 46, 27, 1, 69, 39, 47, 0, 150, 12, 22, 5, 36, 0, 19, 24, 33, 37, 0], "ecologie": [26, 54, 14, 117, 38, 229, 30, 10, 82, 81, 125, 41, 25, 43, 31, 319, 31, 52, 75, 31, 35, 69, 103, 107, 125, 55, 31, 62, 67, 37], "fr": [15, 1, 0, 2, 62, 48, 129, 254, 225, 171, 183, 44, 27, 434, 80, 72, 48, 364, 246, 60, 105, 44, 6, 0, 285, 43, 63, 42, 30, 122], "es": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "be": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 4, 0, 7, 15, 0], "ch": [0, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "projet": [156, 189, 26, 206, 11, 142, 37, 4, 21, 72, 97, 75, 73, 76, 16, 352, 79, 28, 51, 65, 34, 74, 334, 304, 98, 19, 21, 213, 97, 47], "cr\u00e9ation": [0, 0, 0, 1, 1, 34, 12, 3, 0, 0, 0, 8, 17, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 7], "d\u00e9mocratie": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "libert\u00e9": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "opinions": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "choix": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "neutralit\u00e9": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "comportement": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "connaissance": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "humeur": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sant\u00e9": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "activit\u00e9": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "humain": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "humainit\u00e9": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "39": [84, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0]}, "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [21, 22, 16, 16, 18, 21, 28, 23, 27, 22, 25, 24, 28, 29, 19, 23, 23, 17, 26, 22, 28, 26, 25, 20, 22, 23, 25, 26, 19, 22]}]} \ No newline at end of file diff --git a/site/data/chat_stat_monthly.json b/site/data/chat_stat_monthly.json index 8859e7f..6cc9bb7 100644 --- a/site/data/chat_stat_monthly.json +++ b/site/data/chat_stat_monthly.json @@ -1 +1 @@ -{"updated": "05/09/2019", "labels": ["Sep 2018", "Oct 2018", "Nov 2018", "Dec 2018", "Jan 2019", "Feb 2019", "Mar 2019", "Apr 2019", "May 2019", "Jun 2019", "Jul 2019", "Aug 2019"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(140,39,96)", "data": [0, 237, 810, 401, 609, 656, 795, 479, 980, 1542, 1229, 784]}, {"label": "activite-et-travail", "backgroundColor": "rgb(220,71,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4]}, {"label": "agenda", "backgroundColor": "rgb(136,217,193)", "data": [105, 15, 5, 10, 2, 42, 45, 30, 72, 70, 64, 56]}, {"label": "algoculture", "backgroundColor": "rgb(126,206,185)", "data": [0, 0, 0, 0, 0, 257, 722, 34, 0, 0, 11, 15]}, {"label": "animation-crapauds", "backgroundColor": "rgb(29,50,195)", "data": [0, 0, 0, 0, 11, 69, 139, 0, 49, 234, 412, 329]}, {"label": "aquaponie", "backgroundColor": "rgb(208,187,244)", "data": [0, 0, 0, 0, 0, 0, 94, 27, 2, 3, 5, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(72,180,155)", "data": [0, 0, 0, 34, 221, 4, 16, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(249,85,22)", "data": [0, 0, 0, 0, 0, 0, 415, 189, 20, 22, 0, 8]}, {"label": "avoirouetre", "backgroundColor": "rgb(65,117,221)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(5,22,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0]}, {"label": "bresil", "backgroundColor": "rgb(240,81,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 149]}, {"label": "burn-out", "backgroundColor": "rgb(104,0,160)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0]}, {"label": "caballarius", "backgroundColor": "rgb(233,225,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(198,176,253)", "data": [0, 0, 54, 31, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(25,95,137)", "data": [173, 56, 0, 0, 0, 0, 26, 6, 2, 2, 0, 16]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(155,250,65)", "data": [220, 9, 49, 11, 70, 14, 19, 1, 10, 6, 26, 51]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(9,64,220)", "data": [4, 3, 18, 5, 1, 0, 1, 1, 0, 210, 16, 20]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(208,62,155)", "data": [20, 39, 250, 4, 3, 46, 8, 6, 11, 55, 6, 195]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(107,52,49)", "data": [26, 60, 1, 34, 55, 2, 5, 1, 4, 3, 0, 87]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(190,173,148)", "data": [1, 5, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(20,102,135)", "data": [21, 201, 188, 47, 348, 275, 207, 31, 55, 151, 174, 49]}, {"label": "cercle-education", "backgroundColor": "rgb(245,248,172)", "data": [429, 111, 235, 58, 607, 324, 304, 75, 494, 403, 395, 50]}, {"label": "cercle-electronique", "backgroundColor": "rgb(7,137,81)", "data": [0, 1, 0, 14, 16, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(58,93,149)", "data": [18, 15, 0, 0, 9, 0, 0, 15, 0, 3, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(79,52,6)", "data": [1, 3, 46, 0, 0, 0, 4, 0, 12, 2, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(172,124,26)", "data": [0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(204,98,130)", "data": [7, 23, 0, 6, 2, 6, 171, 8, 99, 9, 2, 9]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(1,42,128)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(58,34,28)", "data": [160, 21, 0, 0, 0, 3, 20, 0, 1, 0, 18, 4]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(44,215,48)", "data": [989, 393, 568, 19, 276, 622, 276, 14, 317, 796, 500, 77]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(8,231,235)", "data": [101, 162, 20, 0, 39, 341, 97, 38, 51, 105, 113, 74]}, {"label": "cercle-sante", "backgroundColor": "rgb(136,72,55)", "data": [56, 420, 122, 47, 56, 69, 169, 32, 85, 69, 16, 48]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(38,244,119)", "data": [7, 35, 56, 2, 1, 1, 6, 0, 26, 0, 1, 6]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(253,172,180)", "data": [568, 406, 147, 71, 87, 32, 151, 44, 14, 46, 158, 117]}, {"label": "chanvre", "backgroundColor": "rgb(46,218,30)", "data": [0, 0, 0, 35, 0, 2, 6, 0, 5, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(119,64,82)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(212,94,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(11,224,219)", "data": [0, 19, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(17,85,96)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 14, 10, 2, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(254,94,107)", "data": [4, 0, 2, 2, 228, 66, 57, 107, 82, 66, 102, 119]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,111,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(225,21,27)", "data": [0, 4, 6, 2, 1, 0, 5, 0, 0, 12, 16, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(57,210,176)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(239,76,11)", "data": [55, 42, 2, 6, 10, 1, 7, 6, 76, 40, 162, 84]}, {"label": "cohorte-centre", "backgroundColor": "rgb(115,119,240)", "data": [0, 5, 6, 0, 2, 0, 0, 0, 6, 2, 7, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(179,192,96)", "data": [1, 6, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(202,10,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 26, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(1,157,162)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(246,246,79)", "data": [7, 2, 1, 1, 15, 23, 65, 25, 13, 8, 4, 26]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(57,91,193)", "data": [4, 0, 24, 6, 64, 168, 50, 48, 133, 194, 228, 118]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(18,34,158)", "data": [0, 0, 0, 60, 22, 0, 2, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(144,49,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 793, 234]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(111,64,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(112,120,203)", "data": [1, 0, 6, 0, 1, 0, 0, 1, 1, 1, 6, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(222,218,37)", "data": [18, 3, 1, 0, 14, 3, 8, 5, 29, 7, 24, 21]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(242,184,129)", "data": [50, 4, 7, 5, 26, 0, 17, 13, 30, 28, 0, 5]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(181,49,1)", "data": [6, 1, 0, 1, 31, 2, 2, 0, 0, 2, 24, 5]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(107,115,218)", "data": [6, 7, 4, 3, 13, 16, 46, 101, 5, 20, 15, 6]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(102,123,123)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(40,18,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 75, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(219,42,253)", "data": [70, 9, 9, 2, 3, 68, 0, 0, 2, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(248,86,232)", "data": [21, 1, 0, 12, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(187,169,116)", "data": [0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(6,138,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(29,226,86)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(196,93,131)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 2, 24, 3, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(32,162,131)", "data": [0, 0, 0, 0, 0, 0, 79, 235, 73, 16, 65, 14]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(39,180,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 11]}, {"label": "developpement-personnel", "backgroundColor": "rgb(137,118,194)", "data": [0, 0, 0, 0, 0, 0, 0, 86, 7, 4, 32, 159]}, {"label": "doughnut-economics", "backgroundColor": "rgb(57,195,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 125, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(128,100,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 24, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(181,234,104)", "data": [4, 86, 5, 847, 218, 9, 73, 149, 63, 12, 81, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(111,224,132)", "data": [0, 0, 0, 0, 0, 140, 80, 81, 143, 69, 12, 118]}, {"label": "education-populaire", "backgroundColor": "rgb(129,106,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 109, 14, 7, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(67,236,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 76, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(24,19,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48]}, {"label": "empowerment", "backgroundColor": "rgb(78,189,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 0]}, {"label": "energie", "backgroundColor": "rgb(10,113,254)", "data": [1, 1, 0, 69, 12, 0, 3, 2, 13, 70, 48, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(18,68,44)", "data": [0, 341, 33, 0, 0, 0, 0, 0, 7, 9, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(54,16,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(61,132,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(87,214,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0]}, {"label": "essaimage", "backgroundColor": "rgb(18,0,185)", "data": [0, 0, 206, 9, 8, 0, 2, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(16,85,101)", "data": [0, 0, 10, 5, 4, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(152,42,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(103,43,75)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(219,76,94)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(227,181,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 15, 2]}, {"label": "fou-a-lier", "backgroundColor": "rgb(133,47,53)", "data": [16, 0, 1, 46, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(226,21,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(17,224,64)", "data": [1862, 750, 2647, 477, 692, 1193, 1339, 612, 588, 873, 618, 1282]}, {"label": "geopolitique", "backgroundColor": "rgb(222,218,199)", "data": [97, 1, 0, 0, 37, 132, 8, 1, 0, 1, 22, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(82,156,154)", "data": [10, 1, 11, 0, 2, 47, 0, 3, 2, 1, 44, 13]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(117,102,36)", "data": [0, 0, 875, 4162, 4552, 1085, 1011, 1569, 449, 347, 182, 8]}, {"label": "godelescherbach", "backgroundColor": "rgb(96,225,232)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(189,195,100)", "data": [19, 2, 1, 3, 0, 0, 0, 13, 5, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(84,33,198)", "data": [4, 5, 4, 5, 3, 0, 0, 0, 9, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(247,30,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(133,83,136)", "data": [0, 0, 95, 34, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(58,198,215)", "data": [0, 0, 0, 0, 30, 64, 39, 0, 0, 9, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(157,120,222)", "data": [47, 64, 352, 296, 10, 1, 3, 22, 21, 151, 45, 2]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(96,226,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137]}, {"label": "impression-3d", "backgroundColor": "rgb(87,230,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(131,151,159)", "data": [106, 55, 1, 4, 10, 1, 3, 1, 10, 9, 108, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(57,176,227)", "data": [16, 0, 54, 12, 178, 88, 11, 8, 11, 113, 50, 8]}, {"label": "intelligence-collective", "backgroundColor": "rgb(231,49,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(234,220,18)", "data": [0, 0, 0, 0, 23, 1, 6, 0, 0, 0, 24, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(113,171,20)", "data": [0, 0, 0, 0, 0, 0, 2550, 269, 9, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(107,125,234)", "data": [0, 0, 0, 0, 0, 0, 0, 121, 150, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(222,145,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 101, 468, 129, 12]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(229,221,162)", "data": [0, 0, 0, 0, 0, 0, 195, 117, 16, 73, 398, 47]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(225,150,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(190,87,240)", "data": [0, 0, 0, 0, 0, 136, 272, 21, 64, 84, 175, 3]}, {"label": "le-led", "backgroundColor": "rgb(191,72,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 306, 266, 116]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(82,62,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(9,153,24)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 58, 94, 74, 101]}, {"label": "libre", "backgroundColor": "rgb(102,29,88)", "data": [362, 927, 0, 8, 0, 0, 1016, 19, 15, 104, 12, 596]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(182,48,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(183,181,9)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(128,20,209)", "data": [157, 7, 3, 0, 6, 180, 2, 0, 15, 98, 4, 21]}, {"label": "lucarn", "backgroundColor": "rgb(38,252,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 325]}, {"label": "manuel-terrien", "backgroundColor": "rgb(75,65,86)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(48,71,87)", "data": [0, 0, 0, 0, 0, 0, 9, 121, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(55,172,18)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25]}, {"label": "medusa", "backgroundColor": "rgb(99,130,243)", "data": [176, 8, 5, 0, 0, 0, 0, 0, 0, 8, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(195,145,108)", "data": [0, 0, 0, 3, 16, 216, 95, 0, 0, 96, 106, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(88,20,105)", "data": [0, 49, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(53,152,122)", "data": [0, 11, 2, 4, 0, 2, 0, 0, 3, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(189,147,214)", "data": [1053, 30, 617, 3, 96, 10, 0, 40, 16, 0, 6, 1]}, {"label": "myhappy", "backgroundColor": "rgb(134,240,120)", "data": [38, 105, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(22,34,37)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(23,0,218)", "data": [0, 0, 0, 0, 526, 151, 256, 103, 0, 39, 0, 10]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(108,55,71)", "data": [0, 0, 0, 0, 212, 11, 39, 3, 0, 1, 7, 7]}, {"label": "no-gafam", "backgroundColor": "rgb(122,199,143)", "data": [249, 67, 297, 75, 47, 212, 306, 129, 40, 83, 86, 213]}, {"label": "open-hardware", "backgroundColor": "rgb(184,203,155)", "data": [0, 0, 0, 18, 10, 1, 0, 0, 101, 75, 217, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(129,154,11)", "data": [0, 0, 0, 0, 0, 0, 544, 266, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(57,111,191)", "data": [0, 0, 0, 0, 25, 4, 5, 0, 0, 10, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(235,231,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 35, 31]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(248,75,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(150,162,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(1,79,104)", "data": [127, 65, 293, 1, 43, 403, 19, 134, 122, 10, 1, 7]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(247,196,31)", "data": [0, 0, 0, 14, 133, 73, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(168,152,118)", "data": [38, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(122,21,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(84,55,125)", "data": [763, 78, 138, 0, 78, 142, 26, 94, 92, 109, 162, 11]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(207,62,88)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(21,1,227)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(38,87,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 155]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(225,39,132)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 13]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(77,148,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(122,65,243)", "data": [3, 101, 114, 30, 233, 43, 35, 14, 18, 9, 413, 62]}, {"label": "pub-canaux", "backgroundColor": "rgb(116,245,103)", "data": [0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(61,65,64)", "data": [0, 0, 0, 0, 0, 0, 137, 31, 63, 39, 23, 106]}, {"label": "recherches-biologie", "backgroundColor": "rgb(151,6,160)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 14, 15, 1, 4]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(106,98,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 2, 5]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(66,245,225)", "data": [244, 77, 1102, 323, 149, 79, 397, 11, 25, 679, 150, 402]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(116,154,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(190,230,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 183, 93, 151, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(62,222,252)", "data": [0, 0, 0, 0, 521, 1, 5, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(188,128,213)", "data": [0, 0, 0, 0, 0, 0, 0, 94, 162, 81, 90, 606]}, {"label": "selfishgene", "backgroundColor": "rgb(151,82,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(23,119,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 2683, 1159]}, {"label": "siteweb", "backgroundColor": "rgb(96,216,44)", "data": [12, 4, 65, 14, 5, 7, 188, 1, 13, 25, 6, 139]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(148,147,150)", "data": [144, 153, 130, 18, 7, 177, 80, 13, 5, 87, 89, 8]}, {"label": "solucracy", "backgroundColor": "rgb(159,40,6)", "data": [0, 0, 469, 2149, 56, 80, 153, 93, 122, 109, 56, 109]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(118,85,161)", "data": [0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(45,122,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(30,204,100)", "data": [20, 0, 0, 77, 1, 0, 10, 0, 0, 0, 68, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(199,97,143)", "data": [144, 64, 3, 80, 145, 75, 107, 16, 0, 21, 0, 46]}, {"label": "techos", "backgroundColor": "rgb(182,230,65)", "data": [32, 161, 231, 641, 327, 46, 205, 296, 202, 285, 236, 818]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(142,123,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 209]}, {"label": "testbot", "backgroundColor": "rgb(231,159,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(184,225,17)", "data": [4, 124, 141, 66, 273, 494, 1218, 314, 538, 289, 201, 19]}, {"label": "tour-du-monde", "backgroundColor": "rgb(39,132,205)", "data": [0, 0, 0, 0, 0, 64, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(67,206,52)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 50, 2, 57, 0]}, {"label": "transport", "backgroundColor": "rgb(85,157,108)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(231,43,3)", "data": [36, 2, 5, 0, 22, 2, 4, 34, 39, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(228,13,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 44, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(108,252,232)", "data": [18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(46,14,8)", "data": [0, 0, 0, 0, 0, 0, 43, 15, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(155,216,129)", "data": [3, 0, 7, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(200,46,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(66,110,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 418, 118]}, {"label": "zero-dechet", "backgroundColor": "rgb(143,147,184)", "data": [82, 33, 145, 116, 63, 3, 114, 10, 68, 59, 23, 16]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(251,128,89)", "data": [258, 497, 5, 0, 219, 73, 17, 1, 0, 10, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(140,39,96)", "data": [0, 20, 48, 34, 58, 52, 53, 53, 69, 90, 77, 56]}, {"label": "activite-et-travail", "backgroundColor": "rgb(220,71,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3]}, {"label": "agenda", "backgroundColor": "rgb(136,217,193)", "data": [15, 8, 3, 4, 2, 12, 11, 9, 14, 15, 12, 11]}, {"label": "algoculture", "backgroundColor": "rgb(126,206,185)", "data": [0, 0, 0, 0, 0, 6, 10, 4, 0, 0, 3, 2]}, {"label": "animation-crapauds", "backgroundColor": "rgb(29,50,195)", "data": [0, 0, 0, 0, 3, 5, 8, 0, 5, 7, 11, 10]}, {"label": "aquaponie", "backgroundColor": "rgb(208,187,244)", "data": [0, 0, 0, 0, 0, 0, 8, 4, 1, 2, 2, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(72,180,155)", "data": [0, 0, 0, 8, 8, 3, 5, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(249,85,22)", "data": [0, 0, 0, 0, 0, 0, 9, 9, 5, 4, 0, 3]}, {"label": "avoirouetre", "backgroundColor": "rgb(65,117,221)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(5,22,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "bresil", "backgroundColor": "rgb(240,81,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "burn-out", "backgroundColor": "rgb(104,0,160)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0]}, {"label": "caballarius", "backgroundColor": "rgb(233,225,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(198,176,253)", "data": [0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(25,95,137)", "data": [10, 6, 0, 0, 0, 0, 5, 1, 1, 1, 0, 4]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(155,250,65)", "data": [11, 7, 11, 4, 7, 3, 3, 1, 5, 4, 7, 4]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(9,64,220)", "data": [2, 2, 3, 3, 1, 0, 1, 1, 0, 10, 4, 6]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(208,62,155)", "data": [7, 5, 8, 2, 3, 5, 3, 2, 4, 9, 2, 7]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(107,52,49)", "data": [6, 9, 1, 7, 12, 2, 3, 1, 2, 3, 0, 2]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(190,173,148)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(20,102,135)", "data": [8, 8, 13, 11, 16, 7, 11, 9, 8, 13, 16, 8]}, {"label": "cercle-education", "backgroundColor": "rgb(245,248,172)", "data": [18, 10, 16, 11, 18, 20, 13, 11, 17, 16, 19, 14]}, {"label": "cercle-electronique", "backgroundColor": "rgb(7,137,81)", "data": [0, 1, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(58,93,149)", "data": [4, 6, 0, 0, 2, 0, 0, 3, 0, 1, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(79,52,6)", "data": [1, 1, 4, 0, 0, 0, 2, 0, 4, 1, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(172,124,26)", "data": [0, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(204,98,130)", "data": [2, 2, 0, 2, 1, 3, 9, 5, 7, 3, 1, 4]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(1,42,128)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(58,34,28)", "data": [9, 3, 0, 0, 0, 2, 5, 0, 1, 0, 5, 3]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(44,215,48)", "data": [17, 13, 14, 5, 16, 15, 12, 5, 10, 17, 13, 10]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(8,231,235)", "data": [16, 16, 6, 0, 10, 16, 15, 7, 13, 10, 15, 11]}, {"label": "cercle-sante", "backgroundColor": "rgb(136,72,55)", "data": [5, 12, 7, 6, 6, 8, 8, 6, 7, 9, 3, 7]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(38,244,119)", "data": [5, 7, 6, 2, 1, 1, 2, 0, 4, 0, 1, 3]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(253,172,180)", "data": [15, 14, 10, 11, 10, 6, 13, 10, 9, 10, 13, 8]}, {"label": "chanvre", "backgroundColor": "rgb(46,218,30)", "data": [0, 0, 0, 3, 0, 2, 2, 0, 1, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(119,64,82)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(212,94,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(11,224,219)", "data": [0, 4, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(17,85,96)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 6, 2, 1, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(254,94,107)", "data": [2, 0, 2, 2, 15, 11, 6, 9, 10, 11, 13, 9]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,111,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(225,21,27)", "data": [0, 3, 2, 1, 1, 0, 2, 0, 0, 5, 3, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(57,210,176)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(239,76,11)", "data": [7, 5, 2, 3, 4, 1, 2, 5, 5, 6, 8, 10]}, {"label": "cohorte-centre", "backgroundColor": "rgb(115,119,240)", "data": [0, 2, 3, 0, 1, 0, 0, 0, 1, 1, 3, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(179,192,96)", "data": [1, 2, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(202,10,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(1,157,162)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(246,246,79)", "data": [1, 1, 1, 1, 5, 3, 6, 6, 4, 4, 3, 5]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(57,91,193)", "data": [2, 0, 7, 3, 8, 10, 8, 5, 8, 18, 17, 10]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(18,34,158)", "data": [0, 0, 0, 6, 3, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(144,49,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 13]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(111,64,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(112,120,203)", "data": [1, 0, 3, 0, 1, 0, 0, 1, 1, 1, 2, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(222,218,37)", "data": [5, 2, 1, 0, 6, 2, 2, 3, 3, 5, 7, 6]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(242,184,129)", "data": [7, 2, 3, 3, 6, 0, 3, 2, 9, 6, 0, 2]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(181,49,1)", "data": [2, 1, 0, 1, 4, 1, 2, 0, 0, 2, 5, 3]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(107,115,218)", "data": [4, 3, 1, 1, 4, 4, 4, 5, 3, 7, 5, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(102,123,123)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(40,18,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(219,42,253)", "data": [9, 2, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(248,86,232)", "data": [3, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(187,169,116)", "data": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(6,138,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(29,226,86)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(196,93,131)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 1, 6, 2, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(32,162,131)", "data": [0, 0, 0, 0, 0, 0, 7, 11, 10, 7, 5, 5]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(39,180,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]}, {"label": "developpement-personnel", "backgroundColor": "rgb(137,118,194)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 6, 7]}, {"label": "doughnut-economics", "backgroundColor": "rgb(57,195,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(128,100,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(181,234,104)", "data": [2, 4, 3, 9, 13, 4, 9, 11, 9, 4, 6, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(111,224,132)", "data": [0, 0, 0, 0, 0, 9, 11, 7, 13, 11, 6, 13]}, {"label": "education-populaire", "backgroundColor": "rgb(129,106,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 6, 3, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(67,236,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(24,19,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6]}, {"label": "empowerment", "backgroundColor": "rgb(78,189,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]}, {"label": "energie", "backgroundColor": "rgb(10,113,254)", "data": [1, 1, 0, 7, 4, 0, 1, 2, 4, 5, 7, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(18,68,44)", "data": [0, 8, 3, 0, 0, 0, 0, 0, 3, 4, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(54,16,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(61,132,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(87,214,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0]}, {"label": "essaimage", "backgroundColor": "rgb(18,0,185)", "data": [0, 0, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(16,85,101)", "data": [0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(152,42,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(103,43,75)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(219,76,94)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(227,181,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 1]}, {"label": "fou-a-lier", "backgroundColor": "rgb(133,47,53)", "data": [5, 0, 1, 7, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(226,21,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(17,224,64)", "data": [79, 41, 55, 41, 38, 42, 49, 35, 39, 39, 42, 35]}, {"label": "geopolitique", "backgroundColor": "rgb(222,218,199)", "data": [6, 1, 0, 0, 5, 6, 3, 1, 0, 1, 4, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(82,156,154)", "data": [2, 1, 4, 0, 2, 4, 0, 1, 2, 1, 3, 3]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(117,102,36)", "data": [0, 0, 18, 25, 26, 26, 20, 22, 12, 16, 13, 6]}, {"label": "godelescherbach", "backgroundColor": "rgb(96,225,232)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(189,195,100)", "data": [7, 2, 1, 2, 0, 0, 0, 3, 2, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(84,33,198)", "data": [3, 3, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(247,30,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(133,83,136)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(58,198,215)", "data": [0, 0, 0, 0, 3, 7, 3, 0, 0, 2, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(157,120,222)", "data": [9, 10, 13, 13, 5, 1, 3, 4, 7, 13, 9, 1]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(96,226,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "impression-3d", "backgroundColor": "rgb(87,230,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(131,151,159)", "data": [9, 8, 1, 3, 5, 1, 2, 1, 4, 5, 3, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(57,176,227)", "data": [3, 0, 8, 7, 9, 8, 5, 4, 6, 9, 10, 4]}, {"label": "intelligence-collective", "backgroundColor": "rgb(231,49,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(234,220,18)", "data": [0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 3, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(113,171,20)", "data": [0, 0, 0, 0, 0, 0, 30, 15, 6, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(107,125,234)", "data": [0, 0, 0, 0, 0, 0, 0, 10, 14, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(222,145,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 9, 6]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(229,221,162)", "data": [0, 0, 0, 0, 0, 0, 13, 11, 7, 10, 17, 8]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(225,150,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(190,87,240)", "data": [0, 0, 0, 0, 0, 6, 9, 5, 8, 7, 8, 2]}, {"label": "le-led", "backgroundColor": "rgb(191,72,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 10]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(82,62,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(9,153,24)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 7, 7]}, {"label": "libre", "backgroundColor": "rgb(102,29,88)", "data": [11, 13, 0, 3, 0, 0, 10, 3, 4, 10, 6, 12]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(182,48,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(183,181,9)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(128,20,209)", "data": [3, 2, 1, 0, 3, 4, 1, 0, 4, 8, 2, 4]}, {"label": "lucarn", "backgroundColor": "rgb(38,252,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12]}, {"label": "manuel-terrien", "backgroundColor": "rgb(75,65,86)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(48,71,87)", "data": [0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(55,172,18)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3]}, {"label": "medusa", "backgroundColor": "rgb(99,130,243)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(195,145,108)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 5, 7, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(88,20,105)", "data": [0, 5, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(53,152,122)", "data": [0, 4, 1, 2, 0, 2, 0, 0, 2, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(189,147,214)", "data": [19, 6, 11, 2, 6, 3, 0, 6, 4, 0, 4, 1]}, {"label": "myhappy", "backgroundColor": "rgb(134,240,120)", "data": [4, 7, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(22,34,37)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(23,0,218)", "data": [0, 0, 0, 0, 11, 10, 10, 7, 0, 4, 0, 2]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(108,55,71)", "data": [0, 0, 0, 0, 8, 5, 5, 2, 0, 1, 3, 2]}, {"label": "no-gafam", "backgroundColor": "rgb(122,199,143)", "data": [9, 11, 9, 13, 10, 10, 15, 10, 7, 13, 10, 14]}, {"label": "open-hardware", "backgroundColor": "rgb(184,203,155)", "data": [0, 0, 0, 2, 2, 1, 0, 0, 4, 6, 8, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(129,154,11)", "data": [0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(57,111,191)", "data": [0, 0, 0, 0, 8, 3, 3, 0, 0, 3, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(235,231,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 3]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(248,75,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(150,162,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(1,79,104)", "data": [7, 8, 9, 1, 4, 11, 6, 8, 8, 4, 1, 2]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(247,196,31)", "data": [0, 0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(168,152,118)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(122,21,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(84,55,125)", "data": [17, 8, 4, 0, 10, 12, 8, 7, 10, 13, 9, 6]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(207,62,88)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(21,1,227)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(38,87,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(225,39,132)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(77,148,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(122,65,243)", "data": [3, 9, 7, 5, 8, 7, 5, 3, 2, 3, 11, 5]}, {"label": "pub-canaux", "backgroundColor": "rgb(116,245,103)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(61,65,64)", "data": [0, 0, 0, 0, 0, 0, 10, 8, 9, 7, 7, 4]}, {"label": "recherches-biologie", "backgroundColor": "rgb(151,6,160)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 5, 1, 2]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(106,98,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 2]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(66,245,225)", "data": [15, 5, 19, 16, 17, 8, 18, 5, 5, 18, 16, 18]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(116,154,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(190,230,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 16, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(62,222,252)", "data": [0, 0, 0, 0, 10, 1, 3, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(188,128,213)", "data": [0, 0, 0, 0, 0, 0, 0, 9, 10, 9, 12, 13]}, {"label": "selfishgene", "backgroundColor": "rgb(151,82,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(23,119,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 23]}, {"label": "siteweb", "backgroundColor": "rgb(96,216,44)", "data": [1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 4]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(148,147,150)", "data": [11, 10, 7, 5, 4, 12, 9, 7, 4, 9, 11, 5]}, {"label": "solucracy", "backgroundColor": "rgb(159,40,6)", "data": [0, 0, 10, 15, 8, 11, 11, 9, 12, 10, 12, 9]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(118,85,161)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(45,122,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(30,204,100)", "data": [5, 0, 0, 12, 1, 0, 3, 0, 0, 0, 9, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(199,97,143)", "data": [7, 8, 3, 9, 10, 10, 5, 5, 0, 5, 0, 5]}, {"label": "techos", "backgroundColor": "rgb(182,230,65)", "data": [8, 10, 11, 13, 10, 9, 13, 12, 16, 17, 13, 19]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(142,123,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8]}, {"label": "testbot", "backgroundColor": "rgb(231,159,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(184,225,17)", "data": [2, 8, 9, 6, 11, 18, 19, 16, 19, 15, 17, 6]}, {"label": "tour-du-monde", "backgroundColor": "rgb(39,132,205)", "data": [0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(67,206,52)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 4, 1, 3, 0]}, {"label": "transport", "backgroundColor": "rgb(85,157,108)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(231,43,3)", "data": [4, 1, 3, 0, 5, 1, 2, 6, 5, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(228,13,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(108,252,232)", "data": [4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(46,14,8)", "data": [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(155,216,129)", "data": [3, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(200,46,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(66,110,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9]}, {"label": "zero-dechet", "backgroundColor": "rgb(143,147,184)", "data": [9, 7, 10, 10, 8, 3, 11, 2, 5, 5, 4, 5]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(251,128,89)", "data": [7, 13, 4, 0, 3, 7, 4, 1, 0, 2, 0, 0]}], "messagesByTopic": [{"label": "global", "backgroundColor": "rgb(125,180,39)", "data": [9915, 6262, 10738, 10639, 12050, 8619, 14858, 6526, 6879, 11493, 13460, 11354]}, {"label": "project", "backgroundColor": "rgb(101,105,1)", "data": [1352, 281, 1560, 2269, 960, 655, 3981, 946, 943, 2218, 3404, 2917]}, {"label": "democratie", "backgroundColor": "rgb(224,46,183)", "data": [3349, 1949, 4446, 7737, 6575, 3203, 2846, 2575, 1557, 2179, 2106, 1091]}, {"label": "ecologie", "backgroundColor": "rgb(11,96,36)", "data": [1806, 1551, 697, 587, 703, 1052, 1546, 308, 595, 1017, 3836, 1822]}, {"label": "technologie", "backgroundColor": "rgb(61,177,36)", "data": [617, 206, 834, 553, 598, 646, 1555, 744, 399, 1357, 882, 1093]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [96, 79, 96, 83, 99, 95, 99, 92, 111, 133, 120, 103]}]} \ No newline at end of file +{"updated": "10/09/2019", "usersByChannel": [{"backgroundColor": "rgb(74,193,199)", "data": [0, 25, 49, 33, 60, 49, 55, 52, 78, 90, 75, 52], "label": "accueil"}, {"backgroundColor": "rgb(150,58,253)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], "label": "activite-et-travail"}, {"backgroundColor": "rgb(240,204,139)", "data": [15, 2, 3, 4, 6, 10, 12, 10, 14, 15, 12, 13], "label": "agenda"}, {"backgroundColor": "rgb(154,133,62)", "data": [0, 0, 0, 0, 0, 8, 9, 2, 0, 0, 3, 3], "label": "algoculture"}, {"backgroundColor": "rgb(126,115,114)", "data": [0, 0, 0, 0, 3, 5, 7, 0, 5, 7, 13, 9], "label": "animation-crapauds"}, {"backgroundColor": "rgb(253,167,154)", "data": [0, 0, 0, 0, 0, 0, 8, 4, 0, 2, 2, 4], "label": "aquaponie"}, {"backgroundColor": "rgb(106,114,128)", "data": [0, 0, 6, 6, 8, 5, 4, 0, 0, 0, 0, 0], "label": "auberge-des-crapauds"}, {"backgroundColor": "rgb(149,70,109)", "data": [0, 0, 0, 0, 0, 0, 10, 8, 4, 4, 3, 0], "label": "audio-visuel-libre"}, {"backgroundColor": "rgb(230,148,58)", "data": [12, 5, 12, 4, 7, 3, 3, 0, 6, 7, 7, 0], "label": "autonomie-energetique"}, {"backgroundColor": "rgb(221,210,250)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "label": "avoirouetre"}, {"backgroundColor": "rgb(218,88,63)", "data": [2, 2, 3, 4, 0, 0, 1, 1, 2, 10, 3, 7], "label": "blockchain-crypto"}, {"backgroundColor": "rgb(42,142,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5], "label": "bnb-bonheur-national-brut"}, {"backgroundColor": "rgb(91,240,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2], "label": "bresil"}, {"backgroundColor": "rgb(59,139,33)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0], "label": "burn-out"}, {"backgroundColor": "rgb(44,68,188)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], "label": "caballarius"}, {"backgroundColor": "rgb(132,219,105)", "data": [0, 3, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0], "label": "cadeaux-ibf"}, {"backgroundColor": "rgb(102,77,136)", "data": [9, 5, 0, 0, 0, 0, 5, 2, 1, 1, 0, 4], "label": "cause-animale"}, {"backgroundColor": "rgb(236,124,114)", "data": [14, 14, 11, 10, 8, 6, 13, 10, 11, 9, 13, 11], "label": "changer-de-paradigme"}, {"backgroundColor": "rgb(193,28,189)", "data": [0, 0, 0, 3, 0, 2, 2, 1, 1, 0, 0, 0], "label": "chanvre"}, {"backgroundColor": "rgb(168,129,208)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "christin"}, {"backgroundColor": "rgb(215,169,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "label": "circuits-courts"}, {"backgroundColor": "rgb(48,4,21)", "data": [4, 0, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0], "label": "cnv"}, {"backgroundColor": "rgb(105,223,250)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 6, 2, 1, 0], "label": "cohorte-2607"}, {"backgroundColor": "rgb(31,4,51)", "data": [2, 0, 2, 2, 15, 8, 8, 9, 10, 12, 13, 10], "label": "cohorte-34"}, {"backgroundColor": "rgb(250,205,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], "label": "cohorte-barcelone"}, {"backgroundColor": "rgb(69,248,144)", "data": [0, 3, 2, 1, 0, 2, 0, 0, 0, 5, 1, 3], "label": "cohorte-belgique"}, {"backgroundColor": "rgb(249,138,108)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "label": "cohorte-bourgogne"}, {"backgroundColor": "rgb(190,230,115)", "data": [7, 5, 2, 3, 4, 1, 3, 4, 5, 6, 8, 11], "label": "cohorte-bretagne"}, {"backgroundColor": "rgb(135,124,167)", "data": [0, 2, 3, 0, 1, 0, 0, 1, 1, 0, 3, 0], "label": "cohorte-centre"}, {"backgroundColor": "rgb(168,214,247)", "data": [1, 2, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "label": "cohorte-grand-est"}, {"backgroundColor": "rgb(145,26,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2], "label": "cohorte-grece"}, {"backgroundColor": "rgb(2,91,110)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0], "label": "cohorte-grenoble"}, {"backgroundColor": "rgb(219,191,80)", "data": [1, 1, 1, 1, 5, 5, 6, 5, 4, 3, 5, 6], "label": "cohorte-hdf"}, {"backgroundColor": "rgb(55,40,35)", "data": [2, 0, 7, 3, 8, 9, 8, 4, 10, 20, 13, 9], "label": "cohorte-ile-de-france"}, {"backgroundColor": "rgb(227,116,8)", "data": [0, 0, 5, 6, 3, 0, 1, 0, 0, 0, 0, 0], "label": "cohorte-la-reunion"}, {"backgroundColor": "rgb(129,230,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 17, 13], "label": "cohorte-loire"}, {"backgroundColor": "rgb(101,122,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], "label": "cohorte-lyon-st-etienne"}, {"backgroundColor": "rgb(233,30,206)", "data": [1, 0, 3, 1, 0, 0, 0, 1, 1, 1, 3, 0], "label": "cohorte-normandie"}, {"backgroundColor": "rgb(1,198,247)", "data": [4, 1, 1, 0, 7, 2, 2, 3, 3, 5, 8, 5], "label": "cohorte-paca"}, {"backgroundColor": "rgb(252,75,37)", "data": [7, 0, 3, 4, 4, 0, 4, 0, 10, 4, 0, 2], "label": "cohorte-paysdesavoie"}, {"backgroundColor": "rgb(176,95,210)", "data": [2, 1, 0, 1, 4, 2, 1, 0, 0, 2, 6, 2], "label": "cohorte-sud-ouest"}, {"backgroundColor": "rgb(96,116,131)", "data": [4, 1, 1, 1, 4, 5, 4, 4, 6, 6, 5, 3], "label": "cohorte-suisse"}, {"backgroundColor": "rgb(242,254,27)", "data": [7, 7, 7, 2, 4, 4, 3, 2, 5, 9, 2, 9], "label": "collaboratif"}, {"backgroundColor": "rgb(207,25,206)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "label": "comment-se-proteger-de-la-republique"}, {"backgroundColor": "rgb(87,148,64)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 7, 1, 0, 0], "label": "communecter"}, {"backgroundColor": "rgb(199,114,248)", "data": [9, 2, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1], "label": "compagnon-du-devoir-educatif"}, {"backgroundColor": "rgb(230,147,75)", "data": [4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0], "label": "cooperatives"}, {"backgroundColor": "rgb(133,184,252)", "data": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1], "label": "crapaud-fou-tv"}, {"backgroundColor": "rgb(93,227,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], "label": "cratube"}, {"backgroundColor": "rgb(55,154,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], "label": "creation-deau-douce-desalinisation"}, {"backgroundColor": "rgb(1,154,164)", "data": [8, 7, 2, 6, 11, 3, 1, 1, 2, 3, 2, 0], "label": "culture-artistique"}, {"backgroundColor": "rgb(233,71,49)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 3, 6, 0, 0], "label": "cyber-sensibilisation"}, {"backgroundColor": "rgb(216,220,24)", "data": [8, 8, 13, 11, 16, 8, 11, 7, 7, 16, 13, 10], "label": "democratie"}, {"backgroundColor": "rgb(94,94,195)", "data": [0, 0, 0, 0, 0, 0, 9, 12, 12, 4, 5, 8], "label": "desobeissance-civile"}, {"backgroundColor": "rgb(108,7,125)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2], "label": "dessins-citoyens-collectifs-booderies"}, {"backgroundColor": "rgb(159,44,192)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 6, 7], "label": "developpement-personnel"}, {"backgroundColor": "rgb(151,43,58)", "data": [1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "label": "diversite-culturelle"}, {"backgroundColor": "rgb(240,12,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 0], "label": "doughnut-economics"}, {"backgroundColor": "rgb(201,137,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 2], "label": "ecologie-biodiversite"}, {"backgroundColor": "rgb(213,110,49)", "data": [2, 4, 3, 11, 11, 5, 6, 12, 7, 3, 6, 0], "label": "economie-connaissance"}, {"backgroundColor": "rgb(156,98,146)", "data": [0, 0, 0, 0, 0, 10, 11, 8, 12, 11, 5, 14], "label": "ecovillages-ecoquartiers"}, {"backgroundColor": "rgb(241,177,132)", "data": [17, 11, 15, 10, 20, 16, 12, 12, 18, 16, 17, 15], "label": "education"}, {"backgroundColor": "rgb(170,154,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 2, 3, 1], "label": "education-populaire"}, {"backgroundColor": "rgb(10,247,99)", "data": [0, 1, 2, 3, 1, 0, 0, 3, 0, 0, 0, 0], "label": "electronique"}, {"backgroundColor": "rgb(187,146,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 2], "label": "emancipation-outre-mer"}, {"backgroundColor": "rgb(172,227,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6], "label": "emmaus-pau-lescar"}, {"backgroundColor": "rgb(196,87,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0], "label": "empowerment"}, {"backgroundColor": "rgb(236,184,204)", "data": [2, 0, 0, 7, 1, 0, 1, 2, 5, 3, 7, 2], "label": "energie"}, {"backgroundColor": "rgb(202,13,202)", "data": [0, 8, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0], "label": "energies-agiles"}, {"backgroundColor": "rgb(154,118,162)", "data": [4, 4, 0, 0, 2, 0, 0, 3, 1, 0, 0, 0], "label": "enthousiasme"}, {"backgroundColor": "rgb(23,131,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], "label": "entomophagie"}, {"backgroundColor": "rgb(242,59,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], "label": "entreprise-tous-eco-responsables"}, {"backgroundColor": "rgb(152,125,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0], "label": "erasmus-citizen-link"}, {"backgroundColor": "rgb(143,179,26)", "data": [0, 6, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0], "label": "essaimage"}, {"backgroundColor": "rgb(65,161,191)", "data": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], "label": "exemples-low-tech-habiter"}, {"backgroundColor": "rgb(8,100,36)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "faire"}, {"backgroundColor": "rgb(154,187,94)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0], "label": "faire-avancer-le-schmilblick-ecologique"}, {"backgroundColor": "rgb(192,176,249)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "ferme-pedagogique-albi"}, {"backgroundColor": "rgb(216,178,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 1], "label": "foret_bleue"}, {"backgroundColor": "rgb(245,29,57)", "data": [5, 0, 1, 7, 1, 0, 0, 0, 0, 0, 1, 0], "label": "fou-a-lier"}, {"backgroundColor": "rgb(22,206,153)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "label": "francais-langue-etrangere"}, {"backgroundColor": "rgb(76,37,241)", "data": [0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0], "label": "game-changers"}, {"backgroundColor": "rgb(242,99,231)", "data": [71, 38, 55, 36, 40, 45, 43, 40, 39, 42, 40, 36], "label": "general"}, {"backgroundColor": "rgb(86,176,54)", "data": [4, 1, 0, 2, 3, 6, 8, 7, 6, 2, 2, 3], "label": "generation-2050"}, {"backgroundColor": "rgb(199,5,123)", "data": [6, 0, 0, 1, 6, 3, 3, 1, 0, 3, 3, 0], "label": "geopolitique"}, {"backgroundColor": "rgb(161,234,225)", "data": [0, 4, 1, 1, 1, 4, 0, 1, 2, 1, 3, 3], "label": "gestion-de-l-eau"}, {"backgroundColor": "rgb(232,66,120)", "data": [0, 0, 21, 24, 25, 26, 21, 20, 11, 16, 15, 5], "label": "gilets-jaunes"}, {"backgroundColor": "rgb(225,49,174)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "label": "godelescherbach"}, {"backgroundColor": "rgb(140,241,186)", "data": [7, 1, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0], "label": "habitat-durable"}, {"backgroundColor": "rgb(146,106,77)", "data": [3, 1, 3, 0, 2, 0, 0, 0, 2, 0, 0, 0], "label": "hackathon-distribue"}, {"backgroundColor": "rgb(3,213,211)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0], "label": "hacker-les-contes-pour-enfants"}, {"backgroundColor": "rgb(158,157,205)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0], "label": "hackerspace-angers"}, {"backgroundColor": "rgb(253,212,0)", "data": [0, 0, 0, 0, 4, 7, 3, 0, 0, 2, 0, 0], "label": "holacratie-et-sociocratie"}, {"backgroundColor": "rgb(226,227,91)", "data": [5, 10, 13, 12, 5, 0, 4, 3, 9, 14, 7, 1], "label": "how-to-low-tech"}, {"backgroundColor": "rgb(97,228,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], "label": "idees-crapaud-fou"}, {"backgroundColor": "rgb(176,88,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 1], "label": "impression-3d"}, {"backgroundColor": "rgb(119,10,1)", "data": [10, 3, 1, 3, 5, 1, 2, 1, 5, 3, 3, 2], "label": "info-desintox"}, {"backgroundColor": "rgb(0,114,162)", "data": [3, 2, 9, 5, 10, 5, 5, 5, 8, 8, 10, 8], "label": "intelligence-artificielle"}, {"backgroundColor": "rgb(13,35,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1], "label": "intelligence-collective"}, {"backgroundColor": "rgb(208,19,14)", "data": [6, 3, 0, 0, 0, 5, 2, 0, 1, 0, 5, 3], "label": "intergenerationnel"}, {"backgroundColor": "rgb(163,26,212)", "data": [0, 0, 0, 0, 5, 1, 2, 0, 0, 2, 3, 2], "label": "jeux-inde-1"}, {"backgroundColor": "rgb(68,158,77)", "data": [0, 0, 0, 0, 0, 15, 29, 15, 2, 0, 0, 0], "label": "journee-cri"}, {"backgroundColor": "rgb(237,44,60)", "data": [0, 0, 0, 0, 0, 0, 4, 14, 6, 0, 0, 0], "label": "journee-solucracy-a-marcoussis"}, {"backgroundColor": "rgb(248,177,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 9, 17, 6, 6], "label": "journee-univ-j-verne-nantes-4-juil-2019"}, {"backgroundColor": "rgb(139,152,59)", "data": [0, 0, 0, 0, 0, 4, 13, 12, 5, 15, 15, 7], "label": "la-bascule-lobby-citoyen"}, {"backgroundColor": "rgb(148,158,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], "label": "la-fresque-du-climat"}, {"backgroundColor": "rgb(25,110,239)", "data": [0, 0, 0, 0, 0, 6, 8, 6, 8, 6, 9, 0], "label": "langage-vrai-anti-glossaire"}, {"backgroundColor": "rgb(32,61,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 10], "label": "le-led"}, {"backgroundColor": "rgb(238,159,234)", "data": [0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 0, 0], "label": "les-racines-profondes-de-la-crise-globale"}, {"backgroundColor": "rgb(1,146,111)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 5], "label": "lhomme-et-la-terre"}, {"backgroundColor": "rgb(135,250,37)", "data": [12, 13, 3, 0, 0, 0, 10, 3, 6, 10, 7, 12], "label": "libre"}, {"backgroundColor": "rgb(89,57,180)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0], "label": "livres-coup-de-coeur"}, {"backgroundColor": "rgb(40,211,186)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "label": "lobbying"}, {"backgroundColor": "rgb(165,130,148)", "data": [3, 3, 0, 0, 3, 4, 1, 0, 7, 4, 2, 4], "label": "logiciel-libre"}, {"backgroundColor": "rgb(132,137,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 14], "label": "lucarn"}, {"backgroundColor": "rgb(139,172,240)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "manuel-terrien"}, {"backgroundColor": "rgb(88,154,164)", "data": [0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0], "label": "marseille-17-18-avril"}, {"backgroundColor": "rgb(199,50,168)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3], "label": "meditation"}, {"backgroundColor": "rgb(195,77,47)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 5, 0, 4], "label": "medusa"}, {"backgroundColor": "rgb(219,112,231)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 7, 5, 0], "label": "meta"}, {"backgroundColor": "rgb(37,231,86)", "data": [3, 3, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0], "label": "meta-communication"}, {"backgroundColor": "rgb(118,102,199)", "data": [0, 4, 2, 1, 1, 1, 0, 0, 2, 0, 0, 0], "label": "metacognition"}, {"backgroundColor": "rgb(86,197,66)", "data": [19, 11, 10, 4, 4, 1, 0, 6, 4, 0, 4, 0], "label": "mutuelle-sociale-solidaire"}, {"backgroundColor": "rgb(159,161,67)", "data": [7, 6, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0], "label": "myhappy"}, {"backgroundColor": "rgb(41,171,110)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 1], "label": "nature-simplicite-bienveillance"}, {"backgroundColor": "rgb(94,175,31)", "data": [0, 0, 0, 0, 11, 7, 10, 6, 0, 4, 0, 3], "label": "nenuphar"}, {"backgroundColor": "rgb(219,187,51)", "data": [17, 14, 13, 8, 15, 15, 11, 7, 13, 16, 14, 15], "label": "neurodiversite"}, {"backgroundColor": "rgb(42,222,29)", "data": [0, 0, 0, 0, 8, 7, 2, 2, 0, 1, 3, 2], "label": "neuroharmonie-neuromusique"}, {"backgroundColor": "rgb(106,214,223)", "data": [10, 12, 11, 10, 10, 9, 15, 9, 8, 12, 10, 16], "label": "no-gafam"}, {"backgroundColor": "rgb(8,240,212)", "data": [0, 0, 0, 2, 2, 1, 0, 0, 5, 5, 8, 2], "label": "open-hardware"}, {"backgroundColor": "rgb(83,168,155)", "data": [0, 0, 0, 0, 0, 0, 10, 2, 0, 0, 0, 0], "label": "outil-de-mediatisation"}, {"backgroundColor": "rgb(166,174,216)", "data": [0, 0, 0, 0, 8, 3, 3, 0, 0, 3, 0, 0], "label": "ouvrons-et-reparons-les-objets"}, {"backgroundColor": "rgb(7,240,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 3], "label": "p-2-p-dat"}, {"backgroundColor": "rgb(100,67,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "partage-dessins-et-techniques"}, {"backgroundColor": "rgb(180,41,134)", "data": [18, 13, 6, 5, 10, 17, 15, 6, 14, 12, 15, 10], "label": "permaculture"}, {"backgroundColor": "rgb(25,193,53)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2], "label": "petite-enfance"}, {"backgroundColor": "rgb(223,249,214)", "data": [10, 8, 6, 0, 4, 13, 0, 9, 8, 4, 3, 0], "label": "philosophie"}, {"backgroundColor": "rgb(216,196,65)", "data": [0, 0, 0, 4, 6, 1, 0, 0, 0, 0, 0, 0], "label": "photovoltaique-hltech"}, {"backgroundColor": "rgb(132,39,181)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0], "label": "piano-bar"}, {"backgroundColor": "rgb(64,157,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "pnl"}, {"backgroundColor": "rgb(174,178,154)", "data": [17, 6, 0, 0, 10, 13, 6, 7, 13, 10, 9, 5], "label": "pratiques-artistiques"}, {"backgroundColor": "rgb(242,71,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], "label": "production-vivriere-locale"}, {"backgroundColor": "rgb(166,213,81)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], "label": "produits-biocycliques"}, {"backgroundColor": "rgb(99,84,238)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6], "label": "projet-cand-alterincub-centre"}, {"backgroundColor": "rgb(141,204,212)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2], "label": "projet-transceiver-laser"}, {"backgroundColor": "rgb(109,170,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0], "label": "projets-zad-1-planetaire"}, {"backgroundColor": "rgb(211,108,22)", "data": [3, 10, 3, 6, 9, 7, 5, 3, 3, 3, 11, 10], "label": "psychologie-neurologie"}, {"backgroundColor": "rgb(200,107,75)", "data": [0, 0, 0, 0, 0, 7, 9, 7, 8, 7, 7, 3], "label": "radio-crapaud"}, {"backgroundColor": "rgb(36,7,50)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 4, 2, 1], "label": "recherches-biologie"}, {"backgroundColor": "rgb(35,179,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 1], "label": "recueil-temoignages"}, {"backgroundColor": "rgb(226,0,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11], "label": "reflexion-sur-lamour"}, {"backgroundColor": "rgb(159,24,120)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 16, 0], "label": "rencontre-crapaud-kangourou"}, {"backgroundColor": "rgb(152,167,42)", "data": [0, 0, 0, 0, 10, 0, 3, 0, 0, 0, 0, 0], "label": "resilience-du-crapaud-fou-projet"}, {"backgroundColor": "rgb(37,118,203)", "data": [0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 14, 12], "label": "right-to-repair"}, {"backgroundColor": "rgb(107,209,130)", "data": [7, 12, 7, 7, 7, 6, 11, 6, 9, 6, 5, 9], "label": "sante"}, {"backgroundColor": "rgb(187,225,223)", "data": [8, 5, 5, 3, 0, 1, 2, 1, 4, 0, 1, 5], "label": "scientifique"}, {"backgroundColor": "rgb(253,237,126)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "label": "selfishgene"}, {"backgroundColor": "rgb(46,1,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 24], "label": "semourais"}, {"backgroundColor": "rgb(166,151,222)", "data": [1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 4], "label": "siteweb"}, {"backgroundColor": "rgb(247,12,221)", "data": [11, 10, 7, 5, 6, 12, 10, 5, 5, 10, 10, 2], "label": "sociologie-de-l-effondrement"}, {"backgroundColor": "rgb(14,55,41)", "data": [0, 0, 13, 15, 9, 10, 11, 8, 12, 10, 12, 9], "label": "solucracy"}, {"backgroundColor": "rgb(219,56,99)", "data": [0, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0], "label": "soutien-au-terrain"}, {"backgroundColor": "rgb(159,157,245)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "suggestion"}, {"backgroundColor": "rgb(227,150,169)", "data": [0, 0, 9, 4, 1, 0, 3, 0, 0, 4, 9, 0], "label": "survivalismes-et-resiliences"}, {"backgroundColor": "rgb(66,96,148)", "data": [7, 10, 20, 14, 18, 8, 17, 5, 12, 17, 18, 16], "label": "systeme-monetaire"}, {"backgroundColor": "rgb(226,15,14)", "data": [9, 6, 3, 10, 10, 5, 6, 4, 0, 5, 0, 5], "label": "team-hacker-debutant"}, {"backgroundColor": "rgb(85,188,143)", "data": [8, 10, 13, 12, 9, 10, 13, 12, 16, 19, 9, 21], "label": "techos"}, {"backgroundColor": "rgb(219,143,3)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9], "label": "terre-de-convergence"}, {"backgroundColor": "rgb(140,105,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "label": "testbot"}, {"backgroundColor": "rgb(67,242,38)", "data": [5, 6, 9, 7, 15, 18, 19, 15, 18, 18, 16, 6], "label": "tiers-lieux-apprenant"}, {"backgroundColor": "rgb(87,4,94)", "data": [0, 0, 0, 0, 4, 2, 0, 1, 0, 0, 0, 0], "label": "tour-du-monde"}, {"backgroundColor": "rgb(161,119,59)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 5, 0, 3, 0], "label": "transhumanisme-et-eugenisme"}, {"backgroundColor": "rgb(27,202,71)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0], "label": "transport"}, {"backgroundColor": "rgb(57,16,135)", "data": [0, 2, 2, 0, 5, 0, 4, 4, 5, 0, 0, 4], "label": "tsunamis"}, {"backgroundColor": "rgb(91,121,55)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 5, 0], "label": "tvp-et-ebr"}, {"backgroundColor": "rgb(219,46,31)", "data": [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "une-revolution-pourquoi-comment"}, {"backgroundColor": "rgb(134,125,181)", "data": [0, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0, 0], "label": "unite-humaine"}, {"backgroundColor": "rgb(249,153,127)", "data": [1, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], "label": "vers-une-nouvelle-civilisation"}, {"backgroundColor": "rgb(108,51,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], "label": "violences-individuelles"}, {"backgroundColor": "rgb(198,178,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 8], "label": "wiki-crapaud-fou"}, {"backgroundColor": "rgb(99,150,79)", "data": [9, 8, 10, 10, 8, 1, 11, 3, 5, 5, 5, 5], "label": "zero-dechet"}, {"backgroundColor": "rgb(115,122,216)", "data": [10, 12, 1, 0, 7, 3, 4, 1, 2, 0, 0, 1], "label": "zetetique-et-outils-epistemologiques"}], "messagesByChannel": [{"backgroundColor": "rgb(74,193,199)", "data": [0, 387, 750, 402, 610, 663, 810, 489, 1256, 1425, 1152, 643], "label": "accueil"}, {"backgroundColor": "rgb(150,58,253)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0], "label": "activite-et-travail"}, {"backgroundColor": "rgb(240,204,139)", "data": [89, 2, 5, 10, 9, 39, 49, 44, 66, 61, 63, 81], "label": "agenda"}, {"backgroundColor": "rgb(154,133,62)", "data": [0, 0, 0, 0, 0, 578, 420, 15, 0, 0, 11, 17], "label": "algoculture"}, {"backgroundColor": "rgb(126,115,114)", "data": [0, 0, 0, 0, 11, 97, 111, 0, 49, 245, 422, 569], "label": "animation-crapauds"}, {"backgroundColor": "rgb(253,167,154)", "data": [0, 0, 0, 0, 0, 0, 97, 26, 0, 3, 5, 20], "label": "aquaponie"}, {"backgroundColor": "rgb(106,114,128)", "data": [0, 0, 16, 18, 221, 7, 13, 0, 0, 0, 0, 0], "label": "auberge-des-crapauds"}, {"backgroundColor": "rgb(149,70,109)", "data": [0, 0, 0, 0, 0, 0, 494, 111, 19, 22, 8, 0], "label": "audio-visuel-libre"}, {"backgroundColor": "rgb(230,148,58)", "data": [224, 5, 52, 9, 69, 14, 20, 0, 11, 23, 59, 0], "label": "autonomie-energetique"}, {"backgroundColor": "rgb(221,210,250)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0], "label": "avoirouetre"}, {"backgroundColor": "rgb(218,88,63)", "data": [4, 3, 18, 6, 0, 0, 1, 1, 2, 215, 9, 24], "label": "blockchain-crypto"}, {"backgroundColor": "rgb(42,142,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 16], "label": "bnb-bonheur-national-brut"}, {"backgroundColor": "rgb(91,240,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 31, 159], "label": "bresil"}, {"backgroundColor": "rgb(59,139,33)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0], "label": "burn-out"}, {"backgroundColor": "rgb(44,68,188)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0], "label": "caballarius"}, {"backgroundColor": "rgb(132,219,105)", "data": [0, 5, 49, 31, 0, 0, 0, 0, 0, 0, 0, 0], "label": "cadeaux-ibf"}, {"backgroundColor": "rgb(102,77,136)", "data": [146, 49, 0, 0, 0, 0, 28, 5, 1, 2, 0, 16], "label": "cause-animale"}, {"backgroundColor": "rgb(236,124,114)", "data": [286, 399, 152, 115, 47, 20, 163, 31, 26, 34, 162, 126], "label": "changer-de-paradigme"}, {"backgroundColor": "rgb(193,28,189)", "data": [0, 0, 0, 35, 0, 2, 6, 3, 2, 0, 0, 0], "label": "chanvre"}, {"backgroundColor": "rgb(168,129,208)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "christin"}, {"backgroundColor": "rgb(215,169,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0], "label": "circuits-courts"}, {"backgroundColor": "rgb(48,4,21)", "data": [19, 0, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0], "label": "cnv"}, {"backgroundColor": "rgb(105,223,250)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 14, 10, 2, 0], "label": "cohorte-2607"}, {"backgroundColor": "rgb(31,4,51)", "data": [2, 0, 2, 2, 256, 41, 96, 72, 77, 67, 109, 112], "label": "cohorte-34"}, {"backgroundColor": "rgb(250,205,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], "label": "cohorte-barcelone"}, {"backgroundColor": "rgb(69,248,144)", "data": [0, 4, 6, 3, 0, 5, 0, 0, 0, 26, 2, 4], "label": "cohorte-belgique"}, {"backgroundColor": "rgb(249,138,108)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0], "label": "cohorte-bourgogne"}, {"backgroundColor": "rgb(190,230,115)", "data": [55, 42, 2, 6, 10, 1, 9, 4, 76, 75, 171, 186], "label": "cohorte-bretagne"}, {"backgroundColor": "rgb(135,124,167)", "data": [0, 5, 6, 0, 2, 0, 0, 6, 2, 0, 7, 0], "label": "cohorte-centre"}, {"backgroundColor": "rgb(168,214,247)", "data": [1, 6, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0], "label": "cohorte-grand-est"}, {"backgroundColor": "rgb(145,26,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 1, 3], "label": "cohorte-grece"}, {"backgroundColor": "rgb(2,91,110)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0], "label": "cohorte-grenoble"}, {"backgroundColor": "rgb(219,191,80)", "data": [7, 2, 1, 2, 14, 63, 32, 19, 14, 6, 17, 31], "label": "cohorte-hdf"}, {"backgroundColor": "rgb(55,40,35)", "data": [2, 0, 24, 6, 72, 165, 83, 10, 172, 331, 101, 104], "label": "cohorte-ile-de-france"}, {"backgroundColor": "rgb(227,116,8)", "data": [0, 0, 10, 50, 22, 0, 2, 0, 0, 0, 0, 0], "label": "cohorte-la-reunion"}, {"backgroundColor": "rgb(129,230,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 729, 251], "label": "cohorte-loire"}, {"backgroundColor": "rgb(101,122,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], "label": "cohorte-lyon-st-etienne"}, {"backgroundColor": "rgb(233,30,206)", "data": [1, 0, 6, 1, 0, 0, 0, 1, 1, 1, 7, 0], "label": "cohorte-normandie"}, {"backgroundColor": "rgb(1,198,247)", "data": [14, 1, 1, 0, 15, 2, 8, 5, 29, 9, 26, 17], "label": "cohorte-paca"}, {"backgroundColor": "rgb(252,75,37)", "data": [52, 0, 7, 9, 22, 0, 30, 0, 43, 15, 0, 5], "label": "cohorte-paysdesavoie"}, {"backgroundColor": "rgb(176,95,210)", "data": [5, 1, 0, 1, 31, 3, 1, 0, 0, 2, 27, 2], "label": "cohorte-sud-ouest"}, {"backgroundColor": "rgb(96,116,131)", "data": [12, 1, 4, 3, 22, 20, 39, 95, 13, 12, 15, 6], "label": "cohorte-suisse"}, {"backgroundColor": "rgb(242,254,27)", "data": [20, 71, 220, 3, 12, 36, 10, 4, 25, 41, 6, 203], "label": "collaboratif"}, {"backgroundColor": "rgb(207,25,206)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0], "label": "comment-se-proteger-de-la-republique"}, {"backgroundColor": "rgb(87,148,64)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 74, 1, 0, 0], "label": "communecter"}, {"backgroundColor": "rgb(199,114,248)", "data": [74, 5, 9, 2, 3, 68, 0, 0, 2, 0, 0, 1], "label": "compagnon-du-devoir-educatif"}, {"backgroundColor": "rgb(230,147,75)", "data": [22, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0], "label": "cooperatives"}, {"backgroundColor": "rgb(133,184,252)", "data": [0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1], "label": "crapaud-fou-tv"}, {"backgroundColor": "rgb(93,227,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574], "label": "cratube"}, {"backgroundColor": "rgb(55,154,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36], "label": "creation-deau-douce-desalinisation"}, {"backgroundColor": "rgb(1,154,164)", "data": [66, 17, 2, 40, 48, 5, 2, 1, 4, 3, 87, 0], "label": "culture-artistique"}, {"backgroundColor": "rgb(233,71,49)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 6, 23, 0, 0], "label": "cyber-sensibilisation"}, {"backgroundColor": "rgb(216,220,24)", "data": [22, 213, 185, 40, 345, 279, 208, 27, 54, 196, 130, 54], "label": "democratie"}, {"backgroundColor": "rgb(94,94,195)", "data": [0, 0, 0, 0, 0, 0, 86, 245, 67, 17, 54, 21], "label": "desobeissance-civile"}, {"backgroundColor": "rgb(108,7,125)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 11], "label": "dessins-citoyens-collectifs-booderies"}, {"backgroundColor": "rgb(159,44,192)", "data": [0, 0, 0, 0, 0, 0, 0, 87, 6, 7, 30, 158], "label": "developpement-personnel"}, {"backgroundColor": "rgb(151,43,58)", "data": [1, 5, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "label": "diversite-culturelle"}, {"backgroundColor": "rgb(240,12,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 58, 67, 0], "label": "doughnut-economics"}, {"backgroundColor": "rgb(201,137,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 15, 2], "label": "ecologie-biodiversite"}, {"backgroundColor": "rgb(213,110,49)", "data": [4, 86, 5, 868, 197, 14, 68, 182, 39, 3, 81, 0], "label": "economie-connaissance"}, {"backgroundColor": "rgb(156,98,146)", "data": [0, 0, 0, 0, 0, 162, 58, 94, 132, 70, 9, 129], "label": "ecovillages-ecoquartiers"}, {"backgroundColor": "rgb(241,177,132)", "data": [355, 116, 220, 51, 650, 297, 292, 81, 579, 551, 153, 73], "label": "education"}, {"backgroundColor": "rgb(170,154,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 118, 5, 7, 1], "label": "education-populaire"}, {"backgroundColor": "rgb(10,247,99)", "data": [0, 1, 8, 21, 1, 0, 0, 3, 0, 0, 0, 0], "label": "electronique"}, {"backgroundColor": "rgb(187,146,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 76, 22], "label": "emancipation-outre-mer"}, {"backgroundColor": "rgb(172,227,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48], "label": "emmaus-pau-lescar"}, {"backgroundColor": "rgb(196,87,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 0], "label": "empowerment"}, {"backgroundColor": "rgb(236,184,204)", "data": [2, 0, 0, 80, 1, 0, 3, 2, 34, 49, 49, 2], "label": "energie"}, {"backgroundColor": "rgb(202,13,202)", "data": [0, 341, 33, 0, 0, 0, 0, 0, 9, 7, 0, 0], "label": "energies-agiles"}, {"backgroundColor": "rgb(154,118,162)", "data": [27, 6, 0, 0, 9, 0, 0, 15, 3, 0, 0, 0], "label": "enthousiasme"}, {"backgroundColor": "rgb(23,131,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96], "label": "entomophagie"}, {"backgroundColor": "rgb(242,59,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], "label": "entreprise-tous-eco-responsables"}, {"backgroundColor": "rgb(152,125,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0], "label": "erasmus-citizen-link"}, {"backgroundColor": "rgb(143,179,26)", "data": [0, 139, 67, 9, 8, 0, 2, 0, 0, 0, 0, 0], "label": "essaimage"}, {"backgroundColor": "rgb(65,161,191)", "data": [0, 0, 15, 0, 4, 0, 1, 0, 0, 0, 0, 0], "label": "exemples-low-tech-habiter"}, {"backgroundColor": "rgb(8,100,36)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "faire"}, {"backgroundColor": "rgb(154,187,94)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0], "label": "faire-avancer-le-schmilblick-ecologique"}, {"backgroundColor": "rgb(192,176,249)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "ferme-pedagogique-albi"}, {"backgroundColor": "rgb(216,178,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 11, 2], "label": "foret_bleue"}, {"backgroundColor": "rgb(245,29,57)", "data": [16, 0, 1, 46, 1, 0, 0, 0, 0, 0, 1, 0], "label": "fou-a-lier"}, {"backgroundColor": "rgb(22,206,153)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 0], "label": "francais-langue-etrangere"}, {"backgroundColor": "rgb(76,37,241)", "data": [0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0], "label": "game-changers"}, {"backgroundColor": "rgb(242,99,231)", "data": [1739, 701, 2791, 333, 751, 1328, 1126, 784, 520, 806, 697, 1261], "label": "general"}, {"backgroundColor": "rgb(86,176,54)", "data": [28, 2, 0, 6, 5, 10, 167, 49, 56, 8, 3, 8], "label": "generation-2050"}, {"backgroundColor": "rgb(199,5,123)", "data": [98, 0, 0, 1, 132, 36, 8, 1, 0, 14, 11, 0], "label": "geopolitique"}, {"backgroundColor": "rgb(161,234,225)", "data": [0, 11, 1, 1, 1, 47, 0, 3, 2, 17, 28, 13], "label": "gestion-de-l-eau"}, {"backgroundColor": "rgb(232,66,120)", "data": [0, 0, 1817, 4615, 3291, 1014, 1425, 1218, 335, 353, 168, 16], "label": "gilets-jaunes"}, {"backgroundColor": "rgb(225,49,174)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "label": "godelescherbach"}, {"backgroundColor": "rgb(140,241,186)", "data": [20, 1, 4, 0, 0, 0, 0, 18, 0, 0, 0, 0], "label": "habitat-durable"}, {"backgroundColor": "rgb(146,106,77)", "data": [5, 1, 9, 0, 3, 0, 0, 0, 9, 0, 0, 0], "label": "hackathon-distribue"}, {"backgroundColor": "rgb(3,213,211)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 33, 8, 0, 0], "label": "hacker-les-contes-pour-enfants"}, {"backgroundColor": "rgb(158,157,205)", "data": [0, 0, 102, 27, 0, 0, 0, 0, 0, 0, 0, 0], "label": "hackerspace-angers"}, {"backgroundColor": "rgb(253,212,0)", "data": [0, 0, 0, 0, 43, 51, 39, 0, 0, 9, 0, 0], "label": "holacratie-et-sociocratie"}, {"backgroundColor": "rgb(226,227,91)", "data": [12, 67, 398, 247, 11, 0, 4, 21, 28, 147, 42, 2], "label": "how-to-low-tech"}, {"backgroundColor": "rgb(97,228,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141], "label": "idees-crapaud-fou"}, {"backgroundColor": "rgb(176,88,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 22, 15, 0, 1], "label": "impression-3d"}, {"backgroundColor": "rgb(119,10,1)", "data": [124, 37, 1, 4, 10, 1, 4, 1, 14, 4, 108, 2], "label": "info-desintox"}, {"backgroundColor": "rgb(0,114,162)", "data": [16, 3, 54, 9, 259, 7, 11, 9, 108, 15, 50, 26], "label": "intelligence-artificielle"}, {"backgroundColor": "rgb(13,35,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 2], "label": "intelligence-collective"}, {"backgroundColor": "rgb(208,19,14)", "data": [81, 21, 0, 0, 0, 20, 3, 0, 1, 0, 18, 4], "label": "intergenerationnel"}, {"backgroundColor": "rgb(163,26,212)", "data": [0, 0, 0, 0, 23, 1, 6, 0, 0, 4, 20, 2], "label": "jeux-inde-1"}, {"backgroundColor": "rgb(68,158,77)", "data": [0, 0, 0, 0, 0, 396, 2154, 276, 2, 0, 0, 0], "label": "journee-cri"}, {"backgroundColor": "rgb(237,44,60)", "data": [0, 0, 0, 0, 0, 0, 27, 196, 48, 0, 0, 0], "label": "journee-solucracy-a-marcoussis"}, {"backgroundColor": "rgb(248,177,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 128, 547, 23, 12], "label": "journee-univ-j-verne-nantes-4-juil-2019"}, {"backgroundColor": "rgb(139,152,59)", "data": [0, 0, 0, 0, 0, 16, 180, 118, 19, 199, 282, 32], "label": "la-bascule-lobby-citoyen"}, {"backgroundColor": "rgb(148,158,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], "label": "la-fresque-du-climat"}, {"backgroundColor": "rgb(25,110,239)", "data": [0, 0, 0, 0, 0, 157, 251, 24, 66, 79, 178, 0], "label": "langage-vrai-anti-glossaire"}, {"backgroundColor": "rgb(32,61,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 306, 266, 116], "label": "le-led"}, {"backgroundColor": "rgb(238,159,234)", "data": [0, 0, 0, 0, 0, 0, 0, 86, 8, 0, 0, 0], "label": "les-racines-profondes-de-la-crise-globale"}, {"backgroundColor": "rgb(1,146,111)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 97, 55, 112, 63], "label": "lhomme-et-la-terre"}, {"backgroundColor": "rgb(135,250,37)", "data": [578, 711, 8, 0, 0, 0, 1016, 20, 38, 83, 34, 601], "label": "libre"}, {"backgroundColor": "rgb(89,57,180)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 23, 0, 0, 0], "label": "livres-coup-de-coeur"}, {"backgroundColor": "rgb(40,211,186)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "label": "lobbying"}, {"backgroundColor": "rgb(165,130,148)", "data": [157, 10, 0, 0, 6, 180, 2, 0, 105, 8, 4, 21], "label": "logiciel-libre"}, {"backgroundColor": "rgb(132,137,167)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 469], "label": "lucarn"}, {"backgroundColor": "rgb(139,172,240)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "manuel-terrien"}, {"backgroundColor": "rgb(88,154,164)", "data": [0, 0, 0, 0, 0, 0, 103, 27, 0, 0, 0, 0], "label": "marseille-17-18-avril"}, {"backgroundColor": "rgb(199,50,168)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25], "label": "meditation"}, {"backgroundColor": "rgb(195,77,47)", "data": [176, 8, 5, 0, 0, 0, 0, 0, 0, 8, 0, 7], "label": "medusa"}, {"backgroundColor": "rgb(219,112,231)", "data": [0, 0, 0, 4, 218, 18, 90, 0, 0, 149, 53, 0], "label": "meta"}, {"backgroundColor": "rgb(37,231,86)", "data": [9, 40, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0], "label": "meta-communication"}, {"backgroundColor": "rgb(118,102,199)", "data": [0, 11, 5, 1, 1, 1, 0, 0, 3, 0, 0, 0], "label": "metacognition"}, {"backgroundColor": "rgb(86,197,66)", "data": [1053, 477, 170, 82, 26, 1, 0, 40, 16, 0, 7, 0], "label": "mutuelle-sociale-solidaire"}, {"backgroundColor": "rgb(159,161,67)", "data": [100, 43, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0], "label": "myhappy"}, {"backgroundColor": "rgb(41,171,110)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 5], "label": "nature-simplicite-bienveillance"}, {"backgroundColor": "rgb(94,175,31)", "data": [0, 0, 0, 0, 569, 108, 340, 19, 0, 39, 0, 51], "label": "nenuphar"}, {"backgroundColor": "rgb(219,187,51)", "data": [982, 467, 406, 32, 264, 624, 271, 15, 692, 659, 268, 648], "label": "neurodiversite"}, {"backgroundColor": "rgb(42,222,29)", "data": [0, 0, 0, 0, 212, 43, 7, 3, 0, 1, 7, 7], "label": "neuroharmonie-neuromusique"}, {"backgroundColor": "rgb(106,214,223)", "data": [257, 154, 231, 47, 50, 208, 356, 86, 37, 88, 93, 404], "label": "no-gafam"}, {"backgroundColor": "rgb(8,240,212)", "data": [0, 0, 0, 18, 10, 1, 0, 0, 130, 53, 210, 2], "label": "open-hardware"}, {"backgroundColor": "rgb(83,168,155)", "data": [0, 0, 0, 0, 0, 0, 781, 29, 0, 0, 0, 0], "label": "outil-de-mediatisation"}, {"backgroundColor": "rgb(166,174,216)", "data": [0, 0, 0, 0, 25, 4, 5, 0, 0, 10, 0, 0], "label": "ouvrons-et-reparons-les-objets"}, {"backgroundColor": "rgb(7,240,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 13, 31], "label": "p-2-p-dat"}, {"backgroundColor": "rgb(100,67,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "partage-dessins-et-techniques"}, {"backgroundColor": "rgb(180,41,134)", "data": [119, 143, 20, 16, 83, 282, 97, 40, 54, 123, 108, 59], "label": "permaculture"}, {"backgroundColor": "rgb(25,193,53)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 2], "label": "petite-enfance"}, {"backgroundColor": "rgb(223,249,214)", "data": [181, 163, 142, 0, 47, 418, 0, 155, 101, 10, 8, 0], "label": "philosophie"}, {"backgroundColor": "rgb(216,196,65)", "data": [0, 0, 0, 47, 162, 11, 0, 0, 0, 0, 0, 0], "label": "photovoltaique-hltech"}, {"backgroundColor": "rgb(132,39,181)", "data": [31, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0], "label": "piano-bar"}, {"backgroundColor": "rgb(64,157,4)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "pnl"}, {"backgroundColor": "rgb(174,178,154)", "data": [743, 159, 0, 0, 81, 149, 16, 94, 174, 27, 167, 8], "label": "pratiques-artistiques"}, {"backgroundColor": "rgb(242,71,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63], "label": "production-vivriere-locale"}, {"backgroundColor": "rgb(166,213,81)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], "label": "produits-biocycliques"}, {"backgroundColor": "rgb(99,84,238)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 58], "label": "projet-cand-alterincub-centre"}, {"backgroundColor": "rgb(141,204,212)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 13], "label": "projet-transceiver-laser"}, {"backgroundColor": "rgb(109,170,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 23, 0, 0], "label": "projets-zad-1-planetaire"}, {"backgroundColor": "rgb(211,108,22)", "data": [4, 199, 17, 33, 248, 25, 33, 16, 22, 12, 404, 196], "label": "psychologie-neurologie"}, {"backgroundColor": "rgb(200,107,75)", "data": [0, 0, 0, 0, 0, 12, 130, 27, 63, 38, 24, 105], "label": "radio-crapaud"}, {"backgroundColor": "rgb(36,7,50)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 15, 14, 4, 1], "label": "recherches-biologie"}, {"backgroundColor": "rgb(35,179,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 4, 3], "label": "recueil-temoignages"}, {"backgroundColor": "rgb(226,0,90)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461], "label": "reflexion-sur-lamour"}, {"backgroundColor": "rgb(159,24,120)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 203, 73, 151, 0], "label": "rencontre-crapaud-kangourou"}, {"backgroundColor": "rgb(152,167,42)", "data": [0, 0, 0, 0, 522, 0, 5, 0, 0, 0, 0, 0], "label": "resilience-du-crapaud-fou-projet"}, {"backgroundColor": "rgb(37,118,203)", "data": [0, 0, 0, 0, 0, 0, 0, 126, 134, 102, 344, 327], "label": "right-to-repair"}, {"backgroundColor": "rgb(107,209,130)", "data": [130, 369, 104, 48, 56, 64, 185, 60, 84, 26, 18, 83], "label": "sante"}, {"backgroundColor": "rgb(187,225,223)", "data": [39, 22, 34, 3, 0, 1, 6, 3, 23, 0, 1, 8], "label": "scientifique"}, {"backgroundColor": "rgb(253,237,126)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "label": "selfishgene"}, {"backgroundColor": "rgb(46,1,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 480, 2732, 1086], "label": "semourais"}, {"backgroundColor": "rgb(166,151,222)", "data": [12, 2, 69, 11, 5, 6, 188, 1, 27, 11, 6, 248], "label": "siteweb"}, {"backgroundColor": "rgb(247,12,221)", "data": [144, 152, 130, 19, 14, 192, 61, 11, 12, 93, 80, 2], "label": "sociologie-de-l-effondrement"}, {"backgroundColor": "rgb(14,55,41)", "data": [0, 0, 1964, 656, 61, 86, 190, 47, 140, 93, 78, 81], "label": "solucracy"}, {"backgroundColor": "rgb(219,56,99)", "data": [0, 0, 0, 67, 73, 0, 0, 0, 0, 0, 0, 0], "label": "soutien-au-terrain"}, {"backgroundColor": "rgb(159,157,245)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "suggestion"}, {"backgroundColor": "rgb(227,150,169)", "data": [0, 0, 67, 10, 1, 0, 10, 0, 0, 8, 61, 0], "label": "survivalismes-et-resiliences"}, {"backgroundColor": "rgb(66,96,148)", "data": [34, 377, 948, 216, 184, 71, 331, 11, 435, 269, 167, 461], "label": "systeme-monetaire"}, {"backgroundColor": "rgb(226,15,14)", "data": [171, 37, 3, 124, 124, 52, 110, 13, 0, 21, 0, 46], "label": "team-hacker-debutant"}, {"backgroundColor": "rgb(85,188,143)", "data": [32, 161, 505, 399, 295, 49, 348, 155, 197, 455, 67, 868], "label": "techos"}, {"backgroundColor": "rgb(219,143,3)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 229], "label": "terre-de-convergence"}, {"backgroundColor": "rgb(140,105,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0], "label": "testbot"}, {"backgroundColor": "rgb(67,242,38)", "data": [100, 28, 141, 79, 508, 286, 1238, 288, 509, 300, 186, 22], "label": "tiers-lieux-apprenant"}, {"backgroundColor": "rgb(87,4,94)", "data": [0, 0, 0, 0, 41, 23, 0, 1, 0, 0, 0, 0], "label": "tour-du-monde"}, {"backgroundColor": "rgb(161,119,59)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 52, 0, 57, 0], "label": "transhumanisme-et-eugenisme"}, {"backgroundColor": "rgb(27,202,71)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0], "label": "transport"}, {"backgroundColor": "rgb(57,16,135)", "data": [0, 5, 2, 0, 24, 0, 17, 21, 39, 0, 0, 42], "label": "tsunamis"}, {"backgroundColor": "rgb(91,121,55)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 154, 221, 44, 0], "label": "tvp-et-ebr"}, {"backgroundColor": "rgb(219,46,31)", "data": [6, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "label": "une-revolution-pourquoi-comment"}, {"backgroundColor": "rgb(134,125,181)", "data": [0, 0, 0, 0, 0, 0, 47, 11, 0, 0, 0, 0], "label": "unite-humaine"}, {"backgroundColor": "rgb(249,153,127)", "data": [1, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0], "label": "vers-une-nouvelle-civilisation"}, {"backgroundColor": "rgb(108,51,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85], "label": "violences-individuelles"}, {"backgroundColor": "rgb(198,178,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 426, 110], "label": "wiki-crapaud-fou"}, {"backgroundColor": "rgb(99,150,79)", "data": [84, 50, 130, 125, 53, 1, 113, 11, 70, 70, 12, 13], "label": "zero-dechet"}, {"backgroundColor": "rgb(115,122,216)", "data": [509, 250, 1, 0, 285, 7, 17, 1, 10, 0, 0, 1], "label": "zetetique-et-outils-epistemologiques"}], "messagesByTopic": [{"backgroundColor": "rgb(122,62,143)", "data": [9924, 6838, 12194, 9262, 11568, 8644, 14960, 5840, 8236, 11367, 12742, 12488], "label": "global"}, {"backgroundColor": "rgb(41,228,156)", "data": [1515, 701, 2481, 856, 1131, 839, 3740, 816, 1084, 2198, 3713, 2688], "label": "project"}, {"backgroundColor": "rgb(182,163,88)", "data": [3146, 2519, 6033, 6736, 5502, 2892, 3180, 2231, 1948, 2060, 1708, 1139], "label": "democratie"}, {"backgroundColor": "rgb(197,72,212)", "data": [1587, 1572, 630, 633, 728, 1237, 1253, 327, 657, 1130, 3906, 1851], "label": "ecologie"}, {"backgroundColor": "rgb(123,127,173)", "data": [617, 275, 829, 546, 675, 475, 1930, 410, 601, 1194, 1109, 1015], "label": "technologie"}], "usersGlobal": [{"backgroundColor": "red", "data": [88, 78, 97, 79, 101, 97, 98, 94, 118, 136, 119, 104], "label": "global"}], "labels": ["Sep 2018", "Oct 2018", "Nov 2018", "Dec 2018", "Jan 2019", "Feb 2019", "Mar 2019", "Apr 2019", "May 2019", "Jun 2019", "Jul 2019", "Aug 2019"]} \ No newline at end of file