From bf8fb8a22e121658d7b974c683c62384f16f3450 Mon Sep 17 00:00:00 2001 From: mose Date: Thu, 5 Sep 2019 05:29:45 +0800 Subject: [PATCH] move the stats page to /coastats.html plus some jshint fixes --- site/coa/stats/stats.js | 65 -------------------- site/{coa/stats/index.html => coastats.html} | 10 +-- site/coastats.js | 55 +++++++++++++++++ site/data/chat_stat_monthly.json | 2 +- 4 files changed, 61 insertions(+), 71 deletions(-) delete mode 100644 site/coa/stats/stats.js rename site/{coa/stats/index.html => coastats.html} (92%) create mode 100644 site/coastats.js diff --git a/site/coa/stats/stats.js b/site/coa/stats/stats.js deleted file mode 100644 index b254f4f..0000000 --- a/site/coa/stats/stats.js +++ /dev/null @@ -1,65 +0,0 @@ -$(document).ready(function () { - $.getJSON("../../data/chat_stat_monthly.json", function (data) { - updated = data['updated'] - - labels = data['labels']; - - graphDisplay($('#byChannel'), data['messagesByChannel'], "Nombre de message par canaux sur 1 an (" + updated + ")"); - - graphDisplay($('#byTsunamy'), data['messagesByTsunamy'], "Nombre de message par Tsunami sur 1 an (" + updated + ")"); - - graphDisplay($("#usersByChannel"), data['usersByChannel'], "Nombre d'utilisateur actifs par canaux sur 1 an (" + updated + ")"); - - graphDisplay($("#usersGlobal"), data['usersGlobal'], "Nombre d'utilisateur actifs sur 1 an (" + updated + ")"); - }); - $.getJSON("../../data/chat_stat_daily.json", function (data) { - updated = data['updated'] - - labels = data['labels']; - - graphDisplay($('#byChannel_daily'), data['messagesByChannel'], "Nombre de message par canaux sur 30 jours (" + updated + ")"); - - graphDisplay($('#byTsunamy_daily'), data['messagesByTsunamy'], "Nombre de message par Tsunami sur 30 jours (" + updated + ")"); - - graphDisplay($("#usersByChannel_daily"), data['usersByChannel'], "Nombre d'utilisateur actifs par canaux sur 30 jours (" + updated + ")"); - - graphDisplay($("#usersGlobal_daily"), data['usersGlobal'], "Nombre d'utilisateur actifs sur 30 jours (" + updated + ")"); - }); -}); - -function graphDisplay(ctx, data, title) { - var chart = new Chart(ctx, { - // The type of chart we want to create - type: 'bar', - - // The data for our dataset - data: { - labels: labels, - datasets: data, - }, - - // Configuration options go here - options: { - legend: { - display: false - }, - title: { - display: true, - text: title, - position: "top" - }, - responsive: true, - scales: { - xAxes: [{ - stacked: true - }], - yAxes: [{ - stacked: true, - ticks: { - stepSize: 500 - } - }] - } - } - }); -} \ No newline at end of file diff --git a/site/coa/stats/index.html b/site/coastats.html similarity index 92% rename from site/coa/stats/index.html rename to site/coastats.html index 195bcd2..334f73d 100644 --- a/site/coa/stats/index.html +++ b/site/coastats.html @@ -36,7 +36,7 @@ - + @@ -44,7 +44,7 @@
- +

Les stats de la mare des crapauds fous

@@ -98,14 +98,14 @@ Cette page est conçue par mose (design) et Trentry (code)
Licence Creative Commons
Cette page web est mise à disposition
selon les termes de la Licence Creative Commons by-nc-sa 4.0.
@@ -123,7 +123,7 @@ - + diff --git a/site/coastats.js b/site/coastats.js new file mode 100644 index 0000000..410a31d --- /dev/null +++ b/site/coastats.js @@ -0,0 +1,55 @@ +$(document).ready(function () { + $.getJSON("data/chat_stat_monthly.json", function (data) { + updated = data.updated; + labels = data.labels; + graphDisplay($('#byChannel'), data.messagesByChannel, "Nombre de messages par canal sur 1 an (" + updated + ")"); + graphDisplay($('#byTsunamy'), data.messagesByTsunamy, "Nombre de messages par Tsunami sur 1 an (" + updated + ")"); + graphDisplay($("#usersByChannel"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 1 an (" + updated + ")"); + graphDisplay($("#usersGlobal"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 1 an (" + updated + ")"); + }); + $.getJSON("data/chat_stat_daily.json", function (data) { + updated = data.updated; + labels = data.labels; + graphDisplay($('#byChannel_daily'), data.messagesByChannel, "Nombre de messages par canal sur 30 jours (" + updated + ")"); + graphDisplay($('#byTsunamy_daily'), data.messagesByTsunamy, "Nombre de messages par Tsunami sur 30 jours (" + updated + ")"); + graphDisplay($("#usersByChannel_daily"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 30 jours (" + updated + ")"); + graphDisplay($("#usersGlobal_daily"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 30 jours (" + updated + ")"); + }); +}); + +function graphDisplay(ctx, data, title) { + new Chart(ctx, { + // The type of chart we want to create + type: 'bar', + + // The data for our dataset + data: { + labels: labels, + datasets: data, + }, + + // Configuration options go here + options: { + legend: { + display: false + }, + title: { + display: true, + text: title, + position: "top" + }, + responsive: true, + scales: { + xAxes: [{ + stacked: true + }], + yAxes: [{ + stacked: true, + ticks: { + stepSize: 500 + } + }] + } + } + }); +} \ No newline at end of file diff --git a/site/data/chat_stat_monthly.json b/site/data/chat_stat_monthly.json index 04d2d4d..9d7eb2b 100644 --- a/site/data/chat_stat_monthly.json +++ b/site/data/chat_stat_monthly.json @@ -1 +1 @@ -{"updated": "updated 03/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(246,108,124)", "data": [0, 182, 765, 453, 631, 596, 807, 534, 818, 1652, 1268, 751]}, {"label": "activite-et-travail", "backgroundColor": "rgb(234,187,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4]}, {"label": "agenda", "backgroundColor": "rgb(178,142,163)", "data": [111, 16, 4, 5, 7, 43, 45, 30, 72, 69, 65, 33]}, {"label": "algoculture", "backgroundColor": "rgb(115,178,73)", "data": [0, 0, 0, 0, 0, 191, 788, 34, 0, 0, 11, 15]}, {"label": "animation-crapauds", "backgroundColor": "rgb(195,56,93)", "data": [0, 0, 0, 0, 11, 64, 144, 0, 49, 234, 409, 332]}, {"label": "aquaponie", "backgroundColor": "rgb(97,100,140)", "data": [0, 0, 0, 0, 0, 0, 63, 58, 2, 3, 5, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(45,86,244)", "data": [0, 0, 0, 34, 221, 3, 17, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(147,120,159)", "data": [0, 0, 0, 0, 0, 0, 403, 198, 23, 22, 0, 8]}, {"label": "avoirouetre", "backgroundColor": "rgb(250,136,225)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(37,235,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0]}, {"label": "bresil", "backgroundColor": "rgb(193,203,109)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 156]}, {"label": "burn-out", "backgroundColor": "rgb(136,118,40)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0]}, {"label": "caballarius", "backgroundColor": "rgb(213,195,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(4,136,205)", "data": [0, 0, 54, 31, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(103,136,164)", "data": [171, 58, 0, 0, 0, 0, 16, 16, 2, 2, 0, 16]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(230,40,227)", "data": [176, 53, 43, 17, 70, 14, 19, 1, 9, 7, 26, 51]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(172,75,28)", "data": [4, 3, 18, 3, 3, 0, 1, 1, 0, 208, 18, 20]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(48,199,135)", "data": [20, 39, 250, 4, 3, 46, 6, 8, 11, 55, 6, 195]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(21,0,205)", "data": [25, 54, 7, 5, 85, 2, 5, 1, 4, 3, 0, 87]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(83,145,7)", "data": [1, 5, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(109,103,223)", "data": [12, 210, 182, 53, 314, 309, 122, 111, 60, 149, 131, 92]}, {"label": "cercle-education", "backgroundColor": "rgb(229,72,232)", "data": [437, 110, 236, 58, 600, 331, 303, 72, 264, 630, 397, 54]}, {"label": "cercle-electronique", "backgroundColor": "rgb(147,185,234)", "data": [0, 0, 1, 14, 16, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(21,29,224)", "data": [16, 17, 0, 0, 9, 0, 0, 15, 0, 3, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(141,242,168)", "data": [1, 3, 46, 0, 0, 0, 4, 0, 12, 2, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(41,193,192)", "data": [0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(20,165,6)", "data": [7, 23, 0, 6, 2, 6, 171, 8, 97, 11, 2, 4]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(156,221,42)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(145,246,153)", "data": [160, 21, 0, 0, 0, 0, 23, 0, 1, 0, 18, 4]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(224,42,142)", "data": [813, 548, 591, 19, 276, 622, 264, 26, 310, 786, 517, 66]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(216,40,208)", "data": [101, 165, 25, 0, 38, 316, 121, 40, 43, 112, 106, 73]}, {"label": "cercle-sante", "backgroundColor": "rgb(67,73,251)", "data": [56, 420, 121, 38, 65, 68, 116, 87, 83, 71, 16, 46]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(164,64,162)", "data": [9, 35, 56, 2, 1, 1, 6, 0, 26, 0, 1, 6]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(26,13,129)", "data": [581, 403, 151, 68, 90, 32, 76, 119, 14, 46, 158, 52]}, {"label": "chanvre", "backgroundColor": "rgb(153,226,100)", "data": [0, 0, 0, 35, 0, 2, 6, 0, 5, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(57,90,60)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(42,43,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(137,152,59)", "data": [0, 19, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(51,108,161)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 9, 15, 2, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(49,196,182)", "data": [4, 0, 2, 0, 217, 76, 29, 138, 82, 65, 102, 118]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(2,42,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(223,112,158)", "data": [0, 4, 6, 1, 2, 0, 5, 0, 0, 11, 17, 2]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(249,213,48)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(105,82,42)", "data": [30, 67, 2, 6, 10, 1, 7, 6, 8, 104, 166, 76]}, {"label": "cohorte-centre", "backgroundColor": "rgb(168,109,18)", "data": [0, 5, 5, 1, 2, 0, 0, 0, 6, 2, 7, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(119,156,178)", "data": [1, 6, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(24,179,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 26, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(226,209,99)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(101,102,129)", "data": [0, 9, 1, 0, 16, 22, 54, 37, 12, 9, 4, 26]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(175,210,93)", "data": [8, 0, 16, 14, 64, 167, 51, 48, 116, 185, 254, 115]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(172,15,101)", "data": [0, 0, 0, 60, 22, 0, 0, 2, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(23,29,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 793, 232]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(248,224,125)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(163,144,234)", "data": [1, 0, 4, 2, 1, 0, 0, 1, 1, 1, 6, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(155,206,175)", "data": [8, 13, 1, 0, 14, 3, 8, 5, 29, 6, 20, 23]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(28,218,242)", "data": [53, 6, 2, 6, 30, 0, 17, 13, 23, 35, 0, 1]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(10,119,105)", "data": [6, 1, 0, 0, 32, 2, 2, 0, 0, 2, 23, 5]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(244,32,82)", "data": [2, 11, 4, 3, 12, 15, 46, 103, 5, 20, 15, 4]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(41,61,89)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(129,157,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 75, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(9,112,33)", "data": [54, 24, 10, 2, 3, 68, 0, 0, 2, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(196,67,49)", "data": [21, 1, 0, 12, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(114,147,185)", "data": [0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(213,215,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(61,194,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(132,235,56)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 2, 23, 4, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(190,2,164)", "data": [0, 0, 0, 0, 0, 0, 0, 290, 96, 17, 65, 6]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(215,186,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 42]}, {"label": "developpement-personnel", "backgroundColor": "rgb(202,232,25)", "data": [0, 0, 0, 0, 0, 0, 0, 70, 23, 4, 32, 158]}, {"label": "doughnut-economics", "backgroundColor": "rgb(207,182,190)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 125, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(209,12,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 24, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(70,108,9)", "data": [4, 86, 5, 831, 233, 10, 73, 149, 60, 15, 81, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(37,87,39)", "data": [0, 0, 0, 0, 0, 140, 80, 7, 214, 72, 12, 72]}, {"label": "education-populaire", "backgroundColor": "rgb(81,19,200)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 7, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(233,216,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 82, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(12,132,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48]}, {"label": "empowerment", "backgroundColor": "rgb(119,213,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 191]}, {"label": "energie", "backgroundColor": "rgb(98,94,125)", "data": [1, 1, 0, 51, 30, 0, 3, 2, 9, 68, 54, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(225,30,203)", "data": [0, 0, 374, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(2,79,211)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(245,98,202)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(24,178,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0]}, {"label": "essaimage", "backgroundColor": "rgb(201,6,183)", "data": [0, 0, 206, 9, 8, 0, 2, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(5,240,92)", "data": [0, 0, 0, 15, 4, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(248,46,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(4,81,2)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(95,3,207)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(173,33,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 2]}, {"label": "fou-a-lier", "backgroundColor": "rgb(118,104,144)", "data": [5, 11, 1, 46, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(165,40,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(74,148,146)", "data": [1704, 894, 2508, 701, 674, 1078, 1425, 646, 574, 818, 687, 1273]}, {"label": "geopolitique", "backgroundColor": "rgb(153,95,235)", "data": [97, 1, 0, 0, 35, 134, 7, 2, 0, 0, 23, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(33,80,9)", "data": [10, 1, 11, 0, 2, 47, 0, 3, 2, 1, 44, 13]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(18,37,252)", "data": [0, 0, 652, 3856, 4901, 1073, 1123, 1467, 517, 446, 197, 6]}, {"label": "godelescherbach", "backgroundColor": "rgb(176,252,138)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(250,197,191)", "data": [19, 2, 1, 3, 0, 0, 0, 13, 5, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(127,95,177)", "data": [4, 5, 4, 5, 3, 0, 0, 0, 9, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(219,112,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(28,91,135)", "data": [0, 0, 92, 37, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(95,251,42)", "data": [0, 0, 0, 0, 23, 71, 39, 0, 0, 9, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(56,114,15)", "data": [47, 60, 192, 449, 18, 4, 3, 22, 21, 150, 46, 2]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(183,202,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137]}, {"label": "impression-3d", "backgroundColor": "rgb(56,153,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 17, 10, 10, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(213,233,174)", "data": [95, 29, 38, 4, 10, 1, 3, 1, 10, 9, 108, 1]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(179,4,214)", "data": [15, 1, 54, 12, 145, 121, 11, 6, 13, 113, 47, 9]}, {"label": "intelligence-collective", "backgroundColor": "rgb(187,68,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(140,31,192)", "data": [0, 0, 0, 0, 21, 3, 6, 0, 0, 0, 24, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(80,86,186)", "data": [0, 0, 0, 0, 0, 0, 2423, 392, 13, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(237,73,103)", "data": [0, 0, 0, 0, 0, 0, 0, 106, 165, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(139,75,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 522, 176, 12]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(253,223,67)", "data": [0, 0, 0, 0, 0, 0, 195, 117, 13, 75, 395, 49]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(98,65,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(169,136,100)", "data": [0, 0, 0, 0, 0, 136, 272, 13, 60, 96, 139, 39]}, {"label": "le-led", "backgroundColor": "rgb(28,58,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 281, 297, 116]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(122,170,160)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 93, 1, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(154,207,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 56, 96, 64, 102]}, {"label": "libre", "backgroundColor": "rgb(183,180,54)", "data": [30, 1259, 0, 8, 0, 0, 1016, 19, 12, 107, 11, 597]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(191,113,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 6, 18, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(61,39,223)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(110,123,155)", "data": [5, 152, 10, 0, 6, 177, 5, 0, 15, 98, 4, 21]}, {"label": "lucarn", "backgroundColor": "rgb(45,22,109)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 297]}, {"label": "manuel-terrien", "backgroundColor": "rgb(141,44,171)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(35,247,187)", "data": [0, 0, 0, 0, 0, 0, 8, 122, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(227,19,21)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25]}, {"label": "medusa", "backgroundColor": "rgb(216,244,154)", "data": [178, 8, 5, 0, 0, 0, 0, 0, 0, 5, 3, 0]}, {"label": "meta", "backgroundColor": "rgb(94,88,58)", "data": [0, 0, 0, 3, 11, 221, 95, 0, 0, 1, 201, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(109,116,59)", "data": [0, 49, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(116,123,150)", "data": [0, 11, 2, 4, 0, 2, 0, 0, 3, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(37,187,185)", "data": [1053, 30, 617, 3, 95, 10, 1, 38, 18, 0, 6, 1]}, {"label": "myhappy", "backgroundColor": "rgb(87,145,230)", "data": [38, 105, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(252,72,28)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(130,17,163)", "data": [0, 0, 0, 0, 492, 185, 243, 116, 0, 36, 3, 10]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(160,101,31)", "data": [0, 0, 0, 0, 212, 11, 39, 3, 0, 1, 7, 7]}, {"label": "no-gafam", "backgroundColor": "rgb(137,188,36)", "data": [254, 72, 297, 75, 47, 212, 298, 137, 39, 84, 86, 211]}, {"label": "open-hardware", "backgroundColor": "rgb(95,203,146)", "data": [0, 0, 0, 18, 10, 0, 1, 0, 101, 75, 217, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(104,74,49)", "data": [0, 0, 0, 0, 0, 0, 198, 612, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(191,250,22)", "data": [0, 0, 0, 0, 24, 5, 1, 4, 0, 9, 1, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(219,101,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 61, 31]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(1,176,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(136,65,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 1]}, {"label": "philosophie", "backgroundColor": "rgb(40,117,15)", "data": [6, 186, 293, 1, 43, 401, 21, 82, 174, 10, 1, 7]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(135,238,85)", "data": [0, 0, 0, 0, 147, 73, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,69,232)", "data": [38, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(198,39,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(67,106,198)", "data": [786, 75, 144, 0, 76, 144, 25, 93, 94, 101, 170, 11]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(161,1,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(38,31,2)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(52,90,217)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 151]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(28,33,155)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(111,33,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(7,86,128)", "data": [3, 83, 132, 25, 206, 75, 35, 14, 9, 18, 413, 62]}, {"label": "pub-canaux", "backgroundColor": "rgb(58,74,139)", "data": [0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(6,34,189)", "data": [0, 0, 0, 0, 0, 0, 26, 142, 63, 39, 23, 106]}, {"label": "recherches-biologie", "backgroundColor": "rgb(252,54,42)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 14, 15, 1, 4]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(238,86,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 39, 5]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(165,211,225)", "data": [244, 77, 1082, 233, 254, 84, 396, 12, 24, 680, 144, 408]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(144,19,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(47,133,7)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 20, 256, 151, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(66,244,240)", "data": [0, 0, 0, 0, 520, 2, 5, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(89,78,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 255, 82, 87, 609]}, {"label": "selfishgene", "backgroundColor": "rgb(26,228,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(92,59,155)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 2421, 1391]}, {"label": "siteweb", "backgroundColor": "rgb(117,78,46)", "data": [11, 4, 20, 60, 5, 7, 184, 5, 11, 27, 6, 97]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(80,86,18)", "data": [144, 153, 129, 19, 7, 177, 79, 14, 5, 86, 82, 15]}, {"label": "solucracy", "backgroundColor": "rgb(80,81,185)", "data": [0, 0, 235, 2367, 71, 79, 139, 103, 128, 109, 56, 109]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(106,6,39)", "data": [0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(26,46,111)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(186,152,113)", "data": [20, 0, 0, 77, 0, 1, 10, 0, 0, 0, 64, 5]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(146,170,68)", "data": [87, 121, 2, 81, 145, 75, 107, 16, 0, 21, 0, 46]}, {"label": "techos", "backgroundColor": "rgb(249,216,9)", "data": [23, 170, 228, 643, 287, 87, 200, 297, 206, 282, 238, 787]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(29,229,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 208]}, {"label": "testbot", "backgroundColor": "rgb(75,225,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(173,74,171)", "data": [8, 124, 141, 61, 262, 481, 1229, 313, 549, 283, 215, 19]}, {"label": "tour-du-monde", "backgroundColor": "rgb(107,188,1)", "data": [0, 0, 0, 0, 0, 64, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(48,231,107)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 50, 2, 57, 0]}, {"label": "transport", "backgroundColor": "rgb(247,127,44)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(164,150,254)", "data": [37, 2, 5, 0, 22, 2, 4, 34, 39, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(93,200,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 44, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(130,143,209)", "data": [18, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(228,244,47)", "data": [0, 0, 0, 0, 0, 0, 43, 14, 1, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(233,36,80)", "data": [3, 0, 7, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(26,123,146)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 355, 172]}, {"label": "zero-dechet", "backgroundColor": "rgb(133,118,44)", "data": [82, 33, 145, 100, 79, 3, 114, 10, 66, 18, 66, 16]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(9,160,224)", "data": [0, 755, 5, 0, 219, 73, 17, 1, 0, 10, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(246,108,124)", "data": [0, 18, 46, 37, 56, 51, 53, 55, 59, 96, 79, 55]}, {"label": "activite-et-travail", "backgroundColor": "rgb(234,187,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3]}, {"label": "agenda", "backgroundColor": "rgb(178,142,163)", "data": [15, 8, 2, 4, 4, 12, 11, 9, 14, 14, 12, 9]}, {"label": "algoculture", "backgroundColor": "rgb(115,178,73)", "data": [0, 0, 0, 0, 0, 6, 10, 4, 0, 0, 3, 2]}, {"label": "animation-crapauds", "backgroundColor": "rgb(195,56,93)", "data": [0, 0, 0, 0, 3, 5, 8, 0, 5, 7, 11, 10]}, {"label": "aquaponie", "backgroundColor": "rgb(97,100,140)", "data": [0, 0, 0, 0, 0, 0, 6, 7, 1, 2, 2, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(45,86,244)", "data": [0, 0, 0, 8, 8, 2, 5, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(147,120,159)", "data": [0, 0, 0, 0, 0, 0, 8, 9, 7, 4, 0, 3]}, {"label": "avoirouetre", "backgroundColor": "rgb(250,136,225)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(37,235,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "bresil", "backgroundColor": "rgb(193,203,109)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "burn-out", "backgroundColor": "rgb(136,118,40)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0]}, {"label": "caballarius", "backgroundColor": "rgb(213,195,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(4,136,205)", "data": [0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(103,136,164)", "data": [9, 6, 0, 0, 0, 0, 5, 2, 1, 1, 0, 4]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(230,40,227)", "data": [11, 9, 10, 6, 7, 3, 3, 1, 4, 5, 7, 4]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(172,75,28)", "data": [2, 2, 3, 3, 3, 0, 1, 1, 0, 10, 5, 6]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(48,199,135)", "data": [7, 5, 8, 2, 3, 5, 3, 2, 4, 9, 2, 7]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(21,0,205)", "data": [6, 8, 4, 3, 13, 2, 3, 1, 2, 3, 0, 2]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(83,145,7)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(109,103,223)", "data": [5, 11, 13, 11, 16, 9, 11, 10, 9, 12, 14, 12]}, {"label": "cercle-education", "backgroundColor": "rgb(229,72,232)", "data": [18, 9, 16, 11, 18, 20, 13, 11, 15, 17, 19, 14]}, {"label": "cercle-electronique", "backgroundColor": "rgb(147,185,234)", "data": [0, 0, 1, 3, 3, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(21,29,224)", "data": [4, 6, 0, 0, 2, 0, 0, 3, 0, 1, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(141,242,168)", "data": [1, 1, 4, 0, 0, 0, 2, 0, 4, 1, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(41,193,192)", "data": [0, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(20,165,6)", "data": [2, 2, 0, 2, 1, 3, 9, 5, 7, 5, 1, 3]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(156,221,42)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(145,246,153)", "data": [9, 3, 0, 0, 0, 0, 6, 0, 1, 0, 5, 3]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(224,42,142)", "data": [16, 16, 14, 5, 16, 15, 12, 6, 10, 16, 14, 7]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(216,40,208)", "data": [15, 16, 7, 0, 10, 16, 16, 8, 11, 11, 15, 12]}, {"label": "cercle-sante", "backgroundColor": "rgb(67,73,251)", "data": [5, 12, 7, 6, 6, 8, 6, 9, 7, 10, 3, 7]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(164,64,162)", "data": [5, 7, 6, 2, 1, 1, 2, 0, 4, 0, 1, 3]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(26,13,129)", "data": [15, 15, 11, 10, 10, 6, 13, 10, 9, 10, 13, 5]}, {"label": "chanvre", "backgroundColor": "rgb(153,226,100)", "data": [0, 0, 0, 3, 0, 2, 2, 0, 1, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(57,90,60)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(42,43,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(137,152,59)", "data": [0, 4, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(51,108,161)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 5, 3, 1, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(49,196,182)", "data": [2, 0, 2, 0, 14, 11, 5, 10, 10, 11, 13, 9]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(2,42,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(223,112,158)", "data": [0, 3, 2, 1, 1, 0, 2, 0, 0, 5, 3, 2]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(249,213,48)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(105,82,42)", "data": [5, 7, 2, 3, 4, 1, 2, 5, 2, 7, 8, 10]}, {"label": "cohorte-centre", "backgroundColor": "rgb(168,109,18)", "data": [0, 2, 2, 1, 1, 0, 0, 0, 1, 1, 3, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(119,156,178)", "data": [1, 2, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(24,179,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(226,209,99)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(101,102,129)", "data": [0, 2, 1, 0, 5, 3, 5, 6, 3, 5, 3, 5]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(175,210,93)", "data": [3, 0, 4, 6, 8, 10, 9, 5, 8, 16, 20, 10]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(172,15,101)", "data": [0, 0, 0, 6, 3, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(23,29,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 12]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(248,224,125)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(163,144,234)", "data": [1, 0, 2, 2, 1, 0, 0, 1, 1, 1, 2, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(155,206,175)", "data": [4, 5, 1, 0, 6, 2, 2, 3, 3, 4, 7, 6]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(28,218,242)", "data": [7, 2, 2, 3, 6, 0, 3, 2, 6, 8, 0, 1]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(10,119,105)", "data": [2, 1, 0, 0, 4, 1, 2, 0, 0, 2, 4, 3]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(244,32,82)", "data": [2, 3, 1, 1, 4, 2, 5, 5, 3, 7, 5, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(41,61,89)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(129,157,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(9,112,33)", "data": [8, 5, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(196,67,49)", "data": [3, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(114,147,185)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(213,215,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(61,194,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(132,235,56)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 1, 6, 3, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(190,2,164)", "data": [0, 0, 0, 0, 0, 0, 0, 12, 10, 7, 5, 4]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(215,186,102)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5]}, {"label": "developpement-personnel", "backgroundColor": "rgb(202,232,25)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 5, 3, 6, 7]}, {"label": "doughnut-economics", "backgroundColor": "rgb(207,182,190)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(209,12,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(70,108,9)", "data": [2, 4, 3, 9, 13, 4, 9, 11, 9, 5, 6, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(37,87,39)", "data": [0, 0, 0, 0, 0, 9, 11, 3, 13, 13, 6, 13]}, {"label": "education-populaire", "backgroundColor": "rgb(81,19,200)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(233,216,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(12,132,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6]}, {"label": "empowerment", "backgroundColor": "rgb(119,213,45)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6]}, {"label": "energie", "backgroundColor": "rgb(98,94,125)", "data": [1, 1, 0, 6, 4, 0, 1, 2, 3, 6, 7, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(225,30,203)", "data": [0, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(2,79,211)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(245,98,202)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(24,178,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0]}, {"label": "essaimage", "backgroundColor": "rgb(201,6,183)", "data": [0, 0, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(5,240,92)", "data": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(248,46,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(4,81,2)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(95,3,207)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(173,33,199)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]}, {"label": "fou-a-lier", "backgroundColor": "rgb(118,104,144)", "data": [3, 4, 1, 7, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(165,40,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(74,148,146)", "data": [72, 46, 50, 48, 37, 42, 49, 36, 36, 40, 43, 38]}, {"label": "geopolitique", "backgroundColor": "rgb(153,95,235)", "data": [6, 1, 0, 0, 5, 6, 3, 2, 0, 0, 4, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(33,80,9)", "data": [2, 1, 4, 0, 2, 4, 0, 1, 2, 1, 3, 3]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(18,37,252)", "data": [0, 0, 14, 25, 27, 26, 23, 21, 14, 16, 13, 5]}, {"label": "godelescherbach", "backgroundColor": "rgb(176,252,138)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(250,197,191)", "data": [7, 2, 1, 2, 0, 0, 0, 3, 2, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(127,95,177)", "data": [3, 3, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(219,112,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(28,91,135)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(95,251,42)", "data": [0, 0, 0, 0, 3, 8, 3, 0, 0, 2, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(56,114,15)", "data": [9, 8, 13, 14, 5, 3, 3, 4, 7, 12, 10, 1]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(183,202,209)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "impression-3d", "backgroundColor": "rgb(56,153,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(213,233,174)", "data": [9, 7, 4, 3, 5, 1, 2, 1, 4, 5, 3, 1]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(179,4,214)", "data": [2, 1, 8, 7, 9, 8, 5, 3, 8, 9, 10, 4]}, {"label": "intelligence-collective", "backgroundColor": "rgb(187,68,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(140,31,192)", "data": [0, 0, 0, 0, 5, 2, 2, 0, 0, 0, 3, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(80,86,186)", "data": [0, 0, 0, 0, 0, 0, 30, 16, 8, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(237,73,103)", "data": [0, 0, 0, 0, 0, 0, 0, 9, 14, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(139,75,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 11, 6]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(253,223,67)", "data": [0, 0, 0, 0, 0, 0, 13, 11, 7, 10, 16, 8]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(98,65,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(169,136,100)", "data": [0, 0, 0, 0, 0, 6, 9, 4, 8, 8, 8, 7]}, {"label": "le-led", "backgroundColor": "rgb(28,58,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 10, 10]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(122,170,160)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(154,207,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 7, 7]}, {"label": "libre", "backgroundColor": "rgb(183,180,54)", "data": [5, 14, 0, 3, 0, 0, 10, 3, 4, 10, 6, 12]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(191,113,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(61,39,223)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(110,123,155)", "data": [2, 2, 3, 0, 3, 4, 2, 0, 4, 8, 2, 4]}, {"label": "lucarn", "backgroundColor": "rgb(45,22,109)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10]}, {"label": "manuel-terrien", "backgroundColor": "rgb(141,44,171)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(35,247,187)", "data": [0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(227,19,21)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3]}, {"label": "medusa", "backgroundColor": "rgb(216,244,154)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 3, 2, 0]}, {"label": "meta", "backgroundColor": "rgb(94,88,58)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 1, 9, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(109,116,59)", "data": [0, 5, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(116,123,150)", "data": [0, 4, 1, 2, 0, 2, 0, 0, 2, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(37,187,185)", "data": [19, 6, 11, 2, 6, 3, 1, 6, 4, 0, 4, 1]}, {"label": "myhappy", "backgroundColor": "rgb(87,145,230)", "data": [4, 7, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(252,72,28)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(130,17,163)", "data": [0, 0, 0, 0, 11, 10, 10, 7, 0, 3, 2, 2]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(160,101,31)", "data": [0, 0, 0, 0, 8, 5, 5, 2, 0, 1, 3, 2]}, {"label": "no-gafam", "backgroundColor": "rgb(137,188,36)", "data": [8, 12, 9, 13, 10, 10, 15, 11, 7, 13, 10, 14]}, {"label": "open-hardware", "backgroundColor": "rgb(95,203,146)", "data": [0, 0, 0, 2, 2, 0, 1, 0, 4, 6, 8, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(104,74,49)", "data": [0, 0, 0, 0, 0, 0, 6, 10, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(191,250,22)", "data": [0, 0, 0, 0, 8, 3, 1, 2, 0, 2, 1, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(219,101,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 3]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(1,176,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(136,65,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1]}, {"label": "philosophie", "backgroundColor": "rgb(40,117,15)", "data": [4, 9, 9, 1, 4, 11, 6, 6, 8, 4, 1, 2]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(135,238,85)", "data": [0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,69,232)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(198,39,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(67,106,198)", "data": [17, 8, 4, 0, 10, 12, 8, 7, 11, 10, 12, 6]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(161,1,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(38,31,2)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(52,90,217)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(28,33,155)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(111,33,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(7,86,128)", "data": [3, 8, 7, 4, 7, 8, 5, 3, 2, 3, 11, 5]}, {"label": "pub-canaux", "backgroundColor": "rgb(58,74,139)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(6,34,189)", "data": [0, 0, 0, 0, 0, 0, 9, 9, 9, 7, 7, 4]}, {"label": "recherches-biologie", "backgroundColor": "rgb(252,54,42)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 5, 1, 2]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(238,86,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 9, 2]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(165,211,225)", "data": [15, 5, 19, 16, 17, 10, 18, 5, 5, 18, 15, 20]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(144,19,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(47,133,7)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 16, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(66,244,240)", "data": [0, 0, 0, 0, 10, 1, 3, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(89,78,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 12, 13]}, {"label": "selfishgene", "backgroundColor": "rgb(26,228,249)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(92,59,155)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 21, 23]}, {"label": "siteweb", "backgroundColor": "rgb(117,78,46)", "data": [1, 1, 2, 3, 1, 1, 4, 2, 1, 1, 1, 4]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(80,86,18)", "data": [11, 10, 6, 6, 4, 12, 9, 7, 4, 9, 11, 6]}, {"label": "solucracy", "backgroundColor": "rgb(80,81,185)", "data": [0, 0, 7, 18, 10, 11, 12, 9, 12, 10, 12, 9]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(106,6,39)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(26,46,111)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(186,152,113)", "data": [5, 0, 0, 12, 0, 1, 3, 0, 0, 0, 9, 3]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(146,170,68)", "data": [5, 9, 2, 10, 10, 10, 5, 5, 0, 5, 0, 5]}, {"label": "techos", "backgroundColor": "rgb(249,216,9)", "data": [6, 11, 10, 14, 9, 11, 12, 12, 16, 17, 14, 18]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(29,229,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8]}, {"label": "testbot", "backgroundColor": "rgb(75,225,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(173,74,171)", "data": [4, 8, 9, 6, 11, 17, 22, 14, 20, 15, 17, 6]}, {"label": "tour-du-monde", "backgroundColor": "rgb(107,188,1)", "data": [0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(48,231,107)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 4, 1, 3, 0]}, {"label": "transport", "backgroundColor": "rgb(247,127,44)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(164,150,254)", "data": [4, 1, 3, 0, 5, 1, 2, 6, 5, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(93,200,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(130,143,209)", "data": [4, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(228,244,47)", "data": [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(233,36,80)", "data": [3, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(26,123,146)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 10]}, {"label": "zero-dechet", "backgroundColor": "rgb(133,118,44)", "data": [9, 7, 10, 9, 9, 3, 11, 2, 4, 5, 5, 5]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(9,160,224)", "data": [0, 14, 4, 0, 3, 7, 4, 1, 0, 2, 0, 0]}], "messagesByTsunamy": [{"label": "global", "backgroundColor": "rgb(235,21,169)", "data": [8579, 7153, 10287, 10850, 12429, 8530, 14134, 7260, 6295, 11831, 13420, 11639]}, {"label": "project", "backgroundColor": "rgb(28,67,25)", "data": [1342, 296, 1324, 2485, 962, 642, 3851, 982, 1054, 1922, 3359, 3124]}, {"label": "democratie", "backgroundColor": "rgb(225,120,229)", "data": [2953, 2314, 4023, 7547, 7010, 3219, 2726, 2643, 1468, 2515, 2058, 1076]}, {"label": "ecologie", "backgroundColor": "rgb(246,15,90)", "data": [1773, 1238, 1058, 528, 734, 993, 1467, 407, 631, 914, 3602, 1945]}, {"label": "technologie", "backgroundColor": "rgb(203,245,37)", "data": [412, 409, 668, 704, 586, 681, 1189, 1014, 491, 1293, 948, 1091]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [89, 79, 91, 89, 95, 95, 100, 93, 101, 137, 123, 97]}]} \ No newline at end of file +{"updated": "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(174,204,18)", "data": [0, 237, 810, 401, 609, 656, 795, 479, 980, 1542, 1229, 777]}, {"label": "activite-et-travail", "backgroundColor": "rgb(218,134,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4]}, {"label": "agenda", "backgroundColor": "rgb(166,172,121)", "data": [105, 15, 5, 10, 2, 42, 45, 30, 72, 70, 64, 56]}, {"label": "algoculture", "backgroundColor": "rgb(143,83,234)", "data": [0, 0, 0, 0, 0, 257, 722, 34, 0, 0, 11, 15]}, {"label": "animation-crapauds", "backgroundColor": "rgb(203,8,8)", "data": [0, 0, 0, 0, 11, 69, 139, 0, 49, 234, 412, 329]}, {"label": "aquaponie", "backgroundColor": "rgb(240,107,7)", "data": [0, 0, 0, 0, 0, 0, 94, 27, 2, 3, 5, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(1,240,234)", "data": [0, 0, 0, 34, 221, 4, 16, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(15,6,253)", "data": [0, 0, 0, 0, 0, 0, 415, 189, 20, 22, 0, 8]}, {"label": "avoirouetre", "backgroundColor": "rgb(145,61,218)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(52,97,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0]}, {"label": "bresil", "backgroundColor": "rgb(67,3,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 149]}, {"label": "burn-out", "backgroundColor": "rgb(79,86,33)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0]}, {"label": "caballarius", "backgroundColor": "rgb(245,23,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(59,55,94)", "data": [0, 0, 54, 31, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(217,212,121)", "data": [173, 56, 0, 0, 0, 0, 26, 6, 2, 2, 0, 16]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(213,154,87)", "data": [220, 9, 49, 11, 70, 14, 19, 1, 10, 6, 26, 51]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(190,132,193)", "data": [4, 3, 18, 5, 1, 0, 1, 1, 0, 210, 16, 20]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(66,81,103)", "data": [20, 39, 250, 4, 3, 46, 8, 6, 11, 55, 6, 195]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(62,166,47)", "data": [26, 60, 1, 34, 55, 2, 5, 1, 4, 3, 0, 87]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(196,7,79)", "data": [1, 5, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(133,189,200)", "data": [21, 201, 188, 47, 348, 275, 207, 31, 55, 151, 174, 49]}, {"label": "cercle-education", "backgroundColor": "rgb(111,176,78)", "data": [429, 111, 235, 58, 607, 324, 304, 75, 494, 403, 395, 50]}, {"label": "cercle-electronique", "backgroundColor": "rgb(9,139,179)", "data": [0, 1, 0, 14, 16, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(174,132,238)", "data": [18, 15, 0, 0, 9, 0, 0, 15, 0, 3, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(219,39,55)", "data": [1, 3, 46, 0, 0, 0, 4, 0, 12, 2, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(125,198,161)", "data": [0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(104,84,121)", "data": [7, 23, 0, 6, 2, 6, 171, 8, 99, 9, 2, 9]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(137,229,8)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(231,115,190)", "data": [160, 21, 0, 0, 0, 3, 20, 0, 1, 0, 18, 4]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(48,215,27)", "data": [989, 393, 568, 19, 276, 622, 276, 14, 317, 796, 500, 69]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(189,188,106)", "data": [101, 162, 20, 0, 39, 341, 97, 38, 51, 105, 113, 74]}, {"label": "cercle-sante", "backgroundColor": "rgb(226,18,38)", "data": [56, 420, 122, 47, 56, 69, 169, 32, 85, 69, 16, 48]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(83,187,160)", "data": [7, 35, 56, 2, 1, 1, 6, 0, 26, 0, 1, 6]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(77,115,250)", "data": [568, 406, 147, 71, 87, 32, 151, 44, 14, 46, 158, 117]}, {"label": "chanvre", "backgroundColor": "rgb(216,37,190)", "data": [0, 0, 0, 35, 0, 2, 6, 0, 5, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(4,160,231)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(194,227,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(157,82,136)", "data": [0, 19, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(181,76,21)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 14, 10, 2, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(155,109,236)", "data": [4, 0, 2, 2, 228, 66, 57, 107, 82, 66, 102, 119]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(210,55,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(57,171,148)", "data": [0, 4, 6, 2, 1, 0, 5, 0, 0, 12, 16, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(104,107,68)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(10,193,9)", "data": [55, 42, 2, 6, 10, 1, 7, 6, 76, 40, 162, 77]}, {"label": "cohorte-centre", "backgroundColor": "rgb(214,82,239)", "data": [0, 5, 6, 0, 2, 0, 0, 0, 6, 2, 7, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(47,49,61)", "data": [1, 6, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(3,139,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 26, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(191,58,176)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(196,132,188)", "data": [7, 2, 1, 1, 15, 23, 65, 25, 13, 8, 4, 26]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(167,152,244)", "data": [4, 0, 24, 6, 64, 168, 50, 48, 133, 194, 228, 118]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(239,169,18)", "data": [0, 0, 0, 60, 22, 0, 2, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(50,77,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 793, 234]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(118,12,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(96,62,74)", "data": [1, 0, 6, 0, 1, 0, 0, 1, 1, 1, 6, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(78,137,128)", "data": [18, 3, 1, 0, 14, 3, 8, 5, 29, 7, 24, 21]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(151,158,44)", "data": [50, 4, 7, 5, 26, 0, 17, 13, 30, 28, 0, 5]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(183,47,7)", "data": [6, 1, 0, 1, 31, 2, 2, 0, 0, 2, 24, 5]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(214,61,8)", "data": [6, 7, 4, 3, 13, 16, 46, 101, 5, 20, 15, 6]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(33,79,162)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(6,16,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 75, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(250,191,216)", "data": [70, 9, 9, 2, 3, 68, 0, 0, 2, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(164,216,249)", "data": [21, 1, 0, 12, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(67,239,33)", "data": [0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(55,225,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(38,13,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(103,10,71)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 2, 24, 3, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(235,128,129)", "data": [0, 0, 0, 0, 0, 0, 79, 235, 73, 16, 65, 14]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(16,10,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 11]}, {"label": "developpement-personnel", "backgroundColor": "rgb(98,161,142)", "data": [0, 0, 0, 0, 0, 0, 0, 86, 7, 4, 32, 159]}, {"label": "doughnut-economics", "backgroundColor": "rgb(176,159,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 125, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(245,60,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 24, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(102,64,42)", "data": [4, 86, 5, 847, 218, 9, 73, 149, 63, 12, 81, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(143,120,254)", "data": [0, 0, 0, 0, 0, 140, 80, 81, 143, 69, 12, 111]}, {"label": "education-populaire", "backgroundColor": "rgb(246,140,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 109, 14, 7, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(137,198,21)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 76, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(46,170,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48]}, {"label": "empowerment", "backgroundColor": "rgb(32,1,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 0]}, {"label": "energie", "backgroundColor": "rgb(47,137,153)", "data": [1, 1, 0, 69, 12, 0, 3, 2, 13, 70, 48, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(165,173,73)", "data": [0, 341, 33, 0, 0, 0, 0, 0, 7, 9, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(247,113,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(72,121,139)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(51,178,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0]}, {"label": "essaimage", "backgroundColor": "rgb(75,90,117)", "data": [0, 0, 206, 9, 8, 0, 2, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(100,30,132)", "data": [0, 0, 10, 5, 4, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(195,128,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(132,163,165)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(67,121,215)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(195,109,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 15, 2]}, {"label": "fou-a-lier", "backgroundColor": "rgb(228,182,46)", "data": [16, 0, 1, 46, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(141,64,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(181,169,80)", "data": [1862, 750, 2647, 477, 692, 1193, 1339, 612, 588, 873, 618, 1282]}, {"label": "geopolitique", "backgroundColor": "rgb(73,122,243)", "data": [97, 1, 0, 0, 37, 132, 8, 1, 0, 1, 22, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(217,170,211)", "data": [10, 1, 11, 0, 2, 47, 0, 3, 2, 1, 44, 13]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(227,136,75)", "data": [0, 0, 875, 4162, 4552, 1085, 1011, 1569, 449, 347, 182, 8]}, {"label": "godelescherbach", "backgroundColor": "rgb(150,48,131)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(101,216,199)", "data": [19, 2, 1, 3, 0, 0, 0, 13, 5, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(9,167,141)", "data": [4, 5, 4, 5, 3, 0, 0, 0, 9, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(167,175,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(187,173,214)", "data": [0, 0, 95, 34, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(7,119,234)", "data": [0, 0, 0, 0, 30, 64, 39, 0, 0, 9, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(32,175,182)", "data": [47, 64, 352, 296, 10, 1, 3, 22, 21, 151, 45, 2]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(86,156,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137]}, {"label": "impression-3d", "backgroundColor": "rgb(252,225,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(115,235,240)", "data": [106, 55, 1, 4, 10, 1, 3, 1, 10, 9, 108, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(48,241,33)", "data": [16, 0, 54, 12, 178, 88, 11, 8, 11, 113, 50, 8]}, {"label": "intelligence-collective", "backgroundColor": "rgb(140,192,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(216,117,195)", "data": [0, 0, 0, 0, 23, 1, 6, 0, 0, 0, 24, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(183,140,182)", "data": [0, 0, 0, 0, 0, 0, 2550, 269, 9, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(187,164,204)", "data": [0, 0, 0, 0, 0, 0, 0, 121, 150, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(223,68,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 101, 468, 129, 12]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(137,153,33)", "data": [0, 0, 0, 0, 0, 0, 195, 117, 16, 73, 398, 47]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(80,210,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(71,215,133)", "data": [0, 0, 0, 0, 0, 136, 272, 21, 64, 84, 175, 3]}, {"label": "le-led", "backgroundColor": "rgb(36,62,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 306, 266, 116]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(60,149,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(225,108,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 58, 94, 74, 101]}, {"label": "libre", "backgroundColor": "rgb(8,233,105)", "data": [362, 927, 0, 8, 0, 0, 1016, 19, 15, 104, 12, 596]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(173,43,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(65,128,77)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(120,1,88)", "data": [157, 7, 3, 0, 6, 180, 2, 0, 15, 98, 4, 21]}, {"label": "lucarn", "backgroundColor": "rgb(208,147,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 325]}, {"label": "manuel-terrien", "backgroundColor": "rgb(19,76,171)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(132,15,249)", "data": [0, 0, 0, 0, 0, 0, 9, 121, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(148,39,214)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25]}, {"label": "medusa", "backgroundColor": "rgb(112,252,170)", "data": [176, 8, 5, 0, 0, 0, 0, 0, 0, 8, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(1,214,57)", "data": [0, 0, 0, 3, 16, 216, 95, 0, 0, 96, 106, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(223,236,87)", "data": [0, 49, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(118,69,170)", "data": [0, 11, 2, 4, 0, 2, 0, 0, 3, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(0,233,144)", "data": [1053, 30, 617, 3, 96, 10, 0, 40, 16, 0, 6, 1]}, {"label": "myhappy", "backgroundColor": "rgb(34,107,0)", "data": [38, 105, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(68,49,50)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(177,47,161)", "data": [0, 0, 0, 0, 526, 151, 256, 103, 0, 39, 0, 10]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(175,14,120)", "data": [0, 0, 0, 0, 212, 11, 39, 3, 0, 1, 7, 7]}, {"label": "no-gafam", "backgroundColor": "rgb(72,31,25)", "data": [249, 67, 297, 75, 47, 212, 306, 129, 40, 83, 86, 213]}, {"label": "open-hardware", "backgroundColor": "rgb(90,168,41)", "data": [0, 0, 0, 18, 10, 1, 0, 0, 101, 75, 217, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(244,64,152)", "data": [0, 0, 0, 0, 0, 0, 544, 266, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(39,146,62)", "data": [0, 0, 0, 0, 25, 4, 5, 0, 0, 10, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(136,180,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 35, 31]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(192,19,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(144,167,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(200,170,65)", "data": [127, 65, 293, 1, 43, 403, 19, 134, 122, 10, 1, 7]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(56,77,81)", "data": [0, 0, 0, 14, 133, 73, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,10,156)", "data": [38, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(234,219,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(53,184,148)", "data": [763, 78, 138, 0, 78, 142, 26, 94, 92, 109, 162, 11]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(225,222,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(250,245,160)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(72,143,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 154]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(118,124,238)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 13]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(33,62,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(164,67,231)", "data": [3, 101, 114, 30, 233, 43, 35, 14, 18, 9, 413, 62]}, {"label": "pub-canaux", "backgroundColor": "rgb(239,179,199)", "data": [0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(5,239,238)", "data": [0, 0, 0, 0, 0, 0, 137, 31, 63, 39, 23, 106]}, {"label": "recherches-biologie", "backgroundColor": "rgb(199,183,30)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 14, 15, 1, 4]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(13,229,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 2, 5]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(185,243,235)", "data": [244, 77, 1102, 323, 149, 79, 397, 11, 25, 679, 150, 402]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(68,14,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(247,191,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 183, 93, 151, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(213,236,62)", "data": [0, 0, 0, 0, 521, 1, 5, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(224,70,166)", "data": [0, 0, 0, 0, 0, 0, 0, 94, 162, 81, 90, 606]}, {"label": "selfishgene", "backgroundColor": "rgb(220,143,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(155,240,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 2683, 1159]}, {"label": "siteweb", "backgroundColor": "rgb(175,191,20)", "data": [12, 4, 65, 14, 5, 7, 188, 1, 13, 25, 6, 133]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(230,57,189)", "data": [144, 153, 130, 18, 7, 177, 80, 13, 5, 87, 89, 8]}, {"label": "solucracy", "backgroundColor": "rgb(165,226,81)", "data": [0, 0, 469, 2149, 56, 80, 153, 93, 122, 109, 56, 109]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(244,35,16)", "data": [0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(118,177,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(234,21,38)", "data": [20, 0, 0, 77, 1, 0, 10, 0, 0, 0, 68, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(159,29,145)", "data": [144, 64, 3, 80, 145, 75, 107, 16, 0, 21, 0, 46]}, {"label": "techos", "backgroundColor": "rgb(177,199,22)", "data": [32, 161, 231, 641, 327, 46, 205, 296, 202, 285, 236, 818]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(48,25,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 209]}, {"label": "testbot", "backgroundColor": "rgb(26,134,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(82,233,95)", "data": [4, 124, 141, 66, 273, 494, 1218, 314, 538, 289, 201, 19]}, {"label": "tour-du-monde", "backgroundColor": "rgb(18,28,105)", "data": [0, 0, 0, 0, 0, 64, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(237,67,95)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 50, 2, 57, 0]}, {"label": "transport", "backgroundColor": "rgb(227,100,61)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(245,157,38)", "data": [36, 2, 5, 0, 22, 2, 4, 34, 39, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(67,66,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 44, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(103,183,198)", "data": [18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(34,83,0)", "data": [0, 0, 0, 0, 0, 0, 43, 15, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(86,71,133)", "data": [3, 0, 7, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(65,92,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(99,254,107)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 418, 118]}, {"label": "zero-dechet", "backgroundColor": "rgb(206,53,49)", "data": [82, 33, 145, 116, 63, 3, 114, 10, 68, 59, 23, 16]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(161,136,149)", "data": [258, 497, 5, 0, 219, 73, 17, 1, 0, 10, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(174,204,18)", "data": [0, 20, 48, 34, 58, 52, 53, 53, 69, 90, 77, 55]}, {"label": "activite-et-travail", "backgroundColor": "rgb(218,134,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3]}, {"label": "agenda", "backgroundColor": "rgb(166,172,121)", "data": [15, 8, 3, 4, 2, 12, 11, 9, 14, 15, 12, 11]}, {"label": "algoculture", "backgroundColor": "rgb(143,83,234)", "data": [0, 0, 0, 0, 0, 6, 10, 4, 0, 0, 3, 2]}, {"label": "animation-crapauds", "backgroundColor": "rgb(203,8,8)", "data": [0, 0, 0, 0, 3, 5, 8, 0, 5, 7, 11, 10]}, {"label": "aquaponie", "backgroundColor": "rgb(240,107,7)", "data": [0, 0, 0, 0, 0, 0, 8, 4, 1, 2, 2, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(1,240,234)", "data": [0, 0, 0, 8, 8, 3, 5, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(15,6,253)", "data": [0, 0, 0, 0, 0, 0, 9, 9, 5, 4, 0, 3]}, {"label": "avoirouetre", "backgroundColor": "rgb(145,61,218)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(52,97,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "bresil", "backgroundColor": "rgb(67,3,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "burn-out", "backgroundColor": "rgb(79,86,33)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0]}, {"label": "caballarius", "backgroundColor": "rgb(245,23,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(59,55,94)", "data": [0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(217,212,121)", "data": [10, 6, 0, 0, 0, 0, 5, 1, 1, 1, 0, 4]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(213,154,87)", "data": [11, 7, 11, 4, 7, 3, 3, 1, 5, 4, 7, 4]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(190,132,193)", "data": [2, 2, 3, 3, 1, 0, 1, 1, 0, 10, 4, 6]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(66,81,103)", "data": [7, 5, 8, 2, 3, 5, 3, 2, 4, 9, 2, 7]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(62,166,47)", "data": [6, 9, 1, 7, 12, 2, 3, 1, 2, 3, 0, 2]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(196,7,79)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(133,189,200)", "data": [8, 8, 13, 11, 16, 7, 11, 9, 8, 13, 16, 8]}, {"label": "cercle-education", "backgroundColor": "rgb(111,176,78)", "data": [18, 10, 16, 11, 18, 20, 13, 11, 17, 16, 19, 14]}, {"label": "cercle-electronique", "backgroundColor": "rgb(9,139,179)", "data": [0, 1, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(174,132,238)", "data": [4, 6, 0, 0, 2, 0, 0, 3, 0, 1, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(219,39,55)", "data": [1, 1, 4, 0, 0, 0, 2, 0, 4, 1, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(125,198,161)", "data": [0, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(104,84,121)", "data": [2, 2, 0, 2, 1, 3, 9, 5, 7, 3, 1, 4]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(137,229,8)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(231,115,190)", "data": [9, 3, 0, 0, 0, 2, 5, 0, 1, 0, 5, 3]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(48,215,27)", "data": [17, 13, 14, 5, 16, 15, 12, 5, 10, 17, 13, 9]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(189,188,106)", "data": [16, 16, 6, 0, 10, 16, 15, 7, 13, 10, 15, 11]}, {"label": "cercle-sante", "backgroundColor": "rgb(226,18,38)", "data": [5, 12, 7, 6, 6, 8, 8, 6, 7, 9, 3, 7]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(83,187,160)", "data": [5, 7, 6, 2, 1, 1, 2, 0, 4, 0, 1, 3]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(77,115,250)", "data": [15, 14, 10, 11, 10, 6, 13, 10, 9, 10, 13, 8]}, {"label": "chanvre", "backgroundColor": "rgb(216,37,190)", "data": [0, 0, 0, 3, 0, 2, 2, 0, 1, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(4,160,231)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(194,227,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(157,82,136)", "data": [0, 4, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(181,76,21)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 6, 2, 1, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(155,109,236)", "data": [2, 0, 2, 2, 15, 11, 6, 9, 10, 11, 13, 9]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(210,55,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(57,171,148)", "data": [0, 3, 2, 1, 1, 0, 2, 0, 0, 5, 3, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(104,107,68)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(10,193,9)", "data": [7, 5, 2, 3, 4, 1, 2, 5, 5, 6, 8, 10]}, {"label": "cohorte-centre", "backgroundColor": "rgb(214,82,239)", "data": [0, 2, 3, 0, 1, 0, 0, 0, 1, 1, 3, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(47,49,61)", "data": [1, 2, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(3,139,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(191,58,176)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(196,132,188)", "data": [1, 1, 1, 1, 5, 3, 6, 6, 4, 4, 3, 5]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(167,152,244)", "data": [2, 0, 7, 3, 8, 10, 8, 5, 8, 18, 17, 10]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(239,169,18)", "data": [0, 0, 0, 6, 3, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(50,77,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 13]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(118,12,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(96,62,74)", "data": [1, 0, 3, 0, 1, 0, 0, 1, 1, 1, 2, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(78,137,128)", "data": [5, 2, 1, 0, 6, 2, 2, 3, 3, 5, 7, 6]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(151,158,44)", "data": [7, 2, 3, 3, 6, 0, 3, 2, 9, 6, 0, 2]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(183,47,7)", "data": [2, 1, 0, 1, 4, 1, 2, 0, 0, 2, 5, 3]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(214,61,8)", "data": [4, 3, 1, 1, 4, 4, 4, 5, 3, 7, 5, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(33,79,162)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(6,16,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(250,191,216)", "data": [9, 2, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(164,216,249)", "data": [3, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(67,239,33)", "data": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(55,225,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(38,13,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(103,10,71)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 1, 6, 2, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(235,128,129)", "data": [0, 0, 0, 0, 0, 0, 7, 11, 10, 7, 5, 5]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(16,10,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]}, {"label": "developpement-personnel", "backgroundColor": "rgb(98,161,142)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 6, 7]}, {"label": "doughnut-economics", "backgroundColor": "rgb(176,159,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(245,60,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(102,64,42)", "data": [2, 4, 3, 9, 13, 4, 9, 11, 9, 4, 6, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(143,120,254)", "data": [0, 0, 0, 0, 0, 9, 11, 7, 13, 11, 6, 13]}, {"label": "education-populaire", "backgroundColor": "rgb(246,140,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 6, 3, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(137,198,21)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(46,170,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6]}, {"label": "empowerment", "backgroundColor": "rgb(32,1,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]}, {"label": "energie", "backgroundColor": "rgb(47,137,153)", "data": [1, 1, 0, 7, 4, 0, 1, 2, 4, 5, 7, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(165,173,73)", "data": [0, 8, 3, 0, 0, 0, 0, 0, 3, 4, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(247,113,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(72,121,139)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(51,178,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0]}, {"label": "essaimage", "backgroundColor": "rgb(75,90,117)", "data": [0, 0, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(100,30,132)", "data": [0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(195,128,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(132,163,165)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(67,121,215)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(195,109,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 1]}, {"label": "fou-a-lier", "backgroundColor": "rgb(228,182,46)", "data": [5, 0, 1, 7, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(141,64,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(181,169,80)", "data": [79, 41, 55, 41, 38, 42, 49, 35, 39, 39, 42, 35]}, {"label": "geopolitique", "backgroundColor": "rgb(73,122,243)", "data": [6, 1, 0, 0, 5, 6, 3, 1, 0, 1, 4, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(217,170,211)", "data": [2, 1, 4, 0, 2, 4, 0, 1, 2, 1, 3, 3]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(227,136,75)", "data": [0, 0, 18, 25, 26, 26, 20, 22, 12, 16, 13, 6]}, {"label": "godelescherbach", "backgroundColor": "rgb(150,48,131)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(101,216,199)", "data": [7, 2, 1, 2, 0, 0, 0, 3, 2, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(9,167,141)", "data": [3, 3, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(167,175,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(187,173,214)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(7,119,234)", "data": [0, 0, 0, 0, 3, 7, 3, 0, 0, 2, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(32,175,182)", "data": [9, 10, 13, 13, 5, 1, 3, 4, 7, 13, 9, 1]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(86,156,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "impression-3d", "backgroundColor": "rgb(252,225,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(115,235,240)", "data": [9, 8, 1, 3, 5, 1, 2, 1, 4, 5, 3, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(48,241,33)", "data": [3, 0, 8, 7, 9, 8, 5, 4, 6, 9, 10, 4]}, {"label": "intelligence-collective", "backgroundColor": "rgb(140,192,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(216,117,195)", "data": [0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 3, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(183,140,182)", "data": [0, 0, 0, 0, 0, 0, 30, 15, 6, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(187,164,204)", "data": [0, 0, 0, 0, 0, 0, 0, 10, 14, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(223,68,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 9, 6]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(137,153,33)", "data": [0, 0, 0, 0, 0, 0, 13, 11, 7, 10, 17, 8]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(80,210,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(71,215,133)", "data": [0, 0, 0, 0, 0, 6, 9, 5, 8, 7, 8, 2]}, {"label": "le-led", "backgroundColor": "rgb(36,62,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 10]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(60,149,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(225,108,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 7, 7]}, {"label": "libre", "backgroundColor": "rgb(8,233,105)", "data": [11, 13, 0, 3, 0, 0, 10, 3, 4, 10, 6, 12]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(173,43,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(65,128,77)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(120,1,88)", "data": [3, 2, 1, 0, 3, 4, 1, 0, 4, 8, 2, 4]}, {"label": "lucarn", "backgroundColor": "rgb(208,147,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12]}, {"label": "manuel-terrien", "backgroundColor": "rgb(19,76,171)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(132,15,249)", "data": [0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(148,39,214)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3]}, {"label": "medusa", "backgroundColor": "rgb(112,252,170)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(1,214,57)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 5, 7, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(223,236,87)", "data": [0, 5, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(118,69,170)", "data": [0, 4, 1, 2, 0, 2, 0, 0, 2, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(0,233,144)", "data": [19, 6, 11, 2, 6, 3, 0, 6, 4, 0, 4, 1]}, {"label": "myhappy", "backgroundColor": "rgb(34,107,0)", "data": [4, 7, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(68,49,50)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(177,47,161)", "data": [0, 0, 0, 0, 11, 10, 10, 7, 0, 4, 0, 2]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(175,14,120)", "data": [0, 0, 0, 0, 8, 5, 5, 2, 0, 1, 3, 2]}, {"label": "no-gafam", "backgroundColor": "rgb(72,31,25)", "data": [9, 11, 9, 13, 10, 10, 15, 10, 7, 13, 10, 14]}, {"label": "open-hardware", "backgroundColor": "rgb(90,168,41)", "data": [0, 0, 0, 2, 2, 1, 0, 0, 4, 6, 8, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(244,64,152)", "data": [0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(39,146,62)", "data": [0, 0, 0, 0, 8, 3, 3, 0, 0, 3, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(136,180,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 3]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(192,19,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(144,167,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(200,170,65)", "data": [7, 8, 9, 1, 4, 11, 6, 8, 8, 4, 1, 2]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(56,77,81)", "data": [0, 0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,10,156)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(234,219,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(53,184,148)", "data": [17, 8, 4, 0, 10, 12, 8, 7, 10, 13, 9, 6]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(225,222,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(250,245,160)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(72,143,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(118,124,238)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(33,62,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(164,67,231)", "data": [3, 9, 7, 5, 8, 7, 5, 3, 2, 3, 11, 5]}, {"label": "pub-canaux", "backgroundColor": "rgb(239,179,199)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(5,239,238)", "data": [0, 0, 0, 0, 0, 0, 10, 8, 9, 7, 7, 4]}, {"label": "recherches-biologie", "backgroundColor": "rgb(199,183,30)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 5, 1, 2]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(13,229,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 2]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(185,243,235)", "data": [15, 5, 19, 16, 17, 8, 18, 5, 5, 18, 16, 18]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(68,14,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(247,191,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 16, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(213,236,62)", "data": [0, 0, 0, 0, 10, 1, 3, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(224,70,166)", "data": [0, 0, 0, 0, 0, 0, 0, 9, 10, 9, 12, 13]}, {"label": "selfishgene", "backgroundColor": "rgb(220,143,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(155,240,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 23]}, {"label": "siteweb", "backgroundColor": "rgb(175,191,20)", "data": [1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 4]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(230,57,189)", "data": [11, 10, 7, 5, 4, 12, 9, 7, 4, 9, 11, 5]}, {"label": "solucracy", "backgroundColor": "rgb(165,226,81)", "data": [0, 0, 10, 15, 8, 11, 11, 9, 12, 10, 12, 9]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(244,35,16)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(118,177,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(234,21,38)", "data": [5, 0, 0, 12, 1, 0, 3, 0, 0, 0, 9, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(159,29,145)", "data": [7, 8, 3, 9, 10, 10, 5, 5, 0, 5, 0, 5]}, {"label": "techos", "backgroundColor": "rgb(177,199,22)", "data": [8, 10, 11, 13, 10, 9, 13, 12, 16, 17, 13, 19]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(48,25,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8]}, {"label": "testbot", "backgroundColor": "rgb(26,134,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(82,233,95)", "data": [2, 8, 9, 6, 11, 18, 19, 16, 19, 15, 17, 6]}, {"label": "tour-du-monde", "backgroundColor": "rgb(18,28,105)", "data": [0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(237,67,95)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 4, 1, 3, 0]}, {"label": "transport", "backgroundColor": "rgb(227,100,61)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(245,157,38)", "data": [4, 1, 3, 0, 5, 1, 2, 6, 5, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(67,66,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(103,183,198)", "data": [4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(34,83,0)", "data": [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(86,71,133)", "data": [3, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(65,92,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(99,254,107)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9]}, {"label": "zero-dechet", "backgroundColor": "rgb(206,53,49)", "data": [9, 7, 10, 10, 8, 3, 11, 2, 5, 5, 4, 5]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(161,136,149)", "data": [7, 13, 4, 0, 3, 7, 4, 1, 0, 2, 0, 0]}], "messagesByTsunamy": [{"label": "global", "backgroundColor": "rgb(229,191,181)", "data": [9915, 6262, 10738, 10639, 12050, 8619, 14858, 6526, 6879, 11493, 13460, 11318]}, {"label": "project", "backgroundColor": "rgb(114,203,121)", "data": [1352, 281, 1560, 2269, 960, 655, 3981, 946, 943, 2218, 3404, 2917]}, {"label": "democratie", "backgroundColor": "rgb(22,43,126)", "data": [3349, 1949, 4446, 7737, 6575, 3203, 2846, 2575, 1557, 2179, 2106, 1091]}, {"label": "ecologie", "backgroundColor": "rgb(165,93,224)", "data": [1806, 1551, 697, 587, 703, 1052, 1546, 308, 595, 1017, 3836, 1815]}, {"label": "technologie", "backgroundColor": "rgb(253,154,85)", "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